@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Belleza&family=Oooh+Baby&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Belleza", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Belleza", sans-serif;
}

h1, h2 {
  font-family: "Belleza", sans-serif;
}

h3 {
  font-family: "Oooh Baby", cursive;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header {
  width: 100%;
  height: 11rem;
  position: fixed;
  top: 0;
  z-index: 3;
  background: -webkit-gradient(linear, left top, right top, from(#C4847A), color-stop(53%, #F9E1CB), to(#C7847B));
  background: linear-gradient(90deg, #C4847A 0%, #F9E1CB 53%, #C7847B 100%);
  -webkit-box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 15rem;
  gap: 3rem;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
header nav ul li {
  font-size: 2.5rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header nav ul li:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .logo {
  width: 19rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header .logo img {
  width: 100%;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
header .logo:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1.5rem;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
header .socials .social {
  background: rgb(191, 104, 146);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .socials .social:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .socials .social svg {
  width: 3rem;
  height: 3rem;
}

main {
  width: 100%;
  height: 100dvh;
  background-color: rgb(245, 218, 197);
  background-image: url(../img/main-background.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
  padding: 10rem 15rem;
  padding-top: 20rem;
}
main .main-txt {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .main-txt h1 {
  font-size: 6rem;
  font-weight: 400;
  max-width: 65rem;
  margin-bottom: 3rem;
}
main .main-txt h3 {
  font-size: 2.5rem;
  font-weight: 400;
  max-width: 55rem;
  margin-bottom: 3rem;
}
main .main-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .main-img img {
  width: 85%;
}

.btn {
  font-size: 3rem;
  background: rgb(196, 132, 122);
  color: #ffffff;
  padding: 0.6rem 2.4rem;
  border-radius: 10px;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.toggle {
  display: none;
}

#portfolio {
  width: 100%;
  position: relative;
}
#portfolio .swiper {
  width: 100%;
  margin-top: 5rem;
}
#portfolio .swiper .swiper-wrapper {
  width: 100%;
}
#portfolio .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  padding: 0 5rem;
}
#portfolio .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
#portfolio #portfolio-deco-1 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10rem;
  height: 10rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
#portfolio #portfolio-deco-2 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 10rem;
  height: 10rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

section {
  padding: 10rem 15rem;
  background: rgb(245, 218, 197);
}
section h2 {
  font-size: 5rem;
  color: rgb(196, 132, 122);
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}

/* Styl pro šipky */
.swiper-button-next,
.swiper-button-prev {
  color: #000 !important; /* Nastavení barvy */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
}

/* Styl pro šipky */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 4rem !important;
}

#offers {
  width: 100%;
  padding-top: 0;
  position: relative;
}
#offers .offers-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10rem;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
#offers .offers-wrapper .offer {
  width: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#offers .offers-wrapper .offer img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1.5rem;
}
#offers .offers-wrapper .offer h3 {
  font-size: 4rem;
  font-weight: 400;
  color: rgb(196, 132, 122);
  font-family: "Belleza", sans-serif;
  text-align: center;
  margin-bottom: 2.5rem;
}
#offers .offers-wrapper .offer span {
  background: rgb(196, 132, 122);
  padding: 0.5rem 1rem;
  font-size: 3rem;
  color: #ffffff;
  border-radius: 10px;
}
#offers .delivery {
  width: 80%;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem 5rem;
}
#offers .delivery p {
  font-size: 2.5rem;
  color: #000000;
  text-align: center;
}
#offers #offer-deco-3 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 15rem;
  height: 15rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
#offers #offer-deco-4 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 15rem;
  height: 15rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

#reviews {
  width: 100%;
  background: rgb(241, 238, 236);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
#reviews .reviews-txt {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-right: 5rem;
}
#reviews .reviews-txt h2 {
  text-align: start;
  margin-bottom: 5rem;
}
#reviews .reviews-txt p {
  font-size: 2.5rem;
  margin-bottom: 5rem;
}
#reviews .reviews-txt img {
  width: 85%;
  -o-object-fit: contain;
     object-fit: contain;
}
#reviews .reviews-slider {
  width: 70%;
  overflow: hidden;
}
#reviews .reviews-slider .swiper2 {
  width: 100%;
}
#reviews .reviews-slider .swiper2 .swiper-wrapper {
  width: 100%;
}
#reviews .reviews-slider .swiper2 .swiper-wrapper .swiper-slide {
  width: 100%;
  background: rgb(223, 213, 204);
}
#reviews .reviews-slider .swiper2 .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
#reviews .reviews-slider .swiper2 .swiper-wrapper .swiper-slide .review-label {
  width: 100%;
  padding: 3rem;
}
#reviews .reviews-slider .swiper2 .swiper-wrapper .swiper-slide .review-label p {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#reviews .reviews-slider .swiper2 .swiper-wrapper .swiper-slide .review-label span {
  font-size: 2rem;
  text-align: end;
}
#reviews #reviews-deco-5 {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 15rem;
  height: 15rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

#about {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
}
#about .about-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#about .about-txt h2 {
  text-transform: none;
  text-align: start;
  margin-bottom: 5rem;
}
#about .about-txt p {
  font-size: 2.5rem;
}
#about .about-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#about .about-img img {
  width: 85%;
  height: 85%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

#contact {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact .contact-wrapper {
  width: 100%;
  background: rgb(240, 238, 236);
  -webkit-box-shadow: 0px 20px 100px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 20px 100px 0px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#contact .contact-wrapper form {
  width: 70%;
  padding: 5rem 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact .contact-wrapper form h2 {
  text-align: start;
  margin-bottom: 5rem;
}
#contact .contact-wrapper form input {
  width: 100%;
  background: none;
  padding: 0.5rem;
  font-size: 2.5rem;
  outline: none;
  border: none;
  border-bottom: 2px solid #9b9b9b;
  margin-bottom: 2rem;
}
#contact .contact-wrapper form label {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#contact .contact-wrapper form input[type=date] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#contact .contact-wrapper form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 3rem;
  background: rgb(196, 132, 122);
  color: #ffffff;
  padding: 0.8rem 4.8rem;
  border-radius: 10px;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
  border: none;
  margin-top: 2rem;
}
#contact .contact-wrapper form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#contact .contact-wrapper form textarea {
  width: 100%;
  height: 4.5rem;
  background: none;
  padding: 0.5rem;
  font-size: 2.5rem;
  outline: none;
  border: none;
  border-bottom: 2px solid #9b9b9b;
  margin-bottom: 2rem;
  resize: vertical;
}
#contact .contact-wrapper form .row {
  gap: 5rem;
}
#contact .contact-wrapper form .checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#contact .contact-wrapper form .checkbox-row input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  margin-right: 1.5rem;
  margin-bottom: 0;
}
#contact .contact-wrapper form .checkbox-row label {
  font-size: 2rem;
  margin-bottom: 0;
}
#contact .contact-wrapper form .checkbox-row label a {
  font-weight: bold;
}
#contact .contact-wrapper .contact-details {
  width: 30%;
  background: rgb(196, 132, 122);
  padding: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
#contact .contact-wrapper .contact-details p {
  font-size: 3rem;
  font-family: "Oooh Baby", cursive;
  text-align: center;
  color: #ffffff;
}
#contact .contact-wrapper .contact-details img {
  width: 15rem;
  aspect-ratio: 1;
}
#contact .contact-wrapper .contact-details .contacts p {
  margin-bottom: 1rem;
}
#contact .contact-wrapper .contact-details .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1.5rem;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
#contact .contact-wrapper .contact-details .socials .social {
  background: rgb(240, 238, 236);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#contact .contact-wrapper .contact-details .socials .social:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#contact .contact-wrapper .contact-details .socials .social svg {
  width: 3rem;
  height: 3rem;
}
#contact .contact-wrapper .contact-details .socials .social svg path {
  fill: #c4847a !important;
}

footer {
  width: 100%;
  background: rgb(196, 132, 122);
  padding: 1rem 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer p {
  color: #ffffff;
  font-size: 2.5rem;
  font-family: "Oooh Baby", cursive;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
footer p:first-child {
  text-align: start;
}
footer p:last-child {
  text-align: end;
}
footer p a {
  font-size: 2.5rem;
  font-family: "Oooh Baby", cursive;
  color: #ffffff;
}
footer p svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff !important;
}
footer p svg path {
  fill: #ffffff !important;
}

.cookies {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  padding-bottom: 0;
  width: 42.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 2;
}
.cookies p {
  font-size: 1.8rem;
}
.cookies a {
  color: rgb(196, 132, 122);
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 2rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: rgb(196, 132, 122);
  padding: 0.7rem 2.5rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookies .row .btn-b {
  font-size: 2rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #000000;
  padding: 0.7rem 2.5rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 400;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#rules {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100dvh;
  padding-top: 20rem;
}
#rules .rules-wrapper {
  max-width: 144rem;
  margin: 0 auto;
}
#rules .rules-wrapper h2 {
  margin-bottom: 5rem;
}
#rules .rules-wrapper h3 {
  font-size: 3rem;
  font-family: "Belleza", sans-serif;
  margin-bottom: 2rem;
}
#rules .rules-wrapper p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 2560px) {
  html {
    font-size: 15px;
  }
}
@media (min-width: 1921px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 9px;
  }
  main {
    padding: 5rem 10rem;
    padding-top: 10rem;
  }
  main .main-txt h1 {
    font-size: 5rem;
  }
  header {
    padding: 1rem 10rem;
  }
  section {
    padding: 5rem 10rem;
  }
  footer {
    padding: 1rem 10rem;
  }
  #offers .offers-wrapper {
    gap: 5rem;
  }
  #offers .offers-wrapper .offer {
    width: 30rem;
  }
  #offers .offers-wrapper .offer h3 {
    font-size: 3.5rem;
  }
  #about {
    gap: 10rem;
  }
  #about .about-img img {
    width: 100%;
    height: 100%;
  }
  #contact .contact-wrapper form {
    width: 70%;
    padding: 5rem;
  }
  #contact .contact-wrapper form h2 {
    margin-bottom: 5rem;
  }
  #contact .contact-wrapper form .row {
    gap: 5rem;
  }
  #contact .contact-wrapper .contact-details {
    width: 30%;
    padding: 5rem;
    gap: 5rem;
  }
  #contact .contact-wrapper .contact-details img {
    width: 15rem;
    aspect-ratio: 1;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 8px;
  }
  main {
    padding: 5rem 6rem;
    padding-top: 10rem;
  }
  header {
    padding: 1rem 6rem;
  }
  section {
    padding: 5rem 6rem;
  }
  footer {
    padding: 1rem 6rem;
  }
  #portfolio-deco-1 {
    width: 10rem !important;
    height: 10rem !important;
  }
  #portfolio-deco-2 {
    width: 10rem !important;
    height: 10rem !important;
  }
  #offer-deco-3 {
    width: 10rem !important;
    height: 10rem !important;
  }
  #offer-deco-4 {
    width: 10rem !important;
    height: 10rem !important;
  }
  #reviews-deco-5 {
    width: 10rem !important;
    height: 10rem !important;
  }
  #contact .contact-wrapper form {
    width: 65%;
    padding: 3rem 5rem;
  }
  #contact .contact-wrapper form h2 {
    margin-bottom: 3rem;
  }
  #contact .contact-wrapper form .row {
    gap: 3rem;
  }
  #contact .contact-wrapper .contact-details {
    width: 35%;
    padding: 3rem;
    gap: 3rem;
  }
  #contact .contact-wrapper .contact-details img {
    width: 12rem;
  }
}
@media (max-width: 1024px) {
  main {
    padding: 5rem;
    padding-top: 10rem;
    gap: 5rem;
  }
  main .main-img {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  header {
    padding: 1rem 5rem;
  }
  header nav {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  header .logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header .socials {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  section {
    padding: 5rem;
  }
  footer {
    padding: 1rem 5rem;
  }
  #reviews .reviews-txt {
    padding-right: 3rem;
  }
  #reviews .reviews-txt img {
    width: 90%;
  }
  #reviews .reviews-slider .swiper2 .swiper-wrapper .swiper-slide .review-label {
    padding: 2rem;
  }
  #reviews .reviews-slider .swiper2 .swiper-wrapper .swiper-slide .review-label p {
    margin-bottom: 1rem;
  }
  #about {
    gap: 5rem;
  }
}
@media (max-width: 1000px) {
  .toggle {
    width: 100%;
    height: 8rem;
    position: fixed;
    top: 0;
    z-index: 4;
    background: -webkit-gradient(linear, left top, right top, from(#C4847A), color-stop(53%, #F9E1CB), to(#C7847B));
    background: linear-gradient(90deg, #C4847A 0%, #F9E1CB 53%, #C7847B 100%);
    -webkit-box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 5rem;
  }
  .toggle .logo {
    width: 20rem;
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .toggle .logo a {
    width: 100%;
    height: 100%;
  }
  .toggle .logo a img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .toggle #toggler {
    width: 4rem;
    height: 4rem;
    -o-object-fit: contain;
       object-fit: contain;
    cursor: pointer;
  }
  header {
    width: 38rem;
    height: 100dvh;
    right: 0;
    background: rgb(245, 218, 197);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 5rem 0rem;
    padding-top: 13rem;
    gap: 5rem;
  }
  header nav {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header nav ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    padding: 0 3rem;
  }
  header nav ul li {
    width: 100%;
    padding-bottom: 0.5rem;
    font-size: 3rem;
    border-bottom: 2px solid rgb(196, 132, 122);
    padding: 1.5rem 3rem;
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  header nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  header nav ul li:hover {
    background: rgb(196, 132, 122);
    -webkit-transform: unset;
            transform: unset;
  }
  header nav ul li:hover a {
    color: #ffffff;
  }
  header .logo {
    display: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  header .socials {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .active-menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .not-active-menu {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  #contact .contact-wrapper form {
    padding: 3rem;
  }
  #contact .contact-wrapper .contact-details img {
    display: none;
  }
  #rules {
    padding-top: 15rem;
  }
}
@media (max-width: 768px) {
  main {
    background-image: url(../img/main-background-tablet.svg);
    gap: 3rem;
  }
  main .main-img img {
    width: 90%;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #about .about-img {
    width: 85%;
    height: 85%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  #contact .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .contact-wrapper form {
    width: 100%;
    padding: 3rem;
  }
  #contact .contact-wrapper .contact-details {
    width: 100%;
  }
  #contact .contact-wrapper .contact-details img {
    display: block;
    width: 15rem;
  }
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-self: center;
    padding: 3rem 5rem;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  main {
    gap: 0rem;
  }
  main .main-txt {
    width: 100%;
  }
  main .main-img {
    display: none;
  }
  #portfolio .swiper .swiper-wrapper .swiper-slide {
    padding: 0 3rem;
  }
  #portfolio-deco-1 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    width: 6rem !important;
    height: 6rem !important;
  }
  #portfolio-deco-2 {
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    width: 6rem !important;
    height: 6rem !important;
  }
  #offer-deco-3 {
    top: 0.5rem !important;
    right: 0.5rem !important;
    width: 6rem !important;
    height: 6rem !important;
  }
  #offer-deco-4 {
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    width: 6rem !important;
    height: 6rem !important;
  }
  #portfolio-deco-5 {
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    width: 6rem !important;
    height: 6rem !important;
  }
  #reviews {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #reviews .reviews-txt {
    width: 100%;
    padding-right: 0rem;
    padding-bottom: 5rem;
  }
  #reviews .reviews-txt h2 {
    text-align: center;
    margin-bottom: 3rem;
  }
  #reviews .reviews-txt p {
    margin-bottom: 0rem;
  }
  #reviews .reviews-txt img {
    display: none;
  }
  #reviews .reviews-slider {
    width: 100%;
  }
  #contact .contact-wrapper form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 425px) {
  main {
    background-image: url(../img/main-background-mobile.svg);
  }
  html {
    font-size: 7.5px;
  }
  #offers .offers-wrapper {
    gap: 5rem;
  }
  #offers .offers-wrapper .offer {
    width: 100%;
  }
  #offers .offers-wrapper .offer h3 {
    font-size: 4rem;
  }
  #offers .delivery {
    width: 100%;
    padding: 1rem 2rem;
  }
  #about .about-txt h2 {
    margin-bottom: 3rem;
  }
  #about .about-img {
    width: 100%;
    height: 100%;
  }
  .cookies {
    width: 100%;
  }
}
@media (max-width: 375px) {
  header {
    width: 100%;
  }
  main .main-txt h1 {
    font-size: 4rem;
  }
}
@media (max-width: 320px) {
  .toggle {
    padding: 1rem 3rem;
  }
  main {
    padding: 3rem;
    padding-top: 10rem;
  }
  section {
    padding: 3rem;
  }
}