@import url("https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap");
@font-face {
  font-family: "Monotype Corsiva";
  src: url("fonts/Monotype-Corsiva-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Monotype Corsiva";
  src: url("fonts/Monotype-Corsiva-Regular-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Monotype Corsiva";
  src: url("fonts/Monotype-Corsiva-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Monotype Corsiva";
  src: url("fonts/Monotype-Corsiva-Bold-Italic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Darker Grotesque", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

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

h1, h2, h3 {
  font-family: "Monotype Corsiva";
}

.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;
}

body {
  background: #F4F4F4;
}

header {
  width: 100%;
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
}
header .upper-header {
  width: 100%;
  background: #DE9DA5;
  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: 2rem;
}
header .upper-header .contacts {
  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: 2rem;
}
header .upper-header .contacts .contact {
  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;
  gap: 1rem;
}
header .upper-header .contacts .contact svg {
  width: 3rem;
  height: 3rem;
}
header .upper-header .contacts .contact p {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 600;
}
header .upper-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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
header .lower-header {
  width: 100%;
  background: #FBEAE7;
  padding: 1rem 15rem;
}
header .lower-header nav {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .lower-header nav .logo {
  width: 12.5rem;
}
header .lower-header nav .logo img {
  width: 100%;
}
header .lower-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: 2.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header .lower-header nav ul li {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
}
header .lower-header nav ul li a {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-header nav ul li a:hover {
  color: #DE9DA5;
}
header .lower-header nav .left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
header .lower-header nav .right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .header-deco {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .header-deco svg {
  width: 100%;
}
header .mobile-toggler {
  display: none;
}

main {
  width: 100%;
  height: calc(100dvh - 20rem);
  margin-top: 20rem;
  position: relative;
}
main .overlay {
  padding: 10rem 15rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  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 .overlay h1 {
  font-size: 8rem;
  color: #FBEAE7;
  max-width: 60rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  margin-bottom: 3rem;
}
main .overlay p {
  font-size: 2.5rem;
  text-align: center;
  max-width: 65rem;
  color: #FBEAE7;
  margin-bottom: 3rem;
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 3rem;
  text-transform: uppercase;
  color: #FBEAE7;
  background: #DE9DA5;
  padding: 1rem 6rem;
  padding-bottom: 1.6rem;
  border-radius: 25px;
  line-height: 1;
  font-weight: bold;
  border: none;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.2);
          box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.2);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

section {
  padding: 10rem 15rem;
}

#offers {
  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;
  width: 100%;
}
#offers h2 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 5rem;
  text-align: center;
}
#offers .offer-wrapper {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10rem;
}
#offers .offer-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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#offers .offer-wrapper .offer img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}
#offers .offer-wrapper .offer h3 {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  margin: 2rem 0;
  color: #000000;
}

#price-list {
  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;
  width: 100%;
  padding-top: 0;
}
#price-list h2 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
#price-list p {
  font-size: 3rem;
  text-align: center;
}
#price-list table {
  width: 80%;
  border-collapse: collapse;
  margin: 0 auto;
  margin-top: 5rem;
  table-layout: fixed;
}
#price-list table tr {
  width: 100%;
  border-bottom: 3px solid #DE9DA5;
}
#price-list table tr td {
  padding: 1rem;
  font-size: 3rem;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#price-list table tr td:nth-child(1) {
  text-align: start;
}
#price-list table tr td:nth-child(2) {
  text-align: center;
}
#price-list table tr td:nth-child(3) {
  text-align: end;
}
#price-list table tr .name {
  font-weight: bold;
  color: #DE9DA5;
}
#price-list table tr .price {
  font-weight: bold;
}

#gallery {
  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;
  width: 100%;
  padding-top: 0;
}
#gallery h2 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
#gallery .gallery {
  width: 100%;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
#gallery .gallery img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

#motto {
  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;
  width: 100%;
  padding-top: 0;
}
#motto h2 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
#motto .mottos {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10rem;
  margin-top: 5rem;
}
#motto .mottos .motto {
  width: 35rem;
}
#motto .mottos .motto img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}
#motto .mottos .motto h3 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
}
#motto .mottos .motto p {
  font-size: 3rem;
  text-align: center;
}

#contact {
  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;
  width: 100%;
  padding-top: 0;
}
#contact h2 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
#contact p {
  font-size: 3rem;
  text-align: center;
}
#contact .contact-row {
  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: 10rem;
  margin-top: 5rem;
}
#contact .contact-row form {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
#contact .contact-row form .row {
  gap: 2rem;
}
#contact .contact-row form .row .column {
  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;
}
#contact .contact-row form .row .column label {
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}
#contact .contact-row form input, #contact .contact-row form select {
  width: 100%;
  background: #E4E4E4;
  padding: 0.5rem 2rem;
  padding-bottom: 1rem;
  font-size: 3rem;
  border-radius: 25px;
  border: none;
}
#contact .contact-row form label {
  font-size: 3rem;
}
#contact .contact-row form input[type=date] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#contact .contact-row form input[type=file] {
  background-color: #DE9DA5;
}
#contact .contact-row form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 3rem;
  text-transform: uppercase;
  color: #FBEAE7;
  background: #DE9DA5;
  padding: 1rem 6rem;
  padding-bottom: 1.6rem;
  border-radius: 25px;
  line-height: 1;
  font-weight: bold;
  border: none;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.2);
          box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.2);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
}
#contact .contact-row form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#contact .contact-row form textarea {
  width: 100%;
  min-height: 15rem;
  background: #E4E4E4;
  padding: 0.5rem 2rem;
  padding-bottom: 1rem;
  font-size: 3rem;
  border-radius: 25px;
  border: none;
  resize: vertical;
}
#contact .contact-row 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;
  gap: 1.5rem;
}
#contact .contact-row form .checkbox-row input[type=checkbox] {
  width: 2rem;
  height: 2rem;
}
#contact .contact-row form .checkbox-row input[type=radio] {
  width: 2rem;
  height: 2rem;
}
#contact .contact-row form .checkbox-row label {
  padding-bottom: 0.5rem;
}
#contact .contact-row form .checkbox-row label a {
  font-weight: bold;
  color: #DE9DA5;
}
#contact .contact-row .contact-details {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #DE9DA5;
  border-radius: 10px;
  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;
  padding: 3rem;
}
#contact .contact-row .contact-details h3 {
  text-align: center;
  font-weight: bold;
  font-size: 4rem;
  font-family: "Darker Grotesque", sans-serif;
  color: #ffffff;
}
#contact .contact-row .contact-details p {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
#contact .contact-row .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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

footer {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #DE9DA5;
  color: #ffffff;
  font-size: 3rem;
}
footer a {
  color: #ffffff;
  font-size: 3rem;
}
footer p {
  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;
}
footer p svg {
  width: 3rem;
  height: 3rem;
  fill: #ffffff;
}
footer p a {
  margin-left: 0.5rem;
}

.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);
  z-index: 3;
}
.cookies p {
  font-size: 2.5rem;
  line-height: 1;
}
.cookies a {
  color: #DE9DA5;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 3rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #DE9DA5;
  padding: 0.5rem 2.5rem;
  line-height: 1;
  padding-bottom: 1rem;
  -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;
  cursor: pointer;
  border-radius: 25px;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookies .row .btn-b {
  font-size: 3rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #000000;
  padding: 0.5rem 2.5rem;
  line-height: 1;
  padding-bottom: 1rem;
  -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;
  border-radius: 25px;
  cursor: pointer;
}
.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: 35rem;
}
#rules .rules-wrapper {
  max-width: 144rem;
  margin: 0 auto;
}
#rules .rules-wrapper h2 {
  margin-bottom: 5rem;
  font-size: 6rem;
  text-align: center;
}
#rules .rules-wrapper h3 {
  font-size: 4rem;
  margin-bottom: 2rem;
}
#rules .rules-wrapper p {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.active {
  color: #DE9DA5;
}

.first-section {
  padding-top: 35rem !important;
}

#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 {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#about .about-txt img {
  width: 12rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 3rem;
}
#about .about-txt h2 {
  color: #DE9DA5;
  font-size: 6rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1;
}
#about .about-txt p {
  font-size: 3rem;
  text-align: justify;
}
#about .about-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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#about .about-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  border-radius: 10px;
}

#candybar {
  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;
}
#candybar .candybar-prolog {
  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;
}
#candybar .candybar-prolog .candybar-txt {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#candybar .candybar-prolog .candybar-txt h2 {
  color: #DE9DA5;
  font-size: 6rem;
  text-align: start;
  margin-bottom: 2rem;
  line-height: 1;
}
#candybar .candybar-prolog .candybar-txt p {
  font-size: 3rem;
  text-align: justify;
}
#candybar .candybar-prolog .candybar-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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#candybar .candybar-prolog .candybar-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  border-radius: 10px;
}

.offer-candybar h2 {
  text-align: center;
}
.offer-candybar .offer-wrapper {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 5rem !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

#fillings {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15rem;
}
#fillings .txt {
  width: 100;
}
#fillings .txt h3 {
  font-size: 6rem;
  color: #DE9DA5;
  margin-bottom: 2rem;
}
#fillings .txt ul {
  list-style-type: circle;
  list-style-position: inside;
}
#fillings .txt ul li {
  font-size: 3rem;
}
#fillings .txt p {
  font-size: 3rem;
}

.cake-order .contact-row {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.radio {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

@media (min-width: 2560px) {
  html {
    font-size: 12.5px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 8.5px;
  }
  header .upper-header {
    padding: 1rem 10rem;
    gap: 1.5rem;
  }
  header .upper-header .contacts {
    gap: 1.5rem;
  }
  header .lower-header {
    padding: 1rem 10rem;
  }
  header .lower-header nav .logo {
    width: 10rem;
  }
  header .lower-header nav ul {
    gap: 1.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  main {
    margin-top: 18rem;
    height: calc(100dvh - 18rem);
  }
  main .overlay {
    padding: 5rem 10rem;
  }
  section {
    padding: 5rem 10rem;
  }
  #offers .offer-wrapper {
    gap: 5rem;
  }
  footer {
    padding: 1rem 10rem;
  }
  #rules {
    padding-top: 30rem;
  }
  .first-section {
    padding-top: 30rem !important;
  }
  #about {
    gap: 10rem;
  }
  #candybar .candybar-prolog {
    gap: 10rem;
  }
  #fillings {
    gap: 10rem;
  }
}
@media (max-width: 1366px) {
  html {
    font-size: 8px;
  }
  header .upper-header {
    padding: 1rem 8rem;
  }
  header .lower-header {
    padding: 1rem 8rem;
  }
  header .lower-header nav ul li {
    font-size: 2.5rem;
  }
  main .overlay {
    padding: 5rem 8rem;
  }
  section {
    padding: 5rem 8rem;
  }
  footer {
    padding: 1rem 8rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 7.5px;
  }
  header .upper-header {
    padding: 1rem 5rem;
  }
  header .lower-header {
    padding: 1rem 5rem;
  }
  main .overlay {
    padding: 5rem 5rem;
  }
  section {
    padding: 5rem 5rem;
  }
  #offers .offer-wrapper {
    gap: 3rem;
  }
  #price-list table {
    width: 100%;
    margin-top: 3rem;
  }
  #contact .contact-row {
    gap: 5rem;
  }
  footer {
    padding: 1rem 5rem;
  }
  #rules {
    padding-top: 25rem;
  }
  .first-section {
    padding-top: 25rem !important;
  }
  #about {
    gap: 5rem;
  }
  #candybar .candybar-prolog {
    gap: 5rem;
  }
  #fillings {
    gap: 5rem;
  }
}
@media (max-width: 1000px) {
  header .upper-header {
    padding: 1rem 5rem;
    position: fixed;
    z-index: 4;
  }
  header .lower-header {
    padding: 1rem 5rem;
    width: 42rem;
    height: 100dvh;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 25rem;
    padding-bottom: 5rem;
    z-index: 3;
    -webkit-box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1), -2px 0 4px -1px rgba(0, 0, 0, 0.06);
            box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1), -2px 0 4px -1px rgba(0, 0, 0, 0.06);
  }
  header .lower-header nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  header .lower-header nav .logo {
    display: none;
  }
  header .lower-header nav ul {
    -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;
    width: 100%;
  }
  header .lower-header nav ul li {
    width: 100%;
    font-size: 3.5rem;
    border-bottom: 2px dotted #DE9DA5;
    padding-bottom: 0.3rem;
  }
  header .mobile-toggler {
    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: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 5rem;
    background: #FBEAE7;
    position: fixed;
    z-index: 4;
    top: 5.6rem;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  header .mobile-toggler .logo {
    width: 9rem;
  }
  header .mobile-toggler .logo img {
    width: 100%;
  }
  header .mobile-toggler svg {
    width: 4.5rem;
    height: 4.5rem;
  }
  header .header-deco {
    display: 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;
  }
  main {
    margin-top: 16rem;
    height: calc(100dvh - 16rem);
  }
  #offers .offer-wrapper {
    gap: 3rem;
  }
  #offers .offer-wrapper .offer {
    width: 37.5rem;
  }
  #rules {
    padding-top: 20rem;
  }
  .first-section {
    padding-top: 20rem !important;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #about .about-img {
    width: 50%;
    margin: 0 auto;
  }
  #candybar .candybar-prolog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #candybar .candybar-prolog .candybar-img {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  header .upper-header {
    padding: 1rem 3rem;
  }
  header .lower-header {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  header .mobile-toggler {
    padding: 1rem 3rem;
  }
  main .overlay {
    padding: 3rem;
  }
  section {
    padding: 5rem 3rem;
  }
  #contact .contact-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  footer {
    padding: 1rem 3rem;
  }
}
@media (max-width: 600px) {
  header .upper-header .contacts .contact:nth-child(2) {
    display: none;
  }
  #gallery .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  footer {
    padding: 1rem 3rem;
    -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;
  }
  footer p {
    margin-bottom: 0.5rem;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #about .about-img {
    width: 80%;
    margin: 0 auto;
  }
  #candybar .candybar-prolog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #candybar .candybar-prolog .candybar-img {
    width: 80%;
    margin: 0 auto;
  }
  #candybar .cake-prolog {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  #fillings {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 425px) {
  header .lower-header {
    width: 80%;
  }
  main .overlay h1 {
    font-size: 6.5rem;
  }
  main .overlay p {
    font-size: 3rem;
  }
  #offers h2 {
    margin-bottom: 3rem;
  }
  #offers .offer-wrapper {
    gap: 5rem;
  }
  #offers .offer-wrapper .offer {
    width: 100%;
  }
  #gallery .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  #gallery .cookies {
    width: 100%;
  }
  #contact .contact-row form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .contact-row form .checkbox-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .contact-row form input[type=date] {
    width: 100%;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #about .about-img {
    width: 100%;
    margin: 0 auto;
  }
  #candybar .candybar-prolog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #candybar .candybar-prolog .candybar-img {
    width: 100%;
    margin: 0 auto;
  }
}