@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap");
.dark-grey {
  color: #333;
}

.extra-dark-grey {
  color: #1b1b1b;
}

.extra-light-grey {
  color: #d4d4d4;
}

.light-grey {
  color: #555;
}

.red {
  color: #f00;
}

.background-extra-extra-light-grey {
  background-color: #ebebeb;
}

.background-white {
  background-color: white;
}

.background-yellow {
  background-color: #dda301;
}

body {
  color: black;
  font-family: "Open Sans", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

.mb-40 {
  margin-bottom: 40px !important;
}

h1 {
  font-weight: 600;
  text-transform: uppercase;
}

h2 {
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  h2 {
    font-size: 70px;
  }
}

.btn {
  border-color: white;
  border-radius: 0;
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 40px;
  padding: 10px 25px;
}
.btn:hover {
  background-color: white;
  color: black;
}
.btn-reverse {
  background-color: white;
  border: 1px solid black;
  border-radius: 0;
  color: black;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 25px;
}
.btn-reverse:hover,
.btn-reverse.active {
  background-color: black;
  color: white;
  outline: none;
}
/* @media (min-width: 768px) {
  .btn {
    margin-top: 80px;
  }
} */

p {
  color: white;
}

.section-padding {
  padding-bottom: 40px;
  padding-top: 40px;
}
@media (min-width: 576px) {
  .section-padding {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

.modal-content {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.modal-header {
  border-bottom: none;
}

.close {
  font-size: 32px;
  font-weight: 100;
  margin: 5px 10px 0 0;
  opacity: 1;
}

header p {
  color: #d6d6d6;
  font-size: 22px;
  margin-top: 10px;
}
header img.logo {
  width: 150px;
}
@media (min-width: 768px) {
  header img.logo {
    width: 230px;
  }
}
@media (min-width: 992px) {
  header img.logo {
    width: 260px;
  }
}

.landscape {
  background-color: black;
}
.landscape .col-md-5 {
  height: 90vh;
}
@media (min-width: 768px) {
  .landscape .col-md-5 {
    height: 100vh;
  }
}
.landscape .col-md-7 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  position: relative;
}
@media (min-width: 768px) {
  .landscape .col-md-7 {
    height: 100vh;
  }
}
.landscape .content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
.landscape .content h2 {
  color: white;
  margin-top: 0;
}
@media (min-width: 768px) {
  .landscape .overlay.reverse {
    background: linear-gradient(to left, black 0%, rgba(0, 0, 0, 0.8) 25%, transparent 100%);
  }
}
@media (min-width: 768px) {
  .landscape .overlay {
    background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.8) 25%, transparent 100%);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
}

#takeaway p {
  color: #d6d6d6;
  font-weight: 300;
  line-height: 33px;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  margin: 40px 0;
}

.subtitle {
  font-size: 13px;
  color: #333;
  letter-spacing: 1px;
}

.title {
  color: #333;
  letter-spacing: 2px;
}

.text {
  font-weight: 300;
  line-height: 33px;
  color: black;
}

.intro {
  color: black;
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
}
.intro.dishes {
  border-bottom: 1px solid #d4d4d4;
  line-height: 32px;
  margin-bottom: 20px;
}
.intro.dishes span {
  border-bottom: 2px solid white;
  padding-right: 10px;
}

.signature {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .signature {
    margin-bottom: 0;
  }
}

#menu h2 {
  margin-top: 20px;
}
#menu i {
  color: #555;
  font-size: 15px;
  line-height: 22px;
}

.menu {
  margin: 0;
  padding: 0;
}
.menu li {
  color: #555;
  display: table;
  font-size: 13px;
  letter-spacing: 1px;
  list-style-type: none;
  margin-bottom: 40px;
  min-height: 59px;
  text-transform: uppercase;
  width: 100%;
}
.menu li:hover .description {
  color: black;
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}
.menu li .description {
  display: table-cell;
  vertical-align: middle;
  width: calc(100% - 80px);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu li .price {
  color: black;
  display: table-cell;
  font-size: 20px;
  text-align: right;
  vertical-align: middle;
  width: 80px;
}
/* @media (min-width: 768px) {
  .menu {
    column-count: 2;
    column-gap: 30px;
  }
} */
.menu span.description {
  color: #555;
  font-size: 13px;
}

table th,
table td {
  vertical-align: middle !important;
}
table td {
  color: #555;
}
table th {
  color: black;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

#contact {
  background-image: url("../images/backgrounds/L1001430.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 90vh;
  z-index: 1;
}
#contact .overlay {
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
#contact button {
  display: block;
  margin: 40px auto 5px;
}
#contact #opening-hours {
  line-height: 16px;
}
#contact a {
  color: white;
  font-size: 14px;
  margin-top: 10px;
  text-transform: none;
}
@media (min-width: 768px) {
  #contact a {
    font-size: 16px;
  }
}
#contact .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#contact ul {
  list-style-type: none;
  margin-top: 25px;
  padding: 0;
}
#contact ul.social {
  display: flex;
  justify-content: center;
}
#contact ul.social li {
  margin-right: 10px;
}
#contact ul.social li:last-child {
  margin-right: 0;
}
#contact ul.social li a {
  background-color: white;
  border-radius: 50%;
  height: 46px;
  float: left;
  position: relative;
  width: 46px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#contact ul.social li a:hover {
  background-color: black;
  color: white;
}
#contact ul.social li a:hover i {
  color: white;
}
#contact ul.social li a i {
  color: black;
  font-size: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  #contact ul.social {
    margin: 0;
  }
}

footer {
  background-color: black;
  color: #d4d4d4;
  padding-bottom: 20px;
  padding-top: 20px;
}
footer p {
  font-size: 14px;
  margin-bottom: 0;
}
footer p a {
  color: white;
}
footer p a:hover {
  color: white;
}

#closingModal .modal-body,
#giftModal .modal-body {
  color: white;
  padding: 0;
}
#closingModal .modal-body .close,
#giftModal .modal-body .close {
  color: white;
}
#closingModal .modal-body strong,
#giftModal .modal-body strong {
  font-weight: 600;
}
#closingModal .modal-body .background-yellow,
#giftModal .modal-body .background-yellow {
  padding: 20px;
}
#closingModal .modal-body .background-yellow .text-wrapper,
#giftModal .modal-body .background-yellow .text-wrapper {
  border: 1px solid white;
  margin: 20px;
  padding: 40px 20px;
}
#closingModal .modal-body .background-yellow .text-wrapper .title,
#giftModal .modal-body .background-yellow .text-wrapper .title {
  color: white;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 20px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #closingModal .modal-body .background-yellow .text-wrapper .title,
  #giftModal .modal-body .background-yellow .text-wrapper .title {
    font-size: 42px;
  }
}
#closingModal .modal-body .background-yellow .text-wrapper .text,
#giftModal .modal-body .background-yellow .text-wrapper .text {
  color: white;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 0;
}
#closingModal .modal-body .background-white,
#giftModal .modal-body .background-white {
  padding: 20px;
}
#closingModal .modal-body .background-white .text,
#giftModal .modal-body .background-white .text {
  color: #555;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 0;
}
#closingModal .modal-body .background-white .text a,
#giftModal .modal-body .background-white .text a {
  color: black;
}

#nataleModal .modal-body,
#capodannoModal .modal-body,
#pasquaModal .modal-body,
#takeawayModal .modal-body,
#takeawayModal2 .modal-body {
  color: black;
  padding: 20px;
}
#nataleModal .modal-body .close,
#capodannoModal .modal-body .close,
#pasquaModal .modal-body .close,
#takeawayModal .modal-body .close,
#takeawayModal2 .modal-body .close {
  color: black;
}
#nataleModal .modal-body h2,
#capodannoModal .modal-body h2,
#pasquaModal .modal-body h2,
#takeawayModal .modal-body h2,
#takeawayModal2 .modal-body h2 {
  margin-bottom: 20px;
}
#nataleModal .modal-body .text,
#capodannoModal .modal-body .text,
#pasquaModal .modal-body .text,
#takeawayModal .modal-body .text,
#takeawayModal2 .modal-body .text {
  color: #555;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 40px;
}
#nataleModal .modal-body .text a,
#capodannoModal .modal-body .text a,
#pasquaModal .modal-body .text a,
#takeawayModal .modal-body .text a,
#takeawayModal2 .modal-body .text a {
  color: black;
  font-weight: 700;
}
#nataleModal .modal-body .menu,
#capodannoModal .modal-body .menu,
#pasquaModal .modal-body .menu,
#takeawayModal .modal-body .menu,
#takeawayModal2 .modal-body .menu {
  column-count: 1;
  column-gap: 0;
}

#openingModal .modal-body h2 {
  font-size: 32px;
}
@media (min-width: 768px) {
  #openingModal .modal-body h2 {
    font-size: 42px;
  }
}
#openingModal .modal-body .table {
  font-size: 14px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #openingModal .modal-body .table {
    font-size: 16px;
  }
}

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