@charset "UTF-8";
/*
--- 01 TYPOOGRAPHY SYSTEM ---
--Font Size System (px)--
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

--Font Weights--
Default: 400
Bold: 700
Black: 900

--Line Heights--
Default: 1
Small: 1.08
Medium: 
Paragraph default: 1.5

--Letter Spacing--


--- 02 COLORS ---
--Primary: #ff3929
--Tints: 
--Shades: #4c110c
--Accents: 
--Greys: #444


--- 03 SHADOWS ---


--- 04 BORDER-RADIUS ---
Default: 9px

--- 05 WHITESPACE ---
--Spacing System (px)--
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
@keyframes buttonGrowAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleX(1.2) scaleY(1.4);
  }
}
@-webkit-keyframes scrollImages {
  from {
    -webkit-transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
  }
}
@keyframes scrollImages {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes reviewsCarousel {
  from {
    transform: translateX(30%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/*

0-600px: Extra small devices (portrait phones)
601-900px: Tablet portrait
901-1200px: Tablet landscape
1201-1920px: Desktop - where our normal styles are applied
1921px and up: Large screens - wide desktop


$breakpoint volby
- small-phone
- phone
- tab-port
- tab-land
- big-desktop
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

/*Root selector*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 75em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  html {
    font-size: 46.875%;
  }
}
@media (max-width: 43.75em) {
  html {
    font-size: 37.5%;
  }
}
@media (max-width: 37.5em) {
  html {
    font-size: 56.25%;
    scroll-behavior: auto;
  }
}
@media (max-width: 22.5em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 21.25em) {
  html {
    font-size: 46.875%;
  }
}

body {
  box-sizing: border-box;
  font-family: "Merriweather", serif;
  line-height: 1;
  font-weight: 400;
  color: #444;
}
body.lock {
  overflow: hidden;
  height: 100%;
}

a:link,
a:visited {
  text-decoration: none;
  color: #444;
}

a:hover {
  text-decoration: underline;
}

ul,
li {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.heading-primary {
  color: #4c110c;
  font-size: 6.2rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.heading-primary .heading-underline {
  display: inline-block;
  position: relative;
}
.heading-primary .heading-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 0.8rem;
  border-radius: 9px;
  background-color: #ff3929;
}
.heading-primary .color-change {
  color: #ff7469;
}
@media (max-width: 37.5em) {
  .heading-primary {
    font-size: 5.2rem;
  }
}

.heading-secondary {
  font-weight: 900;
  font-size: 5.2rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
@media (max-width: 37.5em) {
  .heading-secondary {
    font-size: 4.2rem;
  }
}
.heading-secondary--bigger {
  font-weight: 900;
  font-size: 6.2rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.heading-secondary--smaller {
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.heading-tertiary {
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.heading-tertiary--smaller {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.heading-quaternary {
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.heading-huge {
  font-weight: 900;
  font-size: 7.4rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.heading-huge .color-change {
  color: #ff7469;
}
@media (max-width: 37.5em) {
  .heading-huge {
    font-size: 6.2rem;
  }
}

.heading--dark {
  color: #4c110c;
}

.heading--light {
  color: #ffebea;
}

.italic {
  font-style: italic;
}

.mb--small {
  margin-bottom: 1.6rem;
}

.mb--bigger-small {
  margin-bottom: 2.4rem;
}

.mb--medium {
  margin-bottom: 3.2rem;
}

.mb--smaller-big {
  margin-bottom: 4.8rem;
}

.mb--big {
  margin-bottom: 6.4rem;
}

.mt--small {
  margin-top: 1.6rem;
}

.mt--medium {
  margin-top: 3.2rem;
}

.mt--big {
  margin-top: 6.4rem !important;
}

.my--small {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.my--medium {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
}

.my--big {
  margin-top: 6.4rem;
  margin-bottom: 1.6rem;
}

.ml--small {
  margin-left: 1.6rem;
}

.ml--medium {
  margin-left: 3.2rem;
}

.ml--big {
  margin-left: 6.4rem;
}

.mr--small {
  margin-right: 1.6rem;
}

.mr--medium {
  margin-right: 3.2rem;
}

.mr--big {
  margin-right: 6.4rem;
}

.mx--small {
  margin-right: 1.6rem;
  margin-left: 1.6rem;
}

.mx--medium {
  margin-right: 3.2rem;
  margin-left: 3.2rem;
}

.mx--big {
  margin-right: 6.4rem;
  margin-left: 6.4rem;
}

.pb--small {
  padding-bottom: 1.6rem;
}

.pb--medium {
  padding-bottom: 3.2rem;
}

.pb--big {
  padding-bottom: 6.4rem;
}

.pt--big {
  padding-top: 6.4rem;
}

.pt--small {
  padding-top: 1.6rem;
}

.pt--medium {
  padding-top: 3.2rem;
}

.pt--big {
  padding-top: 6.4rem;
}

.star {
  position: absolute;
  z-index: -50;
  opacity: var(--star-opacity, auto);
  top: var(--star-top, auto);
  right: var(--star-right, auto);
  bottom: var(--star-bottom, auto);
  left: var(--star-left, auto);
}
.star--top-middle {
  transform: translate(0, -50%);
}
.star--smaller {
  max-width: 80%;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.position-relative {
  position: relative;
}

.section-gap--medium {
  margin-bottom: 9.6rem;
}

.section-gap--big {
  margin-bottom: 12.8rem;
}

.section-gap--huge {
  margin-bottom: 20rem;
}

.text-italic {
  font-style: italic;
}

.font-bolder {
  font-weight: 600 !important;
}

.color-light {
  color: #ffebea !important;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 13rem;
  padding: 1.6rem 4.8rem 2.4rem 4.8rem;
  background-color: #ffebea;
}
.header--brown {
  background-color: #f6ebe1 !important;
}
.header .header__logo {
  height: 8.5rem;
  transition: transform 200ms ease-out;
}
.header .header__logo:hover {
  transform: scale(1.15);
}
@media (max-width: 37.5em) {
  .header {
    padding: 1.6rem 3rem 2.4rem 3rem;
  }
}

.sticky .header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 9rem;
  opacity: 0;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
}
.sticky .header .header__logo {
  height: 6.5rem;
}
.sticky.sticky-active.lock .header {
  transform: none !important;
}
.sticky.sticky-active .header {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.sticky .hero-section--light[data-sticky-target] {
  padding-top: 16.2rem;
}
.sticky .feature-section[data-sticky-target] {
  padding-top: 13rem;
}
.sticky .hero-section--dark[data-sticky-target] {
  padding-top: 22.6rem !important;
}
.sticky .hero-section--brown[data-sticky-target] {
  padding-top: 22.6rem;
}
.sticky .hero-section--bigger-padding[data-sticky-target] {
  padding-top: 22.6rem !important;
}
@media (max-width: 37.5em) {
  .sticky .hero-section--bigger-padding[data-sticky-target] {
    padding-top: 19rem !important;
  }
}
.sticky .hero-section--extreme-padding[data-sticky-target] {
  padding-top: 25.6rem !important;
}
@media (max-width: 37.5em) {
  .sticky .hero-section--extreme-padding[data-sticky-target] {
    padding-top: 21rem !important;
  }
}
.sticky .header-sticky-target {
  padding-top: 13rem;
}

.grid {
  display: grid;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.grid--gap-small {
  gap: 2.4rem;
}

.grid--gap-medium {
  gap: 4.8rem;
}

.grid--gap-big {
  gap: 6.4rem;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.bigger-container {
  max-width: 136.6rem;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.footer {
  background-color: #474747;
  padding: 4.8rem 8rem;
  grid-template-columns: 2fr 1fr;
}
.footer__heading-container {
  display: flex;
  border-bottom: 2px solid white;
  color: white;
  text-align: center;
  padding-bottom: 2rem;
}
.footer__heading-container-contact {
  flex: 1;
}
.footer__heading-container-links {
  flex: 1;
}
.footer__contact-item-text--flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__contact-item-text--flex a {
  color: white;
}
.footer__contact-item-text--flex .footer__contact-item--masiarstvo {
  color: #f56673;
}
.footer__contact-item-text--flex .footer__contact-item--restauracia {
  color: #c4d6b0;
}
.footer__contact-link-container {
  display: flex;
}
.footer__image-container {
  text-align: center;
  align-self: center;
}
.footer__google-maps {
  display: block;
  width: 100%;
  height: 40rem;
  border: 0;
}
.footer__contact-container {
  color: white;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  flex: 1;
}
.footer__nav {
  flex: 1;
  text-align: center;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.footer__nav-link:link, .footer__nav-link:visited {
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}
.footer__nav-link:hover {
  color: #ff3929;
  text-decoration: none;
}
.footer__contact-item {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.footer__social {
  display: flex;
  gap: 4.8rem;
}
.footer__social-item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.footer__social-item a:link,
.footer__social-item a:visited {
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
  font-weight: 700;
}
.footer__social-item a:hover {
  color: #ff3929;
  text-decoration: none;
}
@media (max-width: 37.5em) {
  .footer {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }
  .footer__heading-container-links {
    display: none;
  }
  .footer__contact-link-container {
    display: block;
  }
  .footer__nav {
    margin-top: 5rem;
  }
  .footer__nav ul {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .footer__contact-container {
    line-height: 1.5;
  }
}
@media (max-width: 22.5em) {
  .footer__social {
    flex-wrap: wrap;
    gap: 1.8rem;
  }
}

.main-nav__list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1rem;
}
.main-nav__list .main-nav__link:link,
.main-nav__list .main-nav__link:visited {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  color: #4c110c;
}
.main-nav__list .main-nav__item:hover {
  background-color: #ffd7d4;
}
.main-nav__list .main-nav__item-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
}
.main-nav__list .main-nav__item {
  position: relative;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.main-nav__list .main-nav__item:hover .submenu {
  display: block;
}

.main-nav__item.active .main-nav__item-container {
  background-color: #ffd7d4;
}
.main-nav__item.active .main-nav__item-container--brown {
  background-color: #edd6c2;
}

.main-nav__menu-icon {
  width: 3rem;
  height: auto;
}

.header--brown .main-nav__item:hover {
  background-color: #edd6c2;
}

.header.hamburger .main-nav__list {
  gap: 3rem;
}
.header.hamburger .main-nav__list .main-nav__link:link,
.header.hamburger .main-nav__list .main-nav__link:visited {
  font-size: 3rem;
  text-align: center;
}
.header.hamburger .main-nav__item {
  width: 100%;
}
.header.hamburger .main-nav__item:hover {
  background-color: transparent;
}
.header.hamburger .main-nav__item:hover .submenu {
  display: none;
}
.header.hamburger .main-nav__item.submenu-open:hover .submenu {
  display: block;
}
.header.hamburger .main-nav__item.active-ham .main-nav__item-container {
  background-color: #ffd7d4;
}
.header.hamburger .main-nav__item.active-ham .main-nav__item-container--brown {
  background-color: #edd6c2;
}
.header.hamburger .main-nav__item-container {
  margin-bottom: 1rem;
}
.header.hamburger .main-nav__menu-icon {
  width: 4rem;
  height: auto;
}

.hero-section {
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem;
}
.hero-section--light {
  background-color: #ffebea;
  padding-top: 3.2rem;
}
.hero-section--dark {
  background-color: #190604;
  color: #ececec;
}
.hero-section--dark .hero__description {
  color: #c7c7c7;
}
.hero-section--brown {
  background-color: #f2e0d1;
  background: linear-gradient(to top, rgba(242, 224, 209, 0.65), rgba(233, 204, 179, 0.65) 60%), url("../Images/Gastronomia/paper-texture.jpg");
  background-size: cover;
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
}
.hero-section--dark-gradient {
  background: linear-gradient(to top, #190604, #330b08);
}
.hero-section--bigger-padding {
  padding-top: 9.6rem !important;
  padding-bottom: 9.6rem;
}
@media (max-width: 37.5em) {
  .hero-section--bigger-padding {
    padding-top: 6rem !important;
  }
}
.hero-section--extreme-padding {
  padding-top: 12.6rem;
  padding-bottom: 12.6rem;
}
@media (max-width: 37.5em) {
  .hero-section--extreme-padding {
    padding-top: 8rem;
  }
}
.hero-section .hero {
  max-width: 136.6rem;
  margin: 0 auto;
}
.hero-section .hero__description {
  font-size: 2rem;
  line-height: 1.5;
}
.hero-section .hero__text-box--center {
  align-self: center;
}
.hero-section .hero__buttons {
  display: flex;
  gap: 8rem;
}
.hero-section .hero__image-box {
  align-self: end;
  position: relative;
}
.hero-section .hero__image-box--align-center {
  align-self: center !important;
}
.hero-section .hero__image-box--overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f2e0d1;
  z-index: 5;
  opacity: 0.1;
}
.hero-section .hero__image {
  width: 100%;
  height: auto;
}
.hero-section .hero__image--border {
  border: 7px solid #d29967;
  border-radius: 5%;
}
.hero-section .hero__image--border-primary {
  border: 5px solid #ff3929;
  border-radius: 5%;
}
.hero-section .hero__list {
  font-size: 2rem;
  row-gap: 2.4rem;
}
.hero-section .hero__list li::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../Images/Hviezdy/Hviezda-mala-tmava.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 1.6rem;
  margin-bottom: -5px;
}
.hero-section .hero__image-collage-box {
  align-self: center;
  gap: 1.2rem;
  position: relative;
}
.hero-section .hero__image-collage {
  width: 100%;
  aspect-ratio: 5/3.5;
  object-fit: cover;
  border: 3px solid #ff3929;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .hero-section .hero {
    grid-template-columns: 1fr;
  }
  .hero-section .hero__image-box {
    text-align: center;
  }
  .hero-section .hero__image {
    width: 65%;
  }
  .hero-section .hero__description {
    font-size: 2.5rem;
  }
}
@media (max-width: 37.5em) {
  .hero-section .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-section .hero__description {
    font-size: 2.2rem;
  }
  .hero-section .hero .on-logo {
    width: 50%;
  }
  .hero-section .hero__list {
    grid-template-columns: 1fr;
    text-align: left;
    margin-left: 5rem;
    line-height: 1.5;
  }
  .hero-section .hero__buttons {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-section .hero .experience-box {
    padding: 1.5rem;
  }
  .hero-section .hero .experience-box p {
    font-size: 1.3rem;
  }
  .hero-section .hero .heading-primary {
    font-size: 4.8rem;
  }
}
.hero-section .hero-single-title {
  position: relative;
  max-width: 136.6rem;
  margin: 0 auto;
  text-align: center;
}
.hero-section .hero-single-title__description {
  font-size: 2rem;
  line-height: 1.8;
  color: #666;
  position: relative;
  margin-bottom: 8rem;
}
.hero-section .hero-single-title__description img {
  position: absolute;
  top: 75%;
  pointer-events: none;
}
.hero-section .hero-single-title__description--white {
  color: #ffebea !important;
  font-style: italic;
}
.hero-section .hero-single-title__small-description {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 8rem;
}
.hero-section .hero-single-title__images-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-section .hero-single-title__image {
  width: 32%;
  aspect-ratio: 4/3;
  border: 5px solid #ff7469;
}
.hero-section .hero-single-title__image--middle {
  margin-top: 10rem;
}
.hero-section .hero-single-title__images-box-two-images {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.hero-section .hero-single-title__image-fifty {
  max-width: 48%;
  border: 0.5rem solid #ff7469;
}
.hero-section .hero-single-title__under-title {
  font-size: 3.6rem;
  text-transform: uppercase;
  color: #ff6154;
  font-weight: 900;
}
.hero-section .hero-single-title__cta-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-bottom: 9.6rem;
}
.hero-section .hero-single-title__cta-container--left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.hero-section .hero-single-title__cta-container--right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.hero-section .hero-single-title__cta-text-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.8rem;
}
.hero-section .hero-single-title__cta-text-title {
  color: #ff6154;
  font-weight: bold;
}
.hero-section .hero-single-title__cta-text {
  color: #ffebea;
}
.hero-section .hero-single-title__image-background-1 {
  position: absolute;
  top: 15%;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
}
.hero-section .hero-single-title__image-background-2 {
  position: absolute;
  top: 40%;
  right: 0;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .hero-section .hero-single-title__description {
    margin-bottom: 5.2rem;
  }
  .hero-section .hero-single-title__description img {
    display: none;
  }
  .hero-section .hero-single-title__images-box {
    display: block;
  }
  .hero-section .hero-single-title__image {
    width: 70%;
    margin-top: 3rem;
    height: auto;
  }
}
@media (max-width: 37.5em) {
  .hero-section .hero-single-title {
    text-align: left;
  }
  .hero-section .hero-single-title .heading-huge {
    margin-bottom: 2rem;
  }
  .hero-section .hero-single-title__image-background-1, .hero-section .hero-single-title__image-background-2 {
    display: none;
  }
  .hero-section .hero-single-title__description {
    line-height: 2;
    margin-bottom: 4rem;
  }
  .hero-section .hero-single-title__description img {
    display: none;
  }
  .hero-section .hero-single-title__small-description {
    margin-top: 0.3rem;
    margin-bottom: 4rem;
  }
  .hero-section .hero-single-title__under-title {
    line-height: 1.3;
  }
  .hero-section .hero-single-title__cta-container {
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 8rem;
    justify-content: left;
  }
  .hero-section .hero-single-title__images-box-two-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .hero-section .hero-single-title__image-fifty {
    max-width: 100%;
  }
  .hero-section .hero-single-title .btn {
    width: 100%;
    text-align: center;
  }
  .hero-section .hero-single-title__images-box {
    display: block;
  }
  .hero-section .hero-single-title__image {
    width: 100%;
    margin-top: 3rem;
    height: auto;
  }
}

.btn:link, .btn:visited {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  font-size: 2rem;
  border-radius: 9px;
  transition: all 0.3s;
  padding: 1.6rem 3.2rem;
  position: relative;
}
.btn--bigger {
  font-size: 2.5rem !important;
}
.btn--smaller {
  font-size: 1.6rem !important;
}
.btn--smaller-padding {
  padding: 1.6rem 2rem !important;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.1);
}
.btn--animated.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 9px;
  z-index: -1;
}
.btn--animated:hover::after {
  animation: buttonGrowAnimation 0.5s ease-out;
}
.btn--full.btn--primary-color {
  background-color: #ff3929;
  color: #fff;
}
.btn--full.btn--primary-color:active {
  background-color: #e63325;
}
.btn--full.btn--primary-color::after {
  background-color: #ff3929;
}
.btn--full.btn--light-color {
  background-color: #ffebea;
  color: #4c110c;
}
.btn--full.btn--brown-color {
  background-color: #d29967;
  color: #fff;
}
.btn--full.btn--brown-color:active {
  background-color: #d29967;
}
.btn--full.btn--brown-color::after {
  background-color: #d29967;
}
.btn--outline:hover {
  box-shadow: inset 0 0 0 2px #ff3929, 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.btn--outline:active {
  box-shadow: inset 0 0 0 2px #ff3929, 0 2px 0.5rem rgba(0, 0, 0, 0.1);
}
.btn--outline.btn--primary-color {
  color: #ff3929;
}

.button {
  font-weight: 700;
  font-size: 2rem;
  border-radius: 9px;
  transition: all 0.3s;
  padding: 1.6rem 3.2rem;
  position: relative;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}
.button:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.1);
}
.button--animated.button::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 9px;
  z-index: -1;
}
.button--animated:hover::after {
  animation: buttonGrowAnimation 0.5s ease-out;
}
.button--full.button--primary-color {
  background-color: #ff3929;
  color: #fff;
}
.button--full.button--primary-color:active {
  background-color: #e63325;
}
.button--full.button--primary-color::after {
  background-color: #ff3929;
}
.button--full.button--light-color {
  background-color: #ffebea;
  color: #4c110c;
}
.button--full.button--brown-color {
  background-color: #d29967;
  color: #fff;
}
.button--full.button--brown-color:active {
  background-color: #d29967;
}
.button--full.button--brown-color::after {
  background-color: #d29967;
}
.button--outline:hover {
  box-shadow: inset 0 0 0 2px #ff3929, 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.button--outline:active {
  box-shadow: inset 0 0 0 2px #ff3929, 0 2px 0.5rem rgba(0, 0, 0, 0.1);
}
.button--outline.button--primary-color {
  color: #ff3929;
}

.services-widget--top-margin {
  margin-top: 8rem;
}

.services-widget__title {
  font-size: 2.4rem;
  color: #4c110c;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
@media (max-width: 37.5em) {
  .services-widget__title {
    text-align: center;
  }
}

.services-widget__container {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}
.services-widget__container .services-widget__container-link {
  text-decoration: none;
  flex: 1 1 0;
  display: flex;
}
.services-widget__container .services-widget__service-container {
  background-color: #4c110c;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 1.2rem;
  cursor: pointer;
  border-radius: 9px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in;
}
.services-widget__container .services-widget__service-container:hover {
  transform: scale(1.08);
}
.services-widget__container .services-widget__service-container .services-widget__service-title {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}
.services-widget__container .services-widget__service-container .services-widget__icon {
  width: 4.8rem;
  height: 4.8rem;
}
@media (max-width: 37.5em) {
  .services-widget__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .services-widget__container .services-widget__container-link:last-child {
    grid-column: 1/-1;
  }
  .services-widget__container--4-items .services-widget__container-link:last-child {
    grid-column: auto;
  }
  .services-widget__container .services-widget__service-container {
    padding: 2rem 1rem;
    height: 100%;
  }
  .services-widget__container .services-widget__service-container .services-widget__service-title {
    font-size: 2rem;
  }
}

.services-widget.services-widget--light--brown .services-widget__service-container {
  border: 3px solid #e4c2a4;
  background-color: transparent;
  box-shadow: none;
}
.services-widget.services-widget--light--brown .services-widget__service-container:hover {
  background-color: #edd6c2;
}
.services-widget.services-widget--light--red .services-widget__service-container {
  border: 2px solid #4c110c;
  background-color: transparent;
  box-shadow: none;
}
.services-widget.services-widget--light--red .services-widget__service-container:hover {
  background-color: #ffd7d4;
}
.services-widget.services-widget--light--white .services-widget__service-container {
  border: 2px solid #ffebea;
  background-color: transparent;
  box-shadow: none;
}
.services-widget.services-widget--light--white .services-widget__service-container:hover {
  background-color: #4c110c;
}
.services-widget.services-widget--light .services-widget__service-title {
  color: #4c110c;
}
.services-widget.services-widget--light .services-widget__icons--light {
  width: 5.2rem;
  height: 5.2rem;
}

.feature-section__promo-text {
  font-size: 2.4rem;
  line-height: 1.7;
  margin-bottom: 16rem;
}
@media (max-width: 37.5em) {
  .feature-section__promo-text {
    margin-bottom: 10rem;
  }
}

.feature-section--light {
  background: linear-gradient(to bottom, white, #ffebea);
}

.feature-section--padding {
  padding-bottom: 3.2rem;
}

.feature {
  align-items: center;
}
.feature .feature__image {
  max-width: 100%;
  height: auto;
  border: 0.4rem solid #ff3929;
  border-radius: 15px;
  object-fit: cover;
}
.feature .feature__image--brown-border {
  border: 5px solid #d29967;
}
.feature .feature__image--borderless {
  border: none;
}
.feature .feature__image-box {
  height: 100%;
  width: 100%;
}
.feature .feature__text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}
.feature .feature__text-box--center {
  align-self: center;
}
.feature .feature__text-box h3 {
  z-index: 10;
}
.feature .feature__text {
  font-size: 1.8rem;
  line-height: 2;
  z-index: 10;
}
.feature__promo-numbers {
  background-color: #ffebea;
  height: 20rem;
  width: 20rem;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 91px 36px rgba(255, 136, 127, 0.4);
  -moz-box-shadow: 0px 0px 91px 36px rgba(255, 136, 127, 0.4);
  box-shadow: 0px 0px 91px 36px rgba(255, 136, 127, 0.4);
  position: absolute;
  z-index: 0;
}
.feature__promo-numbers--1 {
  top: -55%;
  left: -15%;
}
.feature__promo-numbers--2 {
  top: -45%;
  right: 0;
}
.feature__promo-number {
  font-size: 13rem;
  color: #ff9c94;
}
.feature__main-points {
  display: flex;
  font-size: 2.4rem;
  color: #4c110c;
  font-weight: bold;
  font-style: italic;
  gap: 7rem;
}
@media (max-width: 37.5em) {
  .feature {
    grid-template-columns: 1fr;
    margin-bottom: 7rem;
  }
  .feature .badget {
    display: none;
  }
  .feature .btn {
    align-self: stretch;
    text-align: center;
  }
  .feature__image-box {
    order: 2;
  }
  .feature__text-box {
    order: 1;
  }
  .feature__promo-numbers {
    display: none;
  }
  .feature .feature__text {
    font-size: 2rem;
  }
}

@media (max-width: 37.5em) {
  .feature.no-margin {
    margin-bottom: 0;
    padding-bottom: 7rem;
  }
}

.badget {
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 1rem;
  background-color: #ff9c94;
  color: white;
  border-radius: 1.5rem;
  border-top: 1.5px solid black;
  border-right: 0.3rem solid black;
  border-bottom: 0.3rem solid black;
  border-left: 1.5px solid black;
  text-align: center;
  transform: rotate(-2deg);
}
.badget--small {
  font-size: 1.2rem;
  padding: 1rem 0.8rem;
}
.badget--medium {
  font-size: 1.8rem;
  padding: 1.2rem;
}
.badget--big {
  font-size: 3rem;
  padding: 1.5rem;
}

.most-favourite__link {
  display: block;
}
.most-favourite__link:hover {
  text-decoration: none;
}
.most-favourite__link:hover .most-favourite {
  background-color: #ffebea;
  transform: translateY(-8px) scale(1.03);
  box-shadow: -1px 1px 1rem 1rem rgba(0, 0, 0, 0.3);
}

.most-favourite {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.3);
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 3.2rem;
  position: relative;
  transition: all 200ms;
  height: 100%;
}
.most-favourite__image {
  max-width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
  object-fit: cover;
}
.most-favourite__heading-budgets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.most-favourite__heading-budgets-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.most-favourite__sale-box {
  flex-basis: 20%;
  background-color: red;
  padding: 1rem;
}
.most-favourite__sale-text {
  font-size: 2rem;
}
.most-favourite__circle {
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
.most-favourite__circle--green {
  background-color: lightgreen;
}
.most-favourite__circle--red {
  background-color: lightcoral;
}
.most-favourite__budgets-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #190604;
}
.most-favourite__heading {
  font-size: 3rem;
  color: #190604;
  font-weight: 700;
  justify-content: flex-start;
  line-height: 1.15;
  min-height: 7rem;
}
.most-favourite__image-container {
  flex-basis: 30rem;
  overflow: hidden;
  text-align: center;
}
.most-favourite__price-container {
  margin-bottom: 7px;
}
.most-favourite__price {
  font-size: 3rem;
  font-weight: bold;
  color: #4c110c;
}
.most-favourite__capacity {
  font-size: 1.6rem;
}
.most-favourite__slovakia-flag {
  height: 7rem;
  width: 7rem;
  position: absolute;
  bottom: 3%;
  right: 0;
  transform: rotate(45deg);
  opacity: 0.3;
}

.most-favourite.sale .badget {
  position: absolute;
  right: 0;
}
.most-favourite.sale .most-favourite__price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.most-favourite.sale .most-favourite__sale-price {
  font-size: 3rem;
  font-weight: bold;
  color: green;
}
.most-favourite.sale .most-favourite__price {
  text-decoration: line-through;
  font-size: 1.8rem;
  color: #444;
}

@media (max-width: 37.5em) {
  .most-favourite-section__container {
    grid-template-columns: 1fr;
    width: 80%;
  }
  .most-favourite-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product-show__parent {
    grid-template-columns: 1fr;
    width: 90%;
  }
}
.more-features__image {
  width: 100%;
  height: 100%;
}
.more-features__header {
  padding-left: 2.4rem;
}
.more-features__item {
  max-height: 60rem;
}
.more-features__item-text {
  background-color: #330b08;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
  padding: 3rem 6rem;
}
.more-features__item-text a.btn {
  align-self: flex-start;
  padding-left: 6rem;
  padding-right: 6rem;
}
.more-features__item-text p {
  font-size: 1.6rem;
  margin-bottom: 24px;
  line-height: 1.5;
}
.more-features__item-text--left {
  background-color: #ffebea;
  padding-left: 12rem;
}
.more-features__heading.heading-tertiary {
  font-size: 5.2rem;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .more-features__heading.heading-tertiary {
    font-size: 4rem;
  }
  .more-features__item-text {
    padding: 3rem 6rem;
  }
}
@media (max-width: 43.75em) {
  .more-features__heading.heading-tertiary {
    font-size: 4rem;
  }
  .more-features__item-text {
    padding: 3rem 2rem;
  }
}
@media (max-width: 37.5em) {
  .more-features__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .more-features__heading.heading-tertiary {
    font-size: 3rem;
  }
  .more-features__item-text {
    padding: 3rem 2.2rem;
  }
  .more-features__item-text p {
    line-height: 1.5;
    font-size: 1.8rem;
  }
  .more-features .btn {
    font-size: 1.6rem;
    display: block;
    width: 80%;
    text-align: center;
    margin-left: 10%;
  }
  .more-features__item--1 {
    order: 0;
  }
  .more-features__item--2 {
    order: 1;
  }
  .more-features__item--3 {
    order: 3;
  }
  .more-features__item--4 {
    order: 2;
  }
  .more-features__item--5 {
    order: 4;
  }
  .more-features__item--6 {
    order: 5;
  }
  .more-features__item--7 {
    order: 7;
  }
  .more-features__item--8 {
    order: 6;
  }
  .more-features__item--9 {
    order: 8;
  }
  .more-features__item--10 {
    order: 9;
  }
}

.carousel-section {
  display: flex;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  width: max-content;
  height: 30rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: scrollImages 20s linear infinite;
}
.carousel-container img {
  flex: 0 0 30vw;
  width: 30vw;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.carousel-container .carousel__image-position {
  object-position: var(--object-pos, center);
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .carousel-container img {
    flex: 0 0 50vw;
    width: 50vw;
  }
}
@media (max-width: 37.5em) {
  .carousel-container {
    animation: scrollImages 15s linear infinite;
  }
  .carousel-container img {
    flex: 0 0 100vw;
    width: 100vw;
  }
}

.breadcrumb__nav {
  background-color: #ffb0a9;
  padding: 2rem;
  display: inline-block;
}
.breadcrumb__nav-list {
  display: flex;
  justify-content: flex-start;
}
.breadcrumb__nav-item {
  font-size: 1.4rem;
  list-style: none;
  color: #4c110c;
}
.breadcrumb__nav-item a {
  color: #4c110c;
}
.breadcrumb__nav-item::after {
  content: "-";
  margin: 0 1rem;
}
.breadcrumb__nav-item:last-child::after {
  content: "";
}
.breadcrumb__nav-item.active {
  font-weight: 700;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .breadcrumb__nav-item {
    font-size: 2.4rem;
  }
}
@media (max-width: 37.5em) {
  .breadcrumb {
    padding: 2rem 0.3rem;
  }
  .breadcrumb__nav-list {
    flex-wrap: wrap;
    line-height: 2;
  }
  .breadcrumb__nav-item {
    font-size: 1.8rem;
  }
  .breadcrumb__nav-item::after {
    margin: 0 0.2rem;
  }
}

.product-categories__product-image-container {
  height: 27rem;
  background-color: #88665b;
  border-radius: 1.5rem 1.5rem 0 0;
}

.product-categories__stars--left--1 {
  left: -10rem;
  top: 0;
}
.product-categories__stars--left--2 {
  left: -15rem;
  top: 10rem;
}
.product-categories__stars--left--3 {
  left: -20rem;
  top: 20rem;
}

.product-categories__stars--right--1 {
  right: -10rem;
  top: 0;
}
.product-categories__stars--right--2 {
  right: -15rem;
  top: 10rem;
}
.product-categories__stars--right--3 {
  right: -20rem;
  top: 20rem;
}

.product-categories__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 37% 50%;
}

.product-categories__product-text-container {
  background-color: #ffb0a9;
  padding: 1.6rem;
  font-size: 2rem;
  color: #4c110c;
  font-weight: 700;
  text-align: center;
  border-radius: 0 0 1.5rem 1.5rem;
  overflow: hidden;
}

.product-categories__link {
  transition: transform 0.15s ease-in;
}
.product-categories__link:hover {
  text-decoration: none;
  transform: scale(1.02);
}
.product-categories__link:hover .product-categories__text {
  font-weight: 900;
  color: white;
}

.categories-section {
  scroll-margin-top: 10rem;
}
.categories-section h2 {
  margin-bottom: 8rem;
}
@media (max-width: 37.5em) {
  .categories-section h2 {
    margin-bottom: 6rem;
  }
}

.categories {
  row-gap: 10rem;
}
.categories__category {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.categories__icon {
  z-index: 1;
  max-width: 10rem;
}
.categories__circle {
  background-color: #ff7469;
  border-radius: 50%;
  width: 17rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  margin-bottom: 4.8rem;
  position: relative;
  overflow: hidden;
}
.categories__circle--smaller {
  width: 28% !important;
}
.categories__circle:hover .categories__hover-efect {
  transform: scale(6);
  opacity: 1;
}
.categories__category-name {
  font-size: 3rem;
  font-weight: 900;
  color: #661710;
}
.categories__text {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.categories__hover-efect {
  position: absolute;
  width: 20%;
  height: 20%;
  background-color: #992219;
  border-radius: 50%;
  z-index: 0;
  transition: all 400ms ease-out;
  opacity: 0;
}
@media (max-width: 37.5em) {
  .categories {
    padding: 0 1rem;
    grid-template-columns: 1fr 1fr;
    row-gap: 5rem;
  }
  .categories__text {
    margin-bottom: 0;
  }
  .categories__circle {
    margin-bottom: 3rem;
  }
  .categories__category {
    justify-content: space-evenly;
  }
}

.opening-hours {
  border: 4px solid #ffb0a9;
  border-radius: 1.5rem;
  padding: 3.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
}
.opening-hours--brown {
  border: 4px solid #d7a376;
}
.opening-hours__table {
  border-collapse: collapse;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
}
.opening-hours__table td:first-child {
  padding: 2rem 6rem 2rem 2rem;
  border-radius: 1.5rem 0 0 1.5rem;
}
.opening-hours__table td:last-child {
  text-align: center;
  padding-right: 2rem;
  border-radius: 0 1.5rem 1.5rem 0;
}
.opening-hours__table tr:nth-child(odd) {
  background-color: #ffb0a9;
  color: #4c110c;
}
.opening-hours__table--brown tr:nth-child(odd) {
  background-color: #f3d9c4;
  color: #543d29;
}

.hero-carousel {
  background-color: #4c110c;
  height: 60rem;
}
.hero-carousel .bigger-container {
  height: 100%;
}
.hero-carousel__images-container {
  position: relative;
  display: flex;
  justify-content: center;
  flex: 1;
}
.hero-carousel__thumbnails {
  position: absolute;
  left: 0;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 2rem 1rem rgba(0, 0, 0, 0.6);
}
.hero-carousel__thumbnail-container {
  width: 12rem;
  height: 10rem;
}
.hero-carousel__thumbnail {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-carousel__thumbnail:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.hero-carousel__main-image-container {
  flex-basis: 50rem;
  box-shadow: 0.5rem 0 1rem 5px rgba(0, 0, 0, 0.2);
  border: 5px solid #ff3929;
  transform: scale(1.05);
}
.hero-carousel__main-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-carousel__text-container {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  flex: 1;
  z-index: 50;
}
.hero-carousel__text-container .btn {
  align-self: flex-start;
}
.hero-carousel__text-container .badget {
  align-self: flex-start;
  margin-bottom: -1.6rem;
}
.hero-carousel__text-container .star {
  z-index: -1;
}
.hero-carousel__heading {
  font-size: 6.2rem;
  color: #ffebea;
  text-transform: uppercase;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.hero-carousel__heading span {
  color: #ff3929;
  display: block;
}
.hero-carousel__text {
  font-size: 1.8rem;
  color: #ffebea;
  margin-bottom: 1.6rem;
  line-height: 1.5;
  margin-top: -1rem;
}
.hero-carousel__details {
  color: #ffebea;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
.hero-carousel__address-container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.hero-carousel__open-hours-container {
  display: flex;
  gap: 1.5rem;
}
.hero-carousel__open-hours span {
  color: #ff3929;
}
.hero-carousel__open-hours:not(:last-child) {
  margin-bottom: 1rem;
}

.header--brown .submenu__item:hover {
  background-color: #dbad85 !important;
}

.submenu {
  position: absolute;
  background-color: white;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2rem 3rem 0.5rem rgba(0, 0, 0, 0.2);
}
.submenu__link:visited, .submenu__link:link {
  font-size: 1.6rem;
  color: #4c110c;
  line-height: 1.3;
}
.submenu__link:hover {
  text-decoration: none;
}
.submenu__menu-icon {
  width: 3rem;
  height: auto;
}
.submenu__menu-icon--smaller {
  width: 2.6rem;
  height: auto;
}
.submenu__menu-icon--bigger {
  width: 3.5rem;
  height: auto;
}
.submenu__item:hover {
  background-color: #ff9c94;
}
.submenu__item-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 2rem;
}
.submenu__item.active {
  background-color: #ff9c94;
  font-weight: 900;
}
.submenu__item.active--brown {
  background-color: #dbad85;
  font-weight: 900;
}
.submenu > li:first-child {
  padding-top: 3px;
}
.submenu > li:last-child {
  padding-bottom: 3px;
}

.submenu-open .submenu {
  position: static;
  display: block;
  width: auto;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border-bottom: 2px solid #e0e0e0;
}
.submenu-open .submenu__link:visited, .submenu-open .submenu__link:link {
  font-size: 2.5rem;
}
.submenu-open .submenu__item:hover {
  background-color: transparent;
}
.submenu-open .submenu__item:not(:last-child) {
  margin-bottom: 2rem;
}

.image-showcase {
  padding-bottom: 9.6rem;
}
.image-showcase__image {
  height: 30rem;
  width: 100%;
  object-fit: cover;
}
.image-showcase__image:nth-child(2) {
  margin-top: 5rem;
}
.image-showcase__image:nth-child(3) {
  margin-top: 10rem;
}
.image-showcase__image:nth-child(4) {
  margin-top: 15rem;
}
.image-showcase__text {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (max-width: 37.5em) {
  .image-showcase__text {
    font-size: 2rem;
  }
  .image-showcase__gallery {
    grid-template-columns: 1fr;
  }
  .image-showcase__image:not(:first-child) {
    margin-top: 5rem !important;
  }
  .image-showcase__image:last-child {
    margin-bottom: 5rem;
  }
  .image-showcase .btn {
    width: 100%;
    text-align: center;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Tri pevné stĺpce */
  gap: 10px;
  /* Rozostupy medzi obrázkami */
}
.gallery__meat-shop {
  object-position: 0;
}
@media (max-width: 37.5em) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.product-show__container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  border-radius: 1.5rem;
}
.product-show__name-container, .product-show__button-container, .product-show__accessibility {
  padding: 1.8rem 2.4rem;
  font-size: 1.8rem;
  text-align: center;
}
.product-show__name-container {
  background-color: #ff3929;
  color: white;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.product-show__price-container {
  background-color: #ffb0a9;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1.8rem 2rem;
}
.product-show__image-container {
  width: 100%;
  height: 70%;
  background-color: #ffebeb;
}
.product-show__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-show__button-container {
  background-color: #ff3929;
}
.product-show__button:link, .product-show__button:visited {
  color: white;
}
.product-show__price-sale {
  text-decoration: line-through;
  position: relative;
  font-weight: 400;
  font-size: 1.4rem;
}
.product-show__price-sale span {
  display: inline-block;
  font-weight: 900;
  font-size: 1.8rem;
  margin-left: 5px;
}
.product-show__sale-container::after {
  content: "Zľava";
  text-transform: uppercase;
  position: absolute;
  right: -3rem;
  top: -1rem;
  display: inline-block;
  background-color: #ff9c94;
  border-radius: 15px;
  border-top: 1.5px solid black;
  border-right: 2.5px solid black;
  border-bottom: 2.5px solid black;
  border-left: 1.5px solid black;
  text-align: center;
  transform: rotate(-4deg);
  padding: 5px 8px;
  font-size: 1.6rem;
  z-index: 150;
}
.product-show__accessibility {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}
.product-show__accessibility--green {
  background-color: #a8ff90;
}
.product-show__accessibility--red {
  background-color: #ff6666;
}
.product-show__accessibility-circle {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  margin-top: -1px;
}
.product-show__accessibility-circle--green {
  background-color: #34f100;
}
.product-show__accessibility-circle--red {
  background-color: #f10000;
}

.product-detail .container {
  align-items: start;
}
.product-detail__image-container {
  flex: 1;
}
.product-detail__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__description-container {
  flex-direction: column;
  padding: 0 2.4rem;
  flex: 1;
  align-items: center;
}
.product-detail__description-container h2 {
  align-self: stretch;
}
.product-detail__description, .product-detail__zlozenie {
  font-size: 1.8rem;
  line-height: 2;
}
.product-detail__dostupnost {
  font-size: 1.8rem;
  padding: 2rem 3.2rem;
  line-height: 1.5;
}
.product-detail__dostupnost span {
  font-weight: bold;
}
.product-detail__dostupnost--green {
  background-color: #b3f8b1;
  color: #444;
}
.product-detail__dostupnost--red {
  background-color: #982219;
  color: white;
}
.product-detail__price-container {
  align-self: stretch;
  font-size: 2rem;
}
.product-detail__real-price {
  font-weight: bold;
  font-size: 3rem;
}
.product-detail__real-price--sale {
  text-decoration: line-through;
  font-size: 2.4rem;
  font-weight: 400;
  color: #666;
}
.product-detail__sale-price {
  font-weight: bold;
  font-size: 3rem;
  display: inline-block;
  margin-left: 5px;
  color: #444;
}
@media (max-width: 37.5em) {
  .product-detail .container {
    flex-direction: column;
    text-align: left;
    gap: 4rem;
  }
  .product-detail__description-container {
    align-items: flex-start;
    padding: 0;
  }
  .product-detail__description {
    font-size: 2.2rem;
  }
  .product-detail__image-container {
    align-self: center;
  }
}

@media (max-width: 37.5em) {
  .product-detail-header {
    font-size: 4rem;
  }
}
.experience-box {
  position: absolute;
  background-color: #ff3929;
  font-weight: 900;
  padding: 1.6rem;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0px 1rem 2rem 1rem rgba(0, 0, 0, 0.5);
}
.experience-box span {
  font-size: 5.2rem;
  text-align: center;
  display: block;
  margin-bottom: 4px;
  padding-left: 15px;
}
.experience-box p {
  font-size: 1.6rem;
}

.faq__description {
  font-size: 2rem;
}
.faq__description:not(:last-of-type) {
  margin-bottom: 1rem;
}
.faq__call {
  text-decoration: underline;
}
.faq__phone {
  color: #ff3929;
  font-weight: 700;
}
.faq__item {
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-items: start;
  padding: 2.4rem;
  gap: 1.6rem;
}
.faq__icon {
  width: 24px;
  height: 24px;
}
.faq__content-container {
  width: 70rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 3.2rem;
}
.faq__title, .faq__number {
  font-size: 2.4rem;
}
.faq .open {
  border-top: 4px solid #661710;
}
.open .faq__title, .open .faq__number {
  color: #661710;
}
.faq__number {
  color: #ced4da;
}
.faq__hidden-box {
  grid-column: 2;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__icon:hover {
  cursor: pointer;
  background-color: azure;
  user-select: none;
}
.faq__answer-text {
  line-height: 1.9;
}
.faq__answer-text a {
  text-decoration: underline;
}
.faq__answer-text a:hover {
  color: #661710;
}
@media (max-width: 37.5em) {
  .faq__content-container {
    width: 100%;
  }
  .faq__title {
    line-height: 1.5;
    font-size: 2.6rem;
  }
  .faq__item {
    align-items: baseline;
    padding: 3rem 2rem;
  }
  .faq__answer-text {
    font-size: 2.2rem;
  }
  .faq__description {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.feature2 {
  gap: 8rem;
}
.feature2__left-text-box {
  flex: 1.2;
  align-self: center;
}
.feature2__right-text-box {
  flex: 2;
}
.feature2__left-description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #190604;
}
.feature2__left-description--light {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #ffebea;
}
@media (max-width: 43.75em) {
  .feature2 {
    flex-direction: column;
  }
}
@media (max-width: 37.5em) {
  .feature2__right-text-box {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
  .feature2__left-description--light {
    font-size: 2rem;
    margin-bottom: 0;
  }
}

.card {
  background-color: #ffebea;
  border-radius: 3rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s;
}
.card__icon-box {
  background-color: #ff7469;
  padding: 1.2rem;
  border-radius: 100%;
  margin-bottom: 2rem;
}
.card__icon-box img {
  max-width: 4.5rem;
  height: auto;
}
.card__text {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-top: 1.4rem;
}
.card--offset {
  transform: translateY(8rem);
}
.card--offset.card:hover {
  transform: translateY(7.5rem);
}
.card:hover {
  box-shadow: 0 1rem 1rem 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
@media (max-width: 43.75em) {
  .card--offset {
    transform: none;
  }
  .card--offset.card:hover {
    transform: none;
  }
}
@media (max-width: 37.5em) {
  .card__text {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

.product-hero {
  color: #ffebea;
}
.product-hero__heading-text {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 8rem;
}
.product-hero__main-content {
  display: flex;
  gap: 6.4rem;
}
.product-hero__meat-benefits {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  border: 3px solid #ffb0a9;
  padding: 5rem 3rem;
  text-align: center;
  border-radius: 5%;
}
.product-hero__main-content-title {
  font-size: 3.6rem;
  color: #ffb0a9;
}
.product-hero__promo {
  background-color: #ffebea;
  color: #4c110c;
  padding: 3rem 3rem;
  border-radius: 5%;
}
.product-hero__promo-title {
  font-size: 2.4rem;
}
.product-hero__promo-text {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #190604;
}
.product-hero__left-side {
  flex: 1;
}
.product-hero__image-box img {
  position: sticky;
  top: 6rem;
  width: 100%;
  flex: 1;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .product-hero__main-content {
    flex-wrap: wrap;
  }
  .product-hero__heading-text {
    font-size: 2.5rem;
  }
  .product-hero__promo-title {
    font-size: 2.8rem;
  }
  .product-hero__promo-text {
    font-size: 2rem;
  }
  .product-hero .btn {
    font-size: 1.8rem !important;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 37.5em) {
  .product-hero__main-content {
    flex-direction: column;
  }
  .product-hero__heading-text {
    font-size: 2.4rem;
    line-height: 1.7;
    margin-bottom: 5rem;
  }
  .product-hero__promo-title {
    font-size: 2.8rem;
  }
  .product-hero__promo-text {
    font-size: 2rem;
  }
  .product-hero .btn {
    font-size: 1.8rem !important;
    width: 100%;
    text-align: center;
  }
}

.mobile-nav {
  display: none;
  z-index: 1000;
}
.mobile-nav button {
  z-index: 1001;
  position: relative;
  user-select: none;
  padding: 2rem;
}
.mobile-nav__icon {
  height: 4.5rem;
  width: 4.5rem;
}
.mobile-nav__icon-close {
  display: none;
}

@media (max-width: 79em) {
  .mobile-nav {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
    align-items: flex-start;
    padding-top: 20rem;
    justify-content: center;
    display: none;
    overflow-y: auto;
  }
  .header.hamburger .main-nav {
    display: flex;
  }
  .header.hamburger .mobile-nav__icon-menu {
    display: none;
  }
  .header.hamburger .mobile-nav__icon-close {
    display: block;
  }
  .main-nav__list {
    flex-direction: column;
  }
}
.popup-overley {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
}
.popup-overley[hidden] {
  display: none !important;
}

.popup {
  width: 100%;
  position: relative;
}
.popup__image-container {
  max-height: calc(100vh - 32px); /* 16px padding overlay hore + dole */
  padding: 0 25%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.popup__image-container::-webkit-scrollbar {
  width: 6px;
}
.popup__image-container::-webkit-scrollbar-track {
  background: transparent;
}
.popup__image-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 6px;
}
.popup__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.popup__button-close {
  position: absolute;
  top: 6px;
  right: 3rem;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .popup__image-container {
    padding: 0 10%;
  }
}
@media (max-width: 37.5em) {
  .popup {
    width: 100vw;
    height: 100dvh;
    overflow-y: auto;
    display: flex;
    align-items: center;
  }
  .popup__button-close {
    position: absolute;
    top: 0rem;
    right: 0;
    background: rgb(0, 0, 0);
    color: white;
    z-index: 10001;
    width: 6rem;
    height: 6rem;
    font-size: 3.5rem;
  }
  .popup__image-container {
    padding: 1rem;
    max-height: none;
    overflow: visible;
    position: relative;
  }
}

.flick-book-section {
  padding-bottom: 9.6rem;
  padding-top: 9.6rem;
  background: linear-gradient(to top, rgba(242, 224, 209, 0.65), rgba(233, 204, 179, 0.65) 60%), url(../Images/Gastronomia/paper-texture.jpg);
}

.flick-book {
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.3);
}
.flick-book__page {
  border: solid 1px hsl(35, 20%, 70%);
  overflow: hidden;
}
.flick-book__page img {
  height: 100%;
  width: 100%;
}
.flick-book__page.--left {
  border-right: 0px;
  box-shadow: inset -7px 0 30px -7px rgb(0, 0, 0);
}
.flick-book__page.--right {
  border-left: 0;
  box-shadow: inset 7px 0 30px -7px rgb(0, 0, 0);
}
.flick-book__buttons-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.flick-book__page-text {
  font-size: 1.8rem;
  text-align: center;
}
.flick-book__promo {
  font-size: 2rem;
}
.flick-book__tip {
  font-size: 1.6rem;
}

.feature-explained {
  justify-items: center;
  grid-template-rows: 1fr 0.9fr 1fr;
  grid-template-columns: 1fr 0.7fr 1fr;
  align-items: center;
}
.feature-explained__line-horizontal-container {
  justify-self: stretch;
  align-self: center;
}
.feature-explained__line-horizontal-container .feature-explained__line-horizontal {
  background-color: #ffb0a9;
  display: block;
  width: 50%;
  height: 3px;
  margin: 0 auto;
  border-radius: 2rem;
}
.feature-explained__line-vertical-container {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.feature-explained__line-vertical-container .feature-explained__line-vertical {
  background-color: #ffb0a9;
  display: block;
  width: 3px;
  height: 55%;
  border-radius: 2rem;
}
.feature-explained__feature-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.feature-explained__feature-container .feature-explained__icon-container {
  background-color: #ff3929;
  border-radius: 100%;
  padding: 1.2rem;
  margin-bottom: 8px;
}
.feature-explained__feature-container .feature-explained__icon {
  width: 4.8rem;
  height: 4.8rem;
}
.feature-explained__feature-container .feature-explained__icon--bigger {
  width: 5.2rem;
  height: 5.2rem;
}
.feature-explained__feature-container .feature-explained__feature-text {
  font-size: 1.6rem;
  line-height: 1.5;
}
.feature-explained__badget-container {
  justify-self: stretch;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 37.5em) {
  .feature-explained {
    grid-template-columns: 1fr;
  }
  .feature-explained .feature-explained__line-horizontal-container {
    display: none;
  }
  .feature-explained .feature-explained__line-vertical-container {
    display: none;
  }
  .feature-explained .feature-explained__badget-container {
    display: none;
  }
  .feature-explained__feature-container {
    margin-bottom: 6rem;
  }
  .feature-explained .feature-explained__feature-text {
    font-size: 2rem;
  }
}

.history-section {
  margin-bottom: 12.8rem;
}
.history-section__image {
  max-width: 100%;
  height: 100%;
  border: 4px solid #ff3929;
  border-bottom-right-radius: 30%;
  border-top-left-radius: 30%;
}
.history-section__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 3.8rem;
}

.product-categories__section {
  margin-bottom: 12.8rem;
  scroll-margin-top: 30rem;
}

.info-for-customers {
  margin-bottom: 12.8rem;
}
.info-for-customers .container {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 37.5em) {
  .info-for-customers .container {
    grid-template-columns: 1fr;
  }
}

.m-feature-section {
  background: linear-gradient(to bottom, #190604, #330b08);
  padding: 12.6rem 0;
}
@media (max-width: 37.5em) {
  .m-feature-section {
    padding-top: 8rem;
    margin-bottom: 10rem;
  }
}

.follow-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid #ffb0a9;
  border-radius: 1.5rem;
  padding: 3.2rem 2.4rem;
}
.follow-us--brown {
  border: 4px solid #d7a376;
}
.follow-us__socials-container {
  width: 70%;
}
.follow-us__socials-container a:hover {
  text-decoration: none;
}
.follow-us__social-container {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1.2rem 0 1.2rem 2rem;
  transition: transform 0.2s ease-out;
}
.follow-us__social-container:hover {
  transform: scale(1.05);
}
.follow-us__social-container--facebook {
  background-color: #e3f6ff;
  border-radius: 1.5rem;
}
.follow-us__social-container--instagram {
  background: linear-gradient(to right, rgba(255, 112, 67, 0.3), rgba(97, 93, 191, 0.3));
  border-radius: 1.5rem;
}
.follow-us__image {
  max-width: 8rem;
}
.follow-us__text {
  font-weight: 700;
  font-size: 2rem;
}
.follow-us__text-catcher {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .follow-us__socials-container {
    width: 100%;
  }
}
@media (max-width: 37.5em) {
  .follow-us .heading-tertiary {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .follow-us__socials-container {
    width: 100%;
    margin-bottom: 3.5rem;
  }
}

.r-feature-section {
  padding: 9.6rem 0;
}
.r-feature-section--light {
  background-color: #fbf5f0;
}
.r-feature-section--dark {
  background-color: #f2e0d1;
}
.r-feature-section--primary-dark {
  background-color: #ffb0a9;
}
@media (max-width: 37.5em) {
  .r-feature-section {
    padding-bottom: 0rem;
  }
}

.lunch-menu {
  background-image: url("../Images/Restauracia/restauracia-predok.jpg");
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  padding: 10rem 5rem;
  position: relative;
}
.lunch-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f2e0d1;
  z-index: 1;
  opacity: 0.3;
}
.lunch-menu__container {
  background-color: white;
  border: 3px solid black;
  z-index: 15;
  position: relative;
}
.lunch-menu__cover-container {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  z-index: 17;
}
.lunch-menu__hr {
  border: 1.5px solid #444;
}
.lunch-menu__hr--cover {
  width: 80%;
}
.lunch-menu__hr--content {
  width: 100%;
}
.lunch-menu__paldi-logo {
  max-width: 12rem;
  margin-bottom: 3rem;
}
.lunch-menu__days {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
}
.lunch-menu__day {
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all 200ms linear;
}
.lunch-menu__day.active {
  background-color: #d29967;
  color: white;
}
.lunch-menu__day:hover {
  background-color: #d29967;
  color: white;
}
.lunch-menu__menu-button:link, .lunch-menu__menu-button:visited {
  text-decoration: none;
  display: inline-block;
  background-color: #d29967;
  color: white;
  font-style: italic;
  font-size: 2.7rem;
  padding: 2rem 2.5rem;
  transition: all 0.3s;
}
.lunch-menu__menu-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
}
.lunch-menu__info-text {
  font-size: 2.3rem;
}
.lunch-menu__info {
  width: 80%;
  font-size: 1.4rem;
  font-style: italic;
}
.lunch-menu__info span {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.7;
}
.lunch-menu__info p:not(:last-child) {
  margin-bottom: 1rem;
}
.lunch-menu__content-container {
  padding: 4.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  z-index: 15;
}
.lunch-menu__day-switch-container {
  display: none;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}
.lunch-menu__day-switch-container.active {
  display: flex;
}
.lunch-menu__content-header {
  color: #4c110c;
  font-size: 5.2rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.5px;
  font-style: italic;
}
.lunch-menu__items {
  align-self: flex-start;
  font-size: 1.8rem;
  line-height: 1.5;
  font-style: italic;
}
.lunch-menu__menu-item span {
  font-weight: 900;
}
.lunch-menu__menu-item:not(:last-child) {
  margin-bottom: 1rem;
}
.lunch-menu__menu-item .lunch-menu__menu-number {
  color: #d29967;
  font-size: 2.4rem;
}
.lunch-menu__soup-container {
  align-self: flex-start;
  font-size: 1.8rem;
  line-height: 1.5;
}
.lunch-menu__soup-heading {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: #4c110c;
  font-weight: 700;
}
.lunch-menu__alergens {
  width: 80%;
  font-size: 1.4rem;
  font-style: italic;
  align-self: flex-start;
}
.lunch-menu__alergens span {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media (max-width: 37.5em) {
  .lunch-menu {
    text-align: center;
    padding: 7rem 2rem;
  }
  .lunch-menu__info-text {
    margin-top: 2rem;
  }
  .lunch-menu__hr {
    width: 90%;
    margin-top: 0.7rem;
  }
}

.r-reviews {
  padding: 9.6rem 3rem;
  background-color: #fbf5f0;
}
.r-reviews .reviews {
  display: flex;
  gap: 6.4rem;
}
.r-reviews .reviews .reviews__text-box {
  flex: 1.3;
  font-size: 1.8rem;
  line-height: 1.7;
}
.r-reviews .reviews .reviews__images-box {
  flex: 1;
  align-items: stretch;
}
.r-reviews .reviews__review {
  background-color: #f6ebe1;
  padding: 2.2rem;
  border-radius: 2rem;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.r-reviews .reviews__image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #d29967;
}
.r-reviews .reviews__author {
  font-size: 1.6rem;
  text-align: right;
  color: #777;
  margin-top: 1rem;
}
@media (max-width: 37.5em) {
  .r-reviews .reviews {
    display: block;
    padding: 0 2rem;
  }
  .r-reviews .reviews .heading-secondary {
    text-align: center;
    margin-bottom: 4rem;
  }
  .r-reviews .reviews__container {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
  .r-reviews .reviews__review {
    font-size: 2.2rem;
  }
  .r-reviews .reviews__images-box {
    grid-template-columns: 1fr;
  }
}

.r-promo-foto {
  width: 100%;
}

.contact__promo-text {
  font-size: 1.8rem;
}
.contact__container {
  justify-content: space-between;
}
.contact__masiarstvo-container, .contact__restauracia-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.8;
}
.contact__masiarstvo-container span, .contact__restauracia-container span, .contact__open-hours-title {
  font-weight: 700;
  font-size: 1.8rem;
}
.contact__open-hours-title {
  color: #4c110c;
  font-weight: 900;
}
.contact__company-name {
  font-weight: 900;
  margin: 4px 0;
  font-size: 2.3rem;
}
.contact__mobile-phone-container, .contact__email-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 37.5em) {
  .contact__container {
    flex-direction: column;
    gap: 5rem;
  }
  .contact__masiarstvo-container {
    font-size: 2.2rem;
  }
  .contact__restauracia-container {
    font-size: 2.2rem;
  }
  .contact__open-hours-title {
    font-size: 2.4rem;
  }
}

.google-map-container {
  padding: 0 5rem 5rem 5rem;
}
.google-map-container img {
  width: 100%;
  height: 45rem;
  object-fit: cover;
}

.dp-hero-grid {
  grid-template-columns: 0.9fr 1fr;
}

.dp_delivery-time__image {
  width: 100%;
  align-self: center;
}
.dp_delivery-time__description {
  font-size: 2rem;
  line-height: 1.5;
}
.dp_delivery-time__description span {
  font-weight: 700;
}
.dp_delivery-time__span-color {
  color: #ff3929;
  font-weight: 900 !important;
}
.dp_delivery-time__list {
  font-size: 2.4rem;
  font-weight: 900;
  color: #661710;
}
.dp_delivery-time__item-text-container {
  gap: 1.2rem;
  align-items: flex-start;
}
.dp_delivery-time__item:not(:last-child) {
  margin-bottom: 4.8rem;
}
.dp_delivery-time__item-time {
  font-size: 1.8rem;
  color: #444;
}
.dp_delivery-time__item-destination {
  margin-bottom: 12px;
  line-height: 1.5;
}
.dp_delivery-time__destination-image {
  margin-top: 8px;
}
.dp_delivery-time__buttons {
  gap: 8rem;
}
.dp_delivery-time__info {
  font-size: 1.4rem;
}
.dp_delivery-time__info:not(:last-child) {
  margin-bottom: 3px;
}
.dp_delivery-time__info span {
  font-weight: 900;
  font-size: 1.5rem;
}
@media (max-width: 37.5em) {
  .dp_delivery-time__main-content-container {
    grid-template-columns: 1fr;
  }
  .dp_delivery-time__list {
    margin-left: 3rem;
  }
  .dp_delivery-time__buttons {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.dp_delivery-cost-section {
  background: #ffd7d4;
  background: linear-gradient(0deg, rgb(255, 215, 212) 0%, rgb(255, 255, 255) 100%);
  padding-bottom: 12.8rem;
}

.dp_delivery-cost__description {
  font-size: 2rem;
  line-height: 1.5;
}
.dp_delivery-cost__image {
  width: 100%;
  position: sticky;
  top: 10rem;
}
.dp_delivery-cost__cities-container {
  gap: 18rem;
}
.dp_delivery-cost__cities-container-left ul {
  margin-left: -3px;
}
.dp_delivery-cost__ul-heading {
  font-size: 3rem;
  font-weight: 900;
  color: #661710;
}
.dp_delivery-cost__ul-heading--left {
  color: #27ae60;
}
.dp_delivery-cost__list {
  font-size: 1.8rem;
}
.dp_delivery-cost__list li {
  position: relative;
  padding-left: 3rem;
  line-height: 1.3;
}
.dp_delivery-cost__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 2rem;
  height: 2rem;
  background-image: url("../Images/Hviezdy/Hviezda-mala-tmava.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.dp_delivery-cost__list li:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (max-width: 37.5em) {
  .dp_delivery-cost .container {
    grid-template-columns: 1fr;
  }
  .dp_delivery-cost__cities-container {
    flex-direction: column;
    gap: 3rem;
    margin-left: 2rem;
  }
}

.dp_delivery-firm-features {
  position: relative;
}
.dp_delivery-firm-features__background {
  align-items: stretch;
  position: relative;
}
.dp_delivery-firm-features__background img {
  width: 100%;
  z-index: 1;
}
.dp_delivery-firm-features__black-overlay {
  position: absolute;
  background-color: black;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 60%;
}
.dp_delivery-firm-features__main-content {
  position: relative;
  margin-top: -30rem;
  z-index: 100;
}
.dp_delivery-firm-features__main-content h1 {
  color: white;
}
.dp_delivery-firm-features__main-content-container {
  box-shadow: 0px 0px 1rem 5px rgba(0, 0, 0, 0.15);
  padding: 3rem 4rem;
  background-color: white;
}
.dp_delivery-firm-features__single-content-container {
  padding: 0px 4rem 3rem 4rem;
}
.dp_delivery-firm-features__single-content-container:not(:last-child) {
  border-right: 1px solid rgba(102, 102, 102, 0.2);
}
.dp_delivery-firm-features__icon-image {
  width: 30%;
}
.dp_delivery-firm-features__icon-image--second {
  transform: translateY(-1rem);
}
.dp_delivery-firm-features__heading {
  margin-top: 8px;
  margin-bottom: 8px;
}
.dp_delivery-firm-features__description {
  font-size: 1.6rem;
  line-height: 1.8;
}
.dp_delivery-firm-features__button-container {
  justify-content: center;
}
@media (max-width: 87.5em) {
  .dp_delivery-firm-features__main-content {
    margin-top: -20rem;
  }
  .dp_delivery-firm-features__main-content .heading-secondary {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .dp_delivery-firm-features__main-content {
    margin-top: 10rem;
  }
  .dp_delivery-firm-features__main-content .heading-secondary {
    color: #4c110c;
  }
  .dp_delivery-firm-features__background {
    display: none;
  }
}
@media (max-width: 37.5em) {
  .dp_delivery-firm-features__main-content {
    margin-top: 10rem;
  }
  .dp_delivery-firm-features__main-content .heading-secondary {
    color: #4c110c;
  }
  .dp_delivery-firm-features__main-content-container {
    padding: 3rem 2rem;
  }
  .dp_delivery-firm-features__main-content-container .grid {
    grid-template-columns: 1fr;
  }
  .dp_delivery-firm-features__background {
    display: none;
  }
}

.pf-feature-section {
  background-image: linear-gradient(to right, rgba(255, 97, 84, 0.982), rgba(255, 136, 127, 0.982)), url("../Images/Pre-firmy/abstraktne-pozadie-sekcia-dva.jpg");
  background-size: cover;
  padding: 12.8rem 0;
}

.pf-background-text {
  text-transform: uppercase;
  font-size: 5.2rem;
  margin-top: 16rem;
  margin-left: 10rem;
  opacity: 0.3;
  font-style: italic;
  user-select: none;
}
@media (max-width: 37.5em) {
  .pf-background-text {
    margin-top: 8rem;
    margin-left: 3rem;
  }
}

.pf-steps-section {
  position: relative;
  text-align: center;
}
.pf-steps-section h2 {
  margin-bottom: 14rem;
}
@media (max-width: 37.5em) {
  .pf-steps-section h2 {
    font-size: 5.8rem;
    margin-bottom: 9rem;
  }
}
.pf-steps-section .btn {
  transform: translateX(-2rem);
}
.pf-steps-section .btn:hover {
  transform: translate(-1rem, -3px);
}
@media (max-width: 37.5em) {
  .pf-steps-section .btn {
    width: 100%;
    transform: none;
  }
}

.pf-steps {
  position: relative;
  margin-bottom: 9.6rem;
}
.pf-steps__grid {
  gap: 12.8rem;
}
.pf-steps h3 {
  font-weight: normal !important;
}
.pf-steps__number {
  font-size: 8rem;
  font-weight: bold;
}
.pf-steps__number--1 {
  color: #ff887f;
}
.pf-steps__number--2 {
  color: #ff6154;
}
.pf-steps__number--3 {
  color: #ff3929;
}
.pf-steps__text {
  font-size: 1.8rem;
  line-height: 1.5;
}
.pf-steps__arrow {
  width: 25.6rem;
  height: auto;
  position: absolute;
  opacity: 0.5;
  pointer-events: none;
}
.pf-steps__arrow--1 {
  transform: scaleX(-1) rotate(330deg);
  top: -8rem;
  left: 21%;
}
.pf-steps__arrow--2 {
  transform: rotate(150deg);
  top: -10rem;
  right: 21%;
}
.pf-steps__moon {
  position: absolute;
  top: -25%;
  right: 7%;
  opacity: 0.5;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .pf-steps__moon {
    display: none;
  }
  .pf-steps__arrow--1 {
    left: 18%;
  }
  .pf-steps__arrow--2 {
    right: 18%;
  }
}
@media (max-width: 37.5em) {
  .pf-steps__moon {
    display: none;
  }
  .pf-steps__grid {
    grid-template-columns: 1fr;
    row-gap: 8rem;
  }
  .pf-steps__arrow {
    display: none;
  }
  .pf-steps__number {
    margin-bottom: 3rem;
  }
}

.pf-reviews-section {
  position: relative;
}

.pf-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  position: relative;
}
.pf-reviews img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.pf-reviews::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #661710;
  opacity: 0.4;
}
.pf-reviews__box {
  background-color: #ff4d3e;
  background: linear-gradient(to left, #ff4d3e, #e63325);
  width: 60%;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4rem 4rem;
  border-radius: 2.5rem;
  box-shadow: 0 1rem 1rem 5px rgba(0, 0, 0, 0.4);
}
.pf-reviews__text {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.pf-reviews__author {
  text-align: right;
  font-size: 1.6rem;
}
.pf-reviews__review-container {
  display: none;
  opacity: 0;
  animation: reviewsCarousel 0.8s ease-in-out;
}
.pf-reviews__active-slide {
  display: block;
  opacity: 1;
}
@media (max-width: 37.5em) {
  .pf-reviews {
    grid-template-columns: 1fr 1fr;
  }
  .pf-reviews__box {
    width: 100%;
    padding: 4rem 1rem;
  }
  .pf-reviews__text {
    font-size: 2rem;
  }
  .pf-reviews__review-container {
    animation: none;
  }
}

.pf-owner {
  gap: 9.6rem;
}
.pf-owner__left-side {
  flex: 1;
}
.pf-owner__image {
  width: 100%;
  border: 1rem solid #ff887f;
  border-radius: 9px;
}
.pf-owner__right-side {
  flex: 1;
  flex-direction: column;
  gap: 4rem;
}
.pf-owner__text {
  font-size: 2.6rem;
  font-style: italic;
  line-height: 2;
}
.pf-owner__signature-box {
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.pf-owner__name {
  font-size: 3.6rem;
  font-weight: bold;
  color: #4c110c;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .pf-owner {
    gap: 3rem;
  }
}
@media (max-width: 37.5em) {
  .pf-owner {
    display: block;
  }
  .pf-owner__right-side {
    margin-left: 2rem;
    margin-top: 3rem;
  }
}

.pf-owner-section h2 {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 37.5em) {
  .pf-owner-section h2 {
    text-align: left;
  }
}

.pf-contact-banner-section {
  background: linear-gradient(to right, rgba(255, 97, 84, 0.982), rgba(255, 136, 127, 0.982));
  padding: 8rem 0;
}

.c-contact-banner-section {
  background-color: #d49f72;
  padding: 8rem 2rem;
}

.contact-banner {
  box-shadow: 0 3px 3rem 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row-reverse;
  height: 30rem;
}
.contact-banner--auto-height {
  height: auto !important;
}
.contact-banner--restaurant {
  background: linear-gradient(310deg, rgba(255, 255, 255, 0.95) 49.9%, transparent 50%), url("../Images/Restauracia/restauraca-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-banner--butchery {
  background: linear-gradient(310deg, rgba(255, 255, 255, 0.95) 49.9%, transparent 50%), url("../Images/Masiarstvo/masiarstvo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.contact-banner--catering {
  background: linear-gradient(310deg, rgba(255, 255, 255, 0.95) 49.9%, transparent 50%), url("../Images/Catering/catering3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.contact-banner__right-side {
  width: 40%;
  padding: 6.4rem 4.2rem 6.4rem 4.2rem;
  text-align: right;
}
.contact-banner p {
  font-size: 1.6rem;
  line-height: 1.9;
}

.g-hero {
  display: flex;
  gap: 5rem;
}
.g-hero__left-side {
  flex: 2 1 auto;
  align-self: center;
}
.g-hero__right-side {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  flex: 1 2 auto;
}
.g-hero__images {
  aspect-ratio: 5/3;
  width: 100%;
  object-fit: cover;
  border: 5px solid #d29967;
  border-radius: 7%;
}
.g-hero__under-title {
  font-size: 3.6rem;
  line-height: 1.3;
}
.g-hero__description {
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .g-hero {
    flex-direction: column;
  }
}
@media (max-width: 37.5em) {
  .g-hero {
    flex-direction: column;
  }
}

.g-features {
  display: flex;
  gap: 3rem;
}
.g-features__box {
  padding: 5rem 4rem;
  border: 3px solid #d29967;
  border-radius: 7%;
  flex: 1;
  transition: all 200ms ease-in-out;
}
.g-features__box:hover {
  transform: scale(1.05) translateY(-1rem);
  background-color: #f6ebe1;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.3);
}
.g-features__text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 1.4rem;
}
.g-features__number {
  font-size: 5.2rem;
  color: #4c110c;
  font-weight: bold;
  margin-bottom: 2.8rem;
}
@media (max-width: 37.5em) {
  .g-features {
    flex-direction: column;
    padding-bottom: 5rem;
  }
}

.g-features.g-features--primary-color .g-features__box {
  border: 5px solid #ff9c94;
}
.g-features.g-features--primary-color .g-features__box h3 {
  line-height: 1.4;
}
.g-features.g-features--primary-color .g-features__box:hover {
  background-color: #ff9c94;
}

.g-cooperative-section {
  background-color: #f2e0d1;
  padding: 9.6rem;
}
@media (max-width: 37.5em) {
  .g-cooperative-section {
    padding: 7rem 2rem 7rem 2rem;
  }
}
.g-cooperative-section .g-cooperative {
  display: flex;
  gap: 4.8rem;
}
.g-cooperative-section .g-cooperative__images-box {
  position: relative;
  margin-bottom: 15rem;
  flex: 1 1 auto;
}
.g-cooperative-section .g-cooperative__vv-owner {
  width: 100%;
}
.g-cooperative-section .g-cooperative__paldi-owner {
  width: 70%;
  position: absolute;
  bottom: -14rem;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #d29967;
  box-shadow: 0 0 2rem 2rem rgba(0, 0, 0, 0.5);
}
.g-cooperative-section .g-cooperative__text-box {
  align-self: center;
  flex: 1 1.7 auto;
}
.g-cooperative-section .g-cooperative__text {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  line-height: 1.8;
  font-style: italic;
}
@media (max-width: 56.25em) and (min-width: 37.5625em) {
  .g-cooperative-section .g-cooperative {
    flex-direction: column;
  }
  .g-cooperative-section .g-cooperative__paldi-owner {
    bottom: -18rem;
  }
  .g-cooperative-section .g-cooperative__text-box {
    order: 1;
  }
  .g-cooperative-section .g-cooperative__text-box h2 {
    margin-bottom: 3rem;
  }
  .g-cooperative-section .g-cooperative__text {
    font-size: 2rem;
  }
  .g-cooperative-section .g-cooperative__images-box {
    order: 2;
  }
}
@media (max-width: 37.5em) {
  .g-cooperative-section .g-cooperative {
    flex-direction: column;
  }
  .g-cooperative-section .g-cooperative__text-box {
    order: 1;
  }
  .g-cooperative-section .g-cooperative__text-box h2 {
    margin-bottom: 3rem;
  }
  .g-cooperative-section .g-cooperative__text {
    font-size: 2rem;
  }
  .g-cooperative-section .g-cooperative__images-box {
    order: 2;
  }
}

.g-actions-section {
  background-color: #fbf5f0;
  padding: 9.6rem;
}
@media (max-width: 37.5em) {
  .g-actions-section {
    padding: 9.6rem 2rem 6rem 2rem;
  }
}
.g-actions-section .g-actions__text {
  font-size: 1.8rem;
  line-height: 1.5;
}
.g-actions-section .g-actions__row {
  display: flex;
  gap: 4.8rem;
  margin-bottom: 8rem;
  height: 32rem;
}
.g-actions-section .g-actions__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/2.3;
}
.g-actions-section .g-actions__image-text {
  font-size: 1.8rem;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 37.5em) {
  .g-actions-section .g-actions__text {
    font-size: 2rem;
  }
  .g-actions-section .g-actions__row {
    flex-direction: column;
    height: auto;
  }
}

.pp-job-offering-section {
  background-color: #ffd7d4;
  padding-bottom: 12.8rem;
}

.pp-job-offering__container {
  display: flex;
  background-color: #ffebea;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 0 2rem 1rem rgba(0, 0, 0, 0.1);
  margin-bottom: 12.8rem;
}
.pp-job-offering__image-box {
  flex: 1;
}
.pp-job-offering__image {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  height: 100%;
}
.pp-job-offering__image-1 {
  object-position: 30%;
}
.pp-job-offering__image-2 {
  object-position: 70% 15%;
}
.pp-job-offering__text-box {
  flex: 1;
  padding: 4.8rem;
  line-height: 2.2rem;
}
.pp-job-offering__loc-type {
  font-size: 1.8rem;
  line-height: 1.7;
}
.pp-job-offering__loc-type span {
  font-weight: bold;
  font-size: 2rem;
}
.pp-job-offering__under-title {
  font-size: 2rem;
  font-weight: 900;
}
.pp-job-offering__list {
  padding-left: 2rem;
}
.pp-job-offering__list-item {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  list-style: disc;
  line-height: 1.5;
}
.pp-job-offering__list-item:last-child {
  margin-bottom: 1rem;
}
@media (max-width: 37.5em) {
  .pp-job-offering__container {
    flex-direction: column;
  }
  .pp-job-offering__container .btn {
    width: 100%;
    text-align: center;
  }
  .pp-job-offering__image-box {
    order: 1;
  }
  .pp-job-offering__text-box {
    order: 2;
    padding: 4.8rem 4rem;
  }
}

.pp-contact {
  background-color: #4c110c;
  padding: 9.6rem 0;
}
.pp-contact__container {
  background-color: white;
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 0 5px 2rem 2rem rgba(0, 0, 0, 0.2);
}
.pp-contact__text {
  font-size: 1.8rem;
  line-height: 1.5;
}
.pp-contact__contact {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 37.5em) {
  .pp-contact {
    padding: 8rem 2rem;
  }
  .pp-contact__container {
    padding: 4rem 2rem;
  }
}

.on-logo {
  width: 18%;
  height: 100%;
  margin-bottom: 3rem;
}

.on-hero-image {
  aspect-ratio: 6/4;
  width: 100%;
  height: 20%;
  margin-bottom: 12rem;
}

.on-feature__container {
  background-color: #f6ebe1;
  padding: 3rem 5rem;
  border-radius: 2rem;
  box-shadow: 0 5px 2rem rgba(0, 0, 0, 0.2);
}
.on-feature__icon {
  width: 18%;
}
.on-feature__text {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 37.5em) {
  .on-feature {
    grid-template-columns: 1fr;
  }
  .on-feature__container {
    padding: 3rem 1rem 3rem 3rem;
    text-align: left;
  }
  .on-feature .btn {
    width: 100%;
    padding: 0;
  }
}

.on-owner-story {
  margin-top: 12rem;
}
.on-owner-story__under-title-text {
  display: block;
  margin-bottom: 1rem;
  font-weight: 900;
}
@media (max-width: 37.5em) {
  .on-owner-story {
    text-align: left;
  }
}

/*# sourceMappingURL=style.css.map */
