@import url("https://fonts.googleapis.com/css?family=Crimson+Text:400,700|Montserrat:400,400i,700");
/* 
    Text Sizing
   ========================================================================== */
h1 {
  font: 34px/37px 'Crimson Text', serif;
  padding-bottom: 20px;
}

h2 {
  font: 30px/33px 'Montserrat', serif;
}

h3 {
  font: 26px/29px 'Montserrat', sans-serif;
}

p {
  font: 22px/1.4em 'Montserrat', sans-serif;
}

a {
  font: 22px/24px 'Montserrat', sans-serif;
}

ol, ul {
  font: 22px/24px 'Montserrat', sans-serif;
}

/* 
    Grid
   ========================================================================== */
.full {
  width: 100%;
}

.container {
  width: 1500px;
  padding: 40px;
  margin: 0 auto;
}

@media only screen and (max-width: 1500px) {
  .container {
    width: 100%;
  }
}

.grid-3rd {
  width: 30%;
  margin: 0 1.5%;
}

.overflow {
  overflow: hidden;
}

.disappear {
  display: none;
}

/* 
    Structure
   ========================================================================== */
body {
  background: #282828;
  color: #282828;
}

.col-2 {
  width: 50%;
}

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.clearFix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.white {
  background: #fff;
}

.black {
  background: #282828;
}

.relative {
  position: relative;
}

/* 
    Button
   ========================================================================== */
.button {
  color: #d15451;
  background: white;
  padding: 10px 20px;
  border: 1px solid #d15451;
  border-radius: 2px;
  transition: .3s ease-in-out;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
  color: #fff;
  background: #d15451;
}

button {
  color: #952a27;
  background: white;
  padding: 10px 20px;
  border: 1px solid #d15451;
  border-radius: 2px;
  transition: .3s ease-in-out;
  text-decoration: none;
}

button:hover {
  text-decoration: none;
  color: #fcf3f2;
  background: #d76865;
}

.menuPage .header {
  background: #282828;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: none;
  transition: .2s ease-in-out;
  z-index: 99999;
}

.header .logoImg {
  z-index: 99999;
}

.header .logoImg img {
  width: 400px;
  margin: 30px 50px;
}

@media only screen and (max-width: 768px) {
  .header .logoImg img {
    width: 300px;
    margin: 30px;
  }
}

@media only screen and (max-width: 414px) {
  .header .logoImg img {
    width: 200px;
    margin: 30px;
  }
}

.header .hamburger-icon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
}

.header .hamburger-icon .hamburger {
  margin: 55px 55px;
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .header .hamburger-icon .hamburger {
    margin: 30px;
    width: 45px;
    height: 25px;
  }
}

.header .hamburger-icon .hamburger .bar {
  width: 100%;
  height: 5px;
  margin: 10px 0 10px;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #282828;
  transition: .4s ease-in-out;
  z-index: 9999;
}

@media only screen and (max-width: 768px) {
  .header .hamburger-icon .hamburger .bar {
    height: 3px;
  }
}

.header .hamburger-icon .hamburger:first-child {
  top: 0;
}

.header .hamburger-icon .hamburger:nth-child(2) {
  top: 50%;
}

.header .hamburger-icon .hamburger:last-child {
  top: 100%;
}

.header .navOpen .bar:first-child {
  background: #fff;
  transform: rotate(45deg);
  margin-top: 60%;
}

.header .navOpen .bar:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.header .navOpen .bar:last-child {
  background: #fff;
  transform: rotate(-45deg);
  margin-top: -60%;
}

.hamburger-nav {
  background-color: #282828;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  width: 100%;
  transition: .5s ease-in-out;
}

.hamburger-nav .navLink ol {
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.hamburger-nav .navLink ol li {
  height: calc(70vh/6);
}

.hamburger-nav .navLink ol li:last-child a {
  position: relative;
  display: inline;
  color: #d15451 !important;
}

.hamburger-nav .navLink ol li:last-child a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  display: block;
  height: 1px;
  width: 0;
  background: none;
  transition: .3s ease-in-out;
}

.hamburger-nav .navLink ol li:last-child a:hover::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: calc(50% - 100px);
  display: block;
  height: 1px;
  width: 200px;
  background: #d15451 !important;
}

.hamburger-nav .navLink ol:first-child {
  margin-top: 15vh;
}

.hamburger-nav .navLink ol a {
  color: #fff;
  text-decoration: none;
  font: 36px/35px 'Crimson Text', serif;
  transition: .4s ease-in-out;
}

.hamburger-nav .navLink ol a:hover {
  color: #d15451;
}

.openNav {
  height: 100vh;
  visibility: visible;
  overflow: auto;
}

.arrow {
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin: 20px;
  z-index: 9999;
}

.arrow a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 5em;
}

@media only screen and (max-width: 1024px) {
  .arrow {
    display: none;
  }
}

footer {
  background: #282828;
  text-align: center;
  padding: 15px 0 5px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  transition: .5s ease-in-out;
}

footer:hover {
  padding: 25px 0;
}

footer ol {
  padding-left: 0;
}

footer li {
  list-style: none;
  display: inline-block;
  width: calc(90%/3);
}

footer li a {
  font-size: 18px;
  color: #fff;
  transition: .3s ease-in-out;
}

footer li a:hover {
  text-decoration: none;
  color: #d15451;
}

@media only screen and (max-width: 768px) {
  footer li a {
    font-size: .6em;
  }
}

#hero {
  position: relative;
  background: url(../img/gallery/table.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.welcome {
  padding: 20px 0;
  position: absolute;
  bottom: 30%;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 100px;
  line-height: 1em;
}

@media only screen and (max-width: 1180px) {
  .welcome {
    bottom: 10%;
  }
}

.welcome h3 {
  text-shadow: 4px 4px 9px rgba(0, 0, 0, 0.4);
  line-height: 1.5em;
  font-size: .6em;
}

@media only screen and (max-width: 940px) {
  .welcome h3 {
    font-size: .4em;
  }
}

@media only screen and (max-width: 560px) {
  .welcome h3 {
    font-size: .3em;
  }
}

.welcome h2 {
  text-shadow: 4px 4px 9px rgba(0, 0, 0, 0.4);
  line-height: 1.5em;
  font-size: 1.25em;
  margin-bottom: 100px;
}

@media only screen and (max-width: 1180px) {
  .welcome h2 {
    font-size: 1em;
  }
}

@media only screen and (max-width: 940px) {
  .welcome h2 {
    font-size: .6em;
  }
}

@media only screen and (max-width: 560px) {
  .welcome h2 {
    font-size: .4em;
  }
}

.welcome a {
  color: #fff;
  font-weight: 700;
  line-height: 1em;
  font-size: 40px;
  text-decoration: none;
  transition: .2s ease-in-out;
}

.welcome a:hover {
  text-decoration: none;
  padding-bottom: 10px;
  font-size: 50px;
}

.signature {
  height: auto;
}

.signature h1 {
  color: #282828;
  padding-bottom: 20px;
}

.signature .dish {
  width: 50%;
  float: left;
}

@media only screen and (max-width: 1024px) {
  .signature .dish {
    width: 100%;
  }
}

.signature .dish:last-child {
  width: 100%;
}

.signature #dish1 {
  position: relative;
  background: url(../img/gallery/tribeye.jpg) no-repeat bottom left;
  background-size: cover;
  height: 80vh;
}

@media only screen and (max-width: 768px) {
  .signature #dish1 {
    height: 60vh;
  }
}

.signature #dish2 {
  position: relative;
  background: url(../img/gallery/wine.jpg) no-repeat bottom center;
  background-size: cover;
  height: 80vh;
}

@media only screen and (max-width: 768px) {
  .signature #dish2 {
    height: 60vh;
  }
}

.signature #dish3 {
  position: relative;
  background: url(../img/gallery/experience.jpg) no-repeat center center;
  background-size: cover;
  height: 80vh;
}

@media only screen and (max-width: 768px) {
  .signature #dish3 {
    height: 60vh;
  }
}

.signature .stack {
  width: 100%;
  float: left;
}

@media only screen and (max-width: 1024px) {
  .signature .stack {
    width: 100%;
  }
}

.signature .tall {
  width: 50%;
  float: right;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .signature .tall {
    display: none;
  }
}

.signature .dish h1 {
  padding-top: 10px;
  color: white;
}

.signature .dish .menu-card {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96%;
  height: auto;
  color: #fff;
  padding: 2% 2% 5%;
  border-radius: 2px;
  float: left;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 5px -10px 18px 10px rgba(0, 0, 0, 0.4);
}

.signature .dish .menu-card h2, .signature .dish .menu-card p {
  text-shadow: 4px 4px 9px rgba(0, 0, 0, 0.4);
}

.signature .dish .menu-card h2 {
  font-size: 2.3em;
}

.signature .dish .menu-card p {
  line-height: 1.4em;
}

.menuLink {
  text-align: center;
  padding: 80px 0 0;
  margin-bottom: 40px;
}

.menuLink .menuButton {
  margin: auto;
}

.menuLink .menuText {
  padding-top: 20px;
}

.menuLink .button {
  background: none;
}

.menuLink .button:hover {
  background: #d15451;
}

#gallery {
  position: relative;
  background: #282828;
  padding: 75px 0;
}

@media only screen and (max-width: 640px) {
  #gallery {
    display: none;
  }
}

#gallery .thumbnailSection {
  width: 100%;
}

#gallery .thumbnailSection .thumbnails {
  display: inline-block;
  width: calc(100%/8);
  margin: 0 -2px;
  height: 150px;
  overflow: hidden;
  transition: .4s ease-in-out;
}

@media only screen and (max-width: 1200px) {
  #gallery .thumbnailSection .thumbnails {
    width: calc(100%/5);
  }
}

@media only screen and (max-width: 768px) {
  #gallery .thumbnailSection .thumbnails {
    width: calc(100%/3);
  }
}

@media only screen and (max-width: 640px) {
  #gallery .thumbnailSection .thumbnails {
    display: none;
  }
}

#gallery .thumbnailSection .thumbnails:hover {
  transform: scale(2);
}

#gallery .thumbnailSection .thumbnails img {
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  #gallery .thumbnailSection .hide3 {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  #gallery .thumbnailSection .hide2 {
    display: none;
  }
}

.review {
  position: relative;
  background: #fff;
  height: auto;
  z-index: 999;
  padding-bottom: 40px;
}

.review .quote {
  float: right;
  text-align: center;
  width: 40%;
  padding: 5% 5%;
}

@media only screen and (max-width: 1024px) {
  .review .quote {
    width: 90%;
  }
}

.review .quote p {
  margin: 20px 0;
}

.review .tony {
  float: right;
  width: 50%;
  height: 500px;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) {
  .review .tony {
    width: 100%;
  }
}

@media only screen and (max-width: 560px) {
  .review .tony {
    height: 40vh;
  }
}

.review .tony img {
  width: 100%;
}

@media only screen and (max-width: 1780px) {
  .review .tony img {
    width: auto;
  }
}

@media only screen and (max-width: 560px) {
  .review .tony img {
    height: 40vh;
  }
}

.review:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.chefs .chef {
  position: relative;
  float: left;
  width: calc(100% / 6);
  height: 50vh;
  transition: .3s ease-in-out;
}

@media only screen and (max-width: 1780px) {
  .chefs .chef {
    height: 40vh;
  }
}

@media only screen and (max-width: 1500px) {
  .chefs .chef {
    height: 30vh;
  }
}

@media only screen and (max-width: 1240px) {
  .chefs .chef {
    width: calc(100% / 3);
    height: 40vh;
  }
}

@media only screen and (max-width: 840px) {
  .chefs .chef {
    width: calc(100% / 2);
    height: 40vh;
  }
}

.chefs .chef:hover {
  filter: grayscale(80%);
}

.chefs .chef:hover .bio {
  height: 100%;
}

.chefs .chef:hover .bio p {
  opacity: 1;
}

.chefs .chef:hover .bio h2 {
  padding-top: 40%;
}

.chefs .chef .bio {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  height: 80px;
  color: white;
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 5px -10px 18px 10px rgba(0, 0, 0, 0.4);
  transition: .3s ease-in-out;
}

.chefs .chef .bio h2 {
  text-align: center;
}

.chefs .chef .bio p {
  opacity: 0;
}

.chefs #chef1 {
  background: url(../img/chefs/MaxMillien.jpg) no-repeat top center;
  background-size: cover;
}

.chefs #chef2 {
  background: url(../img/chefs/VivekSingh.jpg) no-repeat top center;
  background-size: cover;
}

.chefs #chef3 {
  background: url(../img/chefs/MaichaelAllemeier.jpg) no-repeat top center;
  background-size: cover;
}

.chefs #chef4 {
  background: url(../img/chefs/TomKitchin.jpg) no-repeat top center;
  background-size: cover;
}

.chefs #chef5 {
  background: url(../img/chefs/SagerSmall.jpg) no-repeat top center;
  background-size: cover;
}

.chefs #chef6 {
  background: url(../img/chefs/HongTaimee.jpg) no-repeat top center;
  background-size: cover;
}

.together {
  position: relative;
  height: 100vh;
}

.reservation {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  margin-left: -350px;
  margin-top: -25vh;
  height: 0;
  z-index: 999;
  padding: 0;
}

#reservations {
  position: relative;
  background: url(../img/gallery/reservation.jpg) no-repeat top center;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

/* 
    Modal
   ========================================================================== */
.reservation {
  /* Modal Content/Box */
}

.reservation .modal-content {
  position: relative;
  background-color: white;
  margin: 5% auto 0;
  padding: 20px;
  border: 4px solid #952a27;
  border-radius: 2px;
  width: 700px;
  height: 800px;
  overflow-y: scroll;
  overflow-x: hidden;
  /* The Close Button */
  /* Selection Dropdown */
  /* Button */
  /* Details */
  /* Confirmation */
}

@media only screen and (max-width: 768px) {
  .reservation .modal-content {
    margin: 0;
    width: 100%;
    height: 100%;
  }
}

.reservation .modal-content .close {
  position: absolute;
  top: 10px;
  right: 25px;
  display: block;
  width: 20px;
  color: #aaa;
  font-size: 40px;
  font-weight: bold;
}

.reservation .modal-content .close:hover, .reservation .modal-content .close :focus {
  color: #282828;
  text-decoration: none;
  cursor: pointer;
}

.reservation .modal-content .steps {
  width: 100%;
  margin-top: 20px;
}

@media only screen and (max-width: 640px) {
  .reservation .modal-content .steps {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 500px) {
  .reservation .modal-content .steps {
    margin-top: -20px;
  }
}

@media only screen and (max-width: 414px) {
  .reservation .modal-content .steps {
    margin-top: -50px;
  }
}

.reservation .modal-content select {
  display: block;
  margin: 10px auto;
  width: 50%;
}

.reservation .modal-content .resButton {
  width: 500px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .reservation .modal-content .resButton {
    width: 100%;
  }
}

.reservation .modal-content .resButton .button {
  display: inline-block;
  width: 200px;
  margin: 2.5% auto;
}

.reservation .modal-content .button {
  display: block;
  margin: 0 auto 20px;
  width: 200px;
}

.reservation .modal-content .details {
  width: 400px;
  margin: 10px auto;
  padding: 10px 0;
  overflow: hidden;
}

@media only screen and (max-width: 414px) {
  .reservation .modal-content .details {
    width: 90%;
    padding: 0 5%;
  }
}

.reservation .modal-content .details .highlight {
  color: #dc7c79;
}

.reservation .modal-content .details label {
  font-family: 'Montserrat', sans-serif;
  padding-right: 10px;
}

.reservation .modal-content .details label input {
  width: 400px;
  padding-left: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 2px solid #c1c1c1;
}

@media only screen and (max-width: 414px) {
  .reservation .modal-content .details label input {
    width: 300px;
    padding: 0 5%;
  }
}

.reservation .modal-content .details label input:focus {
  border-bottom: 2px solid #952a27;
  outline: none;
}

.reservation .modal-content .details .dtpicker {
  width: 400px;
  padding-left: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 2px solid #c1c1c1;
}

@media only screen and (max-width: 414px) {
  .reservation .modal-content .details .dtpicker {
    width: 300px;
    padding: 0 5%;
  }
}

.reservation .modal-content .details .dtpicker:focus {
  border-bottom: 2px solid #952a27;
  outline: none;
}

.reservation .modal-content .details input[type="checkbox"] {
  width: 50px;
}

.reservation .modal-content .confirm {
  padding: 40px 0;
}

.reservation .modal-content .confirm p {
  width: 80%;
  line-height: 1.4em;
  font-size: 1.2em;
  margin: 0 10% 50px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .reservation .modal-content .confirm p {
    width: 98%;
    line-height: 1.2em;
    font-size: 1em;
    margin: 0 1% 50px;
  }
}

/* 
    Steps
   ========================================================================== */
.steps {
  position: absolute;
  top: 150px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: .3s ease-in;
}

.start {
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 1120px) {
  .menuPage .header {
    height: 122px;
  }
}

@media only screen and (max-width: 768px) {
  .menuPage .header {
    height: 100px;
  }
}

@media only screen and (max-width: 1800px) {
  .menuPage .header .logoImg a img {
    width: 300px;
    margin: 30px;
  }
}

@media only screen and (max-width: 1300px) {
  .menuPage .header .logoImg a img {
    width: 200px;
    margin: 50px;
  }
}

@media only screen and (max-width: 1120px) {
  .menuPage .header .logoImg a img {
    display: none;
  }
}

.top {
  margin-top: 130px;
}

@media only screen and (max-width: 768px) {
  .top {
    margin-top: 100px;
  }
}

.ui-widget.ui-widget-content, .ui-widget-content, .ui-widget-header {
  border: none !important;
  background: #282828 !important;
}

.ui-corner-all {
  border-radius: none !important;
}

.ui-tabs .ui-tabs-nav {
  text-align: center;
  position: fixed;
  top: 0px;
  left: 50%;
  margin-left: -450px;
  width: 900px;
  padding-top: 70px;
  z-index: 9999999;
}

@media only screen and (max-width: 1800px) {
  .ui-tabs .ui-tabs-nav {
    width: 600px;
    margin-left: -300px;
  }
}

@media only screen and (max-width: 768px) {
  .ui-tabs .ui-tabs-nav {
    width: 225px;
    height: 200px;
    padding-top: 40px;
    margin-left: 0;
    left: 0;
    overflow: hidden;
    transition: .4s ease-in-out;
  }
  .ui-tabs .ui-tabs-nav::after {
    position: absolute;
    top: 45px;
    right: 0;
    display: block;
    content: "\2023";
    width: 10px;
    height: 10px;
    color: #d15451;
    transform: rotate(90deg);
  }
}

@media only screen and (max-width: 768px) {
  .menuHide {
    height: 50px !important;
  }
}

@media only screen and (max-width: 768px) {
  .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: none;
  }
}

.ui-tabs .ui-tabs-nav li {
  float: none !important;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .ui-tabs .ui-tabs-nav li {
    display: block;
    width: 100%;
    height: 50px;
    text-align: left;
    overflow: hidden;
  }
}

.ui-widget-content {
  background: #fff !important;
}

.ui-state-default {
  background: #282828 !important;
  border: none !important;
  margin: 0 40px !important;
}

@media only screen and (max-width: 1800px) {
  .ui-state-default {
    margin: 0 3px !important;
  }
}

.ui-state-default a {
  color: white !important;
  transition: .2s ease-in-out;
}

@media only screen and (max-width: 1800px) {
  .ui-state-default a {
    font-size: 1.2em !important;
  }
}

.ui-state-default a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  height: 1px;
  width: 0;
  background: none;
  transition: .3s ease-in-out;
}

.ui-state-default a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  display: block;
  height: 1px;
  width: 200px;
  background: white !important;
}

@media only screen and (max-width: 1800px) {
  .ui-state-default a:hover::after {
    left: calc(50% - 50px);
    width: 100px !important;
  }
}

.ui-state-default a:focus {
  outline: none;
}

.ui-state-active a {
  color: #d15451 !important;
}

.ui-state-active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  height: 1px;
  width: 0;
  background: none;
  transition: .3s ease-in-out;
}

.ui-state-active a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  display: block;
  height: 1px;
  width: 200px;
  background: #d15451 !important;
}

@media only screen and (max-width: 1800px) {
  .ui-state-active a:hover::after {
    left: calc(50% - 50px);
    width: 100px !important;
  }
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr, .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-radius: 0;
}

.menuSection {
  text-align: center !important;
}

.menuSection .containMenu {
  width: 1000px;
  margin: auto;
}

@media only screen and (max-width: 1000px) {
  .menuSection .containMenu {
    width: 100%;
  }
}

.menuSection h1 {
  color: #d15451;
}

@media only screen and (max-width: 800px) {
  .menuSection h1 {
    font-size: 1.5em;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 800px) {
  .menuSection h2 {
    font-size: 1em;
  }
}

@media only screen and (max-width: 800px) {
  .menuSection p {
    font-size: .8em;
  }
}

@media only screen and (max-width: 514px) {
  .menuSection p {
    font-size: .6em;
  }
}

.menuSection ul {
  padding: 0 0 40px;
  margin-bottom: 20px;
}

.menuSection ul li {
  list-style: none;
  padding: 10px 0;
}

.menuSection ul li p {
  line-height: 1.6em;
}

.imgLogo {
  position: relative;
  z-index: 9999;
}

#galleryPage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

#galleryPage .largeImage {
  position: relative;
  background: url(../img/gallery/building.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

@media only screen and (max-width: 768px) {
  #galleryPage .largeImage {
    height: 0;
    background: none;
  }
}

#galleryPage .largeImage .thumbnailSection {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: scroll;
  box-shadow: -3px -2px 4px rgba(40, 40, 40, 0.5);
}

@media only screen and (max-width: 768px) {
  #galleryPage .largeImage .thumbnailSection {
    height: 60vh;
  }
}

#galleryPage .largeImage .thumbnailSection .thumbnails {
  margin: 0 -2px;
  padding: 0;
  display: inline-block;
  width: 300px;
}

#galleryPage .largeImage .thumbnailSection .thumbnails img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #galleryPage .largeImage .thumbnailSection .thumbnails img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 768px) {
  #galleryPage .largeImage .thumbnailSection .thumbnails img {
    width: 100%;
    height: auto;
  }
}

.whiteBox {
  border: 1px solid #fff;
}

.aboutHeader {
  background: url(../img/gallery/dining-hall.jpg) no-repeat center center;
  background-size: cover;
  height: 40vh;
}

.ourStory {
  background: white;
  width: 100%;
  height: auto;
}

.ourStory::before {
  content: '';
  width: 20px;
  height: 2px;
  position: absolute;
  top: 0;
  right: -15px;
  background: white;
}

.ourStory h1 {
  color: #d15451;
}

.timeHeader {
  background: url(../img/gallery/experience.jpg) no-repeat center center;
  background-size: cover;
  height: 20vh;
}

.timeHeader h2 {
  margin: 0;
  padding: 10vh 0 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 10vw;
  text-shadow: 4px 4px 9px rgba(0, 0, 0, 0.4);
}

.timeline {
  background: white;
}

.timeline .newTime {
  padding: 50px 0;
}

@media only screen and (max-width: 1024px) {
  .timeline .newTime .toFull {
    width: 100%;
  }
}

.timeline .newTime h1 {
  color: #d15451;
}

.timeline .card {
  width: 50%;
  margin: 10% auto;
}

@media only screen and (max-width: 1024px) {
  .timeline .card {
    height: auto;
    width: 80%;
  }
}

.timeline .photos {
  position: relative;
  height: 50vh;
}

@media only screen and (max-width: 1024px) {
  .timeline .photos {
    height: 40vh;
    width: 100%;
  }
}

@media only screen and (max-width: 690px) {
  .timeline .photos {
    height: 30vh;
  }
}

.timeline .photos img {
  width: 45%;
  height: auto;
}

.verticalLine {
  position: absolute;
  background: #d15451;
  top: 0;
  left: 50%;
  width: 3px;
  height: 0;
  transition: 6s ease-in-out;
}

@media only screen and (max-width: 1024px) {
  .verticalLine {
    display: none;
  }
}

.verticalHeight {
  height: 100% !important;
}

.width0 {
  width: 0 !important;
  transition: .3s ease-in-out;
}

.lineLeft {
  position: absolute;
  top: 35%;
  right: 0;
  background: #d15451;
  height: 2px;
  width: 80%;
  transition: .3s ease-in-out;
}

@media only screen and (max-width: 2250px) {
  .lineLeft {
    top: 30%;
  }
}

@media only screen and (max-width: 1800px) {
  .lineLeft {
    top: 25%;
  }
}

@media only screen and (max-width: 1400px) {
  .lineLeft {
    top: 20%;
  }
}

.lineRight {
  direction: rtl;
  position: absolute;
  top: 35%;
  left: 0;
  background: #d15451;
  height: 2px;
  width: 20%;
  transition: .3s ease-in-out;
}

@media only screen and (max-width: 2250px) {
  .lineRight {
    top: 30%;
  }
}

@media only screen and (max-width: 1800px) {
  .lineRight {
    top: 25%;
  }
}

@media only screen and (max-width: 1400px) {
  .lineRight {
    top: 20%;
  }
}

.nodot1, .nodot2, .nodot3, .nodot4 {
  margin: -20px;
  border-radius: 50%;
}

.dot {
  width: 40px;
  height: 40px;
  margin: -20px;
  border-radius: 50%;
  background: #d15451;
  transition: 1s ease-in-out;
}

.photo1 {
  position: absolute;
  top: 80px;
  left: 20%;
  transition: 1.8s ease-in-out;
}

.photo2 {
  position: absolute;
  top: 180px;
  left: 50%;
  transition: 1.3s ease-in-out;
}

.photo3 {
  position: absolute;
  top: 80px;
  left: 20%;
  transition: 1s ease-in-out;
}

.photo4 {
  position: absolute;
  top: 260px;
  left: 50%;
  width: 45%;
  transition: 1.3s ease-in-out;
}

.photo5 {
  position: absolute;
  top: 80px;
  left: 10%;
  transition: 1.1s ease-in-out;
}

.photo6 {
  position: absolute;
  top: 260px;
  left: 50%;
  width: 40%;
  transition: 1.5s ease-in-out;
}

.photo7 {
  position: absolute;
  top: 80px;
  left: 25%;
  width: 30% !important;
  transition: 1.3s ease-in-out;
}

.photo8 {
  position: absolute;
  top: 260px;
  left: 50%;
  width: 45%;
  transition: 1s ease-in-out;
}

.off2Right {
  left: 200%;
}

.off2Left {
  left: -200%;
}

.contact .thisMap {
  box-sizing: border-box;
  border-right: 4px solid #952a27;
  height: calc(100vh - 141px);
}

.contact .thisMap a {
  color: #952a27;
  text-decoration: none;
  transition: .3s ease-in-out;
}

.contact .thisMap a:hover {
  color: #282828;
}

.contact .thisMap .map {
  background: url(../img/map.png) no-repeat center center;
  background-size: contain;
  height: 60vh;
  margin: 10vh 0;
  position: relative;
}

.contact .thisMap .map .link {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  text-align: center;
}

.contact .thisContact {
  height: calc(100vh - 141px);
}

.contact .thisContact .contactCard {
  width: 60%;
  height: 60vh;
  margin: auto;
  padding-top: 20vh;
}

.contact .thisContact .contactCard a {
  color: #952a27;
  text-decoration: none;
  transition: .3s ease-in-out;
}

.contact .thisContact .contactCard a:hover {
  color: #282828;
}

.contact .thisContact .contactCard .social {
  width: 50%;
}

.contact .thisContact .contactCard .social .circle {
  background: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transition: .3s ease-in-out;
}

.contact .thisContact .contactCard .social .circle:hover {
  background: #d15451;
}

.contact .thisContact .contactCard .social .circle a {
  height: 50px;
  width: 50px;
  display: block;
  text-indent: -99999px;
}

#facebook {
  background: url(https://image.flaticon.com/icons/png/512/44/44646.png) no-repeat center center;
  background-size: contain;
}

#twitter {
  background: url(https://image.flaticon.com/icons/png/512/23/23681.png) no-repeat center center;
  background-size: contain;
}

#instagram {
  background: url(https://image.flaticon.com/icons/png/512/69/69366.png) no-repeat center center;
  background-size: contain;
}

.reservationPage #building {
  background: url(../img/gallery/dining-hall.jpg) no-repeat center center;
  background-size: cover;
  height: 50vh;
}

@media only screen and (max-width: 1024px) {
  .reservationPage #building {
    height: 40vh;
  }
}

.reservationPage .makeRes {
  padding: 20px 0;
  height: 50vh;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .reservationPage .makeRes {
    height: 60vh;
  }
}

@media only screen and (max-width: 500px) {
  .reservationPage .makeRes {
    padding: 0;
  }
}

.reservationPage .makeRes h2 {
  font-size: 2em;
  padding: 0 0 3%;
}

@media only screen and (max-width: 500px) {
  .reservationPage .makeRes h2 {
    font-size: 1.5em;
  }
}

@media only screen and (max-width: 360px) {
  .reservationPage .makeRes h2 {
    font-size: 1.2em;
  }
}

.reservationPage .makeRes b {
  color: #952a27;
  font-size: 2em;
  line-height: 1.3em;
  font-family: 'Crimson Text', serif;
}

.reservationPage .makeRes p {
  margin: auto;
  width: 60%;
  padding: 2%;
}

@media only screen and (max-width: 1024px) {
  .reservationPage .makeRes p {
    width: 98%;
    padding: 0 1%;
  }
}

@media only screen and (max-width: 500px) {
  .reservationPage .makeRes p {
    font-size: 1em;
  }
}

@media only screen and (max-width: 360px) {
  .reservationPage .makeRes p {
    font-size: .8em;
  }
}

.picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected, .picker__day--highlighted:hover, .picker--focused .picker__day--highlighted, .picker__list-item--highlighted:hover, .picker--focused .picker__list-item--highlighted {
  background-color: #d15451 !important;
}

.picker__day--today:before, .picker__button--today:before {
  border-top: 0.5em solid #d15451 !important;
}

.picker__day--highlighted, .picker__list-item--highlighted {
  border-color: #d15451 !important;
}

.picker__day--infocus:hover, .picker__day--outfocus:hover, .picker__list-item:hover {
  background-color: #f1cbca !important;
  border-color: #d15451 !important;
}
