/*#region general*/

:root {
  --Yellow-200: #FEC31B;
  --Yellow-100: #FEE71B;
  --Yellow-60: #FFF06A;

  --Grey-100: #171B27;
  --Grey-80: #232933;
  --Grey-70: #303640;
  --Grey-60: #464E5C;
  --Grey-50: #5C6575;
  --Grey-40: #828B99;
  --Grey-30: #BDC4D1;
  --Grey-20: #E0E3E9;
  --Grey-10: #F0F1F3;
  --Grey-5: #FAFBFC;
  --Grey-0: #FFFFFF;

  --System-Error: #CD3E13;
  --System-Green: #49B715;
  --System-Blue: #159AB7;

  --nav-height: 84px;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

/* img {
  max-width: 100%;
  width: 100%;
  height: auto;
} */

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}

textarea {
  resize: none;
}

textarea:placeholder {
  color: var(--Grey-40);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.large-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 72px;
  color: var(--Grey-80);

  width: 230px;
  height: 56px;
  background-color: var(--Yellow-100);
  border-color: transparent;
  border-radius: 100px;
}

.large-button:active,
.large-button--active,
.large-button:focus {
  background-color: var(--Yellow-60);
}

.large-button:hover {
  background-color: var(--Yellow-200);
}

.large-button--disabled,
.large-button:disabled {
  background-color: var(--Grey-20);
  color: var(--Grey-40);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

/*#endregion*/

/*#region nav*/

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px 40px;

  background-color: var(--Grey-0);

  position: sticky;
  top: 0;

  z-index: 100;
}

.nav__logo {
  height: 72px;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  /* height: 72px; */
  color: var(--Grey-100);
  font-weight: 400;

  border-bottom: var(--Grey-100) 1px transparent;
  border-top: 1px solid transparent;
}

.nav__link--active,
.nav__link:active {
  font-weight: 500;
  border-bottom: var(--Grey-100) 1px solid;
  border-top: 1px solid transparent;
}

.nav__link:hover {
  /* text-decoration: underline; */
  border-bottom: var(--Grey-100) 1px solid;
  border-top: 1px solid transparent;
}

.nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 72px;
  color: var(--Grey-80);

  width: 200px;
  height: 48px;
  background-color: var(--Yellow-100);
  border-radius: 100px;
}

.nav__btn:active,
.nav__btn--active,
.nav__btn:focus {
  background-color: var(--Yellow-60);
}

.nav__btn:hover {
  background-color: var(--Yellow-200);
}

.nav__btn--disabled,
.nav__btn:disabled {
  background-color: var(--Grey-20);
  color: var(--Grey-40);
}

/*#endregion*/

/*#region header*/

.header {
  min-height: 500px;
  height: calc(60vh - var(--nav-height));
  position: relative;
}

.header__slide-content {
  padding: 40px 64px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
}

.header__slide-title {
  font-size: 40px;
  font-style: normal;
  color: var(--Grey-0);
  font-weight: 700;
  line-height: 56px;
  max-width: 400px;
}

/* .header__image {
  object-fit: cover;
} */

/*#endregion*/

/*#region header__swiper*/

.header__swiper {
  height: 100%;
  overflow: hidden;
}

.swiper__slide {
  height: 100%;
}

.header__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.header__swiper-btns {
  position: absolute;
  bottom: 40px;
  right: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__swiper-button-next img {
  transform: rotate(180deg);
}

.swiper-button-disabled {
  background-color: var(--Grey-5) !important;
}

.swiper-button-disabled img {
  filter: opacity(30%);
}

.header__swiper-btn {
  display: block;
  background-color: var(--Grey-20);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 33;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.header__swiper-btn:hover {
  background-color: var(--Yellow-200);
}

/* .header__swiper-btn:focus {
  background-color: var(--Yellow-100);
} */

.header__swiper-btn:active {
  background-color: var(--Yellow-100);
}

.header__swiper-btn:disabled {
  background-color: var(--Grey-5);
}

.header__swiper-btn:disabled img {
  opacity: 0.3;
}

.header__swiper-button-prev,
.header__swiper-button-next {
  position: relative;
}

/* .header__swiper-btn::after {
  font-size: 12px !important;
  color: var(--Grey-100);
  background-color: var(--Grey-20);
  padding: 6px 8px;
  border-radius: 50%;
} */

/*#endregion*/

/*#region main*/

.container {
  padding: 80px 64px;
  overflow-y: visible;
  overflow-x: clip;
  position: relative;
  max-width: 1455px;
  margin: 0 auto;
}

/*#endregion*/

/*#region products*/

.products {
  background-color: var(--Grey-10);
}

.products__title {
  color: var(--Grey-80, #232933);

  font-size: 32px;
  font-style: normal;
  font-weight: 700;

  margin-bottom: 32px;
}

.products__swiper {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.products__swiper .swiper-wrapper {
  /* flex-wrap: wrap; */
}

.products__swiper-btns {
  position: absolute;
  top: 80px;
  right: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.products__swiper-button-next img {
  transform: rotate(180deg);
}

.products__swiper-btn {
  display: block;
  background-color: var(--Grey-20);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 33;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.products__swiper-btn:hover {
  background-color: var(--Yellow-200);
}

/* .products__swiper-btn:focus {
  background-color: var(--Yellow-100);
} */

.products__swiper-btn:active {
  background-color: var(--Yellow-100);
}

.products__swiper-btn:disabled {
  background-color: var(--Grey-5);
}

.products__swiper-btn:disabled img {
  opacity: 0.3;
}

.products__swiper-button-prev,
.products__swiper-button-next {
  position: relative;
}

/*#endregion*/

/*#region product*/

.product__card {
  position: relative;

  width: 304px;
  height: 416px;

  overflow: visible;
}

.product__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;

  position: absolute;
  top: 0;
  z-index: 5;

  height: max-content;

  background-color: var(--Grey-0);

  border-radius: 8px;

  /* Shadow */
  box-shadow: 2px 6px 4px 2px rgba(72, 79, 86, 0.10), -2px -2px 4px 2px rgba(72, 79, 86, 0.10);
}


.product__desc {
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: space-between;
  gap: 13px;

  width: 100%;
  padding: 24px 12px 32px;
}

.product__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product__measure {
  display: none;
}

.product__btn {
  display: none;
  width: 100%;
}

.product__card:hover,
.product__card-content:hover {
  z-index: 10;
}

.product__card:hover .product__btn,
.product__card-content:hover .product__btn {
  display: flex;
}

.product__card:hover .product__measure,
.product__card-content:hover .product__measure {
  display: block;
}

.product__more {
  transition: all 0.5s ease;
}

.product__card:hover .product__more,
.product__card-content:hover .product__more {
  transform: rotate(180deg);
}

.swiper-slide:hover {
  position: relative;
  z-index: 10;
}

/*#endregion*/

/*#region beds*/

.beds {
  background-color: var(--Grey-0);
}

.beds .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
}

.beds__desc {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 28px;
}

.beds__title {
  color: var(--Grey-80, #232933);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
}

.beds__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.beds__icon {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
}

.beds__icon-text {
  color: var(--Grey-80, #232933);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.beds__description {
  color: var(--Grey-80, #232933);

  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
}

/*#endregion*/

/*#region gallery*/

.gallery {
  background-color: var(--Grey-10);
}

.gallery__title {
  color: var(--Grey-80, #232933);

  font-size: 32px;
  font-style: normal;
  font-weight: 700;

  margin-bottom: 32px;
}

.gallery__swiper {
  overflow-x: clip;
  overflow-y: visible;
}

.gallery__swiper-btns {
  position: absolute;
  top: 80px;
  right: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gallery__swiper-button-next img {
  transform: rotate(180deg);
}

.gallery__swiper-btn {
  display: block;
  background-color: var(--Grey-20);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 33;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.gallery__swiper-btn:hover {
  background-color: var(--Yellow-200);
}

/* .gallery__swiper-btn:focus {
  background-color: var(--Yellow-100);
} */

.gallery__swiper-btn:active {
  background-color: var(--Yellow-100);
}

.gallery__swiper-btn:disabled {
  background-color: var(--Grey-5);
}

.gallery__swiper-btn:disabled img {
  opacity: 0.3;
}

.gallery__swiper-button-prev,
.gallery__swiper-button-next {
  position: relative;
}

.gallery__card,
.gallery__card-content {
  background-color: var(--Grey-0);
}

.gallery__card {
  width: 416px;
  /* height: 543px; */
  height: 530px;
}

.gallery__card-content {
  border-radius: 8px;
  background: var(--Grey-0, #FFF);

  /* Shadow */
  box-shadow: 2px 6px 4px 2px rgba(72, 79, 86, 0.10), -2px -2px 4px 2px rgba(72, 79, 86, 0.10);
}

.gallery__card-desc {
  padding: 24px 16px 32px;
}

.gallery__card-title {
  color: var(--Grey-80, #232933);

  /* font-size: 32px; */
  font-size: 20px;
  font-style: normal;
  font-weight: 700;

  margin-bottom: 8px;
}

.gallery__card-description {
  color: var(--Grey-80, #232933);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  margin-bottom: 20px;
}

.gallery__card-more-btn {
  display: flex;
  justify-content: start;
  align-items: center;
}

.gallery__card-more-btn--active img {
  transform: rotate(180deg);
}

.gallery__card-more-btn span {
  color: var(--Grey-80, #232933);

  /* font-size: 24px; */
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

/*#endregion*/

/*#region collections*/
.collections__content {
  /* display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px; */
}

.collections__title {
  color: var(--Grey-80, #232933);

  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;

  margin-bottom: 32px;
}

.collection {
  height: 304px;
  width: 304px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.collection__btn:hover {
  cursor: pointer;
}

.collection__image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;

  border-radius: 8px;
}

.collection__title {
  color: #FFF;
  text-align: center;
  text-transform: uppercase;

  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px
}

.collection__description {
  color: #FFF;
  text-align: center;
  text-transform: uppercase;

  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.4px;

  margin-bottom: 40px;
}

.collections__swiper-btns {
  position: absolute;
  top: 80px;
  right: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.collections__swiper {
  overflow-x: clip;
}

.collections__swiper-button-next img {
  transform: rotate(180deg);
}

.collections__swiper-btn {
  display: block;
  background-color: var(--Grey-20);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 33;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.collections__swiper-btn:hover {
  background-color: var(--Yellow-200);
}

/* .collection__swiper-btn:focus {
  background-color: var(--Yellow-100);
} */

.collections__swiper-btn:active {
  background-color: var(--Yellow-100);
}

.collections__swiper-btn:disabled {
  background-color: var(--Grey-5);
}

.collections__swiper-btn:disabled img {
  opacity: 0.3;
}

.collections__swiper-button-prev,
.collections__swiper-button-next {
  position: relative;
}

/*#endregion*/

/*#region video*/

.video {
  background-color: var(--Grey-10);
}

.video__content {
  overflow: clip;
}

.video__title {
  color: var(--Grey-80, #232933);

  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.4px;

  margin-bottom: 32px;
}

.video__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 64px;

  /* margin: 0 32px; */
}

.video__card-text {
  color: var(--Grey-80, #232933);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  max-width: 545px;

  margin: auto;
}


.video__swiper-btns {
  position: absolute;
  top: 80px;
  right: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.video__swiper-button-next img {
  transform: rotate(180deg);
}

.video__swiper-btn {
  display: block;
  background-color: var(--Grey-20);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 33;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.video__swiper-btn:hover {
  background-color: var(--Yellow-200);
}

/* .video__swiper-btn:focus {
  background-color: var(--Yellow-100);
} */

.video__swiper-btn:active {
  background-color: var(--Yellow-100);
}

.video__swiper-btn:disabled {
  background-color: var(--Grey-5);
}

.video__swiper-btn:disabled img {
  opacity: 0.3;
}

.video__swiper-button-prev,
.video__swiper-button-next {
  position: relative;
}

/*#endregion*/


/*#region reviews*/

.reviews__title {
  color: #404040;

  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.4px;

  margin-bottom: 32px;
}

.reviews__btns {
  position: absolute;
  top: 80px;
  right: 64px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.reviews__btn {
  width: 200px;
  height: 48px;
}

.reviews__swiper-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews__swiper {
  overflow-x: clip;
}

.reviews__swiper-button-next img {
  transform: rotate(180deg);
}

.reviews__swiper-btn {
  display: block;
  background-color: var(--Grey-20);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 33;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.reviews__swiper-btn:hover {
  background-color: var(--Yellow-200);
}

/* .reviews__swiper-btn:focus {
  background-color: var(--Yellow-100);
} */

.reviews__swiper-btn:active {
  background-color: var(--Yellow-100);
}

.reviews__swiper-btn:disabled {
  background-color: var(--Grey-5);
}

.reviews__swiper-btn:disabled img {
  opacity: 0.3;
}

.reviews__swiper-button-prev,
.reviews__swiper-button-next {
  position: relative;
}

.reviews__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 12px;

  width: 304px;
  height: 224px;

  padding: 12px;
  
  border-radius: 8px;
  background: var(--Grey-10, #F0F1F3);
}

.reviews__card-top-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 16px;

  width: 100%;
}

.reviews__card-header {
  width: 100%;
}

.reviews__card-title {
  color: var(--Grey-80, #232933);

  /* Headings/H4 */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.reviews__card-stars {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: start;
  gap: 2px;
}

.reviews__card-date {
  color: var(--Grey-40, #828B99);

  /* Text/Secondary */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}

.reviews__card-image {
  width: 48px;
  height: 48px;

  border-radius: 8px;
}

.reviews__card-icon {
  width: 36px;
  height: 36px;
}

.reviews__card-text {
  color: var(--Grey-80, #232933);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.reviews__card-more-btn--active .reviews__card-arrow {
  transform: rotate(180deg);
}

.reviews__card-more-btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4px;
}

.reviews__card-more-btn span {
  color: var(--Grey-80, #232933);

  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.6px;
}

.reviews__card-star-active {
  display: none;
}

.reviews__stars-1 .reviews__card-star-label:nth-child(1) .reviews__card-star-active {
  display: block;
}

.reviews__stars-1 .reviews__card-star-label:nth-child(1) .reviews__card-star {
  display: none;
}

.reviews__stars-2 .reviews__card-star-label:nth-child(1) .reviews__card-star-active {
  display: block;
}

.reviews__stars-2 .reviews__card-star-label:nth-child(1) .reviews__card-star {
  display: none;
}

.reviews__stars-2 .reviews__card-star-label:nth-child(2) .reviews__card-star-active {
  display: block;
}

.reviews__stars-2 .reviews__card-star-label:nth-child(2) .reviews__card-star {
  display: none;
}

.reviews__stars-3 .reviews__card-star-label:nth-child(1) .reviews__card-star-active {
  display: block;
}

.reviews__stars-3 .reviews__card-star-label:nth-child(1) .reviews__card-star {
  display: none;
}

.reviews__stars-3 .reviews__card-star-label:nth-child(2) .reviews__card-star-active {
  display: block;
}

.reviews__stars-3 .reviews__card-star-label:nth-child(2) .reviews__card-star {
  display: none;
}

.reviews__stars-3 .reviews__card-star-label:nth-child(3) .reviews__card-star-active {
  display: block;
}

.reviews__stars-3 .reviews__card-star-label:nth-child(3) .reviews__card-star {
  display: none;
}

.reviews__stars-4 .reviews__card-star-label:nth-child(1) .reviews__card-star-active {
  display: block;
}

.reviews__stars-4 .reviews__card-star-label:nth-child(1) .reviews__card-star {
  display: none;
}

.reviews__stars-4 .reviews__card-star-label:nth-child(2) .reviews__card-star-active {
  display: block;
}

.reviews__stars-4 .reviews__card-star-label:nth-child(2) .reviews__card-star {
  display: none;
}

.reviews__stars-4 .reviews__card-star-label:nth-child(3) .reviews__card-star-active {
  display: block;
}

.reviews__stars-4 .reviews__card-star-label:nth-child(3) .reviews__card-star {
  display: none;
}

.reviews__stars-4 .reviews__card-star-label:nth-child(4) .reviews__card-star-active {
  display: block;
}

.reviews__stars-4 .reviews__card-star-label:nth-child(4) .reviews__card-star {
  display: none;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(1) .reviews__card-star-active {
  display: block;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(1) .reviews__card-star {
  display: none;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(2) .reviews__card-star-active {
  display: block;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(2) .reviews__card-star {
  display: none;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(3) .reviews__card-star-active {
  display: block;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(3) .reviews__card-star {
  display: none;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(4) .reviews__card-star-active {
  display: block;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(4) .reviews__card-star {
  display: none;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(5) .reviews__card-star-active {
  display: block;
}

.reviews__stars-5 .reviews__card-star-label:nth-child(5) .reviews__card-star {
  display: none;
}



/*#endregion*/

/*#region maps*/

.maps {
  background-color: var(--Grey-10);
}

.maps__title {
  color: var(--Grey-80, #232933);

  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.4px;

  margin-bottom: 32px;
}

.maps__map {
  /* max-height: calc(100vh - var(--nav-height)); */
  max-height: calc(70vh - var(--nav-height));
  overflow: hidden;

  position: relative;

}

.maps__map-img {
  width: 100%;
}

.maps__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 65px;
}

.maps__btn {
  position: absolute;
  top: 26px;
  left: 26px;

  width: 254px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FFF;
  border: transparent;

  border-radius: 9px;

  color: #0369F0;
  font-family: Inter;
  font-size: 26.24px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.048px;
}

.maps__satelite {
  position: absolute;
  bottom: 26px;
  left: 26px;
  
  border-radius: 8.747px;
  border: 2.187px solid #FFF;

  display: flex;
  width: 87.467px;
  justify-content: center;
  align-items: center;
}

.maps__satelite img {
  /* width: 100%; */

  border-radius: 8.747px;
}

.maps__zoom-btn {
  position: absolute;
  bottom: 26px;
  right: 26px;
  
  border: 1px solid transparent;
  border-radius: 8.747px;

  display: flex;
  width: 87.467px;
  justify-content: center;
  align-items: center;
}

/*#endregion*/


/*#region footer*/

.footer__hr {
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.50) 51.16%, rgba(255, 255, 255, 0.10) 100.23%);
  border: 0px solid transparent;

  margin-bottom: 48px;
}

.footer {
  background-color: var(--Grey-70);
  padding: 72px 72px 23px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
}

.footer__logo {
  height: 133px;
}

.footer__logo:hover {
  cursor: pointer;
}

.footer__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;

  margin-bottom: 73px;
}

.footer__first-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 21px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: start;
  gap: 20px;
}

.footer__contact {
  color: var(--Grey-20, #E0E3E9) !important;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}

.footer__second {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  gap: 120px;
}

.footer__second-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 20px;
}

.footer__title {
  color: var(--Grey-20, #E0E3E9);

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20.8px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 16px;
}

.footer__item {
  color: var(--Grey-20, #E0E3E9);

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.footer__link {
  color: var(--Grey-20, #E0E3E9);

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;

  border-bottom: transparent 1.5px solid;

  padding-bottom: 2px;
}

.footer__link--active,
.footer__link:active {
  font-weight: 600;
  border-bottom: var(--Grey-20) 1.5px solid;
  /* border-top: 1.5px solid transparent; */
}

.footer__link:hover {
  /* text-decoration: underline; */
  border-bottom: var(--Grey-20) 1.5px solid;
  /* border-top: 1.5px solid transparent; */
}

.footer__third {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: start;
  gap: 20px;
}

.footer__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 24px;
}

.footer__copyright {
  color: var(--Grey-20, #E0E3E9);

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}

/*#endregion*/

/*#region goto-top*/

#goto-top {
  position: fixed;
  display: block;
  z-index: 99;
  width: 40px;
  height: 40px;
  background-color: var(--Grey-10);
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  bottom: 40px;
  right: 40px;
  display: none;
  /* Hide the button by default */
}

#goto-top:hover {
  background-color: var(--Yellow-200);
}

#goto-top:focus {
  border: 1px solid var(--Yellow-100);
}

#goto-top:active {
  background-color: var(--Yellow-100);
}

#goto-top:disabled {
  background-color: var(--Grey-5);
}

#goto-top:disabled img {
  opacity: 0.3;
}

/*#endregion*/

/*#region modal order*/

.order__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030304E1;
  z-index: 999;
  overflow: auto;
}

.order__modal--active {
  display: block;
}

.order__modal-content {
  background-color: var(--Grey-0);
  border-radius: 4px;
  padding: 40px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.order__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.order__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 28px;

  min-width: 640px;
}

.order__label span {
  color: var(--Grey-80, #232933);

  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.order__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 8px;

  width: 100%;
}

.order__input {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--Grey-40);
  border-radius: 4px;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.order__input:focus {
  outline: none;
}

.order__input::placeholder {
  color: var(--Grey-40, #828B99);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.order__error {
  color: var(--Grey-80, #232933);

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}

.order__error--active,
.error .order__error {
  color: var(--System-Error, #CD3E13);
}

.error .order__input {
  border-color: var(--System-Error, #CD3E13);
}

/* #modell {
  color: var(--Grey-40, #828B99);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
} */

.order__option {
  color: var(--Grey-80, #232933);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  display: block;
}

.order__option:hover {
  background-color: var(--Grey-10, #F0F1F3);
}

.order__option--disabled {
  color: var(--Grey-40, #828B99);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.order__textarea {
  min-height: 175px;
}

.order__btn {
  border: transparent;
}

/*#endregion*/

/*#region custom select*/

.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
  /*hide original SELECT element: */
}

.select-selected {
  width: 100%;
  height: 48px;
  border: 1px solid var(--Grey-40);
  border-radius: 4px;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 20px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 15px;
}

.select-items {
  border: 1px solid var(--Grey-40);
  border-radius: 4px;
  max-height: 700%;
}

.select-items div,
.select-selected {
  padding: 12px 24px;

  cursor: pointer;
}

.select-items {
  position: absolute;
  background-color: var(--Grey-0);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: scroll;
}

.select-hide {
  display: none;
}

.select-items div:hover {
  background-color: var(--Grey-10);
}

.same-as-selected {
  background-color: var(--Grey-20);
}

/*#endregion*/

/*#region review-modal*/

.review__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030304E1;
  z-index: 999;
  overflow: auto;
}

.review__modal--active {
  display: block;
}

.review__modal-content {
  background-color: var(--Grey-0);
  border-radius: 4px;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.review__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.review__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 28px;

  min-width: 640px;
}

.review__label span {
  color: var(--Grey-80, #232933);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.review__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 8px;

  min-width: 640px;
  min-height: 78px;
}

.review__input {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--Grey-40);
  border-radius: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.review__input:focus {
  outline: none;
}

.review__input::placeholder {
  color: var(--Grey-40, #828B99);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.review__stars {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 32px;
}

.review__error {
  color: var(--Grey-80, #232933);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}

.review__error--active,
.error .review__error {
  color: var(--System-Error, #CD3E13);
}

.review__textarea {
  min-height: 143px;
}

.review__star-active {
  display: none;
}

.review__stars-1 .review__star-label:nth-child(1) .review__star-active {
  display: block;
}

.review__stars-1 .review__star-label:nth-child(1) .review__star {
  display: none;
}

.review__stars-2 .review__star-label:nth-child(1) .review__star-active {
  display: block;
}

.review__stars-2 .review__star-label:nth-child(1) .review__star {
  display: none;
}

.review__stars-2 .review__star-label:nth-child(2) .review__star-active {
  display: block;
}

.review__stars-2 .review__star-label:nth-child(2) .review__star {
  display: none;
}

.review__stars-3 .review__star-label:nth-child(1) .review__star-active {
  display: block;
}

.review__stars-3 .review__star-label:nth-child(1) .review__star {
  display: none;
}

.review__stars-3 .review__star-label:nth-child(2) .review__star-active {
  display: block;
}

.review__stars-3 .review__star-label:nth-child(2) .review__star {
  display: none;
}

.review__stars-3 .review__star-label:nth-child(3) .review__star-active {
  display: block;
}

.review__stars-3 .review__star-label:nth-child(3) .review__star {
  display: none;
}

.review__stars-4 .review__star-label:nth-child(1) .review__star-active {
  display: block;
}

.review__stars-4 .review__star-label:nth-child(1) .review__star {
  display: none;
}

.review__stars-4 .review__star-label:nth-child(2) .review__star-active {
  display: block;
}

.review__stars-4 .review__star-label:nth-child(2) .review__star {
  display: none;
}

.review__stars-4 .review__star-label:nth-child(3) .review__star-active {
  display: block;
}

.review__stars-4 .review__star-label:nth-child(3) .review__star {
  display: none;
}

.review__stars-4 .review__star-label:nth-child(4) .review__star-active {
  display: block;
}

.review__stars-4 .review__star-label:nth-child(4) .review__star {
  display: none;
}

.review__stars-5 .review__star-label:nth-child(1) .review__star-active {
  display: block;
}

.review__stars-5 .review__star-label:nth-child(1) .review__star {
  display: none;
}

.review__stars-5 .review__star-label:nth-child(2) .review__star-active {
  display: block;
}

.review__stars-5 .review__star-label:nth-child(2) .review__star {
  display: none;
}

.review__stars-5 .review__star-label:nth-child(3) .review__star-active {
  display: block;
}

.review__stars-5 .review__star-label:nth-child(3) .review__star {
  display: none;
}

.review__stars-5 .review__star-label:nth-child(4) .review__star-active {
  display: block;
}

.review__stars-5 .review__star-label:nth-child(4) .review__star {
  display: none;
}

.review__stars-5 .review__star-label:nth-child(5) .review__star-active {
  display: block;
}

.review__stars-5 .review__star-label:nth-child(5) .review__star {
  display: none;
}


/*#endregion*/

/*#region privacy-policy*/

.privacy__modal, .terms__modal, .impressum__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030304E1;
  z-index: 999;
  overflow: auto;
}

.privacy__modal--active, .terms__modal--active, .impressum__modal--active {
  display: block;
}

.privacy__modal-content {
  background-color: var(--Grey-0);
  border-radius: 4px;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.privacy__modal-close, .terms__modal-close, .impressum__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.privacy__modal-title {
  color: var(--Grey-80, #232933);

  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;

  margin-bottom: 20px;
}

.privacy__modal-text {
  color: var(--Grey-80, #232933);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}



/*#endregion*/

/*#region success-modal*/

.success__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030304E1;
  z-index: 999;
  overflow: auto;
}

.success__modal--active {
  display: block;
}

.success__modal-content {
  background-color: var(--Grey-0);
  border-radius: 4px;
  padding: 40px 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;

  min-width: 310px;
  width: 310px;
}

.success__modal-title {
  color: var(--Grey-70, #303640);
  text-align: center;

  /* Headings/H3 */
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
}

.success__modal-text {
  color: var(--Grey-70, #303640);
  text-align: center;

  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}

.success__modal-btn {
  display: flex;
  /* width: 240px; */
  height: 56px;
  padding: 0px 80px;
  justify-content: center;
  align-items: center;

  border-radius: 100px;
  border-color: transparent;
  background: var(--System-Success, #49B715);
}

/*#endregion*/

/*#region error-modal*/

.error__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030304E1;
  z-index: 999;
  overflow: auto;
}

.error__modal--active {
  display: block;
}

.error__modal-content {
  background-color: var(--Grey-0);
  border-radius: 4px;
  padding: 40px 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;

  min-width: 310px;
  width: 310px;
}

.error__modal-icon {
  background-color: var(--System-Error);
  padding: 13px;
  border-radius: 50%;
}

.error__modal-title {
  color: var(--Grey-70, #303640);
  text-align: center;

  /* Headings/H3 */
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
}

.error__modal-text {
  color: var(--Grey-70, #303640);
  text-align: center;

  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}

.error__modal-btn {
  color: var(--Grey-0);
  display: flex;
  /* width: 240px; */
  height: 56px;
  /* padding: 0px 80px; */
  justify-content: center;
  align-items: center;

  border-radius: 100px;
  border-color: transparent;
  background: var(--System-Error, #FF0000);
}

/*#endregion*/