html,
body {
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif !important;
}

section {
  scroll-margin-top: 110px;
  scroll-padding-top: 110px;
}

.subpage-banner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  overflow: hidden;
  min-height: 1080px;
  max-height: 1080px;
}
.subpage-banner--image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.subpage-banner--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage-banner--image .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.subpage-banner--title {
  position: absolute;
  left: 0;
  bottom: 25%;
  z-index: 2;
  color: white;
  text-align: center;
  width: 100%;
}
.subpage-banner--title h1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.subpage-banner .scroll-to-next-section {
  cursor: pointer;
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subpage-banner .scroll-to-next-section img {
  max-width: 47px;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 1600px) {
  .subpage-banner {
    max-height: 90vh;
    min-height: 90vh;
  }
}
@media screen and (max-width: 990px) {
  .subpage-banner {
    max-height: 80vh;
    min-height: 80vh;
  }
  .subpage-banner--title {
    bottom: 35%;
  }
  .subpage-banner--title h1 {
    font-size: 2.5rem;
  }
  .subpage-banner .scroll-to-next-section {
    bottom: 10%;
  }
}

.daily-menu {
  padding: 5rem 0;
}

.providing-section {
  padding: 5.625rem 0 7.5rem;
}
.providing-section article:not(:first-child) {
  margin-top: 5.625rem;
}
.providing-section article .image-col img {
  width: 100%;
  height: 100%;
  max-height: 443px;
  object-fit: cover;
}
.providing-section article .content-col h2 {
  font-size: 40px;
  font-weight: 700;
  color: #7f1710;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.providing-section article .content-col .description-wrap {
  font-size: 1.25rem;
  color: #242424;
}
.providing-section article .content-col .description-wrap p:last-child {
  margin-bottom: 0;
}
.providing-section article .content-col .description-wrap a {
  color: white;
  background-color: #7f1710;
  font-weight: bold;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 145px;
  padding: 12px 35px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  margin: 1rem 0;
}
.providing-section article .content-col .description-wrap a:hover {
  background-color: #ffb653;
}
.providing-section article .content-col .description-wrap a::after {
  content: "";
  width: 8px;
  background-image: url("/bundles/Kuzelna/images/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 10px;
}
@media screen and (max-width: 990px) {
  .providing-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .providing-section article:not(:first-child) {
    margin-top: 35px;
  }
  .providing-section .blocks-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .providing-section .content-col h2 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    font-size: 30px !important;
    text-align: center;
  }
  .providing-section .content-col .description-wrap {
    font-size: 18px !important;
  }
  .providing-section .content-col .description-wrap .link-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .providing-section .content-col .description-wrap a {
    font-size: 20px !important;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #272727;
  padding: 1.25rem 0;
}
footer p {
  margin: 0 auto;
  font-size: 1.125rem;
  color: #6c6c6c;
}
@media screen and (max-width: 990px) {
  footer {
    text-align: center;
  }
}

header nav .navbar-brand img {
  width: 152px;
  height: auto;
  aspect-ratio: 1/1;
  transition: all 0.3s ease-in-out;
}
header nav .navbar-collapse {
  margin-top: 1rem;
  margin-bottom: auto;
}
header nav .navbar-collapse ul li a {
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 8px 35px !important;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow-x: hidden;
}
header nav .navbar-collapse ul li a::after {
  width: 100%;
  content: "";
  bottom: 0;
  height: 1px;
  background-color: white;
  opacity: 0;
}
header nav .navbar-collapse ul li a:hover, header nav .navbar-collapse ul li a.active {
  color: white !important;
}
header nav .navbar-collapse ul li a:hover::after, header nav .navbar-collapse ul li a.active::after {
  display: block;
  opacity: 1;
}
header nav .navbar-collapse ul li:last-child a {
  padding-right: 0 !important;
}
header nav.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header nav.scrolled .navbar-brand img {
  width: 85px;
}
header nav.scrolled .navbar-collapse {
  margin-top: auto;
  margin-bottom: auto;
}
header nav.scrolled ul li a {
  color: #242424;
  font-size: 1.125rem;
}
header nav.scrolled ul li a:hover, header nav.scrolled ul li a.active {
  color: #242424 !important;
}
header nav.scrolled ul li a:hover::after, header nav.scrolled ul li a.active::after {
  background-color: #242424;
}
@media screen and (max-width: 990px) {
  header nav {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  header nav .navbar-brand img {
    width: 92px;
  }
  header nav.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  header nav.scrolled .navbar-brand img {
    width: 75px;
  }
  header nav.scrolled .navbar-toggler img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(4563%) hue-rotate(347deg) brightness(88%) contrast(102%) !important;
  }
  header nav .navbar-toggler {
    border: none;
    box-shadow: none !important;
  }
  header nav .navbar-toggler:not(.collapsed) img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(4563%) hue-rotate(347deg) brightness(88%) contrast(102%);
  }
  header nav .navbar-toggler .navbar-toggler-icon {
    width: 2.5em;
    background-image: none;
  }
  header nav .navbar-toggler:not(.collapsed) .navbar-collapse {
    right: 0;
  }
  header nav .navbar-collapse {
    position: fixed;
    top: 0;
    margin-top: 0;
    left: 0;
    width: 100vw;
    height: 100vh !important;
    background: #fff;
    transition: transform 0.3s ease-out !important;
    transform: translateX(100%) !important;
  }
  header nav .navbar-collapse.slide-in {
    transform: translateX(0) !important;
  }
  header nav .navbar-collapse .collapse-brand {
    display: block;
    max-width: 100px;
    width: 100%;
    position: absolute;
    left: 20px;
    bottom: 20px;
  }
  header nav .navbar-collapse .navbar-nav {
    margin-top: 110px;
  }
  header nav .navbar-collapse .navbar-nav li:last-child a {
    padding-right: 45px !important;
  }
  header nav .navbar-collapse .navbar-nav li a {
    color: #7f1710;
    text-align: right;
    padding: 8px 45px !important;
  }
  header nav .navbar-collapse .navbar-nav li a.active {
    color: #7f1710 !important;
  }
  header nav .navbar-toggler {
    z-index: 1000000;
  }
}

.gallery-section {
  padding-top: 5.625rem;
}
.gallery-section h2 {
  font-size: 2.8125rem;
  font-weight: 700;
  color: #7f1710;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.gallery-section .single-gallery .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-section .single-gallery .show-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.gallery-section .single-gallery .show-button p {
  font-size: 1.25rem;
}
.gallery-section .single-gallery .show-button .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 99%;
  width: 56px;
  aspect-ratio: 1/1;
  background-color: #7f1710;
  transition: all 0.3s ease-in-out;
}
.gallery-section .single-gallery .show-button .icon img {
  max-width: 17px;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.gallery-section .single-gallery .show-button:hover .icon {
  background-color: #ffb653;
}
.gallery-section .single-gallery .show-button.hide-all-button .icon img {
  transform: rotate(180deg);
}
.gallery-section.bottom-padding {
  padding-bottom: 160px;
}
@media screen and (max-width: 990px) {
  .gallery-section {
    padding-top: 40px;
  }
  .gallery-section.bottom-padding {
    padding-bottom: 40px;
  }
  .gallery-section h2 {
    font-size: 2.1875rem;
    text-align: center;
  }
  .gallery-section .single-gallery .thumbnail {
    max-width: 275px;
    max-height: 275px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-title {
  margin-top: 80px;
}
.page-title h2 {
  color: #7f1710;
  font-size: 2.8125rem;
  font-weight: bold;
  text-align: center;
}

.menu-block {
  margin-top: 3.75rem;
}
.menu-block h3 {
  color: #7f1710;
  font-size: 2.8125rem;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}
.menu-block .content-col table {
  width: 100%;
  font-size: 1.125rem;
  color: #242424;
}
.menu-block .content-col table tr {
  position: relative;
}
.menu-block .content-col table tr td:nth-child(1) {
  width: 5%;
}
.menu-block .content-col table tr td:nth-child(2) {
  position: relative;
  display: flex;
  width: 100%;
}
.menu-block .content-col table tr td:nth-child(2) .name {
  white-space: nowrap;
}
.menu-block .content-col table tr td:nth-child(2) .dots {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 2px dotted #707070;
  margin-bottom: 0.5625rem;
  margin-left: 10px;
  margin-right: 10px;
}
.menu-block .content-col table tr td:nth-child(3) {
  width: 5%;
}
@media screen and (max-width: 1400px) {
  .menu-block .content-col table tr td {
    padding-bottom: 0.65rem;
  }
  .menu-block .content-col table tr td:nth-child(1) {
    width: 15%;
    text-align: center;
  }
  .menu-block .content-col table tr td:nth-child(2) {
    position: relative;
    display: flex;
    width: 90%;
    margin: auto;
  }
  .menu-block .content-col table tr td:nth-child(2) .name {
    white-space: normal;
  }
  .menu-block .content-col table tr td:nth-child(2) .dots {
    display: none;
  }
  .menu-block .content-col table tr td:nth-child(3) {
    width: 15%;
    text-align: center;
  }
}

.content-block {
  text-align: center;
  padding: 5.625rem 0;
}
.content-block .flex-row {
  justify-content: center;
}
.content-block h2 {
  color: #7f1710;
  font-size: 2.8125rem;
  font-weight: bold;
  text-align: center;
  text-align: center;
}
.content-block .content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
}
@media screen and (max-width: 990px) {
  .content-block {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .content-block h2 {
    font-size: 25px;
  }
  .content-block .content-wrapper {
    font-size: 18px;
  }
}

.map-section p {
  margin-top: 0;
  margin-bottom: 0;
}

#wheretofindus .content-wrapper p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 990px) {
  #wheretofindus {
    margin: auto;
  }
}

#orders .contacts {
  margin-top: 3.25rem;
}
#orders .contacts a {
  color: #242424;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 1.75rem;
}
#orders .contacts a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 990px) {
  #orders .contacts {
    margin-top: 20px;
  }
  #orders .contacts a {
    font-size: 18px;
  }
  #orders .contacts div {
    margin-bottom: 1rem;
  }
}

.articles-list {
  padding: 5.625rem 0 7.5rem;
}
.articles-list .articles-wrapper {
  grid-gap: 5.9375rem;
}
.articles-list .articles-wrapper article h2 {
  color: #7f1710;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
}
.articles-list .articles-wrapper article time {
  font-size: 1.25rem;
  color: #242424;
  font-weight: bold;
}
.articles-list .articles-wrapper article .content-wrapper a {
  color: white;
  background-color: #7f1710;
  font-weight: bold;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 145px;
  padding: 12px 35px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  margin: 1rem 0;
}
.articles-list .articles-wrapper article .content-wrapper a:hover {
  background-color: #ffb653;
}
.articles-list .articles-wrapper article .content-wrapper a::after {
  content: "";
  width: 8px;
  background-image: url("/bundles/Kuzelna/images/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 10px;
}
.articles-list .articles-wrapper article .content-wrapper p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #242424;
}
@media screen and (max-width: 990px) {
  .articles-list {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .articles-list .articles-wrapper {
    grid-gap: 35px;
  }
  .articles-list .articles-wrapper article {
    max-width: 90%;
    margin: auto;
  }
  .articles-list .articles-wrapper article img {
    max-width: 100%;
    margin: auto;
    height: auto;
    display: block;
  }
  .articles-list .articles-wrapper article h2 {
    color: #7f1710;
    font-size: 25px;
    margin-top: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
  }
  .articles-list .articles-wrapper article time {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .articles-list .articles-wrapper article .link {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .articles-list .articles-wrapper article .content-wrapper p {
    font-size: 18px;
  }
}

.article-detail {
  padding: 5.9375rem 0 !important;
}
.article-detail .single-article-wrap h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  color: #7f1710;
  margin-bottom: 0;
}
.article-detail .single-article-wrap time {
  font-size: 1.25rem;
  color: #242424;
  font-weight: bold;
}
.article-detail .single-article-wrap .article-content {
  font-size: 1.25rem;
  color: #242424;
  margin-top: 3.125rem !important;
}
.article-detail .single-article-wrap .article-content img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.article-detail .single-article-wrap .bottom-link {
  color: #7f1710;
  font-size: 1.25rem;
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-top: 3.125rem;
  display: block;
}
@media screen and (max-width: 990px) {
  .article-detail {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
  }
  .article-detail .single-article-wrap h2 {
    font-size: 25px;
  }
  .article-detail .single-article-wrap time {
    font-size: 18px;
    margin: 1rem 0;
    display: block;
  }
  .article-detail .single-article-wrap .article-content {
    font-size: 18px;
    margin-top: 1rem !important;
  }
  .article-detail .single-article-wrap .bottom-link {
    margin: 2rem auto !important;
    font-size: 18px;
  }
}

.single-article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
.single-article-sidebar .widget h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  text-align: center;
  color: #7f1710;
}
.single-article-sidebar .widget.latest-posts a {
  color: #242424;
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.single-article-sidebar .widget.socials-widget .socials {
  display: flex;
  flex-direction: row;
  gap: 0.9375rem;
  align-items: center;
  justify-content: center;
}
.single-article-sidebar .widget.socials-widget .socials a img {
  width: 3.125rem;
}
@media screen and (max-width: 990px) {
  .single-article-sidebar .widget h3 {
    font-size: 25px;
  }
}

.weekly-menu {
  padding-top: 90px;
  padding-bottom: 90px;
}
.weekly-menu .menu-wrapper {
  max-width: 64rem;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  color: #242424;
  font-size: 1.25rem;
}
.weekly-menu .menu-wrapper h3 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.9375rem !important;
  color: #242424;
  margin-bottom: 0;
  text-transform: uppercase;
}
.weekly-menu .menu-wrapper .single-row {
  margin-bottom: 0.25rem;
}
.weekly-menu .menu-wrapper .single-row .name-col {
  display: flex;
  flex-direction: row;
}
.weekly-menu .menu-wrapper .single-row .name-col .name {
  white-space: nowrap;
}
.weekly-menu .menu-wrapper .single-row .name-col .dots {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 2px dotted #707070;
  margin-bottom: 0.5625rem;
  margin-left: 15px;
}
.weekly-menu .info-col h2 {
  font-size: 2.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #7f1710;
}
.weekly-menu .info-col time {
  color: #242424;
  font-size: 1.875rem;
}
@media screen and (max-width: 990px) {
  .weekly-menu {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .weekly-menu .info-col {
    text-align: center;
    margin-bottom: 1.875rem;
  }
  .weekly-menu .info-col h2 {
    text-align: center;
    font-size: 2rem !important;
    margin-bottom: 0;
  }
  .weekly-menu .info-col time {
    font-size: 1.95rem;
    text-align: center;
  }
  .weekly-menu .menu-wrapper {
    font-size: 1.125rem;
    padding-bottom: 30px;
  }
  .weekly-menu .menu-wrapper .single-row {
    align-items: center;
    justify-content: center;
  }
  .weekly-menu .menu-wrapper .name-col {
    justify-content: center;
  }
  .weekly-menu .menu-wrapper .name-col .dots {
    display: none;
  }
  .weekly-menu .menu-wrapper .price-col {
    text-align: right;
  }
  .weekly-menu .menu-wrapper .name {
    white-space: normal !important;
    width: 100%;
  }
  .weekly-menu .menu-wrapper .name h3 {
    text-align: center;
    font-size: 1.5625rem;
  }
}

.mail-box {
  background-color: #7f1710;
  padding-top: 5.3125rem;
  padding-bottom: 5.3125rem;
}
.mail-box h2 {
  font-size: 2.1875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: white;
}
.mail-box .content-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mail-box .content-col p {
  margin: 0 auto;
}
.mail-box .content-col a,
.mail-box .content-col input[type=submit] {
  color: #7f1710;
  background-color: white;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  border-radius: 145px;
  padding: 12px 35px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  border: none;
  min-height: 60px;
  margin-left: 10px;
}
.mail-box .content-col a:hover,
.mail-box .content-col input[type=submit]:hover {
  background-color: #ffb653;
}
.mail-box .content-col input[type=text] {
  color: #7f1710;
  background-color: white;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  border-radius: 145px;
  padding: 12px 35px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  border: none;
  min-height: 60px;
}
.mail-box .content-col input[name=city] {
  display: none;
}
@media screen and (max-width: 990px) {
  .mail-box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mail-box h2 {
    text-align: center;
    font-size: 25px;
  }
  .mail-box .content-col {
    padding-left: 15px;
    padding-right: 15px;
  }
  .mail-box .content-col a {
    font-size: 25px;
  }
  .mail-box .content-col input[type=submit] {
    margin-top: 15px;
    margin-left: 0;
  }
}

.we-provide {
  background-color: #f5f5f5;
  padding: 80px 0;
}
.we-provide h2 {
  font-size: 40px;
  font-weight: 700;
  color: #7f1710;
  margin-bottom: 4rem;
  text-transform: uppercase;
  text-align: center;
}
.we-provide .provide-box {
  position: relative;
  display: flex;
  flex-direction: column;
}
.we-provide .provide-box .image-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.we-provide .provide-box .image-box img {
  transition: transform 0.4s ease-in-out;
}
.we-provide .provide-box .image-box h3 {
  position: absolute;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.75rem;
  color: white;
  padding-left: 2rem;
  z-index: 10;
  padding-right: 2rem;
}
.we-provide .provide-box a {
  color: white;
  background-color: #7f1710;
  font-weight: bold;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 145px;
  padding: 12px 35px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  margin-top: 2rem;
}
.we-provide .provide-box a:hover {
  background-color: #ffb653;
}
.we-provide .provide-box a::after {
  content: "";
  width: 8px;
  background-image: url("/bundles/Kuzelna/images/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 10px;
}
.we-provide .provide-box:hover .image-box img {
  transform: scale(1.1);
}
@media screen and (max-width: 990px) {
  .we-provide {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .we-provide h2 {
    text-align: center;
    font-size: 25px !important;
    margin-bottom: 1.85rem !important;
  }
  .we-provide .provide-box .image-box img {
    max-height: 200px;
  }
  .we-provide .provide-box .image-box h3 {
    font-size: 20px;
  }
  .we-provide .provide-box a {
    font-size: 20px !important;
    margin-bottom: 35px !important;
  }
  .we-provide .provide-box:not(:last-child) {
    margin-bottom: 40px;
  }
}

.opening-hours {
  padding: 80px 0;
  color: #242424;
  font-size: 1.25rem;
}
.opening-hours .first-col .main-wrap h2 {
  font-size: 40px;
  font-weight: 700;
  color: #7f1710;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.opening-hours .first-col .main-wrap a {
  color: #242424;
}
.opening-hours .middle-col .main-wrap {
  font-weight: bold;
}
.opening-hours .middle-col .main-wrap .flex-row {
  width: 100%;
  text-transform: uppercase;
}
.opening-hours .middle-col .main-wrap .flex-row:not(:last-child) {
  margin-bottom: 1.25rem;
}
.opening-hours .middle-col .main-wrap .flex-row .dots {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 2px dotted #707070;
  margin-bottom: 0.5625rem;
  margin-left: 15px;
  margin-right: 15px;
}
.opening-hours .image-col .main-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}
.opening-hours .image-col .main-wrap img {
  max-width: 85%;
}
@media screen and (max-width: 990px) {
  .opening-hours {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .opening-hours h2 {
    text-align: center;
    font-size: 25px !important;
    margin-bottom: 1.85rem !important;
  }
  .opening-hours .first-col {
    text-align: center;
    font-size: 18px !important;
    margin-bottom: 30px;
  }
  .opening-hours .middle-col {
    font-size: 18px !important;
    margin-bottom: 30px !important;
  }
  .opening-hours .middle-col .content-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
  .opening-hours .image-col img {
    max-width: 100% !important;
  }
}

.instagram-section {
  padding: 80px 0;
  color: #242424;
  font-size: 1.25rem;
}
.instagram-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #7f1710;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: center;
}
.instagram-section .gallery-row {
  margin: 50px auto;
}
.instagram-section .gallery-row .thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.instagram-section .gallery-row .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 20px solid white;
  transition: transform 0.4s ease-in-out;
}
.instagram-section .gallery-row .thumbnail:hover img {
  transform: scale(1.1);
}
.instagram-section .socials-row .socials {
  display: flex;
  flex-direction: row;
  gap: 0.9375rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.instagram-section .socials-row .socials a img {
  width: 3.125rem;
}
@media screen and (max-width: 990px) {
  .instagram-section {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 25px !important;
  }
  .instagram-section h2 {
    text-align: center;
    font-size: 30px !important;
    margin-bottom: 0 !important;
  }
  .instagram-section .gallery-row {
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .instagram-section .gallery-row .thumbnail img {
    max-height: 250px;
    width: auto;
    border: 10px solid white;
  }
}

.scroll-to-top {
  display: flex;
}
.scroll-to-top .container {
  position: relative;
}
.scroll-to-top .clickable {
  position: absolute;
  cursor: pointer;
  background-color: #7f1710;
  right: 0;
  bottom: 30px;
  z-index: 10;
  width: 100px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-to-top .clickable img {
  max-width: 25px;
  height: auto;
}
@media screen and (max-width: 990px) {
  .scroll-to-top .clickable {
    position: relative;
    width: 60px;
    margin-left: auto;
  }
}

.gray-block {
  background-color: #d6d6d6;
  color: #7b7b7b;
  font-size: 1rem;
  padding: 35px 0;
}
.gray-block .content-wrapper p:last-child {
  margin-bottom: 0;
}

.menu-wrapper {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
  scroll-padding-top: 20px;
}
.menu-wrapper .left-ornament {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.menu-wrapper .left-ornament img {
  width: 880px;
  height: auto;
  display: block;
}
.menu-wrapper .right-ornament {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.menu-wrapper .right-ornament img {
  width: 880px;
  height: auto;
  display: block;
  transform: rotate(195deg);
}
.menu-wrapper .page-title:first-child {
  margin-top: 0;
}
@media screen and (max-width: 990px) {
  .menu-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .menu-wrapper .page-title h2 {
    text-align: center;
    font-size: 2rem !important;
    margin-bottom: 0;
  }
  .menu-wrapper .menu-block {
    margin-top: 35px !important;
  }
  .menu-wrapper .menu-block h3 {
    font-size: 25px !important;
    text-align: center;
  }
}

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