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

body {
  background: #ffffff;
  color: #111;
  font-family: 'Gotham Book','Gotham','Century Gothic',Arial,Helvetica,sans-serif;
}

.container {
  width: 1120px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.slider,
.video-wrap {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.slider img,
.slider video,
.video-wrap video,
.video-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  min-height: 520px;
  padding: 70px 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr 250px;
  gap: 45px;
  align-items: start;
}

.about-left img {
  width: 100%;
  display: block;
}

.about-text {
  text-align: left;
  padding-top: 10px;
  padding-left: 40px;
}

.about-text h1,
.about-text h2 {
  font-family: 'Bauer','Bauer Bodoni',Georgia,'Times New Roman',serif;
  font-weight: 300;
  line-height: 0.9;
  color: #171717;
}

.about-text h1 {
  font-size: 76px;
}

.about-text h2 {
  font-size: 70px;
  margin-top: 8px;
}

.lead {
  font-family: 'Bauer','Bauer Bodoni',Georgia,'Times New Roman',serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 10px;
}

.line {
  width: 80px;
  height: 1px;
  background: #777;
  margin: 22px 0 18px;
}

.desc {
  text-align: left;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 22px;
  color: #333;
}

.desc-wide {
  grid-column: 2 / 4;
  padding-left: 40px;
  padding-right: 0;
  margin-top: -160px;
}

.about-right {
  padding-top: 35px;
  position: relative;
}

.about-right > img:first-child {
  width: 100%;
  display: block;
}

.about-right-badge {
  width: 120px;
  display: block;
  margin: -260px auto 0;
}

.interior {
  text-align: center;
  padding: 45px 0 80px;
}

.interior h2 {
  font-family: 'Bauer','Bauer Bodoni',Georgia,'Times New Roman',serif;
  font-size: 43px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #111;
}

.interior-single {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  line-height: 0;
}

.interior-image-wrap {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 0;
}

.building {
  width: 100%;
  line-height: 0;
}

.building img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  margin-top: 60px;
}

.cards {
  padding: 90px 0 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

.card h3 {
  font-size: 15px;
  margin-bottom: 18px;
}

.card {
  background: #f2f2f2;
  padding: 0 0 25px;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 22px 28px 0;
}

.card-body h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}

.interior-caption {
  display: block;
  background: #f2f2f2;
  padding: 18px 28px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.interior-caption strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #111;
}

@media (max-width: 900px) {
  .slider img,
  .slider video {
    height: auto;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-right {
    padding-top: 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}