@charset "UTF-8";
:root {
  --color-primary: #eb2f64;
  --color-primary-light: #ff3366;
  --color-primary-dark: #ba265d;
  --color-Grey-light-1: #faf9f9;
  --color-Grey-light-2: #f4f2f2;
  --color-Grey-light-3: #f0eeee;
  --color-Grey-light-4: #ccc;
  --color-Grey-dark-1: #333;
  --color-Grey-dark-2: #777;
  --color-Grey-dark-3: #999;
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  --line: 1px solid #999;
}

* {
  padding: 0;
  margin: 0;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
@media (max-width: 68.75rem) {
  html {
    font-size: 50%;
  }
}

body {
  background-image: linear-gradient(to right bottom, var(--color-primary-light), var(--color-primary-dark));
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-Grey-dark-2);
}

.container {
  max-width: 80%;
  background-color: var(--color-Grey-light-2);
  margin: 8rem auto;
  box-shadow: var(--shadow-dark);
}
@media (max-width: 75rem) {
  .container {
    margin: 0;
    max-width: 100%;
  }
}

.header {
  height: 7rem;
  background-color: #fff;
  border-bottom: var(--color-Grey-light-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
}
@media (max-width: 31.43rem) {
  .header {
    flex-wrap: wrap;
    min-height: 13rem;
  }
}

.content {
  display: flex;
}
@media (max-width: 45.9rem) {
  .content {
    flex-direction: column;
  }
}

.sidebar {
  background-color: var(--color-Grey-dark-1);
  flex: 0 0 18%;
  color: white;
  min-height: 100%;
}

.hotel-view {
  flex: 1;
}

.logo {
  height: 3.2rem;
  margin-left: 2rem;
}

.search {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
}
@media (max-width: 31.43rem) {
  .search {
    flex: 0 0 100%;
    order: 2;
    background: var(--color-Grey-light-2);
  }
}
.search .search-input {
  font-family: inherit;
  font-size: inherit;
  border-radius: 2rem;
  padding: 1rem 2rem;
  transition: all 0.3s;
  border: none;
  background: var(--color-Grey-light-2);
  width: 90%;
  margin-right: -3.5rem;
}
@media (max-width: 31.43rem) {
  .search .search-input {
    width: 100%;
  }
}
.search .search-input:focus {
  width: 100%;
  background: var(--color-Grey-light-3);
  outline: none;
}
.search .search-input:focus + button {
  background: var(--color-Grey-light-3);
}
.search button {
  background: var(--color-Grey-light-2);
  border: none;
  cursor: pointer;
}
.search button .search-icon {
  width: 2rem;
  height: 2rem;
  fill: var(--color-Grey-dark-3);
}
.search button:active {
  transform: translateY(2px);
}

.user-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-nav .user-nav-icon-box {
  position: relative;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.user-nav .user-nav-icon-box .user-nav-icon {
  width: 3rem;
  height: 3rem;
}
.user-nav .user-nav-icon-box .user-nav-name {
  font-size: 1.6rem;
  font-weight: bold;
}
.user-nav .user-nav-icon-box img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
}
.user-nav .user-nav-icon-box:hover {
  background: var(--color-Grey-light-1);
}
.user-nav .user-nav-icon-box .user-nav-notification {
  color: white;
  background: var(--color-primary);
  border-radius: 50%;
  height: 1.5rem;
  width: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.8rem;
}

.sidebar-container {
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 45.9rem) {
  .sidebar-container {
    padding: 0;
  }
}
.sidebar-container .sideabar-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
}
@media (max-width: 45.9rem) {
  .sidebar-container .sideabar-top {
    flex-direction: row;
  }
}
.sidebar-container .sideabar-top .nav-link {
  position: relative;
  margin-bottom: 0.5rem;
  padding: 1.4rem;
  text-transform: uppercase;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: 100%;
}
@media (max-width: 45.9rem) {
  .sidebar-container .sideabar-top .nav-link {
    margin-bottom: 0;
    padding: 2.4rem;
    justify-content: center;
  }
}
@media (max-width: 31.43rem) {
  .sidebar-container .sideabar-top .nav-link {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.6rem;
  }
}
.sidebar-container .sideabar-top .nav-link p {
  z-index: 9;
}
.sidebar-container .sideabar-top .nav-link span {
  z-index: 9;
}
.sidebar-container .sideabar-top .nav-link span svg {
  width: 2rem;
  height: 2rem;
  fill: white;
}
.sidebar-container .sideabar-top .nav-link::before {
  content: "";
  width: 0.3rem;
  height: 100%;
  background-color: var(--color-primary);
  left: 0;
  position: absolute;
  transform: scaleY(0);
  transition: transform 0.2s, width 0.2s cubic-bezier(1, 0, 0, 1) 0.2s;
}
.sidebar-container .sideabar-top .nav-link:hover::before {
  transform: scaleY(1);
  width: 100%;
}
.sidebar-container .sideabar-top .active-link::before {
  transform: scaleY(1);
  width: 100%;
}
.sidebar-container .sidebar-bottom {
  text-align: center;
  font-size: 1.3rem;
}
@media (max-width: 45.9rem) {
  .sidebar-container .sidebar-bottom {
    display: none;
  }
}

.gallary {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallary .gallery-item {
  width: 100%;
}
.gallary .gallery-item img {
  width: inherit;
}

.over-view {
  padding: 0;
  margin-top: -0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--line);
}
.over-view .left-overview {
  padding-left: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.over-view .left-overview h1 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-Grey-dark-2);
}
@media (max-width: 25.62rem) {
  .over-view .left-overview h1 {
    font-size: 1.4rem;
  }
}
.over-view .left-overview .star-icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--color-primary);
}
@media (max-width: 25.62rem) {
  .over-view .left-overview .star-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.over-view .right-overview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 25.62rem) {
  .over-view .right-overview {
    gap: 1rem;
  }
}
.over-view .right-overview .overview-location {
  display: flex;
  justify-content: center;
  align-items: center;
}
.over-view .right-overview .overview-location .overview-button-inlined {
  font-size: 1.3rem;
  color: var(--color-primary);
  border: none;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid currentColor;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s;
}
.over-view .right-overview .overview-location .overview-button-inlined:hover {
  color: var(--color-Grey-dark-1);
}
.over-view .right-overview .overview-location .overview-button-inlined:active {
  outline: none;
  animation: pulsate 1s infinite;
}
@media (max-width: 25.62rem) {
  .over-view .right-overview .overview-location .overview-button-inlined {
    font-size: 1.1rem;
  }
}
.over-view .right-overview .overview-location .location-icon {
  width: 2.5rem;
  height: 2.5rem;
  fill: var(--color-primary);
}
@media (max-width: 25.62rem) {
  .over-view .right-overview .overview-location .location-icon {
    width: 2rem;
    height: 2rem;
  }
}
.over-view .right-overview .overviw-votes {
  display: flex;
  flex-direction: column;
  background-color: var(--color-primary);
  padding: 1rem;
  color: white;
  text-align: center;
  gap: 1;
}
.over-view .right-overview .overviw-votes .reviews {
  font-size: 1.5rem;
}
@media (max-width: 25.62rem) {
  .over-view .right-overview .overviw-votes .reviews {
    font-size: 1rem;
  }
}
@media (max-width: 25.62rem) {
  .over-view .right-overview .overviw-votes {
    padding: 0.8rem;
  }
}

.details {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 43.75rem) {
  .details {
    flex-direction: column;
    gap: 2rem;
  }
}
.details .description {
  flex: 0 0 60%;
  box-shadow: var(--shadow-light);
  background-color: var(--color-Grey-light-1);
  padding: 3rem;
  font-size: 1.4rem;
}
.details .description .paragraph {
  margin-bottom: 2.5rem;
  color: var(--color-Grey-dark-2);
  font-weight: 500;
}
.details .description .paragraph:not(:nth-child(1)) {
  border-bottom: var(--line);
  padding-bottom: 3rem;
}
.details .description .advantages {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
  padding: 0 2rem;
  border-bottom: var(--line);
  padding-bottom: 3rem;
}
@media (max-width: 45.9rem) {
  .details .description .advantages {
    gap: 1;
  }
}
.details .description .advantages .advantage {
  flex: 1;
  list-style: none;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-Grey-dark-2);
}
@media (max-width: 25.62rem) {
  .details .description .advantages .advantage {
    font-size: 1.2rem;
  }
}
.details .description .advantages .advantage::before {
  content: "";
  width: 1rem;
  height: 1rem;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url(../img/chevron-thin-right.svg);
          mask-image: url(../img/chevron-thin-right.svg);
  display: inline-block;
  background-color: var(--color-primary);
  margin-right: 0.6rem;
}
.details .description .recommends {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.details .description .recommends .para-recommend {
  font-size: 1.3rem;
}
.details .description .recommends .user-recommends {
  display: flex;
}
.details .description .recommends .user-recommends img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 0.3rem solid white;
}
.details .description .recommends .user-recommends img:not(:last-child) {
  margin-right: -2rem;
}
.details .user-reviews {
  align-self: stretch;
  flex-grow: 1;
}
.details .user-reviews .review {
  box-shadow: var(--shadow-light);
  background-color: var(--color-Grey-light-1);
  padding: 3rem;
  position: relative;
}
.details .user-reviews .review .review-paragraph {
  font-size: 1.4rem;
  padding-bottom: 2rem;
}
.details .user-reviews .review:not(:last-child) {
  margin-bottom: 3rem;
}
.details .user-reviews .review .review-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.details .user-reviews .review .review-details .review-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.details .user-reviews .review .review-details .review-info img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
}
.details .user-reviews .review .review-details .review-info .review-info-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.details .user-reviews .review .review-details .review-info .review-info-details .review-info-name {
  font-size: 1.5rem;
  color: var(--color-Grey-dark-2);
}
.details .user-reviews .review .review-details .review-info .review-info-details .review-info-date {
  color: var(--color-Grey-dark-3);
}
.details .user-reviews .review .review-details .review-num {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 300;
}
.details .user-reviews .review::before {
  content: "“";
  position: absolute;
  top: -4rem;
  left: 0.4rem;
  font-size: 13rem;
  color: var(--color-Grey-light-3);
  font-family: sans-serif;
}
.details .user-reviews .show-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.details .user-reviews .show-container .show {
  font-size: 1.5rem;
  border: none;
  outline: none;
  color: var(--color-primary);
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var(--color-primary);
  cursor: pointer;
}
.details .user-reviews .show-container .show-arrow {
  margin-left: 0.4rem;
}
.details .user-reviews .show-container .show:active {
  animation: pulsate 1s infinite;
}
.details .user-reviews .show-container .show:hover {
  color: var(--color-Grey-dark-1);
  border-bottom: 0.1rem solid var(--color-Grey-dark-1);
}
.details .user-reviews .show-container .show:hover .show-arrow {
  margin-left: 1rem;
  transition: all 0.3s;
}

.cta {
  text-align: center;
  padding: 4rem 0;
}
@media (max-width: 43.75rem) {
  .cta {
    padding: 1rem 0 3rem 0;
  }
}
.cta-book-now {
  color: var(--color-Grey-dark-1);
  font-weight: 300;
  margin-bottom: 2rem;
}
@media (max-width: 25.62rem) {
  .cta-book-now {
    width: 80%;
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cta-book-btn {
  overflow: hidden;
  border: none;
  padding: 1.5rem 6rem;
  cursor: pointer;
  background: linear-gradient(to right, var(--color-primary-light), var(--color-primary-dark));
  border-radius: 7rem;
  color: white;
  position: relative;
  transition: all 0.3s;
  font-size: 2rem;
}
.cta-book-btn:hover .cta-only {
  top: 1rem;
}
.cta-book-btn:hover .cta-book-text {
  position: relative;
  top: 4rem;
}
.cta-book-btn .cta-book-text {
  transition: all 0.2s;
  position: relative;
  top: 0;
}
.cta-book-btn .cta-only {
  display: block;
  top: -3rem;
  position: absolute;
  left: 4rem;
  transition: all 0.3s;
}
.cta-book-btn:hover {
  background: linear-gradient(to left, var(--color-primary-light), var(--color-primary-dark));
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}/*# sourceMappingURL=main.css.map */