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

body {
  width: 100%;
  min-height: 100vh;
  font-family: "League Spartan", sans-serif;
  max-width: 1400px;
  margin-inline: auto;
  position: relative;
}
body .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: #000;
  opacity: 0.4;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 1024px) {
  body {
    align-content: center;
  }
}

img {
  display: block;
}

p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #A0A0A0;
}

.room {
  width: 100%;
  height: auto;
  position: relative;
  padding: 48px 24px 0px;
}
@media screen and (min-width: 768px) {
  .room {
    padding: 48px 64px 0;
  }
}
@media screen and (min-width: 1024px) {
  .room {
    display: flex;
    align-items: flex-start;
    height: 535px;
    justify-content: space-between;
    padding: 0;
  }
}
.room-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .room-content {
    top: 50px;
    left: 50px;
  }
  .room-content--shop {
    top: 0;
    left: 0;
  }
}
.room__nav {
  display: none;
}
.room__nav--active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 110px;
  width: 100%;
  background-color: #fff;
  padding: 0 30px;
  z-index: 10;
  align-items: center;
}
.room__nav ul {
  display: flex;
  gap: 32px;
  list-style-type: none;
}
@media screen and (min-width: 1024px) {
  .room__nav {
    margin-left: 40px;
    display: block;
    position: relative;
    background-color: transparent;
    height: auto;
    width: fit-content;
    padding: 0;
  }
  .room__nav ul {
    gap: 32px;
  }
  .room__nav ul li {
    position: relative;
  }
  .room__nav ul li:hover::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    background-color: #fff;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 8px);
  }
}
.room__link {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.7px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .room__link {
    color: #fff;
  }
}
.room__close {
  width: 16px;
  height: 16px;
  margin-right: auto;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .room__close {
    display: none;
    margin-right: 0;
  }
}
.room__menu {
  width: 20px;
  height: 14px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .room__menu {
    display: none;
  }
}
.room .logo {
  object-fit: contain;
  margin-left: 50%;
  transform: translateX(-100%);
}
@media screen and (min-width: 1024px) {
  .room .logo {
    margin-left: 0;
    transform: translateX(0%);
    width: 62px;
    height: 13px;
  }
}
.room__picture {
  width: 100%;
  height: 360px;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .room__picture {
    width: 50%;
    height: 535px;
  }
}
@media screen and (min-width: 1200px) {
  .room__picture {
    width: 55%;
  }
}
.room__arrows {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 112px;
  height: 56px;
  display: flex;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .room__arrows {
    width: 160px;
    height: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .room__arrows {
    transform: translate(100%, -1px);
  }
}
.room__arrow--btn[aria-disabled=true] {
  background-color: grey;
}
.room__arrow--btn {
  flex-grow: 1;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
  background-color: #000;
  transition: background-color 0.3s ease;
}
.room__arrow--btn > svg {
  width: 9px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .room__arrow--btn > svg {
    width: 12px;
    height: 24px;
  }
}
.room__arrow--btn:hover {
  background-color: #444444;
}
.room__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.room__texts {
  width: 100%;
  padding: 64px 0;
  position: relative;
  margin-top: 300px;
}
@media screen and (min-width: 1024px) {
  .room__texts {
    margin-top: 0;
    padding: 64px 100px;
    width: 600px;
    height: 534px;
    align-content: center;
  }
}
.room__title {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .room__title {
    font-size: 48px;
  }
}
.room__text {
  margin-bottom: 32px;
}
.room__subtitle {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 13px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s linear;
}
.room__subtitle:hover {
  color: #A0A0A0;
}
.room__arrow {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .room__arrow {
    margin-left: 16px;
  }
}

.main {
  min-height: auto;
}

.about {
  height: auto;
}
@media screen and (min-width: 1024px) {
  .about {
    height: 266px;
    display: flex;
  }
}
.about__picture {
  width: 100%;
  height: 238px;
}
@media screen and (min-width: 768px) {
  .about__picture {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .about__picture {
    height: 100%;
    width: 420px;
  }
}
.about__picture--footer {
  height: 227px;
}
@media screen and (min-width: 768px) {
  .about__picture--footer {
    height: 243px;
  }
}
@media screen and (min-width: 1024px) {
  .about__picture--footer {
    height: 100%;
  }
}
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about__img {
    object-fit: fill;
  }
}
.about__texts {
  padding: 48px 24px;
}
@media screen and (min-width: 768px) {
  .about__texts {
    padding: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .about__texts {
    width: 580px;
    font-size: 16px;
  }
}
.about__title {
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 5.83px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
