/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/
/*===========================================
 * VARIABLES
 * =========================================*/
/*===============================================
* BREAK POINTS
* ==============================================*/
/*===========================================
 * ANIMATION
 * =========================================*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
button {
  -webkit-appearance: none; /* Removes default appearance on iOS */
  -moz-appearance: none;
       appearance: none; /* Standard property for modern browsers */
  color: inherit; /* Ensures the text color matches the parent element */
  text-decoration: none; /* Removes underline, if any */
  background-color: transparent; /* Ensures no default background color */
}

/*===========================================
 * GENERAL
 * =========================================*/
/* Default state (top of page) */
html {
  scroll-padding-top: 0;
  transition: scroll-padding-top 0.3s ease;
}

/* When the user has scrolled and the CTA appears */
html:has(body.did-scroll) {
  scroll-padding-top: 68px;
}

.skip-link {
  top: 17px;
  left: 17px;
}

.invert-logo {
  filter: invert(1);
}

@media only screen and (max-width: 768px) {
  .ml-no-arrow svg {
    display: none;
  }
}

.anchor-text-black a {
  color: var(--bricks-color-bpgzen);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*===========================================
 * HEADER
 * =========================================*/
.header-default {
  transition: top 0.3s;
}
.scrolling .header-default {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.header-default__menu {
  justify-content: space-between;
  align-items: flex-start;
}
.scrolling .header-default__menu {
  align-items: center;
}
.header-default .bricks-nav-menu-wrapper {
  width: 100%;
}
.header-default .bricks-nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header-default .sub-menu {
  padding: 1rem 0;
}

.home .header-default,
.page-id-1224 .header-default {
  position: absolute;
}
.home .header-default__logo,
.page-id-1224 .header-default__logo {
  filter: invert(1);
}
.home .header-default__menu,
.page-id-1224 .header-default__menu {
  color: #fff !important;
}

.li-logo {
  padding: 0 10%;
}
@media only screen and (max-width: 1160px) {
  .li-logo {
    padding: 0 7%;
  }
}
@media screen and (max-width: 766px) {
  .li-logo {
    padding: 0;
  }
}
.scrolling .li-logo .header-default__logo {
  filter: none;
}
.li-logo .header-default__logo img {
  width: 100px;
  max-width: none;
  transition: width 0.6s ease;
}
@media only screen and (max-width: 1366px) {
  .li-logo .header-default__logo img {
    width: 90px;
  }
}
@media only screen and (max-width: 980px) {
  .li-logo .header-default__logo img {
    width: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .li-logo .header-default__logo img {
    width: 66px;
  }
}
.scrolling .li-logo .header-default__logo img, .did-scroll .li-logo .header-default__logo img {
  width: 70px;
  transition: width 0.6s ease;
}
@media only screen and (max-width: 478px) {
  .scrolling .li-logo .header-default__logo img, .did-scroll .li-logo .header-default__logo img {
    width: 46px;
  }
}

.header-default__nav .brx-dropdown-content {
  border: 1px solid #eee;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.1);
}
.header-default__nav .brx-dropdown-content li:hover a {
  background-color: #f2f2f2;
}
.header-default__nav .brx-dropdown-content li:first-of-type {
  padding-top: 10px;
}
.header-default__nav .brx-dropdown-content li:last-of-type {
  padding-bottom: 10px;
}

/** CTA SCROLL **/
.page-id-626 #scroll-cta, .page-id-629 #scroll-cta, .page-id-951 #scroll-cta, .page-id-965 #scroll-cta, .page-id-980 #scroll-cta, .page-id-986 #scroll-cta, .page-id-1002 #scroll-cta, .page-id-1015 #scroll-cta, .page-id-1013 #scroll-cta {
  display: none;
}
.did-scroll #scroll-cta {
  opacity: 1;
  visibility: visible;
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
  pointer-events: auto;
}
@media only screen and (max-width: 980px) {
  .did-scroll #scroll-cta {
    animation-name: fadeInUp;
  }
}
.did-scroll-top #scroll-cta {
  opacity: 1;
  visibility: visible;
  animation-name: fadeOutUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media only screen and (max-width: 980px) {
  .did-scroll-top #scroll-cta {
    animation-name: fadeOutDown;
  }
}
@media only screen and (max-width: 980px) {
  #scroll-cta {
    display: block;
    top: auto !important;
    bottom: 0;
  }
}
@media only screen and (max-width: 980px) {
  .cta-in-view #scroll-cta {
    animation-name: fadeOutDown;
  }
}
@media only screen and (max-width: 980px) {
  #scroll-cta .button-wrapper {
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 365px;
    width: 100%;
  }
}

.brxe-popup-447 .brx-popup-content.brxe-container {
  width: 100%;
}

.sec-popup__text-link {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0;
}

/*===========================================
 * SECTION - BANNER
 * =========================================*/
.home-hero__container {
  background: linear-gradient(to bottom, black, 70%, transparent);
}

.aw-menu-cards .swiper-slide {
  width: 18.5vw !important;
}
@media only screen and (max-width: 1700px) {
  .aw-menu-cards .swiper-slide {
    width: 19.5vw !important;
  }
}
@media only screen and (max-width: 1540px) {
  .aw-menu-cards .swiper-slide {
    width: 24vw !important;
  }
}
@media only screen and (max-width: 1440px) {
  .aw-menu-cards .swiper-slide {
    width: 26vw !important;
  }
}
@media only screen and (max-width: 1230px) {
  .aw-menu-cards .swiper-slide {
    width: 28vw !important;
  }
}
@media only screen and (max-width: 1024px) {
  .aw-menu-cards .swiper-slide {
    width: 36vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .aw-menu-cards .swiper-slide {
    width: 40vw !important;
  }
}
@media only screen and (max-width: 478px) {
  .aw-menu-cards .swiper-slide {
    width: 79vw !important;
  }
}
@media only screen and (max-width: 600px) {
  .aw-menu-cards {
    padding-bottom: 0;
  }
}

.aw-cards {
  margin: 0 -50rem 3rem 0;
}
.aw-cards.slider-mobile {
  margin: 0 -3rem 3rem 0;
  display: inherit;
}
@media only screen and (min-width: 860px) {
  .aw-cards.slider-mobile {
    display: block;
  }
}
.aw-cards.slider-mobile .swiper-wrapper {
  justify-content: space-between;
}
@media only screen and (min-width: 860px) {
  .aw-cards.slider-mobile .swiper-wrapper {
    justify-content: start;
    flex-direction: row;
  }
}
@media only screen and (max-width: 1024px) {
  .aw-cards.slider-mobile .swiper-wrapper .swiper-slide {
    width: 30vw !important;
  }
}
@media only screen and (max-width: 860px) {
  .aw-cards.slider-mobile .swiper-wrapper .swiper-slide {
    width: 36vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .aw-cards.slider-mobile .swiper-wrapper .swiper-slide {
    width: 40vw !important;
  }
}
@media only screen and (max-width: 478px) {
  .aw-cards.slider-mobile .swiper-wrapper .swiper-slide {
    width: 79vw !important;
  }
}
.aw-cards__wrap {
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fafafa;
}
.aw-cards__thumbnail {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.aw-cards__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.aw-cards__content {
  padding: 25px;
  height: auto;
}
.aw-cards__title {
  line-height: var(--line-height-1-3);
  font-size: 20px;
}
.aw-cards__price {
  font-weight: 700;
  font-size: var(--text-small);
}
.aw-cards__excerpt {
  font-size: var(--text-small);
  line-height: 1.3;
}
.aw-cards__content-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.aw-cards .swiper-pagination,
.aw-cards .swiper-button-prev,
.aw-cards .swiper-button-next {
  display: none;
}

.card-slider-ctrl {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto 0;
  width: 100%;
}
.card-slider-ctrl.arrow-white .button {
  border-color: #fff !important;
  color: #fff;
}
.card-slider-ctrl.arrow-white .button img {
  filter: brightness(0) invert(1);
}
.card-slider-ctrl .button {
  background-color: transparent !important;
  border: 3px solid #191a1d !important;
  color: #191a1d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 7px 15px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 478px) {
  .card-slider-ctrl .button {
    width: 44px;
    height: 44px;
    padding: 3px 13px;
  }
}
.card-slider-ctrl .button img {
  width: 20px;
  filter: brightness(0) invert(0) saturate(0) contrast(100%);
}
.card-slider-ctrl .button--previous {
  transform: rotate(180deg);
}
.card-slider-ctrl .button:not(:first-child) {
  margin-left: 15px;
}
@media only screen and (max-width: 478px) {
  .card-slider-ctrl .button:not(:first-child) {
    margin-left: 10px;
  }
}

.sep-dessert-ctrl {
  display: flex;
}
@media only screen and (min-width: 860px) {
  .sep-dessert-ctrl {
    display: none;
  }
}

.tab-menu .tab-title {
  padding: 10px 30px !important;
}
@media only screen and (max-width: 478px) {
  .tab-menu .tab-title {
    padding: 5px 20px !important;
  }
}
.tab-menu .tab-title.brx-open {
  background-color: #000000 !important;
  color: #fff;
}

.tabs-menu-content {
  padding: 25px 0 0 !important;
  border: none !important;
}
.tabs-menu-content .brxe-shortcode {
  padding-bottom: 25px;
}

/*===========================================
 * SECTION - PARTIES
 * =========================================*/
.gallery-swiper {
  margin: 0 -50rem 3rem 0 !important;
}
.gallery-swiper .swiper-slide {
  border-radius: 15px;
  overflow: hidden;
}
.gallery-swiper .swiper-slide.parties-swiper__item {
  width: 22vw;
}
@media screen and (max-width: 1680px) {
  .gallery-swiper .swiper-slide.parties-swiper__item {
    width: 26vw;
  }
}
@media only screen and (max-width: 1440px) {
  .gallery-swiper .swiper-slide.parties-swiper__item {
    width: 26vw;
  }
}
@media screen and (max-width: 1120px) {
  .gallery-swiper .swiper-slide.parties-swiper__item {
    width: 28vw;
  }
}
@media only screen and (max-width: 1024px) {
  .gallery-swiper .swiper-slide.parties-swiper__item {
    width: 36vw;
  }
}
@media only screen and (max-width: 768px) {
  .gallery-swiper .swiper-slide.parties-swiper__item {
    width: 60vw;
  }
}
@media only screen and (max-width: 600px) {
  .gallery-swiper .swiper-slide.parties-swiper__item {
    width: 50vw;
  }
}
@media only screen and (max-width: 478px) {
  .gallery-swiper .swiper-slide.parties-swiper__item {
    width: 79vw;
  }
}
.gallery-swiper.foods-swiper {
  margin: 0 !important;
}
.gallery-swiper.foods-swiper .foods-swiper__item {
  width: 25vw;
}
@media only screen and (max-width: 1024px) {
  .gallery-swiper.foods-swiper .foods-swiper__item {
    width: 28vw !important;
  }
}
@media only screen and (max-width: 600px) {
  .gallery-swiper.foods-swiper .foods-swiper__item {
    width: 50vw !important;
  }
}
.gallery-swiper.foods-swiper .swiper-pagination {
  display: block;
  position: relative;
  height: 49px;
  top: 25px;
}
.gallery-swiper__inner-content {
  position: relative;
  height: 100%;
  display: block;
  overflow: hidden;
  padding-top: 66%;
}
.gallery-swiper__image {
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
}

.card-slider-ctrl.foods-gallery-ctrl {
  display: none;
}

.swiper-xl .gallery-swiper .swiper-slide {
  width: 40vw;
}
@media only screen and (max-width: 478px) {
  .swiper-xl .gallery-swiper .swiper-slide {
    width: 79vw !important;
  }
}

/*===============================
* READ MORE/LESS
*===============================*/
.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clamped.clamped-mobile {
  -webkit-line-clamp: 99;
}
@media only screen and (max-width: 478px) {
  .clamped.clamped-mobile {
    -webkit-line-clamp: 7;
  }
}

.aw-read-more {
  color: #191a1d;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1;
  border-bottom: 2px solid rgba(14, 58, 85, 0.5);
}
.aw-read-more.read-more-light {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 980px) {
  .aw-read-more {
    margin-bottom: 20px;
  }
}
.sec-about .aw-read-more {
  display: none;
}
@media only screen and (max-width: 478px) {
  .sec-about .aw-read-more {
    display: inline;
  }
}

.aw-read-more:hover {
  opacity: 0.8;
  border-bottom: 2px solid rgb(14, 58, 85);
}

/*===========================================
 * GRAVITY FORMS
 * =========================================*/
.ginput_container_date {
  border-radius: 6px !important;
}

.gpld-inline-datepicker {
  box-shadow: none !important;
  border: 1px solid #e0e0e0 !important;
  background-color: #fff !important;
  border-radius: 6px !important;
}

.ui-datepicker-inline {
  width: 100% !important;
  max-width: 410px !important;
  margin: 0 auto !important;
  box-shadow: none !important;
  padding: 30px 0 !important;
  border-radius: 6px !important;
}

.gform_validation_errors {
  background-color: #fff !important;
}
.gform_validation_errors h2 {
  font-size: 1em !important;
  font-weight: bold !important;
  color: #de0000 !important;
}

.gfield_validation_message {
  font-size: 1.1em !important;
  font-weight: bold !important;
  padding: 1rem !important;
  background-color: #fff !important;
  color: #de0000 !important;
}

/*===========================================
 * FOOTER
 * =========================================*/
.footer__form form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 478px) {
  .footer__form form {
    gap: 0;
    flex-wrap: wrap;
  }
}
.footer__form form .gform-field-label {
  font-size: 1.2em;
  color: #ffffff;
}
.footer__form form .gform-footer {
  position: relative;
  top: 17px;
}
@media only screen and (max-width: 478px) {
  .footer__form form .gform-footer {
    top: auto;
  }
}
.footer__form .ginput_container_email {
  width: 100%;
}
.footer__form input[type=email],
.footer__form .ginput_container_email input[type=email] {
  background-color: #2a2a2a;
  border: 1px solid #515151;
  border-radius: 10px;
  padding: 1rem 2rem !important;
  color: #c4c4c4 !important;
  font-size: var(--text-x-small) !important;
  height: 60px;
}
@media only screen and (max-width: 600px) {
  .footer__form input[type=email],
  .footer__form .ginput_container_email input[type=email] {
    height: 55px;
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 478px) {
  .footer__form input[type=email],
  .footer__form .ginput_container_email input[type=email] {
    margin-bottom: 1rem;
  }
}
.footer__form input[type=submit],
.footer__form input.gform_button.button {
  font-weight: 700 !important;
  font-size: var(--text-x-small) !important;
  border: none;
  color: var(--bricks-color-bpgzen) !important;
  background-color: #fff !important;
  padding: 1rem 6rem;
  margin: 0 !important;
  height: 60px !important;
  border-radius: 10px !important;
  width: 100% !important;
  outline: none;
}
@media only screen and (max-width: 478px) {
  .footer__form input[type=submit],
  .footer__form input.gform_button.button {
    height: 55px !important;
  }
}
.footer .gform-body.gform_body {
  width: 100%;
  color: #c4c4c4 !important;
}
.footer .gform-footer.gform_footer {
  width: 39%;
}
@media only screen and (max-width: 478px) {
  .footer .gform-footer.gform_footer {
    width: 100%;
  }
}
.footer .gform-footer.gform_footer.top_label {
  margin: 0;
}
.footer__menu a, .footer__menu span, .footer__social-icons .icon {
  transition: all ease 0.4s;
}

.steps-form {
  box-shadow: 10px 5px 15px #f0f0f0, 10px 11px 25px #f2f2f2;
}
.steps-form .gform-theme--foundation .gform_fields {
  row-gap: 20px;
}
.steps-form h3, .steps-form .gf_progressbar_title {
  font-size: 2rem !important;
}
.steps-form .gfield_label,
.steps-form .gf_progressbar_title {
  font-weight: 600 !important;
  color: #000 !important;
}
.steps-form .gfield_label {
  font-size: 1.7rem !important;
}
.steps-form .gf_progressbar_wrapper {
  margin-bottom: 4rem !important;
}
.steps-form .datepicker {
  width: 100% !important;
}
.steps-form select,
.steps-form input, .steps-form .gfield textarea {
  background-color: #fff !important;
  border-radius: 5px !important;
  padding: 0.6rem 2rem !important;
  color: #000 !important;
  height: 50px !important;
  border: 1px solid var(--bricks-color-vbclbm) !important;
  box-shadow: none !important;
  font-size: 1.6rem !important;
}
.steps-form .gfield textarea {
  padding: 2rem 2rem !important;
}
.steps-form input.gform_next_button,
.steps-form input[type=submit],
.steps-form input.gform_previous_button {
  font-family: "Proxima Nova" !important;
  font-weight: 600 !important;
  font-size: var(--text-x-small) !important;
  height: auto !important;
  line-height: 35px !important;
  border-radius: 50px !important;
  padding: 5px 8% !important;
  cursor: pointer !important;
  outline: none !important;
}
.steps-form input.gform_next_button,
.steps-form input[type=submit] {
  color: #fff !important;
  border: 1px solid #D33F12 !important;
  background-color: #D33F12 !important;
}
.steps-form input.gform_previous_button {
  border: 2px solid var(--bricks-color-puetja) !important;
}
.steps-form input[type=submit] {
  width: 100% !important;
  max-width: 160px !important;
  text-align: center !important;
}
.steps-form .gform-page-footer {
  display: flex !important;
  justify-content: flex-end;
  gap: 1rem !important;
}
.steps-form .gform_confirmation_message {
  text-align: center;
  font-size: 2rem;
  line-height: 4rem;
  margin-bottom: 3rem;
  font-weight: 400 !important;
}
.steps-form .gform_confirmation_message br {
  display: none;
}
.steps-form .gform_confirmation_message h3 {
  font-size: 2.6rem !important;
}
.steps-form .ginput_container_checkbox input,
.steps-form .ginput_container_radio input {
  height: inherit !important;
  padding: inherit !important;
  background: inherit !important;
  border-radius: 0 !important;
}
.steps-form .ginput_container_checkbox label,
.steps-form .ginput_container_radio label {
  font-weight: 600 !important;
  font-size: 1.6rem !important;
}
.steps-form .ginput_container_fileupload input {
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.careers-form .gform_footer.top_label {
  margin: 4rem 0 1rem 0;
}

.gform-theme--framework.ui-datepicker table .ui-datepicker-current-day a,
.gform-theme--framework.ui-datepicker table .ui-datepicker-current-day span {
  --gf-local-bg-color: #E02200 !important;
}
.gform-theme--framework .gfield_radio {
  padding-left: 3px !important;
}
.gform-theme--framework .gfield--type-choice .gchoice input {
  width: 15px !important;
  height: 15px !important;
  margin-top: 5px;
  background-color: #fff !important;
}
.gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
  width: 15px !important;
  height: 15px !important;
  border-radius: 0 !important;
  background-color: #000 !important;
}

/*===============================
* ACCESSIBILITY
*===============================*/
.gform_page {
  padding: 0 5px 7px !important;
}

.btn:focus-visible, a:focus-visible, button:focus-visible, .button:focus-visible, body.bricks-is-frontend:focus-visible, select:focus-visible, textarea.textarea:focus-visible, .swiper-pagination-bullet:focus-visible {
  box-shadow: 0 0 0 2px #000, 0 0 0 4px #fff, 0 0 0 6px #0071E3 !important;
  outline: none !important;
}

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 5px !important;
}

/* Block */
.custom-pause-btn {
  position: absolute;
  width: auto;
  right: 2.5%;
  bottom: 2.5%;
}

.swiper-control {
  position: absolute;
  top: 2%;
  right: 1%;
}

.video-control,
.swiper-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: background-color 0.3s ease;
  width: 50px;
  height: 50px;
  z-index: 10;
}
@media only screen and (max-width: 478px) {
  .video-control,
  .swiper-control {
    width: 40px;
    height: 40px;
  }
}

/* Element: Icons */
.video-control__icon,
.swiper-control__icon {
  display: none; /* Hidden by default */
  line-height: 0;
}
.video-control__icon svg,
.swiper-control__icon svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 478px) {
  .video-control__icon svg,
  .swiper-control__icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Modifier: State toggling */
.video-control--playing .video-control__icon--pause,
.swiper-control--playing .swiper-control__icon--pause {
  display: block;
}

.video-control--paused .video-control__icon--play,
.swiper-control--paused .swiper-control__icon--play {
  display: block;
}

/*===========================================
 * HERO
 * =========================================*/
.hero-plain .home-hero__container {
  background: #fff;
}
@media only screen and (max-width: 478px) {
  .hero-plain .home-hero__container h1, .hero-plain .home-hero__container .sub-text {
    text-align: left !important;
  }
}
.hero-plain .home-hero__inner-block {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 478px) {
  .hero-plain .home-hero__inner-block {
    display: block;
  }
}
@media only screen and (max-width: 478px) {
  .hero-plain .home-hero__inner-block h1, .hero-plain .home-hero__inner-block .sub-text {
    text-align: left !important;
  }
}
@media only screen and (max-width: 478px) {
  .hero-plain .home-hero__inner-block .button-wrapper {
    justify-content: flex-start;
  }
}

/*===========================================
* PLAIN GALLERY
* =========================================*/
.plain-gallery {
  margin-bottom: 4rem;
}
.plain-gallery__wrapper {
  width: 95%;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .plain-gallery__wrapper {
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
  }
}
.plain-gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .plain-gallery__row {
    grid-template-columns: 1fr;
  }
}
.plain-gallery__row:first-child {
  position: relative;
  top: -5rem;
}
.plain-gallery__row img {
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .plain-gallery__row img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*===========================================
 * DRINKS MENU
 * =========================================*/
.drinks-gallery {
  background-color: #000;
}

.drinks-menu {
  width: 100%;
  margin: 4rem 0 6rem;
  color: #f8f8f8;
}
.drinks-menu__wrapper {
  width: 100;
  margin: 0 auto;
}
.drinks-menu__wrapper h2 {
  font-size: 3.3rem;
  font-weight: 800;
  margin-bottom: 3rem;
}
.drinks-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 3.5rem;
}
.drinks-menu ul.simple-list {
  margin-bottom: 0;
}
.drinks-menu__card {
  margin-bottom: 2rem;
}
.drinks-menu__card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 1rem;
  color: inherit;
}
.drinks-menu__card li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.drinks-menu__card--3 ul li:first-of-type {
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.drinks-menu__card--3 ul li:first-of-type h4 {
  font-size: 18px;
  font-weight: 800;
}
.drinks-menu__inner {
  padding: 2rem 1.5rem;
  border: 1px solid #444;
  border-radius: 10px;
}
.drinks-menu__inner ul:last-of-type {
  margin-bottom: 0;
}
.drinks-menu__name {
  width: 80%;
}
.drinks-menu__name h4 {
  font-size: 14px;
  color: inherit;
  font-weight: 500;
}
.drinks-menu__price {
  width: 25%;
  text-align: center;
  color: inherit;
  font-size: 14px;
}
@media only screen and (max-width: 478px) {
  .drinks-menu__price--single {
    width: 57px;
  }
}
@media (max-width: 400px) {
  .drinks-menu__price--single {
    width: 51px;
  }
}
.drinks-menu__price span {
  position: relative;
  top: -3px;
}/*# sourceMappingURL=style.css.map */