:root {
  --color-main: #FFF9E4;
  --color-white: #FFFFFF;
  --color-text: #282522;
  --color-placeholder: #8E8B8B;
  --color-gradient: linear-gradient(180deg, #FFD332 0%, #FFDE66 100%);
  --border-radius: 32px;
  --box-shadow: 0px 2.767px 2.214px 0px rgba(157, 118, 15, 0.02), 0px 6.65px 5.32px 0px rgba(157, 118, 15, 0.03), 0px 12.522px 10.017px 0px rgba(157, 118, 15, 0.04), 0px 22.336px 17.869px 0px rgba(157, 118, 15, 0.04), 0px 41.778px 33.422px 0px rgba(157, 118, 15, 0.05), 0px 100px 80px 0px rgba(157, 118, 15, 0.07);
  --text-shadow: 2px 2px #282522;
  --gap: 30px;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--color-main);
  font-family: "Inter", sans-serif;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner {
  background: url("/front/image/banner.jpg");
  height: 256px;
  border: 2px solid;
  border-color: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.main {
  width: 100%;
  flex: 1;
}

.footer {
  width: 100%;
}

.page {
  width: 100%;
  margin-top: 1rem;
}
.page h1 {
  text-transform: uppercase;
}

.container {
  width: 1280px;
}

.card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--box-shadow);
}

.header__menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__lang {
  width: 24px;
  height: auto;
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  gap: 1.25rem;
  text-shadow: var(--text-shadow);
}

.home {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.vip_hot {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 2fr 2fr;
}

.top {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
}
.top__object {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  padding: 0.5rem;
}
.top__object-property {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: space-between;
}
.top__object-text {
  flex: 1;
  height: 32px;
  background: var(--color-white);
  border-radius: 8px;
  display: flex;
  gap: 0.5rem;
  padding: 0 0.5rem;
  align-items: center;
}
.top__object-price {
  font-size: 20px;
  font-weight: 600;
}
.top__object-address {
  font-size: 14px;
}
.top__object-button {
  flex: 0 1 2rem;
  background: var(--color-white);
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.about-us {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 2fr 1fr;
}
.about-us > div:nth-child(1) {
  grid-area: 1/1/3/4;
}
.about-us > div:nth-child(2) {
  grid-area: 1/4/2/5;
}
.about-us > div:nth-child(3) {
  grid-area: 2/4/3/5;
}

.vip__image {
  height: 264px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 1rem;
}

.footer {
  margin-top: var(--gap);
}
.footer__block {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 3fr 1fr 1fr 1fr;
}
.footer__block > a {
  text-align: center;
  height: 150px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.footer__phone span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  font-size: 55px;
}
.footer__text {
  padding: var(--gap);
  text-align: center;
}

.card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.card__title {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 800;
}
.card__button {
  border-radius: 1rem;
  background: var(--color-gradient);
  width: 78px;
  height: 78px;
  display: flex;
  align-self: center;
  justify-content: center;
  position: relative;
  font-size: 0;
}
.card__button::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 100%;
  background-image: url(/front/image/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 32px;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

p {
  padding: 0.5rem 0;
}/*# sourceMappingURL=styles.css.map */