html {
  font-size: 62.5%;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

body {
  font-family: "Roboto Serif", sans-serif;
  line-height: 1;
  font-size: 1.4rem;
  color: black;
  background: linear-gradient(to bottom, #ead6ee, #a0f1ea);
}

.wrapper {
  max-width: 1600px;
  margin: 0 auto;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding-top: 5rem;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-image {
  width: 25rem;
  height: 25rem;
  object-fit: cover;
  flex-shrink: 0;
}
.header-image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-content {
  padding-left: 2rem;
}
.header-number {
  margin: 1rem 0;
}
.header-desc {
  font-weight: 700;
  line-height: 1.3;
  word-spacing: 3px;
  font-size: 2rem;
}
.header-info {
  margin-top: 1rem;
  font-size: 2rem;
  font-family: "Kaushan Script", cursive;
  word-spacing: 3px;
  font-size: 3rem;
}
.header a {
  color: black;
  transition: all 0.3s linear;
}
.header a:hover {
  color: blue;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 3rem;
  }
  .header-container {
    display: block;
  }
  .header-image {
    width: 20rem;
    height: 20rem;
    object-fit: cover;
    margin: 0 auto 1rem;
  }
  .header-content {
    padding-left: 0;
  }
  .header-desc {
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
  }
  .header-info {
    font-size: 2rem;
  }
}
@media screen and (max-width: 413px) {
  .header-image {
    width: 20rem;
    height: 20rem;
    object-fit: cover;
  }
  .header-desc {
    font-size: 1.8rem;
  }
  .header-info {
    font-size: 1.6rem;
  }
}

.number {
  margin-top: 10rem;
}
.number-caption {
  width: max-content;
  margin: 0 auto;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: 4rem;
  font-weight: 700;
  color: #d74177;
}
.number-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: linear-gradient(to right, #d74177, #ffe98a);
}
.number-item {
  text-align: center;
  width: 20%;
  padding: 2rem;
}
.number-item:not(:last-child) {
  border-right: 2px solid white;
}
.number-size {
  display: block;
  font-size: 3rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}
.number-price {
  font-size: 3rem;
  color: white;
  font-weight: 700;
}
@media screen and (max-width: 1279px) {
  .number {
    margin-top: 8rem;
  }
  .number-size {
    font-size: 2rem;
  }
  .number-price {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .number {
    margin-top: 5rem;
  }
  .number-item {
    padding: 2rem;
  }
  .number-size, .number-price {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .number-list {
    display: block;
  }
  .number-item {
    width: auto;
  }
  .number-item:not(:nth-child(888)) {
    border-right: 0;
  }
  .number-item:not(:last-child) {
    border-bottom: 2px solid white;
  }
  .number-size, .number-price {
    font-size: 4rem;
  }
}

.neon {
  margin-top: 10rem;
}
.neon-caption {
  text-transform: uppercase;
  font-size: 5rem;
  font-family: "Kaushan Script", cursive;
  font-weight: 700;
  position: relative;
  width: max-content;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  margin-bottom: 4rem;
}
.neon-caption::before {
  content: "";
  position: absolute;
  width: 6rem;
  height: 5px;
  background-color: #d74177;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.neon-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.neon-item {
  width: calc(33.3333333333% - 1rem);
  position: relative;
  cursor: pointer;
}
.neon-item:hover .neon-fb {
  opacity: 1;
  visibility: visible;
}
.neon-image {
  width: 50rem;
  height: 40rem;
  object-fit: cover;
}
.neon-fb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  background: linear-gradient(to right, rgba(0, 171, 197, 0.7), rgba(255, 255, 126, 0.7));
  z-index: 10;
}
.neon-fb i {
  width: 5rem;
  height: 5rem;
  background-color: blue;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 1rem 0;
}
@media screen and (max-width: 1023px) {
  .neon-image {
    width: 40rem;
    height: 30rem;
    object-fit: cover;
  }
  .neon-fb {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .neon {
    margin-top: 5rem;
  }
  .neon-caption {
    font-size: 4rem;
  }
  .neon-list {
    display: grid;
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    grid-gap: 0 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .neon-list::-webkit-scrollbar {
    display: none;
  }
  .neon-item {
    scroll-snap-align: center;
    width: auto;
  }
}

.images {
  margin-top: 10rem;
}
.images-caption {
  font-size: 5rem;
  font-weight: 700;
  color: #12c2e9;
  text-transform: uppercase;
  max-width: 95rem;
  margin: 0 auto 3rem;
}
.images-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 65rem;
}
.images-column {
  width: 25%;
}
.images-item {
  position: relative;
  height: 50%;
  cursor: pointer;
}
.images-item:hover .images-content {
  opacity: 1;
  visibility: visible;
}
.images-item--full {
  height: 100%;
}
.images-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.images-content {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  font-weight: 700;
}
@media screen and (max-width: 1439px) {
  .images-content {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .images-caption {
    font-size: 4rem;
  }
  .images-list {
    flex-wrap: wrap;
    overflow: hidden;
    height: auto;
  }
  .images-column {
    width: 50%;
  }
  .images-item {
    height: 40rem;
  }
  .images-item--full {
    height: 80rem;
  }
}
@media screen and (max-width: 767px) {
  .images {
    margin-top: 5rem;
  }
  .images-caption {
    font-size: 2.1rem;
  }
  .images-list {
    display: block;
  }
  .images-column {
    width: auto;
  }
  .images-item, .images-item--full {
    height: auto;
  }
}

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