@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

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

h1, h2, h3 {
  font-family: "Josefin Sans", sans-serif;
}

.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 {
  position: fixed;
  z-index: 2;
  width: 100%;
  min-height: 28rem;
  background: url(./img/menu_background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 1rem 15rem;
}
header .header-content {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header-content .right-header, header .header-content .left-header {
  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;
}
header .header-content .right-header a {
  width: 4.5rem;
}
header .header-content .right-header a img {
  width: 100%;
}
header .header-content .left-header .logo {
  width: 12rem;
}
header .header-content .left-header .logo img {
  width: 100%;
  height: 100%;
}
header .header-content .left-header nav {
  padding: 0 5rem;
}
header .header-content .left-header nav ul li {
  display: inline;
  margin: 1rem;
}
header .header-content .left-header nav ul li a {
  font-size: 2.1rem;
  text-transform: uppercase;
}
header .header-content .left-header nav ul li a:hover {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  color: #0ABAB5;
}
header .header-content .left-header nav ul li .active {
  color: #0ABAB5;
}

main {
  width: 100%;
  height: 100dvh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main .main-content {
  width: 100%;
  min-height: 81rem;
  margin-top: 16rem;
  background: url(./img/main_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 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: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 0 15rem;
}
main .main-content .main-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main .main-content h1 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
main .main-content p {
  font-size: 2.5rem;
  color: #ffffff;
  max-width: 46rem;
  margin-bottom: 1rem;
}
main .main-content .socials {
  margin: 3rem 0;
  margin-top: 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: end;
      -ms-flex-align: end;
          align-items: end;
}
main .main-content .socials a {
  margin-bottom: 1.5rem;
}
main .main-content .socials a img:hover {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #0ABAB5;
  font-size: 2.5rem;
  color: #ffffff;
  padding: 1rem 6rem;
  padding-top: 1.4rem;
  border-radius: 50px;
  line-height: 1;
  margin: 2rem 0;
}
.p-btn:hover {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.s-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffffff;
  font-size: 2rem;
  color: #000000;
  padding: 1rem 4rem;
  padding-top: 1.4rem;
  border-radius: 50px;
  line-height: 1;
  margin: 2rem 0;
}
.s-btn:hover {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.t-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffffff;
  font-size: 2rem;
  color: #0ABAB5;
  padding: 1rem 4rem;
  padding-top: 1.4rem;
  line-height: 1;
  margin: 2rem 0;
}
.t-btn:hover {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.toggle {
  display: none;
}

section {
  padding: 10rem 15rem;
}

#seasonal-offer {
  padding-top: 15rem;
  background: url(img/seasonal-offer-background.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
#seasonal-offer h2 {
  text-align: center;
  font-size: 5rem;
  color: #0ABAB5;
  font-weight: 400;
  margin-bottom: 3rem;
}
#seasonal-offer .swiper {
  width: 115rem;
  margin: 0 auto;
}
#seasonal-offer .swiper .swiper-wrapper .swiper-slide {
  width: 35rem;
  height: auto;
  background: rgba(10, 186, 181, 0.7);
  padding: 3rem;
  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;
  margin: 6rem 0;
  margin-bottom: 8rem;
  border-radius: 10px;
}
#seasonal-offer .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
}
#seasonal-offer .swiper .swiper-wrapper .swiper-slide h3 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
#seasonal-offer .swiper .swiper-wrapper .swiper-slide p {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
}

.swiper-slide-active {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
  background: #0ABAB5 !important;
}

.swiper-pagination-bullet-active {
  background: #0ABAB5 !important;
}

.swiper-pagination-bullet {
  width: 1rem !important;
  height: 1rem !important;
}

#catalog {
  width: 100%;
  background: url(img/catalog_background.svg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 120rem;
  padding-top: 15rem;
  padding-bottom: 15rem;
  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;
}
#catalog h2 {
  text-align: center;
  font-size: 5rem;
  color: #0ABAB5;
  font-weight: 400;
  margin-bottom: 3rem;
}
#catalog .section-menu {
  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;
  margin-bottom: 5rem;
}
#catalog .section-menu a {
  font-size: 2.5rem;
  margin: 1rem 2.5rem;
  color: #B1B1B1;
  padding-bottom: 0.5rem;
}
#catalog .section-menu .active {
  color: #818181;
  border-bottom: 2px solid #0ABAB5;
}
#catalog .products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  margin-top: 5rem;
  margin-bottom: 3rem;
}
#catalog .products a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#catalog .products a .product {
  width: 100%;
  background: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#catalog .products a .product:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#catalog .products a .product img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
#catalog .products a .product .product-detail {
  padding: 2rem;
  border: 2px solid #D6D6D6;
}
#catalog .products a .product .product-detail h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
}
#catalog .products a .product .product-detail p {
  font-size: 2rem;
  color: #818181;
}

#gallery {
  width: 100%;
  padding: 0;
  padding-top: 10rem;
  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;
  position: relative;
  background: #ffffff;
}
#gallery h2 {
  font-size: 5rem;
  font-weight: 400;
  text-align: center;
  padding: 3rem;
}
#gallery .socials {
  padding: 3rem;
  padding-top: 0;
  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: 3rem;
}
#gallery .socials a {
  width: 6rem;
  height: 6rem;
  background: #0ABAB5;
  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;
  border-radius: 50%;
}
#gallery .socials a img {
  width: 3rem;
  height: 3rem;
}
#gallery .gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
}
#gallery .gallery a {
  width: 100%;
}
#gallery .gallery a img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  width: 100%;
  background: #0ABAB5;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
footer .footer-deco {
  width: 100%;
  position: absolute;
  top: -12rem;
}
footer .footer-content {
  width: 100%;
  padding: 1rem 15rem;
  padding-top: 3rem;
  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;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
  gap: 5rem;
}
footer .footer-content p {
  font-size: 2rem;
  color: #ffffff;
  padding: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
footer .footer-content p a {
  color: #ffffff;
}
footer .footer-content p svg {
  fill: #ffffff;
  width: 2rem;
}

.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: 3;
}
.cookies p {
  font-size: 1.6rem;
}
.cookies a {
  color: #0ABAB5;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #0ABAB5;
  padding: 0.7rem 2.5rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px 1px #000000;
  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: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #000000;
  padding: 0.7rem 2.5rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px 1px #000000;
  font-weight: 400;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#about {
  width: 100%;
  min-height: calc(100dvh - 5rem);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  padding: 15rem 0;
  padding-top: 20rem;
  gap: 10rem;
}
#about .about-txt, #about .about-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-img img {
  width: 100%;
}
#about .about-txt {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 15rem;
  padding-top: 3rem;
}
#about .about-txt .row {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  margin-bottom: 3rem;
}
#about .about-txt .row hr {
  width: 5rem;
  background: #0ABAB5;
  border: none;
  height: 3px;
  margin-right: 1.5rem;
}
#about .about-txt .row h3 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #0ABAB5;
}
#about .about-txt h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
#about .about-txt p {
  font-size: 2.5rem;
  font-weight: 300;
}

#rules {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#rules .rules-content {
  padding: 10rem 0;
  padding-top: 20rem;
  width: 80%;
  margin: 0 auto;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
#rules .rules-content h1 {
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
#rules .rules-content hr {
  width: 12rem;
  background: #0ABAB5;
  border: none;
  height: 3px;
  margin-bottom: 5rem;
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
}
#rules .rules-content h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 400;
}
#rules .rules-content p {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 3rem;
}

#hero {
  width: 100%;
  min-height: 81rem;
  background: url(./img/desert_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 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: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 0 15rem;
  background-color: #CFEBEA;
}
#hero .hero-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#hero h1 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#hero p {
  font-size: 2.5rem;
  color: #ffffff;
  max-width: 46rem;
  margin-bottom: 1rem;
  font-weight: 200;
}

#offer {
  width: 100%;
  min-height: 44.5rem;
  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;
  background: url(./img/offer-background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 5rem;
  padding-bottom: 15rem;
  margin-bottom: 5rem;
}
#offer .t-btn {
  margin: 2rem;
}

#wedding-offer {
  width: 100%;
  min-height: 50rem;
  background-color: #CFEBEA;
  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;
}
#wedding-offer .offer-flag {
  background: #0ABAB5;
  width: 80rem;
  height: 40rem;
  padding: 2.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: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
}
#wedding-offer .offer-flag img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#wedding-offer .offer-flag h2 {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 3rem;
  margin-top: 3rem;
  text-align: center;
}
#wedding-offer .offer-flag p {
  font-size: 2rem;
  margin-bottom: 6rem;
  text-align: center;
  color: #ffffff;
}
#wedding-offer .offer-flag a {
  font-size: 2.5rem;
  text-decoration: underline;
  color: #ffffff;
  text-align: center;
}

.deco-top {
  position: absolute;
  top: 0;
  width: 100%;
}

.deco-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.wedding-bcg {
  background: url(./img/wedding_background.png) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
  background-color: #CFEBEA !important;
}

.contact-bcg {
  background: url(./img/contact_background.png) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
  background-color: #CFEBEA !important;
  min-height: 44rem !important;
  padding: 0 15rem !important;
  padding-top: 28rem !important;
  padding-bottom: 5rem !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  height: auto !important;
}

#form {
  background: #ffffff;
  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: 5rem 0;
}
#form h2 {
  font-size: 4rem;
  color: #0ABAB5;
  margin-bottom: 3rem;
  text-align: center;
}
#form p {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #000000;
}
#form form {
  width: 70%;
  padding: 5rem 0;
  padding-bottom: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
#form form .row {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#form form .row input {
  width: 50%;
}
#form form .row label {
  font-size: 2rem;
  color: #636c72;
  text-align: center;
}
#form form .row input[type=checkbox] {
  width: 2rem;
  height: 2rem;
}
#form form .spam-filter {
  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;
}
#form form .spam-filter input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#form form .spam-filter label {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #636c72;
  text-align: center;
}
#form form input, #form form textarea {
  background: none;
  border: none;
  outline: none;
  font-size: 2rem;
  padding: 0.8rem;
  border-bottom: 2px solid #adb5bd;
}
#form form textarea {
  resize: vertical;
  border: 2px solid #adb5bd;
  height: 25rem;
}
#form form .row {
  gap: 3rem;
}
#form form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #0ABAB5;
  font-size: 2.5rem;
  color: #ffffff;
  padding: 1rem 6rem;
  padding-top: 1.4rem;
  border-radius: 50px;
  line-height: 1;
  margin: 0 auto;
  cursor: pointer;
  border: none;
}
#form form input[type=submit]:hover {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#contact-info {
  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;
  background: #ffffff;
  padding-top: 0;
}
#contact-info h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
  color: #0ABAB5;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
#contact-info .contact-info-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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
  margin: 5rem 0;
  margin-bottom: 10rem;
}
#contact-info .contact-info-row .contact-map {
  width: 100%;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
#contact-info .contact-info-row .contact-map iframe {
  width: 100%;
}
#contact-info .contact-info-row .contact-details {
  width: 100%;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
#contact-info .contact-info-row .contact-details p {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
#contact-info .contact-info-row .contact-details p span {
  font-weight: 400;
  border-bottom: 2px solid #000000;
}
#contact-info .contact-info-row .contact-details .socials {
  margin-top: 5rem;
  padding: 3rem 0rem;
  padding-top: 0;
  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: 3rem;
}
#contact-info .contact-info-row .contact-details .socials a {
  width: 6rem;
  height: 6rem;
  background: #0ABAB5;
  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;
  border-radius: 50%;
}
#contact-info .contact-info-row .contact-details .socials a img {
  width: 3rem;
  height: 3rem;
}

#product {
  width: 100%;
  padding-top: 35rem;
  min-height: 100dvh;
  padding-bottom: 20rem;
}
#product .product-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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
}
#product .product-row .product-imgs {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  display: grid;
  grid-template-areas: "main-img main-img main-img" "main-img main-img main-img" "main-img main-img main-img" "inner-img1 inner-img2 inner-img3";
  grid-gap: 3rem;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#product .product-row .product-imgs a {
  width: 100%;
  aspect-ratio: 1;
}
#product .product-row .product-imgs a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product-row .product-imgs .main-img {
  grid-area: main-img;
}
#product .product-row .product-imgs .inner-img1 {
  grid-area: inner-img1;
}
#product .product-row .product-imgs .inner-img2 {
  grid-area: inner-img2;
}
#product .product-row .product-imgs .inner-img3 {
  grid-area: inner-img3;
}
#product .product-row .product-details {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
#product .product-row .product-details h2 {
  font-size: 4rem;
  color: #818181;
  font-weight: 400;
  margin-bottom: 2rem;
}
#product .product-row .product-details .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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2rem;
}
#product .product-row .product-details .row h3 {
  font-size: 2rem;
}
#product .product-row .product-details .row a {
  font-weight: bold;
  font-size: 2rem;
  color: #0ABAB5;
  font-weight: 400;
  text-decoration: underline;
}
#product .product-row .product-details p {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
#product .product-row .product-details h4 {
  font-size: 2rem;
  color: #0ABAB5;
  margin-bottom: 2rem;
}
#product .product-row .product-details .prices {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  margin-bottom: 3rem;
}
#product .product-row .product-details .prices .price {
  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;
}
#product .product-row .product-details .prices .price img {
  margin-right: 1rem;
  width: 4.5rem;
  height: 4.5rem;
}
#product .product-row .product-details .prices .price p {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0;
}
#product .product-row .product-details form .variants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#product .product-row .product-details form .variants .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#product .product-row .product-details form .variants .column label {
  font-size: 2rem;
  text-transform: uppercase;
  color: #0ABAB5;
  margin-bottom: 1rem;
}
#product .product-row .product-details form .variants .column select {
  width: 30rem;
  font-size: 2rem;
  padding: 0.8rem;
  line-height: 1;
  margin-bottom: 3rem;
  border: 3px solid #0ABAB5;
}
#product .product-row .product-details form .quantity {
  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: 1rem;
  margin-bottom: 3rem;
  /* Pro Firefox */
}
#product .product-row .product-details form .quantity input {
  width: 8rem;
  background: rgba(10, 186, 181, 0.25);
  color: #000000;
  border: none;
  outline: 0;
  font-size: 2rem;
  border-radius: 50px;
  padding: 0.8rem;
  text-align: center;
  font-weight: bold;
}
#product .product-row .product-details form .quantity label {
  font-size: 2rem;
  font-weight: bold;
}
#product .product-row .product-details form .quantity input[type=number]::-webkit-inner-spin-button,
#product .product-row .product-details form .quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#product .product-row .product-details form .quantity input[type=number] {
  -moz-appearance: textfield;
}
#product .product-row .product-details form .total-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3rem;
}
#product .product-row .product-details form .total-price label {
  font-size: 2rem;
  text-transform: uppercase;
  color: #0ABAB5;
  margin-bottom: 1rem;
}
#product .product-row .product-details form .total-price p {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0;
}
#product .product-row .product-details form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #0ABAB5;
  font-size: 2.5rem;
  color: #ffffff;
  padding: 1rem 6rem;
  padding-top: 1.4rem;
  border-radius: 50px;
  line-height: 1;
  margin: 0 auto;
  cursor: pointer;
  border: none;
}
#product .product-row .product-details form input[type=submit]:hover {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#product .product-row .description-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#product .product-row .description-txt h2 {
  font-size: 3rem;
  color: #818181;
  margin-bottom: 2rem;
}
#product .product-row .description-txt p {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
#product .product-row .description-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  aspect-ratio: 2/1;
}
#product .product-row .description-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#product hr {
  width: 100%;
  height: 3px;
  margin: 5rem auto;
  background: #C4C4C4;
  border: none;
}

#cart {
  width: 100%;
  padding: 5rem 15rem;
  padding-top: 30rem;
  padding-bottom: 10rem;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#cart .cart-menu {
  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;
}
#cart .cart-menu a {
  font-size: 2.5rem;
}
#cart .cart-menu .vl {
  width: 3px;
  height: 3rem;
  margin: 0 1rem;
  background: #E0DDDE;
}
#cart .cart-menu .active {
  color: #0ABAB5;
}
#cart .cart-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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5rem 0;
  gap: 10rem;
}
#cart .cart-row .cart-content {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
#cart .cart-row .cart-content .message {
  margin: 3rem 0;
}
#cart .cart-row .cart-content .message p {
  font-size: 2rem;
}
#cart .cart-row .cart-content .message p a {
  font-weight: bold;
  color: #0ABAB5;
}
#cart .cart-row .cart-content .recap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5rem;
}
#cart .cart-row .cart-content .recap .recap-txt {
  min-width: 20rem;
}
#cart .cart-row .cart-content .recap .recap-txt h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 1rem 0;
}
#cart .cart-row .cart-content .recap .recap-txt p {
  font-size: 2rem;
}
#cart .cart-row .cart-content .recap .recap-txt p a {
  font-weight: bold;
  color: #0ABAB5;
}
#cart .cart-row .cart-content .recap .recap-img {
  max-width: 20rem;
}
#cart .cart-row .cart-content .recap .recap-img img {
  width: 100%;
}
#cart .cart-row .cart-content .cart-form {
  width: 100%;
  background: #ffffff;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 3rem 0;
}
#cart .cart-row .cart-content .cart-form h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 1rem 0;
}
#cart .cart-row .cart-content .cart-form .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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#cart .cart-row .cart-content .cart-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;
  margin: 1%;
}
#cart .cart-row .cart-content .cart-form .row .column label {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#cart .cart-row .cart-content .cart-form .row .column label span {
  color: red;
  margin-left: 0.5rem;
}
#cart .cart-row .cart-content .cart-form .row .column input, #cart .cart-row .cart-content .cart-form .row .column select {
  background: #E0DDDE;
  border: none;
  padding: 0.8rem;
  font-size: 2rem;
  outline: none;
  width: 100%;
}
#cart .cart-row .cart-content .cart-form p {
  font-size: 1.8rem;
  margin: 1rem 0;
}
#cart .cart-row .cart-content .cart-form .checkbox-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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0% 1%;
}
#cart .cart-row .cart-content .cart-form .checkbox-row input {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
#cart .cart-row .cart-content .cart-form .checkbox-row p {
  font-size: 1.8rem;
}
#cart .cart-row .cart-content .back {
  font-size: 2rem;
  color: #646464;
}
#cart .cart-row .cart-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
#cart .cart-row .cart-content table tr {
  border-bottom: 1px solid #C4C4C4;
}
#cart .cart-row .cart-content table tr td {
  padding: 0.5rem;
  font-size: 1.8rem;
}
#cart .cart-row .cart-content table tr td img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
#cart .cart-row .cart-content table tr td svg {
  width: 3rem;
  height: 3rem;
}
#cart .cart-row .cart-sidebar {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
#cart .cart-row .cart-sidebar .sidebar {
  width: 100%;
  background: #0ABAB5;
  padding: 3rem;
}
#cart .cart-row .cart-sidebar .sidebar form {
  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;
}
#cart .cart-row .cart-sidebar .sidebar form input {
  width: 100%;
  padding: 1rem;
  font-size: 2rem;
  color: #646464;
  background: #ffffff;
  border: none;
  outline: none;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem 1rem;
  padding-top: 1.8rem;
}
#cart .cart-row .cart-sidebar .sidebar form input[type=submit] {
  width: 75%;
  border: 3px solid #ffffff;
  background: none;
  color: #ffffff;
  cursor: pointer;
  padding: 1rem;
}
#cart .cart-row .cart-sidebar .sidebar .summary {
  margin-bottom: 2rem;
}
#cart .cart-row .cart-sidebar .sidebar .summary h3 {
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #646464;
  padding: 0.5rem;
  color: #ffffff;
}
#cart .cart-row .cart-sidebar .sidebar .summary p {
  text-transform: none;
  font-size: 2rem;
  padding: 0.8rem;
  color: #ffffff;
  line-height: 1;
}
#cart .cart-row .cart-sidebar .sidebar .summary .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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #646464;
}
#cart .cart-row .cart-sidebar .sidebar .summary .row p {
  text-transform: uppercase;
  font-size: 2rem;
  padding: 0.8rem;
  color: #ffffff;
  line-height: 1;
}
#cart .cart-row .cart-sidebar .sidebar .btn {
  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;
  width: 100% !important;
  padding: 1.5rem 1rem;
  padding-top: 1.8rem;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
  color: #0ABAB5;
  background: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  text-align: center;
}
#cart .cart-row .cart-sidebar .sidebar .btn:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

#branch {
  background: #CFEBEA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#branch h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
  color: #0ABAB5;
}
#branch p {
  font-size: 2.5rem;
}
#branch .taste {
  margin: 3rem 0;
}
#branch .taste p {
  color: #0ABAB5;
  line-height: 1.5;
}
#branch .taste p span {
  border-bottom: 3px solid #0ABAB5;
  font-weight: bold;
}

.padding-top {
  padding-top: 25rem !important;
}
.padding-top h2 {
  color: #0ABAB5;
  padding-bottom: 3rem;
}

@media (min-width: 1921px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 8.5px;
  }
  header {
    padding: 1rem 10rem;
  }
  section {
    padding: 5rem 10rem;
  }
  main .main-content {
    padding: 0 10rem;
  }
  #seasonal-offer {
    padding-top: 10rem;
  }
  footer .footer-content {
    padding: 1rem 10rem;
  }
  #about {
    padding: 10rem 0;
    padding-top: 20rem;
  }
  #about .about-txt {
    padding-right: 10rem;
  }
  #about .about-txt p {
    font-size: 2.2rem;
  }
  #rules .rules-content {
    padding: 10rem 0;
    padding-top: 25rem;
  }
  #rules .rules-content p {
    font-size: 2.5rem;
  }
  #hero {
    padding: 0 10rem;
  }
  #product .product-row {
    gap: 10rem;
  }
  #cart {
    padding: 10rem;
    padding-top: 25rem;
  }
  #cart .cart-row {
    gap: 8rem;
  }
}
@media (max-width: 1200px) {
  #cart .cart-row {
    gap: 5rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8px;
  }
  header {
    padding: 1rem 5rem;
  }
  section {
    padding: 3rem 5rem;
  }
  #seasonal-offer .swiper {
    width: 100%;
  }
  .swiper-slide-active {
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
    background: #0ABAB5 !important;
  }
  #catalog {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
  #catalog .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
  }
  footer .footer-deco {
    top: -9.9rem;
  }
  footer .footer-content {
    padding: 1rem 5rem;
  }
  #about {
    padding: 5rem 0;
    padding-top: 30rem;
    gap: 5rem;
  }
  #about .about-txt {
    padding-right: 5rem;
    padding-top: 0;
  }
  #about .about-txt p {
    font-size: 2rem;
  }
  #contact-info .contact-info-row {
    gap: 10rem;
  }
  #contact-info .contact-info-row .contact-map {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    aspect-ratio: 1;
  }
  #contact-info .contact-info-row .contact-map iframe {
    aspect-ratio: 1;
    height: 100%;
  }
  #contact-info .contact-info-row .contact-details {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #cart {
    padding: 5rem;
    padding-top: 25rem;
  }
}
@media (max-width: 1000px) {
  html {
    font-size: 7.5px;
  }
  header {
    padding: 0;
    background: none;
  }
  header .header-content {
    background: #ffffff;
    padding: 5rem;
    padding-top: 18rem;
    height: 100dvh;
    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-content .left-header .logo {
    display: none;
  }
  header .header-content .left-header nav ul {
    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-content .left-header nav ul li {
    margin: 1.5rem 0;
  }
  header .header-content .left-header nav ul li a {
    font-size: 3.5rem;
  }
  header .header-content .right-header {
    display: none;
  }
  main .main-content {
    height: 100dvh;
    min-height: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-top: 0;
    background: url(img/main_background_m.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 5rem;
  }
  main .main-content .socials {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  main .main-content .socials a {
    margin: 2rem;
  }
  .toggle {
    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;
    background: #ffffff;
    padding: 1rem 5rem;
    border-bottom: 3px solid rgba(10, 186, 181, 0.25);
    width: 100%;
    position: fixed;
    z-index: 3;
  }
  .toggle .logo {
    width: 9rem;
  }
  .toggle .logo img {
    width: 100%;
    height: 100%;
  }
  .toggle .btns a:nth-child(1) {
    margin-right: 2rem;
  }
  .toggle .btns a img {
    width: 4.5rem;
    height: 4.5rem;
  }
  .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(1000px);
            transform: translateX(1000px);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  #seasonal-offer {
    padding-top: 5rem;
  }
  #seasonal-offer .swiper .swiper-wrapper .swiper-slide {
    margin: 3rem 0;
    margin-bottom: 6rem;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 15rem 5rem;
    padding-top: 20rem;
  }
  #about .about-txt {
    padding-right: 0;
  }
  #about .about-txt p {
    font-size: 2.5rem;
  }
  #rules .rules-content {
    width: 100%;
    padding-top: 15rem;
  }
  #hero {
    height: 50dvh;
    min-height: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-top: 0;
    background: url(img/hero_background_m.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem;
    padding-top: 15rem;
  }
  #offer {
    background: #CFEBEA;
    padding: 5rem;
  }
  #offer .t-btn {
    margin: 2rem;
  }
  .wedding-bcg {
    background: url(./img/wedding_background_m.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center;
    background-color: #CFEBEA !important;
  }
  #wedding-offer {
    padding: 5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #wedding-offer .offer-flag {
    width: 80%;
    height: auto;
  }
  .contact-bcg {
    min-height: 30rem !important;
    padding: 5rem !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    padding-top: 15rem !important;
  }
  #product {
    padding-top: 15rem;
    padding-bottom: 5rem;
  }
  #product .product-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
  #cart {
    padding-top: 15rem;
  }
  #cart .cart-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cart .cart-row .cart-content {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #cart .cart-row .cart-sidebar {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .padding-top {
    padding-top: 12rem !important;
  }
}
@media (max-width: 768px) {
  #catalog .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
  footer {
    padding: 3rem 5rem;
  }
  footer .footer-deco {
    display: none;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  #contact-info {
    padding: 5rem;
  }
  #contact-info h2 {
    text-align: center;
  }
  #contact-info .contact-info-row {
    gap: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0;
  }
  #contact-info .contact-info-row .contact-map {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #contact-info .contact-info-row .contact-details {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #contact-info .contact-info-row .contact-details p {
    line-height: 1.5;
  }
  #product .product-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 600px) {
  #cart .cart-menu a {
    font-size: 2rem;
    text-align: center;
  }
  #cart .cart-row .cart-content .recap .recap-img {
    display: none;
  }
  #cart .cart-row .cart-content .cart-form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cart .cart-row .cart-content table tr td img {
    width: 6rem;
    height: 6rem;
  }
  #cart .cart-row .cart-sidebar {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media (max-width: 425px) {
  .toggle {
    padding: 0.5rem 3rem;
  }
  .toggle .logo {
    width: 8rem;
  }
  .toggle .btns a img {
    width: 4rem;
    height: 4rem;
  }
  main .main-content {
    padding: 0 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main .main-content .socials {
    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: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-top: 3rem;
  }
  main .main-content .socials a img {
    width: 4.5rem;
    height: 4.5rem;
  }
  section {
    padding: 3rem;
  }
  #catalog {
    padding-top: 25rem;
  }
  #catalog .section-menu {
    margin-bottom: 0;
  }
  #catalog .products {
    padding: 1rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  #gallery {
    padding-top: 5rem;
  }
  #gallery h2 {
    font-size: 5rem;
    font-weight: 400;
    text-align: center;
    padding: 3rem;
  }
  #gallery .gallery {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }
  .cookies {
    width: 100%;
  }
  #about {
    padding: 10rem 3rem;
    padding-top: 15rem;
  }
  #rules {
    padding: 10rem 3rem;
    padding-top: 15rem;
  }
  #rules .rules-content {
    padding: 0;
  }
  #hero {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #wedding-offer .offer-flag {
    width: 100%;
  }
  #form form {
    width: 100%;
    padding: 5rem;
    padding-top: 0;
  }
  #form form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #form form .row input {
    width: 100%;
  }
  #product .product-row .product-details form .variants {
    gap: 0;
  }
  header .header-content .left-header nav {
    padding: 0rem;
  }
  header .header-content .left-header nav ul li a {
    font-size: 3.2rem;
  }
}