*,
*::after,
*::before {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

button {
  outline: none;
  border-style: none;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
}

@font-face {
  font-family: "Corporate-A-Bold";
  src: url("../fonts/Corporate-A-Bold.woff2") format("woff2"),
    url("../fonts/Corporate-A-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  background: linear-gradient(180deg, #070a1b 0%, #2a3170 100%);
}

.container {
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
}

.header,
.footer {
  background: #070a1b;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.header__logo {
  margin-left: 115px;
}

.list {
  display: flex;
}

.list__item + .list__item {
  margin-left: 30px;
}
.list__link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s;
}

.list__link:hover {
  background-color: #c1a1d2;
}

.header__content {
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.header__content::before {
  content: "";
  position: absolute;
  background-image: url(../images/decor.svg);
  width: 50px;
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}

.title {
  font-family: "Corporate-A-Bold";
  margin-bottom: 5px;
  font-size: 72px;
  line-height: 120%;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.title-descr {
  font-size: 24px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 50px;
}

.concept {
  padding-top: 150px;
  margin-bottom: 150px;
}

.concept__inner {
  max-width: 900px;
  margin-left: auto;
}

.section__title {
  font-family: "Corporate-A-Bold";
  font-size: 18px;
  color: #f402a2;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.concept__text {
  font-size: 24px;
  margin-bottom: 25px;
  line-height: 120%;
}

.premier {
  margin-bottom: 150px;
}

.premier__inner {
  display: flex;
  gap: 60px;
}

.premier__text {
  margin-bottom: 23px;
}

.premier__img {
  margin-bottom: 20px;
}

.premier__btn {
  display: block;
  width: 100%;
  font-family: "Corporate-A-Bold";
  font-size: 18px;
  line-height: 120%;
  color: #f402a2;
  text-align: center;
  padding: 14px;
  text-transform: uppercase;
  border: 1px solid #f402a2;
  transition: all 0.5s;
}

.premier__btn:hover {
  color: #53a1cb;
  border: 1px solid #53a1cb;
}

.video {
  margin-bottom: 150px;
}

.video__img {
  margin-bottom: 25px;
}

.video__btn {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  font-family: "Corporate-A-Bold";
  font-size: 18px;
  line-height: 120%;
  color: #f402a2;
  padding: 14px;
  text-transform: uppercase;
  border: 1px solid #f402a2;
  transition: all 0.5s;
}

.video__btn span {
  padding-top: 2px;
}

.video__btn:hover {
  color: #53a1cb;
  border: 1px solid #53a1cb;
}

.video__btn path {
  transition: all 0.5s;
}
.video__btn:hover path {
  fill: #53a1cb;
}

.desing__interior {
  display: grid;
  grid-template-columns: 255px 255px auto 330px;
  grid-template-rows: auto auto;
  gap: 14px 44px;
  margin-bottom: 100px;
}

.desing__cell-one {
  grid-row: 1/3;
}

.desing__cell-two {
  grid-row-end: -1;
  display: flex;
  align-items: flex-end;
}

.desing__cell-three {
  grid-row-end: -1;
  grid-column-end: -1;
  display: flex;
  align-items: flex-end;
}

.desing__interior-img {
  grid-column: 2/-1;
}

.desing__cell-text {
  margin-bottom: 15px;
}

.desing-slider__item {
  margin: 0 30px;
}

.slick-track {
  margin-left: -35px;
}

.desing-slider {
  padding-bottom: 25px;
}

.arrow {
  position: absolute;
  z-index: 10;
  bottom: 0;
  cursor: pointer;
  left: 50%;
}

.arrow-left {
  transform: translateX(-80px);
}

.arrow-right {
  transform: translateX(30px);
}

.desing__box {
  max-width: 590px;
  margin: 150px auto;
  padding: 0 10px;
  display: flex;
  gap: 60px;
}

.desing__box-column {
  flex-basis: 255px;
}

.desing__box-text {
  margin-bottom: 15px;
}

.desing__img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 300px;
}
