/* Ramsbottom default styles */

/* Header */

#Master_lblHeader {
  position: relative;
  z-index: 2;
}

.header {
  box-shadow: var(--header-box-shadow);
}

.header-logo {
  position: relative;
}

.header-logo__anchor {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: var(--header-logo-border-radius);
  height: auto !important;
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
}

.header-logo__anchor::before {
  border-radius: var(--header-logo-border-radius);
  box-shadow: var(--header-box-shadow);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
}

@media only screen and (max-width: 767px) {
  .header-logo__anchor {
    left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header-logo__anchor {
    left: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .header-logo__anchor {
    left: 35px;
  }
}

/* Main */

.home-main {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wrapper-width-desktop);
}

/* Hero */

.home-hero {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: var(--home-hero-background-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--home-hero-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
}

.home-hero__title {
  font-family: var(--font-family-bold);
  line-height: 1.1em;
  max-width: 1100px;
  padding: 20px;
}

.button--home-hero {
  background-color: var(--home-hero-button-background-color);
  border-color: var(--home-hero-button-border-color);
  border-width: 3px;
  color: var(--home-hero-button-color);
  padding-left: 2em;
  padding-right: 2em;
}

.button--home-hero:hover {
  background-color: var(--home-hero-button-background-color-hover);
  border-color: var(--home-hero-button-border-color-hover);
  border-width: 3px;
  color: var(--home-hero-button-color-hover);
}

@media only screen and (max-width: 767px) {
  .home-hero {
    height: 380px;
  }

  .home-hero__title {
    font-size: 18px;
  }

  .button--home-hero {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) {
  .home-hero__title {
    font-size: 48px;
  }

  .button--home-hero {
    font-size: 18px;
  }
}

/* Intro */

.home-intro {
  padding: 40px 20px;
  text-align: center;
}

.home__subtitle {
  background-color: var(--home-subtitle-background-color);
  border-radius: var(--button-border-radius);
  color: var(--home-subtitle-color);
  display: inline-block;
  font-family: var(--font-family-bold);
  margin-bottom: 1em;
  padding: 0.75em 1em;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .home-intro {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .home__subtitle {
    font-size: 18px;
  }

  .home-intro__p {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .home__subtitle {
    font-size: 24px;
  }

  .home-intro__p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .home-hero {
    height: 600px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .home-hero {
    height: 700px;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1599px) {
  .home-hero {
    height: 750px;
  }
}

@media only screen and (min-width: 1600px) {
  .home-hero {
    height: 805px;
  }
}

/* Dish categories */

.home-categories-wrapper {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-category__content::after {
  border-color: var(--home-category-anchor-color);
  border-radius: var(--home-category-border-radius);
  border-style: solid;
  content: '';
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .home-categories {
    grid-auto-rows: 345px;
    padding-top: 20px;
  }

  .home-category__anchor {
    font-size: 24px;
  }

  .home-category__content {
    padding: 24px;
  }

  .home-category__content::after {
    border-width: 4px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    top: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .home-categories {
    padding-top: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .home-categories-wrapper {
    max-width: 768px;
  }

  .home-categories {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 230px;
    grid-column-gap: 20px;
  }

  .home-category__anchor {
    font-size: 18px;
  }

  .home-category__content {
    padding: 24px;
  }

  .home-category__content::after {
    border-width: 4px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    top: 10px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1299px) {
  .home-categories-wrapper {
    max-width: 1024px;
  }

  .home-categories {
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 308px;
    grid-column-gap: 30px;
  }

  .home-category__anchor {
    font-size: 24px;
  }

  .home-category__content {
    padding: 36px;
  }

  .home-category__content::after {
    border-width: 6px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    top: 15px;
  }
}

@media only screen and (min-width: 1300px) {
  .home-categories-wrapper {
    max-width: 1300px;
  }

  .home-categories {
    -ms-grid-columns: 1fr 90px 1fr 90px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 360px;
    grid-column-gap: 90px;
  }

  .home-category__anchor {
    font-size: 30px;
  }

  .home-category__content {
    padding: 48px;
  }

  .home-category__content::after {
    border-width: 8px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    top: 20px;
  }
}
