@charset "UTF-8";
.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.white-block {
  position: absolute;
  height: 40px;
  width: 60%;
  background-color: #fff;
}
.white-block-left {
  bottom: 0;
  left: -50px;
  transform: skew(45deg);
}
.white-block-right {
  top: 0;
  right: -50px;
  transform: skew(45deg);
}

.btn-special-animation {
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  z-index: -1;
}
.btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.section-heading {
  position: relative;
  margin-bottom: 1em;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  color: #e717bd;
  letter-spacing: 2px;
}

.section-padding {
  padding: 6em 2em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
  .section-padding {
    padding: 6em 2em;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.8rem;
  }
  .section-padding {
    padding: 7em 2em;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::after,
.burger-btn:hover .burger-btn__bars::before {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #fff;
  transition: width 0.3s;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
}

.imgflag {
  width: 30px;
  height: 20px;
}

.nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  background-image: linear-gradient(45deg, rgb(226, 20, 241), rgb(184, 10, 172));
  z-index: 100;
}
.nav--active {
  transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 2em;
  font-size: 2.8rem;
  color: #fff;
  text-decoration: none;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  background-color: #fff;
  transition: transform 0.3s;
  content: "";
}
.nav__item:hover::before {
  transform: scaleY(1);
}

@keyframes navItemsAnimation {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
.nav-items-animation {
  animation: navItemsAnimation 1s both;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: #2e2e2e;
}

.navbar {
  display: none;
  position: absolute;
  background-color: #ab2585;
  opacity: 0.7; /* Przy przewinięciu strony w dół staje się przezroczyste */
  width: 100%;
  transition: all 0.3s;
  z-index: 1000;
}

.translate {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 40px;
  z-index: 10000;
}
.translate .social-btn {
  padding: 0.4em;
  font-size: 1.6rem;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  color: #e717bd;
  transition: transform 0.3s;
}
.translate .social-btn:hover {
  transform: scale(1.3);
}
.translate .social-btn .imgflag {
  width: 30px;
  height: 20px;
}
.translate a {
  text-decoration: none;
  color: #e717bd;
}

.navbar ul {
  text-transform: uppercase;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  background-color: #ab2585;
}

.navbar li {
  padding: 10px;
}

.navbar a {
  text-decoration: none;
  color: white;
  transition: all 0.3s;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
}

.navbar a:hover {
  text-decoration: none;
  color: rgb(36, 5, 53);
}

.spacer {
  height: 35vh; /* Wysokość nagłówka */
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  height: 43vh;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/candy-big.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-attachment: scroll;
}
.header__heading {
  font-family: "Dancing Script", cursive;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 300;
}
.header__text {
  font-size: 1.4rem;
}
.header__btn {
  margin-top: 2em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #2e2e2e;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.header__btn::before {
  background-color: #eee;
}

.dreams {
  background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/domek.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.dreams .section-heading {
  color: #fff;
}
.dreams__box {
  display: flex;
  flex-direction: column;
  margin: 2em 0;
  padding: 1em;
}
.dreams__box-imgs-container {
  padding: 1em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.dreams__box-imgs-container-item {
  margin: 1em;
  width: 75px;
}
.dreams__box .icon {
  width: 100%;
}
.dreams__title {
  color: #fff;
  margin-bottom: 0.5em;
  text-align: center;
}
.dreams__text {
  font-size: 1.4rem;
  color: #fff;
}
.dreams__text-a {
  color: #000000;
}

.shadow {
  border-radius: 2em;
  background-color: rgba(8, 4, 4, 0.3882352941);
}

.hero-img {
  position: relative;
  padding: 10em 2em;
  background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/colorful-big.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-img__title {
  font-family: "Dancing Script", cursive;
  margin-bottom: 0.5em;
  font-size: 4.8rem;
}
.hero-img__text {
  padding: 1em 0;
}

.galerry .gallery__countainer {
  background: linear-gradient(45deg, rgba(166, 45, 150, 0.44), rgba(85, 33, 95, 0.621));
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: Helvetica, sans-serif;
  justify-content: center;
  min-height: 100vh;
  min-width: 100%;
  overflow-x: hidden;
  padding: 32px;
}
.galerry .gallery {
  background: linear-gradient(60deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  list-style-type: none;
}
.galerry .thumbnail {
  border: solid 3px rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 0 48px 2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  margin: 18px;
  max-height: 150px;
  max-width: 200px;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s;
}
.galerry .thumbnail:hover {
  transform: scale(1.2);
}
.galerry .thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.galerry .thumbnail img:focus,
.galerry .thumbnail img:focus {
  border: solid 5px rgb(78, 76, 226);
}
.galerry .popup {
  align-content: center;
  animation: fadeIn 0.3s;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1000000;
}
.galerry .popup.hidden {
  display: none;
}
.galerry .popup.fade-out {
  animation: fadeOut 0.3s both;
}
.galerry .popup__img {
  max-height: 80%;
  max-width: 80%;
}
.galerry .popup__close {
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  position: fixed;
  right: 64px;
  top: 64px;
}
.galerry .popup__arrow {
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  height: 28px;
  line-height: 28px;
  position: absolute;
  top: 50%;
  width: 28px;
}
.galerry .popup__close,
.galerry .popup__arrow {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.galerry .popup__close:hover,
.galerry .popup__arrow:hover {
  opacity: 1;
}
.galerry .popup__arrow--left {
  left: 5%;
}
.galerry .popup__arrow--right {
  right: 5%;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.sweets__card {
  position: relative;
  margin: 1em 0;
  height: 450px;
  color: #fff;
  text-align: center;
  perspective: 1000px;
}
.sweets__card:hover .sweets__card-img {
  transform: rotateY(-180deg);
  opacity: 0;
}
.sweets__card:hover .sweets__card-info {
  transform: rotateY(0);
  opacity: 1;
}
.sweets__card-img {
  padding: 2em;
  height: 100%;
  border-radius: 8px;
  background-size: cover;
  transition: transform 1s, opacity 1s;
}
.sweets__card-img--first {
  background-image: linear-gradient(45deg, rgba(107, 41, 108, 0), rgba(133, 4, 135, 0)), url("../img/jelles.jpg");
}
.sweets__card-img--second {
  background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/offercandy.jpg");
}
.sweets__card-img--third {
  background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/chocolate.jpg");
}
.sweets__card-img--fourth {
  background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/cake.jpg");
}
.sweets__card-img--fifth {
  background-image: linear-gradient(45deg, rgba(107, 41, 108, 0), rgba(133, 4, 135, 0)), url("../img/fontain.jpg");
}
.sweets__card-img-title {
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
}
.sweets__card-img-info {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 1.8rem;
}
.sweets__card-img-info i {
  margin-right: 0.3em;
}
.sweets__card-info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: radial-gradient(circle at top right, rgb(111, 21, 116) 0%, rgb(129, 43, 108) 100%);
  border-radius: 8px;
  opacity: 0;
  transform: rotateY(180deg);
  transition: transform 1s, opacity 1s;
}
.sweets__card-info-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.2em;
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
}
.sweets__card-info-list {
  margin: 0 auto;
  width: 70%;
  list-style: none;
}
.sweets__card-info-list-item {
  padding: 0.8em;
  font-size: 1.4rem;
  border-bottom: 1px solid #eee;
}
.sweets__card-info-list-item:last-child {
  border-bottom: none;
}
.sweets__card-info-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2em;
  padding: 1em;
  border-radius: 8px;
  width: 80%;
  border: none;
  background-color: #00ffaa;
  cursor: pointer;
}
.sweets__card-info-btn::before {
  background-color: #0fe29c;
}

.rooms {
  color: #e717bd;
  font-size: 1.5em;
  text-align: center;
  margin: 1em auto;
}

.gradient-line {
  height: 2px; /* Wysokość linii */
  background: linear-gradient(45deg, rgba(166, 45, 150, 0.44), rgba(85, 33, 95, 0.621));
  margin: 10px 0; /* Odstęp między liniami */
}

.prices2__box {
  border-radius: 2em;
  border: 2px solid #cc165f;
  display: flex;
  flex-direction: column;
  margin-bottom: 3em;
}
.prices2__title {
  padding-top: 1em;
  border-radius: 1em;
  text-align: center;
  margin-bottom: 0.2em;
  font-size: 2rem;
}
.prices2__text {
  padding: 1em;
  border-radius: 1em;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.prices2__room_box {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.prices2__room {
  background-image: linear-gradient(45deg, rgba(166, 45, 150, 0.44), rgba(85, 33, 95, 0.621));
  border-radius: 1em;
  width: 90%;
  height: 245px;
  padding: 0.5em;
  margin: 0.5em;
  text-align: center;
  transition: transform 0.3s;
  border: 2px solid purple;
}
.prices2__room--price {
  padding: 0.5em;
  font-weight: bold;
}
.prices2__room:hover {
  transform: scale(1.1);
}
.prices2__box_all {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prices2__room_all {
  background-image: linear-gradient(45deg, rgba(166, 45, 150, 0.44), rgba(85, 33, 95, 0.621));
  border-radius: 1em;
  width: 100%;
  height: 100px;
  padding: 1em;
  margin: 1em;
  text-align: center;
  transition: transform 0.3s;
  border: 2px solid purple;
  font-weight: bold;
}
.prices2__room_all:hover {
  transform: scale(1.1);
}
.prices2__room_all_2 {
  background-image: linear-gradient(45deg, rgba(166, 45, 150, 0.44), rgba(85, 33, 95, 0.621));
  border-radius: 1em;
  width: 100%;
  padding: 1em;
  margin: 1em;
  text-align: center;
  transition: transform 0.3s;
}

.offers {
  position: relative;
  background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/candes.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.offers .section-heading {
  color: #fff;
}
.offers__option {
  margin: 1em 0;
  box-shadow: 5px 5px 10px rgba(46, 46, 46, 0.18);
  background-color: #fff;
  overflow: hidden;
}
.offers__option-img {
  width: 100%;
  transition: transform 0.3s;
}
.offers__option-img:hover {
  transform: scale(1.1);
}
.offers__option-info {
  padding: 2em;
  background-color: #fff;
  z-index: 10;
}
.offers__option-heading {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
  font-weight: 300;
}
.offers__option-text {
  margin-bottom: 0.5em;
  font-size: 1.3rem;
  color: #2e2e2e;
}
.offers__option-btn {
  margin-top: 1em;
  padding: 0.8em;
  width: 100%;
  color: #fff;
  background-color: #e717bd;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.offers__option-btn::before {
  background-color: #cc165f;
}

@media (max-width: 767px) {
  .reviews.section-padding {
    padding: 6em 0;
  }
}
.reviews__box {
  position: relative;
  margin: 2em;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 3px 3px 10px rgba(46, 46, 46, 0.18);
  transition: transform 0.3s;
}
.reviews__box:hover {
  transform: scale(0.95);
}
.reviews__box-img {
  position: absolute;
  top: 8%;
  left: 75%;
  transform: translate(-50%, -50%);
}
.reviews__box-img img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.reviews__box-quote {
  margin-bottom: 1em;
  font-size: 3rem;
  color: #e717bd;
}
.reviews__box-text {
  margin-bottom: 1em;
  font-size: 1.4rem;
  color: #2e2e2e;
}

.contact {
  position: relative;
  background-color: #eee;
  overflow: hidden;
}
.contact .white-block-left {
  background-color: #2e2e2e;
}
.contact .contact-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .contact-info-item {
  width: 250px;
  height: 300px;
  margin: 10px;
}
.contact .contact-info-map {
  display: flex;
  width: 100%;
  height: 400px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact .contact-info-map img {
  width: 100%;
}
.contact .fa-facebook {
  font-size: 50px;
}

.facebook-icon {
  width: 150px;
  height: 150px;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/c/cd/Facebook_logo_%28square%29.png");
  background-size: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.facebook-icon:hover {
  transform: scale(1.1);
}

.facebook-icon:hover::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
}

.footer {
  color: #fff;
  background-color: #2e2e2e;
}
.footer .wrapper {
  padding: 6em 2em 2em;
}
.footer__box {
  font-size: 1.4rem;
}
.footer__box-desktop {
  display: none;
}
.footer__box-title {
  margin-bottom: 1em;
  font-size: 3rem;
  text-transform: uppercase;
}
.footer__box-social {
  margin: 2em 0 1em;
}
.footer__box-link {
  padding: 0 0.3em;
  font-size: 3.6rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__box-link:first-child {
  padding-left: 0;
}
.footer__box-link:hover {
  color: #eee;
}
.footer__bottom-text {
  padding: 2em;
  text-align: center;
}

@media (min-width: 576px) {
  .burger-btn {
    display: none;
  }
  .navbar {
    display: block;
  }
  .translate {
    display: flex;
  }
  .dreams__box {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
  }
  .dreams__box-text {
    width: 100%;
  }
  .dreams__box-text--right {
    text-align: left;
  }
  .dreams__box-imgs-container {
    padding: 1em;
    display: flex;
    justify-content: center;
  }
  .dreams__box-imgs-container-item {
    margin: 1em;
    width: 100px;
  }
  .dreams .icon {
    width: 100%;
  }
  .dreams__img {
    margin-bottom: 0;
    max-height: 300px;
  }
  .offers__option {
    display: flex;
    margin: 2em 0;
    width: 100%;
  }
  .offers__option-img {
    width: 50%;
    height: auto;
  }
  .offers__option-img--right {
    order: 1;
  }
  .offers__option-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .offers__option-heading {
    margin-bottom: 0.5em;
    font-size: 3.6rem;
  }
  .offers__option-btn {
    padding: 1em;
  }
  .prices2__title {
    padding-top: 1em;
    font-size: 3.2rem;
  }
  .prices2__text {
    padding: 1em;
    font-size: 2rem;
  }
  .prices2__room_box {
    width: 100%;
  }
  .prices2__room {
    width: 40%;
    height: 250px;
    padding: 1em;
    margin: 1em;
  }
  .prices2__room--price {
    padding: 0.5em;
  }
  .prices2__room_all {
    width: 50%;
    height: 100px;
    padding: 1em;
    margin: 1em;
  }
  .prices2__room_all_2 {
    width: 100%;
    padding: 1em;
    margin: 1em;
  }
}
@media (min-width: 768px) {
  .white-block {
    height: 50px;
    width: 45%;
  }
  .header__heading {
    font-size: 6.6rem;
  }
  .header__text {
    font-size: 2.2rem;
  }
  .header__btn {
    font-size: 1.6rem;
  }
  .dreams__text {
    font-size: 1.8rem;
  }
  .hero-img {
    padding: 20rem 2em;
  }
  .hero-img hr {
    margin: 0 auto;
    width: 70%;
  }
  .hero-img__text {
    font-size: 2.2rem;
  }
  .galerry .gallery__countainer {
    padding: 64px;
  }
  .galerry .gallery {
    padding: 64px;
  }
  .galerry .thumbnail {
    margin: 24px;
  }
  .galerry .popup__close {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 64px;
    position: fixed;
    right: 64px;
    top: 64px;
  }
  .galerry .popup__arrow {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 64px;
    height: 64px;
    line-height: 64px;
    position: absolute;
    top: 50%;
    width: 64px;
  }
  .prices2__title {
    padding-top: 1em;
    margin-bottom: 0.2em;
    font-size: 2.4rem;
  }
  .prices2__text {
    padding: 1em;
    font-size: 1.6rem;
  }
  .prices2__room_box {
    width: 100%;
  }
  .prices2__room {
    width: 29%;
    height: 250px;
    padding: 1em;
    margin: 1em;
  }
  .prices2__room--price {
    padding: 0.5em;
  }
  .prices2__room_all {
    width: 50%;
    height: 100px;
    padding: 1em;
    margin: 1em;
  }
  .prices2__room_all_2 {
    width: 100%;
    padding: 1em;
    margin: 1em;
  }
  .sweets__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .sweets__card {
    margin: 1em;
    width: 45%;
  }
  .container th h1 {
    font-size: 1em;
  }
  .container td {
    font-size: 1em;
  }
  .footer__boxes {
    display: flex;
    justify-content: space-between;
  }
  .footer__box-desktop {
    display: block;
  }
  .footer__box {
    margin: 0 2em;
    width: 25%;
  }
  .footer__box:first-child {
    width: 50%;
  }
  .footer__box-title {
    font-size: 2.4rem;
  }
  .footer__box-list {
    list-style: none;
  }
  .footer__box-list-item {
    margin-bottom: 1em;
  }
  .footer__box-list-item a {
    color: #eee;
    text-decoration: none;
  }
}
@media (min-width: 992px) {
  .burger-btn {
    top: 50px;
    right: 50px;
  }
  .header {
    background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/candy-big.jpg");
  }
  .header__heading {
    font-size: 10rem;
  }
  .nav__item {
    font-size: 4.8rem;
  }
  .dreams__box {
    margin: 5em 0;
  }
  .dreams__box-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 2.5em;
  }
  .dreams__title {
    font-size: 3.6rem;
  }
  .dreams__text {
    font-size: 2.2rem;
  }
  .hero-img {
    padding: 20rem 2em;
    background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/colorful-big.jpg");
  }
  .hero-img__title {
    font-size: 7.2rem;
  }
  .hero-img hr {
    width: 60%;
    max-width: 900px;
  }
  .offers {
    background-image: linear-gradient(45deg, rgba(89, 42, 69, 0), rgba(85, 33, 95, 0)), url("../img/candes.jpg");
  }
  .offers__option-img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 300px;
  }
  .offers__option-text {
    font-size: 1.5rem;
  }
  .prices2__box {
    border-radius: 2em;
    border: 2px solid #cc165f;
    margin-bottom: 3em;
  }
  .prices2__title {
    padding-top: 1em;
    border-radius: 1em;
    text-align: center;
    margin-bottom: 0.2em;
    font-size: 2.3rem;
  }
  .prices2__title-price {
    font-size: 1.6rem;
  }
  .prices2__text {
    padding: 0.5em;
    font-size: 1.2rem;
  }
  .prices2__room_box {
    width: 100%;
  }
  .prices2__room {
    width: 12%;
    height: 200px;
    padding: 1em;
    margin: 1em;
  }
  .prices2__room--price {
    padding: 0.2em;
  }
  .prices2__room--price--text {
    font-size: 1.2rem;
  }
  .prices2__room_all {
    width: 40%;
    height: 100px;
    padding: 1em;
    margin: 1em;
  }
  .prices2__room_all_2 {
    width: 100%;
    padding: 1em;
    margin: 1em;
  }
}
@media (min-width: 1100px) {
  .sweets__card {
    width: 30%;
  }
  .galerry .gallery__countainer {
    padding: 64px;
  }
  .galerry .gallery {
    padding: 64px;
  }
  .galerry .thumbnail {
    margin: 32px;
  }
  .galerry .popup__close {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 128px;
    position: fixed;
    right: 64px;
    top: 64px;
  }
  .galerry .popup__arrow {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 128px;
    height: 128px;
    line-height: 128px;
    position: absolute;
    top: 50%;
    width: 128px;
  }
}/*# sourceMappingURL=main.css.map */