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

body {
  font-family: "Overpass", sans-serif;
  font-style: normal;
  color: #16161A;
  background-color: #fff;
}

@media (max-width:1240px) {
  .wrapper {
    overflow: hidden;
  }
}

.container {
  max-width: 1520px;
  margin: 0 auto;
}
@media (max-width:1530px) {
  .container {
    max-width: 1220px;
  }
}
@media (max-width:1240px) {
  .container {
    max-width: 688px;
  }
}
@media (max-width:700px) {
  .container {
    max-width: 335px;
  }
}

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

.pink__button {
  border-radius: 20px;
  background: #B8B5E1;
  color: #16161A;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  padding: 7px 16px;
  text-decoration: none;
  transition: 0.3s all ease;
}
.pink__button:hover {
  background-color: #D2D0F0;
}

.white_btn {
  color: #16161A;
  text-align: center;
  font-family: Overpass;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid #16161A;
  background: #FDFDFD;
  display: flex;
  width: fit-content;
  margin: auto;
  text-decoration: none;
  transition: 0.3s all ease;
}
.white_btn:hover {
  background-color: #16161A;
  color: #FDFDFD;
}

.section-title {
  font-family: Racama;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width:700px) {
  .section-title {
    font-size: 24px;
  }
}

.section-description {
  padding-top: 40px;
  font-family: Overpass;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 135%;
  border-top: 1px solid #16161A;
}
.section-description a {
  color: #16161A;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  text-decoration: none;
  border-bottom: 1px solid #16161A;
}
@media (max-width:1240px) {
  .section-description br {
    display: none;
  }
}
@media (max-width:700px) {
  .section-description {
    padding-top: 28px;
    font-size: 16px;
    font-weight: 300;
  }
  .section-description a {
    font-weight: 300;
  }
}

.header {
  position: relative;
  z-index: 2;
}
@media (max-width:1530px) {
  .header .container {
    max-width: 1312px;
  }
}
.header__block {
  display: flex;
  justify-content: space-between;
  border-radius: 0px 0px 20px 20px;
  background: #FDFDFD;
  backdrop-filter: blur(5px);
  padding: 17px 48px;
  align-items: center;
  position: relative;
}
@media (max-width:1240px) {
  .header__block {
    padding: 10px 48x;
  }
}
@media (max-width:700px) {
  .header__block {
    padding: 10px 20px;
  }
}
.header__menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.header__menu--links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
}
.header__menu--links a {
  color: #16161A;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  line-height: 135%;
}
@media (max-width:1240px) {
  .header__menu--links {
    display: none;
  }
}
.header__menu--burger {
  cursor: pointer;
}
.header--logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
}
@media (max-width:700px) {
  .header--logo img {
    width: 47px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__right--contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__right--contacts a {
  color: #16161A;
  font-family: Overpass;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-decoration: none;
}
@media (max-width:1240px) {
  .header__right--contacts {
    position: absolute;
    left: 81px;
  }
}
.header__right--book img {
  display: none;
}
@media (max-width:700px) {
  .header__right--book {
    padding: 0;
  }
  .header__right--book img {
    display: block;
  }
  .header__right--book span {
    display: none;
  }
}
.header__right .language {
  color: #16161A;
  font-size: 16px;
  font-weight: 400;
  line-height: 135%;
  text-decoration: none;
}
@media (max-width:700px) {
  .header__right {
    flex-direction: row-reverse;
    gap: 0 16px;
  }
  .header__right--contacts {
    display: none;
  }
  .header__right .language {
    line-height: 0;
  }
}
@media (max-width:1240px) {
  .header--whatsapp {
    display: none;
  }
}
@media (max-width:1240px) {
  .header--tg {
    display: none;
  }
}
.header .menu__block {
  visibility: hidden;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: -1000px;
  transition: 0.3s all ease;
  opacity: 0;
}
.header .menu__block a {
  text-decoration: none;
}
.header .menu__block.open {
  visibility: visible;
  left: 0;
  opacity: 1;
}
.header .menu__block--overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.44);
  width: 100%;
  height: 100%;
}
.header .menu__block--content {
  border-radius: 0px 30px 30px 0px;
  background: #FDFDFD;
  max-width: 493px;
  width: 100%;
  position: relative;
  padding: 78px 0 0 110px;
  height: 100%;
}
.header .menu__block--close {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 40px;
}
.header .menu__block--socials {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}
.header .menu__block--content ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 28px;
  max-width: 220px;
}
.header .menu__block--content ul a {
  color: #16161A;
  font-family: Overpass;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 135%;
  text-decoration: none;
}
.header .menu__block--content ul li {
  transition: 0.3s all ease;
  border-bottom: 1px solid #FDFDFD;
}
.header .menu__block--content ul li:hover {
  border-bottom: 1px solid #16161A;
}

.hero {
  background-image: url(../images/hero_bg.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin-top: -70px;
  position: relative;
}
.hero__card {
  display: inline-flex;
  gap: 41px;
  padding: 32px 64px 33px 36px;
  border-radius: 30px;
  background: rgba(253, 253, 253, 0.81);
  backdrop-filter: blur(5px);
  align-items: center;
  margin-top: 211px;
}
.hero__card img {
  width: 168px;
}
@media (max-width:1530px) {
  .hero__card img {
    width: 141px;
  }
}
@media (max-width:1240px) {
  .hero__card img {
    width: 127px;
  }
}
.hero__card--description {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}
@media (max-width:1240px) {
  .hero__card--description {
    font-size: 16px;
  }
}
@media (max-width:700px) {
  .hero__card--description {
    font-weight: 300;
  }
  .hero__card--description br {
    display: none;
  }
}
@media (max-width:1530px) {
  .hero__card {
    padding: 43px 53px 44px 36px;
    margin-top: 280px;
  }
}
@media (max-width:1530px) {
  .hero__card {
    margin-top: 126px;
    padding: 24px 38px 24px 20px;
    gap: 28px;
  }
}
@media (max-width:700px) {
  .hero__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px 0;
    padding: 24px 20px 24px 18px;
  }
  .hero__card img {
    width: 92px;
    margin-left: 10px;
  }
}
.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -53px;
  text-align: center;
  max-width: 1520px;
  margin: 0 auto;
}
.hero__bottom .tab, .hero__bottom .mobile {
  display: none;
}
@media (max-width:1530px) {
  .hero__bottom {
    max-width: 1220px;
  }
}
@media (max-width:1240px) {
  .hero__bottom {
    max-width: 688px;
    bottom: -68px;
  }
  .hero__bottom .desctop, .hero__bottom .mobile {
    display: none;
  }
  .hero__bottom .tab {
    display: block;
  }
}
@media (max-width:700px) {
  .hero__bottom {
    max-width: 335px;
    bottom: -305px;
  }
  .hero__bottom .desctop, .hero__bottom .tab {
    display: none;
  }
  .hero__bottom .mobile {
    display: block;
  }
}
.hero__bottom img {
  width: 100%;
}
@media (max-width:1240px) {
  .hero {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width:700px) {
  .hero {
    height: 75vh;
  }
}

.about {
  margin-top: 185px;
}
.about .section-title {
  padding-bottom: 24px;
}
@media (max-width:700px) {
  .about .section-title {
    padding-bottom: 16px;
  }
}
.about__block {
  margin-top: 88px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
}
@media (max-width:1240px) {
  .about__block {
    margin-top: 60px;
    gap: 20px 0;
  }
}
@media (max-width:700px) {
  .about__block {
    margin-top: 40px;
    gap: 20px 0;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  flex: 0 0 auto;
  width: calc(33.333% - 24px);
  transition: 0.3s all ease;
  overflow: hidden;
  border-radius: 30px;
}
.about__item:after {
  content: "";
  width: 100%;
  height: 143px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0px 0px 30px 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -3.29%, rgba(0, 0, 0, 0.51) 70.62%);
}
.about__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1530px) {
  .about__item img {
    height: 331px;
  }
}
@media (max-width:1240px) {
  .about__item img {
    height: 290px;
  }
}
.about__item.first p {
  top: 272px;
}
@media (max-width:1530px) {
  .about__item.first img {
    height: 698px;
  }
}
@media (max-width:1240px) {
  .about__item.first img {
    height: 100%;
  }
}
.about__item span {
  position: absolute;
  color: #FDFDFD;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  left: 32px;
  bottom: 28px;
  z-index: 3;
}
@media (max-width:700px) {
  .about__item span {
    font-size: 16px;
    left: 20px;
    bottom: 20px;
  }
}
.about__item p {
  position: absolute;
  color: #FFF;
  font-family: Overpass;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  left: 32px;
  opacity: 0;
  transition: 0.3s all ease;
  z-index: 3;
  top: 192px;
}
.about__item:hover {
  border-radius: 30px;
}
.about__item:hover::after {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(7.3499999046px);
  z-index: 2;
  height: 100%;
  border-radius: 30px;
}
.about__item:hover p {
  opacity: 1;
}
.about__item:hover.first span {
  top: 200px;
}
.about__item:hover span {
  top: 92px;
}
@media (max-width:1240px) {
  .about__item {
    width: calc(50% - 10px);
  }
}
@media (max-width:700px) {
  .about__item {
    width: 100%;
    height: 220px;
  }
}
.about .white_btn {
  margin-top: 88px;
}
@media (max-width:1240px) {
  .about .white_btn {
    margin-top: 60px;
  }
}
@media (max-width:700px) {
  .about .white_btn {
    margin-top: 36px;
  }
}
.about .about__wrapper-item {
  width: calc(33.333% - 24px);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about .about__wrapper-item .about__item {
  width: 100%;
  height: calc(50% - 18px);
}
@media (max-width:1240px) {
  .about .about__wrapper-item {
    width: calc(50% - 10px);
    gap: 20px 0;
  }
  .about .about__wrapper-item:last-child {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .about .about__wrapper-item:last-child .about__item {
    width: calc(50% - 10px);
    height: 290px;
  }
  .about .about__wrapper-item .about__item {
    height: calc(50% - 10px);
  }
}
@media (max-width:700px) {
  .about .about__wrapper-item {
    width: calc(50% - 10px);
    gap: 20px 0;
  }
  .about .about__wrapper-item:last-child {
    width: calc(50% - 10px);
    flex-direction: column;
  }
  .about .about__wrapper-item:last-child .about__item {
    width: 100%;
    height: 151px;
  }
  .about .about__wrapper-item .about__item {
    height: 151px;
  }
}
@media (max-width:1530px) {
  .about {
    margin-top: 154px;
  }
}
@media (max-width:1240px) {
  .about {
    margin-top: 146px;
  }
}
@media (max-width:700px) {
  .about {
    margin-top: 400px;
  }
}

.rooms {
  margin-top: 120px;
}
@media (max-width:1240px) {
  .rooms {
    margin-top: 112px;
  }
}
@media (max-width:700px) {
  .rooms {
    margin-top: 72px;
  }
}
.rooms__block {
  position: relative;
  margin-top: 64px;
}
@media (max-width:700px) {
  .rooms__block {
    margin-top: 40px;
  }
  .rooms__block .roomsSwiper > .swiper-wrapper {
    flex-direction: column;
    gap: 32px 0;
  }
  .rooms__block .room-next,
  .rooms__block .room-prev {
    display: none;
  }
}
.rooms__block .white_btn {
  margin-top: 77px;
}
@media (max-width:700px) {
  .rooms__block .white_btn {
    margin-top: 36px;
  }
}
.rooms__block .swiper-button-next,
.rooms__block .swiper-button-prev {
  top: auto;
  bottom: 0;
  width: auto;
  height: auto;
}
@media (max-width:1240px) {
  .rooms__block .swiper-button-next,
  .rooms__block .swiper-button-prev {
    display: none;
  }
}
.rooms__block .swiper-button-next.swiper-button-disabled,
.rooms__block .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.rooms__block .swiper-button-next:after,
.rooms__block .swiper-button-prev:after {
  display: none;
}
.rooms__block .swiper-button-prev {
  left: auto;
  right: 79px;
}
.rooms .swiper-button-prev:hover svg ellipse {
  fill: #E1E1E1;
}
.rooms .swiper-button-next:hover svg ellipse {
  fill: #B8B5E1;
}
.rooms__item {
  position: relative;
}
.rooms__item--description {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  margin-top: 36px;
}
@media (max-width:1240px) {
  .rooms__item--description {
    font-size: 18px;
    margin-top: 20px;
  }
}
.rooms__item .guests {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}
.rooms__item .guests span {
  padding-left: 12px;
}
@media (max-width:1240px) {
  .rooms__item .guests {
    font-size: 16px;
    margin-top: 8px;
  }
  .rooms__item .guests span {
    padding-left: 12px;
  }
}
.rooms__item .size {
  position: absolute;
  border-radius: 10px;
  background: #FDFDFD;
  padding: 6px 10px;
  display: flex;
  gap: 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  top: 28px;
  right: 28px;
  z-index: 2;
}
@media (max-width:1240px) {
  .rooms__item .size {
    font-size: 16px;
    right: 14px;
    top: 16px;
  }
  .rooms__item .size div:first-child {
    font-weight: 500;
  }
  .rooms__item .size div:last-child {
    font-weight: 300;
  }
}
.rooms__item--image {
  border-radius: 20px;
  overflow: hidden;
}
.rooms__item--image img {
  border-radius: 20px;
  width: 100%;
}
@media (max-width:700px) {
  .rooms__item--image img {
    height: 254px;
  }
}
.rooms__item--image .roomImageSwiper .swiper-horizontal > .swiper-pagination-bullets,
.rooms__item--image .roomImageSwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.rooms__item--image .roomImageSwiper .swiper-pagination-custom,
.rooms__item--image .roomImageSwiper .swiper-pagination-fraction {
  display: flex;
  justify-content: space-between;
  padding: 0 22px;
  bottom: 24px;
  width: 100%;
}
.rooms__item--image .roomImageSwiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.rooms__item--image .roomImageSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: calc(20% - 7px);
  background: #FDFDFD;
  height: 4px;
  opacity: unset;
  border-radius: 10px;
  opacity: unset;
}
.rooms__item--image .roomImageSwiper .swiper-pagination-bullet-active {
  background: #B8B5E1 !important;
}

.aparts {
  margin: 188px 0;
}
@media (max-width:1240px) {
  .aparts {
    margin: 112px 0;
  }
}
@media (max-width: 480px) {
  .aparts .container {
    max-width: 100%;
  }
}
.aparts .section-title {
  padding-bottom: 24px;
}
.aparts .apart__item {
  border-radius: 30px;
  background: #52515C;
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
  color: #fdfdfd;
}
@media (max-width:1240px) {
  .aparts .apart__item.reversed .apart__item--info {
    padding: 60px 0 0 0;
  }
}
@media (max-width:700px) {
  .aparts .apart__item {
    flex-direction: column;
  }
  .aparts .apart__item.reversed .apart__item--info {
    padding: 0 20px 36px 20px;
  }
}
.aparts .apart__item.first {
  margin-top: 88px;
}
@media (max-width:1240px) {
  .aparts .apart__item.first {
    margin-top: 60px;
  }
}
@media (max-width:700px) {
  .aparts .apart__item.first {
    margin-top: 40px;
  }
}
.aparts .apart__item--info {
  padding: 120px 0 0 130px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}
@media (max-width:1530px) {
  .aparts .apart__item--info {
    padding: 88px 0 0 105px;
    gap: 28px;
  }
}
@media (max-width:1240px) {
  .aparts .apart__item--info {
    padding: 60px 0 0 38px;
  }
}
@media (max-width:700px) {
  .aparts .apart__item--info {
    padding: 36px 20px 0 20px;
    gap: 24px;
  }
}
.aparts .apart__item--name {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}
@media (max-width:1240px) {
  .aparts .apart__item--name {
    font-size: 20px;
    font-weight: 400;
  }
}
@media (max-width:700px) {
  .aparts .apart__item--name {
    font-size: 18px;
    font-weight: 400;
  }
}
.aparts .apart__item--size {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width:1240px) {
  .aparts .apart__item--size {
    font-size: 16px;
  }
}
.aparts .apart__item--guests {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
}
.aparts .apart__item--guests span {
  padding-left: 12px;
}
@media (max-width:1240px) {
  .aparts .apart__item--guests {
    font-size: 16px;
  }
}
.aparts .apart__item--link {
  position: absolute;
  text-decoration: none;
  bottom: 36px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FDFDFD;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease;
}
.aparts .apart__item--link.right {
  right: 36px;
}
.aparts .apart__item--link:hover {
  background-color: #f2f2f2;
}
@media (max-width:700px) {
  .aparts .apart__item--link {
    display: none;
  }
}
.aparts .apart__item--images {
  padding: 36px;
  max-width: 908px;
}
.aparts .apart__item--images img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
@media (max-width:1530px) {
  .aparts .apart__item--images img {
    height: 318px;
  }
}
@media (max-width:1240px) {
  .aparts .apart__item--images img {
    height: 270px;
  }
}
.aparts .apart__item--images .swiper-horizontal > .swiper-pagination-bullets,
.aparts .apart__item--images .swiper-pagination-bullets.swiper-pagination-horizontal,
.aparts .apart__item--images .swiper-pagination-custom,
.aparts .apart__item--images .swiper-pagination-fraction {
  display: flex;
  justify-content: space-between;
  padding: 0 22px;
  bottom: 24px;
  width: 100%;
}
.aparts .apart__item--images .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.aparts .apart__item--images .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: calc(20% - 7px);
  background: #FDFDFD;
  height: 4px;
  opacity: unset;
  border-radius: 10px;
  opacity: unset;
}
.aparts .apart__item--images .swiper-pagination-bullet-active {
  background: #B8B5E1 !important;
}
@media (max-width:1530px) {
  .aparts .apart__item--images {
    max-width: 628px;
    height: 390px;
  }
}
@media (max-width:1240px) {
  .aparts .apart__item--images {
    max-width: 354px;
    height: auto;
    padding: 24px;
  }
}
@media (max-width:700px) {
  .aparts .apart__item--images {
    height: auto;
    padding: 32px 20px;
  }
}
.aparts .white_btn {
  margin-top: 72px;
}
@media (max-width:700px) {
  .aparts .white_btn {
    margin-top: 36px;
  }
}
@media (max-width:700px) {
  .aparts {
    margin: 92px 0;
  }
  .aparts .section-title {
    padding-bottom: 16px;
    max-width: 335px;
    margin: 0 auto;
  }
  .aparts .section-description {
    max-width: 335px;
    margin: 0 auto;
  }
}

.testimonials_section .section-title {
  margin-bottom: 60px;
}
@media (max-width:1530px) {
  .testimonials_section .section-title {
    margin-bottom: 60px;
    padding: 0;
  }
}
@media (max-width:1240px) {
  .testimonials_section .section-title {
    margin-bottom: 40px;
  }
}

.testimonials {
  background-image: url(../images/testimonials_bg.jpg);
  padding: 80px 0 115px 0;
  margin-bottom: 118px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  border-radius: 30px;
}
@media (max-width:1530px) {
  .testimonials {
    background-size: 100% calc(100% - 160px);
    padding: 0;
  }
}
@media (max-width:1240px) {
  .testimonials {
    margin-bottom: 138px;
  }
}
@media (max-width:700px) {
  .testimonials {
    background-size: cover;
    padding: 45px 0 145px 0;
    margin-bottom: 92px;
  }
}
.testimonials .row {
  align-items: center;
}
@media (max-width:1530px) {
  .testimonials .row {
    transform: translateY(20px);
  }
}
.testimonials__col {
  flex: 0 0 auto;
  width: calc(33.3333% - 23px);
  display: flex;
  flex-direction: column;
  gap: 35px 0;
}
@media (max-width:1240px) {
  .testimonials__col {
    width: calc(50% - 10px);
  }
  .testimonials__col:last-child {
    display: none;
  }
}
.testimonials__item {
  padding: 28px 32px;
  border-radius: 30px;
  background: #FDFDFD;
}
@media (max-width:1530px) {
  .testimonials__item:first-child {
    box-shadow: -16px -100px 28px 0px rgba(201, 201, 201, 0), -10px -64px 26px 0px rgba(201, 201, 201, 0.01), -6px -36px 22px 0px rgba(201, 201, 201, 0.05), -3px -16px 16px 0px rgba(201, 201, 201, 0.09), -1px -4px 9px 0px rgba(201, 201, 201, 0.1);
  }
  .testimonials__item:last-child {
    box-shadow: 0px 160px 45px 0px rgba(201, 201, 201, 0), 0px 102px 41px 0px rgba(201, 201, 201, 0.01), 0px 58px 35px 0px rgba(201, 201, 201, 0.05), 0px 26px 26px 0px rgba(201, 201, 201, 0.09), 0px 6px 14px 0px rgba(201, 201, 201, 0.1);
  }
}
.testimonials__item--rating {
  margin-bottom: 20px;
}
.testimonials__item--rating ul {
  display: flex;
  list-style: none;
  gap: 0 4px;
}
.testimonials__item--content {
  font-weight: 300;
  color: #16161A;
  margin-bottom: 20px;
}
.testimonials__item--author {
  font-weight: 300;
  color: #16161A;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px 0;
}
.testimonials__item--place {
  color: #B8B5E1;
}
.testimonials__swiper {
  overflow: visible;
}
.testimonials__swiper--navigation {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -118px;
  left: 0;
  right: 0;
  gap: 0 16px;
}
.testimonials__swiper--navigation .swiper-button-disabled {
  opacity: 0.7;
}

.birthday__slider {
  margin-bottom: 188px;
  position: relative;
}
@media (max-width:1240px) {
  .birthday__slider {
    margin-bottom: 112px;
  }
}
@media (max-width:700px) {
  .birthday__slider {
    margin-bottom: 92px;
  }
}
.birthday__slider--item {
  display: flex;
  flex-wrap: wrap;
  border-radius: 30px;
  border: 1px solid #949494;
  overflow: hidden;
}
.birthday__slider--image {
  flex: 0 0 auto;
  width: 50%;
}
.birthday__slider--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
@media (max-width:700px) {
  .birthday__slider--image {
    width: 100%;
  }
  .birthday__slider--image img {
    height: 200px;
  }
}
.birthday__slider--text {
  flex: 0 0 auto;
  width: 50%;
  padding: 80px 130px 0 36px;
  position: relative;
}
@media (max-width:1530px) {
  .birthday__slider--text {
    padding: 80px 75px 75px 36px;
  }
}
@media (max-width:1240px) {
  .birthday__slider--text {
    padding: 48px 24px 50px 20px;
  }
}
@media (max-width:700px) {
  .birthday__slider--text {
    width: 100%;
    padding: 32px 20px 68px 20px;
  }
}
.birthday__slider--text-title {
  font-family: Overpass;
  font-size: 25px;
  margin-bottom: 36px;
}
@media (max-width:700px) {
  .birthday__slider--text-title {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
  }
}
.birthday__slider--text-description {
  font-weight: 300;
  line-height: 135%;
}
@media (max-width:700px) {
  .birthday__slider--text-description {
    font-size: 16px;
  }
  .birthday__slider--text-description br {
    display: none;
  }
}
.birthday__slider--text-action {
  position: absolute;
  right: 36px;
  bottom: 36px;
}
@media (max-width:700px) {
  .birthday__slider--text-action {
    right: 20px;
    bottom: 20px;
  }
}
.birthday__slider--navigation {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
}
.birthday__slider--navigation > div {
  cursor: pointer;
}
.birthday__slider--navigation > div.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width:1240px) {
  .birthday__slider--navigation {
    display: none;
  }
}
@media (max-width:700px) {
  .birthday__slider--navigation {
    margin-top: 36px;
    display: flex;
  }
}
.birthday__slider--pagination {
  bottom: -55px !important;
}
.birthday__slider--pagination .swiper-pagination-bullet {
  height: 4px;
  width: 93px;
  border-radius: 10px;
  background: #F2F2F2;
  opacity: 1;
}
.birthday__slider--pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #B8B5E1;
}

.map {
  margin-bottom: 188px;
}
.map .section-title {
  padding-bottom: 24px;
  margin-bottom: 88px;
  border-bottom: 1px solid #16161A;
}
@media (max-width:1240px) {
  .map {
    margin-bottom: 112px;
  }
  .map .section-title {
    margin-bottom: 60px;
  }
}
@media (max-width:700px) {
  .map {
    margin-bottom: 92px;
  }
  .map .section-title {
    margin-bottom: 40px;
    padding-bottom: 16px;
  }
}
.map #map {
  height: 590px;
  border-radius: 30px;
  border: 1px solid #949494;
  overflow: hidden;
}

.footer {
  padding: 80px 0 50px 0;
  border-radius: 30px 30px 0px 0px;
  background: #52515C;
  color: #FDFDFD;
}
@media (max-width:700px) {
  .footer {
    padding: 44px 0 82px 0;
  }
}
.footer__form {
  flex: 0 0 auto;
  width: 50%;
}
@media (max-width:1240px) {
  .footer__form {
    width: calc(50% - 16px);
  }
}
@media (max-width:700px) {
  .footer__form {
    width: 100%;
  }
}
.footer__form--title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width:1240px) {
  .footer__form--title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
@media (max-width:700px) {
  .footer__form--title {
    font-weight: 400;
  }
}
.footer__form--description {
  margin-bottom: 32px;
}
@media (max-width:700px) {
  .footer__form--description {
    font-weight: 400;
  }
}
.footer__form--input {
  max-width: 525px;
  margin-bottom: 16px;
}
.footer__form--input input {
  width: 100%;
  height: 46px;
  background-color: #FDFDFD;
  padding: 0 20px;
  border-radius: 20px;
  border: none;
  font-weight: 300;
}
.footer__form--input input::placeholder {
  color: #949494;
}
.footer__form--input textarea {
  width: 100%;
  height: 120px;
  padding: 12px 20px;
  border-radius: 20px;
}
.footer__form--input .button {
  color: #16161A;
  font-size: 20px;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid #16161A;
}
.footer__form--input.captcha img {
  max-width: 100%;
}
.footer__form--or {
  margin-bottom: 16px;
}
.footer__links {
  flex: 0 0 auto;
  width: 50%;
}
@media (max-width:1240px) {
  .footer__links {
    width: calc(50% - 16px);
  }
}
@media (max-width:700px) {
  .footer__links {
    width: 100%;
  }
}
.footer__links--row {
  display: flex;
  gap: 0 52px;
  margin-bottom: 60px;
}
.footer__links--row:nth-child(2) {
  margin-bottom: 20px;
}
@media (max-width:1240px) {
  .footer__links--row:nth-child(2) {
    flex-direction: column;
    margin-bottom: 35px;
  }
}
@media (max-width:1240px) {
  .footer__links--row {
    gap: 0 20px;
    margin-bottom: 40px;
  }
}
.footer__links--logo {
  min-width: 150px;
}
.footer__links--logo img {
  width: 116px;
}
@media (max-width:1240px) {
  .footer__links--logo {
    min-width: 145px;
  }
  .footer__links--logo img {
    max-width: 97px;
  }
}
.footer__links--requisites {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}
@media (max-width:1240px) {
  .footer__links--nav {
    margin-bottom: 35px;
  }
}
.footer__links--nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
@media (max-width:1240px) {
  .footer__links--nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer__links--nav ul li {
    flex: 0 0 auto;
    width: 145px;
  }
}
.footer__links--nav ul a {
  color: #FDFDFD;
  text-decoration: none;
}
.footer__links--contacts-title {
  font-size: 20px;
  color: #FFF;
  margin-bottom: 24px;
}
.footer__links--contacts-links {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin-bottom: 25px;
}
.footer__links--contacts-links a {
  color: #FFF;
  text-decoration: none;
}
.footer__links--contacts-links span {
  font-weight: 300;
  color: #D7D7D7;
}
.footer__links--contacts-links:nth-child(3) {
  padding-bottom: 16px;
  border-bottom: 1px solid #D7D7D7;
  margin-bottom: 35px;
}
.footer__links--contacts-links:nth-child(3) a:last-child {
  font-weight: 300;
  color: #D7D7D7;
}
.footer__links--social {
  margin-bottom: 50px;
}
@media (max-width:1240px) {
  .footer__links--social {
    margin-bottom: 32px;
  }
}
.footer__links--social ul {
  list-style: none;
  display: flex;
  gap: 0 32px;
}
@media (max-width:1240px) {
  .footer__links--social ul {
    gap: 0 22px;
  }
}
.footer__links--creator {
  color: #F4F4F4;
  padding-bottom: 36px;
  margin-bottom: 28px;
  border-bottom: 1px solid #D7D7D7;
}
@media (max-width:1240px) {
  .footer__links--creator {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.footer__links--offerta {
  display: flex;
  flex-direction: column;
  gap: 18px 0;
}
.footer__links--offerta a {
  color: #F4F4F4;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */