* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Overpass", sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1520px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1220px;
  }
}
@media (max-width: 1260px) {
  .container {
    max-width: 688px;
  }
}

.swiper-button-prev, .swiper-button-next {
  position: relative;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button {
  line-height: 135%;
  color: #16161A;
  display: inline-block;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s all ease;
}
.button__purple {
  background-color: #B8B5E1;
}
.button__white {
  background-color: #fdfdfd;
  border-radius: 30px;
  border: 1px solid #16161A;
}
.button__white:hover {
  background-color: #16161A;
  color: #fdfdfd;
}
.button__md {
  padding: 14px 32px;
  font-size: 20px;
}
@media (max-width: 725px) {
  .button__md {
    padding: 8px 16px;
  }
}
.button[disabled] {
  opacity: 0.6;
  background-color: #B8B5E1;
}
.button[disabled]:hover {
  background-color: #B8B5E1;
  cursor: not-allowed;
}

.nice-select {
  border-radius: 22px;
  height: 40px;
  text-transform: uppercase;
}
.nice-select .list {
  border-radius: 20px;
}

.section_title {
  border-bottom: 1px solid #16161A;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 24px;
  margin-bottom: 40px;
}
.section_title.no_border {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 88px;
}
@media (max-width: 725px) {
  .section_title {
    font-size: 24px;
  }
}

.section_description {
  font-size: 18px;
  font-weight: 300;
  max-width: 850px;
  margin-bottom: 83px;
}
.section_description span {
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 725px) {
  .section_description span {
    font-size: 16px;
    font-weight: 300;
    line-height: 135%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
}
@media (max-width: 725px) {
  .section_description {
    margin-bottom: 40px;
    color: #16161A;
    font-size: 16px;
    font-weight: 300;
  }
}

.section {
  margin-bottom: 120px;
}

.wrapper {
  overflow: hidden;
}

.alert-success {
  display: flex;
  width: 600px;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  margin-bottom: 30px;
  border-radius: 30px;
  background-color: green;
  color: #fff;
}

.hidden {
  display: none;
}

@media (max-width: 1260px) {
  .header {
    left: 0;
    top: 0;
    z-index: 10;
  }
  .header .container {
    max-width: 100%;
  }
}
@media (max-width: 725px) {
  .header {
    position: fixed;
    width: 100%;
  }
}
.header .row {
  background-color: #fdfdfd;
  box-shadow: 0px 211px 59px 0px rgba(217, 217, 217, 0), 0px 135px 54px 0px rgba(217, 217, 217, 0.01), 0px 76px 46px 0px rgba(217, 217, 217, 0.05), 0px 34px 34px 0px rgba(217, 217, 217, 0.09), 0px 8px 19px 0px rgba(217, 217, 217, 0.1);
  padding: 12px 48px;
  border-radius: 0px 0px 20px 20px;
}
@media (max-width: 1260px) {
  .header .row {
    padding: 12px 30px 12px 40px;
  }
}
.header__navigation {
  display: flex;
  align-items: center;
  gap: 0 36px;
  /*
  * Just a quick hamburger
  */
  /* 
  * Transform all the slices of hamburger
  * into a crossmark.
  */
  /*
  * But let's hide the middle one.
  */
  /*
  * Ohyeah and the last one should go the other direction
  */
  /*
  * Make this absolute positioned
  * at the top left of the screen
  */
  /*
  * And let's slide it in from the left
  */
}
.header__navigation--nav {
  display: flex;
  gap: 0 24px;
}
.header__navigation--nav a {
  color: #16161A;
  font-weight: 300;
  text-decoration: none;
}
@media (max-width: 1260px) {
  .header__navigation--nav {
    display: none;
  }
}
.header__navigation #menuToggle {
  display: none;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 29px;
  left: 39px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
@media (max-width: 725px) {
  .header__navigation #menuToggle {
    display: block;
  }
}
.header__navigation #menuToggle a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}
.header__navigation #menuToggle a:hover {
  color: tomato;
}
.header__navigation #menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
.header__navigation #menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: black;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.header__navigation #menuToggle span:first-child {
  transform-origin: 0% 0%;
}
.header__navigation #menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
.header__navigation #menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}
.header__navigation #menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.header__navigation #menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
.header__navigation #menu {
  position: absolute;
  max-width: 410px;
  width: 103vw;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #fdfdfd;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.header__navigation #menu li {
  padding: 10px 0;
  font-size: 16px;
}
.header__navigation .menu-tel {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header__navigation .menu-icon {
  display: flex;
  align-items: center;
}
.header__navigation .menu-icon label {
  gap: 36px;
  display: flex;
}
.header__navigation #menu li label {
  cursor: pointer;
}
.header__navigation #menuToggle input:checked ~ ul {
  transform: none;
}
.header__logo img {
  width: 57px;
}
.header__action {
  display: flex;
  align-items: center;
  gap: 0 32px;
}
.header__action--contacts {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
.header__action--contacts a {
  text-decoration: none;
  color: inherit;
}
@media (max-width: 1260px) {
  .header__action--contacts a:nth-child(n+2) {
    display: none;
  }
  .header__action--contacts a:first-child {
    position: absolute;
    left: 110px;
  }
}
@media (max-width: 725px) {
  .header__action--contacts a {
    display: none;
  }
}
@media (max-width: 725px) {
  .header__action--book {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  background-image: url(../images/hero_logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 725px) {
  .hero {
    margin-bottom: 92px;
  }
}
.hero__about {
  margin-top: 140px;
  border-radius: 30px;
  background: rgba(253, 253, 253, 0.81);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  max-width: 612px;
  padding: 32px 64px 32px 36px;
  display: flex;
  gap: 0 40px;
}
@media (max-width: 725px) {
  .hero__about {
    flex-direction: column;
    padding: 24px 20px 24px 18px;
  }
}
@media (max-width: 725px) {
  .hero__about--logo img {
    width: 92px;
    height: 74px;
    margin-bottom: 12px;
  }
}
@media (max-width: 725px) {
  .hero__about--title {
    color: #16161A;
    font-size: 16px;
    font-weight: 300;
    line-height: 135%;
    width: 297px;
  }
}
.hero .hero__option {
  border-radius: 40px;
  border: 1px solid var(---, #F2F2F2);
  background: var(--, #FDFDFD);
  box-shadow: 0px 230px 64px 0px rgba(201, 201, 201, 0), 0px 147px 59px 0px rgba(201, 201, 201, 0.01), 0px 83px 50px 0px rgba(201, 201, 201, 0.05), 0px 37px 37px 0px rgba(201, 201, 201, 0.09), 0px 9px 20px 0px rgba(201, 201, 201, 0.1);
  display: flex;
  width: 1520px;
  height: 100px;
  padding: 20px 60px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.simple__rooms .row {
  gap: 36px;
}
@media (max-width: 1260px) {
  .simple__rooms .row {
    gap: 20px 0;
    flex-wrap: wrap;
  }
}
.simple__rooms__rooms--item {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: calc(33.333% - 24px);
  gap: 36px 0;
  border-radius: 30px;
}
@media (max-width: 1260px) {
  .simple__rooms__rooms--item {
    width: calc(50% - 10px);
    gap: 20px 0;
  }
  .simple__rooms__rooms--item:last-child {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .simple__rooms__rooms--item:last-child a {
    flex: 0 0 auto;
    width: calc(50% - 10px);
  }
}
.simple__rooms__rooms--item img {
  width: 100%;
}
.simple__rooms__rooms--item a {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
}
.simple__rooms__rooms--item a:hover .simple__rooms__rooms--text {
  bottom: 30%;
  transition: 0.9s all ease;
}
@media (max-width: 1600px) {
  .simple__rooms__rooms--item a:hover .simple__rooms__rooms--text {
    bottom: 15%;
  }
}
@media (max-width: 725px) {
  .simple__rooms__rooms--item a:hover .simple__rooms__rooms--text {
    bottom: 8%;
  }
}
.simple__rooms__rooms--item a:hover::after {
  opacity: 1;
}
.simple__rooms__rooms--item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(8);
          backdrop-filter: blur(8);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.simple__rooms__rooms--text {
  position: absolute;
  bottom: -164px;
  left: 28px;
  text-decoration: none;
  color: #fff;
}
.simple__rooms__rooms--name {
  display: block;
  margin-bottom: 32px;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 725px) {
  .simple__rooms__rooms--name {
    font-size: 16px;
  }
}
.simple__rooms__rooms--description {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 23px 0;
}
@media (max-width: 725px) {
  .simple__rooms__rooms--description {
    font-size: 10px;
  }
}
.simple__rooms .more__rooms {
  justify-content: center;
  display: flex;
  margin-top: 90px;
}
@media (max-width: 725px) {
  .simple__rooms .more__rooms {
    margin-top: 44px;
    margin-bottom: 72px;
  }
}

.rooms_slider__room__item {
  margin-bottom: 72px;
}
.rooms_slider__room__item-surface {
  font-size: 20px;
  color: #16161a;
  padding: 6px 10px;
  display: inline-block;
  position: absolute;
  right: 28px;
  border-radius: 10px;
  background: #fdfdfd;
  top: 28px;
  z-index: 2;
}
@media (max-width: 725px) {
  .rooms_slider__room__item {
    flex-direction: column;
  }
}
.rooms_slider__room__item-image {
  margin-bottom: 36px;
  border-radius: 30px;
}
.rooms_slider__room__item-image img {
  width: 489px;
  border-radius: 20px;
}
.rooms_slider__room__item-image .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 22px;
  height: 100%;
}
.rooms_slider__room__item-image .swiper-pagination .swiper-pagination-bullet {
  display: block;
  background-color: transparent;
  border-radius: 10px;
  width: calc(20% - 10px);
  height: 100%;
  opacity: 1;
  position: relative;
}
.rooms_slider__room__item-image .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 30px;
  left: 0;
}
.rooms_slider__room__item-image .swiper-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active::after {
  background-color: #b8b5e1;
}
.rooms_slider__room__item-title {
  font-size: 25px;
  text-transform: uppercase;
  text-decoration: none;
  color: #16161a;
  margin-bottom: 12px;
  display: block;
}
.rooms_slider__room__item-guests {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.rooms_slider--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 600px;
}
@media (max-width: 1260px) {
  .rooms_slider--btn {
    width: 100%;
    margin: 0 auto;
  }
}
.rooms_slider .next-prev {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 13px;
  gap: 40px;
}
.rooms_slider .next-prev .swiper-button-prev {
  background-image: url(../images/simple_swiper_next.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: inherit;
  background-color: #b8b5e1;
  width: 53px;
  height: 53px;
}
.rooms_slider .next-prev .swiper-button-prev::after {
  display: none;
}
.rooms_slider .next-prev .swiper-button-next {
  background-image: url(../images/simple_swiper_prevjpg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #b8b5e1;
  width: 53px;
  height: 53px;
}
.rooms_slider .next-prev .swiper-button-next::after {
  display: none;
}
.rooms_slider--blok {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 190px;
}
@media (max-width: 1260px) {
  .rooms_slider--blok .next-prev {
    display: none;
  }
}

.aparts__blok, .aparts__blok3 {
  display: flex;
  border-radius: 30px;
  background: #52515C;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 36px 36px 36px 130px;
  margin-bottom: 52px;
}
@media (max-width: 1260px) {
  .aparts__blok, .aparts__blok3 {
    padding: 24px 24px 24px 38px;
    width: 688px;
    height: 318px;
  }
}
@media (max-width: 725px) {
  .aparts__blok, .aparts__blok3 {
    flex-direction: column;
    padding: 36px 20px 20px 20px;
    width: 355px;
    height: 555px;
  }
  .aparts__blok img, .aparts__blok3 img {
    width: 100%;
  }
}
.aparts__blok--swiper, .aparts__blok3--swiper {
  width: 836px;
}
.aparts__blok--swiper .img, .aparts__blok3--swiper .img {
  display: flex;
  justify-content: flex-end;
}
.aparts__blok--swiper .img img, .aparts__blok3--swiper .img img {
  overflow: hidden;
  border-radius: 30px;
}
.aparts__blok--swiper .swiper-pagination, .aparts__blok3--swiper .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 22px;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.aparts__blok--swiper .swiper-pagination .swiper-pagination-bullet, .aparts__blok3--swiper .swiper-pagination .swiper-pagination-bullet {
  width: 145px;
  display: block;
  background-color: transparent;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  position: relative;
}
.aparts__blok--swiper .swiper-pagination .swiper-pagination-bullet::after, .aparts__blok3--swiper .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 30px;
  left: 0;
}
.aparts__blok--swiper .swiper-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active::after, .aparts__blok3--swiper .swiper-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active::after {
  background-color: #b8b5e1;
}
@media (max-width: 1260px) {
  .aparts__blok--swiper, .aparts__blok3--swiper {
    width: 310px;
    height: 270px;
  }
}
.aparts__blok--info, .aparts__blok3--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aparts__blok--info h3, .aparts__blok3--info h3 {
  color: #fdfdfd;
  font-size: 25px;
  text-transform: uppercase;
  max-width: 540px;
  margin-bottom: 36px;
}
@media (max-width: 1260px) {
  .aparts__blok--info h3, .aparts__blok3--info h3 {
    font-size: 20px;
    font-weight: 400;
    max-width: 388px;
    margin-bottom: 28px;
  }
}
.aparts__blok--info p, .aparts__blok3--info p {
  color: #fdfdfd;
  font-size: 20px;
  margin-bottom: 36px;
}
@media (max-width: 1260px) {
  .aparts__blok--info p, .aparts__blok3--info p {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.aparts__blok--info .guests, .aparts__blok3--info .guests {
  display: flex;
  align-items: center;
  gap: 5px;
}
.aparts__blok--info .guests img, .aparts__blok3--info .guests img {
  width: 24px;
  height: 24px;
  display: flex;
}
@media (max-width: 1260px) {
  .aparts__blok--info .guests img, .aparts__blok3--info .guests img {
    width: 19px;
    height: 22px;
  }
}
.aparts__blok--info .guests span, .aparts__blok3--info .guests span {
  color: #fdfdfd;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1260px) {
  .aparts__blok--info .guests span, .aparts__blok3--info .guests span {
    font-size: 16px;
  }
}
.aparts__blok .swipper_next, .aparts__blok3 .swipper_next {
  position: relative;
  bottom: 0;
  top: 190px;
  left: -28px;
  right: 0;
}
.aparts__blok .swipper_next .swiper-button-prev, .aparts__blok3 .swipper_next .swiper-button-prev {
  background-image: url(../images/aparts_swiper_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 36px;
  height: 36px;
}
.aparts__blok .swipper_next .swiper-button-prev::after, .aparts__blok3 .swipper_next .swiper-button-prev::after {
  display: none;
}
@media (max-width: 1260px) {
  .aparts__blok .swipper_next .swiper-button-prev, .aparts__blok3 .swipper_next .swiper-button-prev {
    margin-left: -36px;
    margin-top: -87px;
  }
}
@media (max-width: 725px) {
  .aparts__blok .swipper_next, .aparts__blok3 .swipper_next {
    display: none;
  }
}
.aparts__blok2 {
  display: flex;
  border-radius: 30px;
  background: #52515C;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 36px 72px 36px 36px;
  margin-bottom: 52px;
}
@media (max-width: 1260px) {
  .aparts__blok2 {
    padding: 24px 38px 24px 24px;
    width: 688px;
    height: 318px;
  }
}
@media (max-width: 725px) {
  .aparts__blok2 {
    flex-direction: column;
    padding: 36px 20px 20px 20px;
    width: 355px;
    height: 555px;
  }
}
.aparts__blok2--swiper {
  width: 836px;
}
.aparts__blok2--swiper .img {
  display: flex;
  justify-content: flex-end;
}
.aparts__blok2--swiper .img img {
  overflow: hidden;
  border-radius: 30px;
}
.aparts__blok2--swiper .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 22px;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.aparts__blok2--swiper .swiper-pagination .swiper-pagination-bullet {
  width: 145px;
  display: block;
  background-color: transparent;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  position: relative;
}
.aparts__blok2--swiper .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 30px;
  left: 0;
}
.aparts__blok2--swiper .swiper-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active::after {
  background-color: #b8b5e1;
}
.aparts__blok2--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aparts__blok2--info h3 {
  color: #fdfdfd;
  font-size: 25px;
  text-transform: uppercase;
  max-width: 540px;
  margin-bottom: 36px;
}
.aparts__blok2--info p {
  color: #fdfdfd;
  font-size: 20px;
  margin-bottom: 36px;
}
.aparts__blok2--info .guests {
  display: flex;
  align-items: center;
  gap: 5px;
}
.aparts__blok2--info .guests img {
  width: 24px;
  height: 24px;
  display: flex;
}
.aparts__blok2--info .guests span {
  color: #fdfdfd;
  font-size: 20px;
  font-weight: 400;
}
.aparts__blok2 .swipper_next {
  position: relative;
  bottom: 0;
  top: 190px;
  left: -28px;
  right: 0;
}
.aparts__blok2 .swipper_next .swiper-button-prev {
  background-image: url(../images/aparts_swiper_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 36px;
  height: 36px;
}
.aparts__blok2 .swipper_next .swiper-button-prev::after {
  display: none;
}
@media (max-width: 1260px) {
  .aparts__blok2 .swipper_next .swiper-button-prev {
    margin-left: -37px;
    margin-top: -87px;
  }
}
@media (max-width: 725px) {
  .aparts__blok2 .swipper_next {
    display: none;
  }
}
.aparts--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 190px;
}

.feedbacks {
  background-image: url(../images/feedback.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 153px 0 123px 0;
  margin-bottom: 190px;
}
@media (max-width: 725px) {
  .feedbacks {
    border-radius: 60px;
  }
}
.feedbacks .row {
  gap: 0 35px;
}
@media (max-width: 1260px) {
  .feedbacks .row {
    width: 100%;
    gap: 20px;
    align-items: center;
  }
}
@media (max-width: 725px) {
  .feedbacks .row {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.feedbacks .feedbacks_title {
  margin-top: -235px;
}
.feedbacks-blok {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1260px) {
  .feedbacks-blok:last-child {
    display: none;
  }
}
.feedbacks-blok-sharh {
  display: flex;
  padding: 28px 32px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 36px;
  gap: 10px;
  border-radius: 30px;
  background: #fdfdfd;
}
.feedbacks-blok-sharh .stars {
  margin-bottom: 20px;
}
.feedbacks-blok-sharh p {
  max-width: 419px;
  margin-bottom: 20px;
}
.feedbacks-blok-sharh--title {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}
.feedbacks-blok-sharh--title h3 {
  color: #16161A;
  text-align: right;
  font-size: 16px;
  font-weight: 300;
}
.feedbacks-blok-sharh--title span {
  color: #B8B5E1;
}
.feedbacks-blok .star {
  font-size: 30px;
  color: gray;
  cursor: pointer;
}
.feedbacks-blok .active {
  color: gold;
}

.birthday_slider .birthday-slider--blok {
  display: flex;
  align-items: center;
  border-radius: 30px;
  background: var(--, #FDFDFD);
  border: 1px solid #949494;
  margin-bottom: 52px;
  overflow: hidden;
  gap: 0 36px;
  margin-bottom: 295px;
}
@media (max-width: 1260px) {
  .birthday_slider .birthday-slider--blok {
    gap: 0 20px;
  }
}
@media (max-width: 725px) {
  .birthday_slider .birthday-slider--blok {
    flex-direction: column;
    width: 315px;
    height: 476px;
  }
}
.birthday_slider .birthday-slider--blok--right h3 {
  color: #16161A;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 36px;
}
@media (max-width: 1260px) {
  .birthday_slider .birthday-slider--blok--right h3 {
    font-size: 20px;
  }
}
@media (max-width: 725px) {
  .birthday_slider .birthday-slider--blok--right h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.birthday_slider .birthday-slider--blok--right p {
  color: #16161a;
  font-size: 16px;
  font-weight: 300;
  max-width: 612px;
}
@media (max-width: 725px) {
  .birthday_slider .birthday-slider--blok--right {
    padding: 20px 20px 12px 20px;
  }
}
.birthday_slider .birthday-slider--blok--left {
  width: 742px;
  height: 338px;
}
@media (max-width: 1260px) {
  .birthday_slider .birthday-slider--blok--left {
    width: 334px;
    height: 301px;
  }
}
@media (max-width: 725px) {
  .birthday_slider .birthday-slider--blok--left {
    width: 315px;
    height: 200px;
    margin-bottom: 32px;
  }
}
@media (max-width: 1260px) {
  .birthday_slider .birthday-slider--blok--left img {
    width: 334px;
    height: 301px;
    border-radius: 30px;
    background: url(<path-to-image>) lightgray 0px -72.799px/101.497% 143.388% no-repeat;
  }
}
@media (max-width: 725px) {
  .birthday_slider .birthday-slider--blok--left img {
    width: 315px;
    height: 200px;
  }
}
.birthday_slider .birthday-slider--blok .birthday {
  background-image: url(../images/birthday_swipper.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  left: -15px;
  bottom: 0;
  right: 0;
  top: 127px;
  position: relative;
  height: 36px;
}
.birthday_slider .birthday-slider--blok .birthday::after {
  display: none;
}
@media (max-width: 1260px) {
  .birthday_slider .birthday-slider--blok .birthday {
    display: none;
  }
}
@media (max-width: 725px) {
  .birthday_slider .birthday-slider--blok .birthday {
    display: block;
    width: 36px;
    left: 144px;
    top: 10px;
  }
}

.map #map {
  width: 100%;
  height: 500px;
  border-radius: 30px;
  border: 1px solid #16161A;
  overflow: hidden;
  margin-bottom: 190px;
}

.footer {
  border-radius: 30px 30px 0 0px;
  background-color: #52515c;
  padding: 80px 0 50px 0;
  color: #fff;
}
@media (max-width: 1260px) {
  .footer .row {
    gap: 0 32px;
  }
}
@media (max-width: 725px) {
  .footer .row {
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.footer__footer_left {
  flex: 0 0 auto;
  width: 50%;
}
.footer__footer_left .form_title {
  color: #fdfdfd;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 725px) {
  .footer__footer_left .form_title {
    font-size: 18px;
  }
}
.footer__footer_left .form_description {
  color: #fdfdfd;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 463px;
}
@media (max-width: 725px) {
  .footer__footer_left .form_description {
    width: 335px;
  }
}
.footer__footer_left .input_item {
  margin-bottom: 16px;
}
.footer__footer_left .input_item input {
  width: 100%;
  height: 46px;
  max-width: 523px;
  border-radius: 20px;
  background-color: #FDFDFD;
  padding: 0 20px;
  border: none;
  font-size: 16px;
  outline: none;
}
.footer__footer_left .input_item input::-moz-placeholder {
  font-weight: 300;
  color: #949494;
}
.footer__footer_left .input_item input::placeholder {
  font-weight: 300;
  color: #949494;
}
@media (max-width: 1260px) {
  .footer__footer_left .input_item input {
    padding: 10px 271px 10px 15px;
  }
}
@media (max-width: 725px) {
  .footer__footer_left .input_item input {
    padding: 10px 259px 10px 16px;
  }
}
.footer__footer_left .input_item textarea {
  height: 120px;
  width: 523px;
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 16px;
  outline: none;
}
.footer__footer_left .input_item textarea::-moz-placeholder {
  font-weight: 300;
  color: #949494;
}
.footer__footer_left .input_item textarea::placeholder {
  font-weight: 300;
  color: #949494;
}
@media (max-width: 1260px) {
  .footer__footer_left .input_item textarea {
    width: 322px;
    height: 120px;
    padding: 10px 217px 91px 15px;
  }
}
@media (max-width: 725px) {
  .footer__footer_left .input_item textarea {
    width: 335px;
    padding: 10px 259px 10px 16px;
  }
}
@media (max-width: 1260px) {
  .footer__footer_left .input_item {
    width: 322px;
  }
}
@media (max-width: 725px) {
  .footer__footer_left .input_item {
    display: flex;
    width: 335px;
    align-items: center;
  }
}
.footer__footer_left .captcha {
  margin-top: 34px;
  margin-bottom: 20px;
}
@media (max-width: 1260px) {
  .footer__footer_left .captcha img {
    width: 322px;
  }
}
.footer__footer_left .agreement {
  margin-bottom: 34px;
}
.footer__footer_left .button {
  padding: 14px 32px;
  font-size: 20px;
  cursor: pointer;
  border: none;
}
@media (max-width: 1260px) {
  .footer__footer_left .button {
    padding: 8px 16px;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    gap: 10px;
  }
}
@media (max-width: 725px) {
  .footer__footer_left .button {
    margin-bottom: 90px;
  }
}
@media (max-width: 725px) {
  .footer__footer_left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.footer__footer_right {
  flex: 0 0 auto;
  width: 50%;
}
.footer__footer_right a {
  text-decoration: none;
}
.footer__footer_right--blok {
  display: flex;
  align-items: center;
  gap: 0 144px;
  margin-bottom: 63px;
}
@media (max-width: 1260px) {
  .footer__footer_right--blok {
    margin-bottom: 40px;
    gap: 0 83px;
  }
}
.footer__footer_right--blok .blok--size p {
  color: #FDFDFD;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1260px) {
  .footer__footer_right--blok .imgaes svg {
    width: 97px;
    height: 80px;
  }
}
@media (max-width: 725px) {
  .footer__footer_right--blok {
    display: none;
  }
}
.footer__footer_right--blok2 {
  display: flex;
  gap: 0 102px;
}
@media (max-width: 1260px) {
  .footer__footer_right--blok2 {
    gap: 0 20px;
  }
}
@media (max-width: 725px) {
  .footer__footer_right--blok2 {
    display: flex;
    margin-bottom: 48px;
  }
}
.footer__footer_right--blok4, .footer__footer_right a {
  color: #FDFDFD;
  font-size: 16px;
  font-weight: 400;
}
.footer__footer_right--blok4 li, .footer__footer_right a li {
  margin-bottom: 20px;
}
.footer__footer_right--blok4 h5, .footer__footer_right a h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
}
.footer__footer_right--blok4 span, .footer__footer_right a span {
  color: #D7D7D7;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 26px;
}
.footer__footer_right--blok4 .email, .footer__footer_right a .email {
  margin-bottom: 10px;
  margin-top: 26px;
}
.footer__footer_right--blok4 .line, .footer__footer_right a .line {
  width: 380px;
  height: 0.7px;
  background: #D7D7D7;
  margin-top: 16px;
}
.footer__footer_right--blok4 h3, .footer__footer_right a h3 {
  color: #F4F4F4;
  font-size: 16px;
  font-weight: 400;
  margin-top: 35px;
  max-width: 250px;
  margin-bottom: 37px;
}
@media (max-width: 725px) {
  .footer__footer_right--blok4 h3, .footer__footer_right a h3 {
    margin-bottom: 57px;
  }
}
.footer__footer_right--icon {
  display: flex;
  gap: 0 30px;
  margin-bottom: 48px;
}
@media (max-width: 725px) {
  .footer__footer_right--icon {
    gap: 0 21px;
    justify-content: center;
    align-items: center;
  }
}
.footer__footer_right--blok3 li {
  color: #F4F4F4;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 725px) {
  .footer__footer_right--blok3 li:last-child {
    display: none;
  }
}
.footer__footer_right--blok3 .line2 {
  width: 589px;
  height: 0.7px;
  background: #D7D7D7;
  margin-top: 36px;
  margin-bottom: 30px;
}
@media (max-width: 725px) {
  .footer__footer_right--blok3 .line2 {
    display: none;
  }
}
@media (max-width: 725px) {
  .footer__footer_right {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */