/***############### General Styling Reset and Setup: reset, grid, typography, general classes and divs.  Mobile-first styling setup. ***/
/***########## Reset the styles, add box-sizing: border-box. ***/
html, body, div, span, p, img, a, br, ul, li, ol, header, nav, footer, table, button, label, input, textarea, select, tr, td, th, h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  border: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal; }

/*For ease of development and maintainability, combine an element's width, padding, margin, and border into a final value, and enable this on all elements. */
/*Also reduce the chance of font-resizing on mobile devices.*/
html {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

*, *:before, *:after {
  box-sizing: inherit; }

/***########## Grid Column layout available.  Desktop and mobile settings.  Automatically make columns full width below a certain width. Very-small (vsm) 
columns display at their designated widths at all device sizes, small (sma) above the first breakpoint, large (lar) above the next breakpoint. ***/
.content {
  width: 100%;
  padding: 20px 10px 20px 10px; }

.content-row {
  width: 100%;
  padding: 20px 0 20px 0; }

.content-row:after {
  content: "";
  display: block;
  clear: both; }

.content-row.no-content-row-padding {
  padding: 0; }

.content-row:first-of-type {
  padding-top: 0; }

.content-row:last-of-type {
  padding-bottom: 0; }

.col-sma-1, .col-sma-2, .col-sma-3, .col-sma-4, .col-sma-5, .col-sma-6, .col-sma-7, .col-sma-8, .col-sma-9, .col-sma-10, .col-sma-11, .col-sma-12,
.col-lar-1, .col-lar-2, .col-lar-3, .col-lar-4, .col-lar-5, .col-lar-6, .col-lar-7, .col-lar-8, .col-lar-9, .col-lar-10, .col-lar-11, .col-lar-12 {
  float: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0; }

.col-vsm-1, .col-vsm-2, .col-vsm-3, .col-vsm-4, .col-vsm-5, .col-vsm-6, .col-vsm-7, .col-vsm-8, .col-vsm-9, .col-vsm-10, .col-vsm-11, .col-vsm-12 {
  float: left;
  padding-left: 15px;
  padding-right: 15px; }

.col-vsm-1 {
  width: 8.333333%; }

.col-vsm-2 {
  width: 16.666667%; }

.col-vsm-3 {
  width: 25%; }

.col-vsm-4 {
  width: 33.333333%; }

.col-vsm-5 {
  width: 41.666667%; }

.col-vsm-6 {
  width: 50%; }

.col-vsm-7 {
  width: 58.33333%; }

.col-vsm-8 {
  width: 66.666667%; }

.col-vsm-9 {
  width: 75%; }

.col-vsm-10 {
  width: 83.333333%; }

.col-vsm-11 {
  width: 91.666667%; }

.col-vsm-12 {
  width: 100%; }

/* Switch to 12 columns at 700px for small columns and 1200px for large columns. */
@media only screen and (min-width: 700px) {
  .col-sma-1, .col-sma-2, .col-sma-3, .col-sma-4, .col-sma-5, .col-sma-6, .col-sma-7, .col-sma-8, .col-sma-9, .col-sma-10, .col-sma-11, .col-sma-12 {
    float: left;
    padding-left: 15px;
    padding-right: 15px; }

  .col-sma-1 {
    width: 8.333333%; }

  .col-sma-2 {
    width: 16.666667%; }

  .col-sma-3 {
    width: 25%; }

  .col-sma-4 {
    width: 33.333333%; }

  .col-sma-5 {
    width: 41.666667%; }

  .col-sma-6 {
    width: 50%; }

  .col-sma-7 {
    width: 58.33333%; }

  .col-sma-8 {
    width: 66.666667%; }

  .col-sma-9 {
    width: 75%; }

  .col-sma-10 {
    width: 83.333333%; }

  .col-sma-11 {
    width: 91.666667%; }

  .col-sma-12 {
    width: 100%; } }
@media only screen and (min-width: 1200px) {
  .content {
    padding: 20px 0 20px 0; }

  .content-row {
    padding: 25px 0 25px 0; }

  .content-row:first-of-type {
    padding-top: 0; }

  .content-row:last-of-type {
    padding-bottom: 0; }

  .col-lar-1, .col-lar-2, .col-lar-3, .col-lar-4, .col-lar-5, .col-lar-6, .col-lar-7, .col-lar-8, .col-lar-9, .col-lar-10, .col-lar-11, .col-lar-12 {
    float: left;
    padding-left: 15px;
    padding-right: 15px; }

  .col-lar-1 {
    width: 8.333333%; }

  .col-lar-2 {
    width: 16.666667%; }

  .col-lar-3 {
    width: 25%; }

  .col-lar-4 {
    width: 33.333333%; }

  .col-lar-5 {
    width: 41.666667%; }

  .col-lar-6 {
    width: 50%; }

  .col-lar-7 {
    width: 58.33333%; }

  .col-lar-8 {
    width: 66.666667%; }

  .col-lar-9 {
    width: 75%; }

  .col-lar-10 {
    width: 83.333333%; }

  .col-lar-11 {
    width: 91.666667%; }

  .col-lar-12 {
    width: 100%; } }
/***########## General Styling and Typography settings. ***/
body {
  background-color: #f3f3f3; }

h1 {
  font-size: 24px; }

h2 {
  font-size: 20px; }

h3 {
  font-size: 18px; }

h4 {
  font-size: 18px; }

ul {
  list-style-type: none; }

p {
  padding-bottom: 16px;
  line-height: 22.4px; }

a {
  text-decoration: none; }

img {
  max-width: 100%;
  font-size: 0px; }

/*Don't allow images to go offscreen horizontally */
a:link, a:visited {
  color: #000000; }

a:hover {
  color: #0000cc; }

input, textarea, select {
  outline: 0;
  transition: 0.2s; }

input:focus, textarea:focus, select:focus {
  box-shadow: 0px 0px 3px 3px rgba(0, 102, 204, 0.6);
  transition: 0.2s; }

.body-wrapper {
  position: relative;
  width: 100%;
  min-width: 300px;
  padding: 0;
  border: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff; }

@media only screen and (min-width: 700px) {
  h1 {
    font-size: 32px; }

  h2 {
    font-size: 26px; }

  h3 {
    font-size: 20px; }

  h4 {
    font-size: 18px; } }
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 36px; }

  h2 {
    font-size: 26px; }

  h3 {
    font-size: 24px; }

  h4 {
    font-size: 18px; } }
/***########## General layout settings and general classes. ***/
.justify-content > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

/* General Resuable Classes */
.sr-only {
  display: block;
  width: 0;
  height: 0;
  opacity: 0; }

.width-100-percent {
  width: 100%; }

.clear-both {
  clear: both; }

/* Use .inner-wrapper for layouts where you want to have backgrounds go out of the site 'border' provided by .body-wrapper '*/
.inner-wrapper {
  position: relative;
  padding: 0;
  margin-left: auto;
  margin-right: auto; }

@media only screen and (min-width: 700px) {
  .float-right-above-a-breakpoint {
    float: right; } }
/* Form Validation classes */
.javascript-validation-results-contact-us {
  display: none;
  font-weight: bold; }

.javascript-validation-results-contact-us.show {
  display: block; }

.required-field-needed {
  box-shadow: 0px 0px 3px 3px #cc0000; }

/***########## End of General Styling Reset and Setup ****/
/***############### Beginning of Website-specific style sheet. ****/
/* (111, 78, 55)   coffee brown */
/* (54, 93, 46)    complimentary green */
/* (40, 52, 74)    complimentary dark blue */
/* coffee brown with semi-transparents */
/* light coffee brown with semi-transparents */
/* Note: Used SCSS RGBA to make footer semi-transparent, add a darker shade of the first color to h4s, and a darker shade of the second color 
for placeholder text. */
html, body, div, span, p, img, a, br, ul, li, ol, header, nav, footer, table, button, label, input, textarea, tr, td, th, h1, h2, h3, h4, h5, h6 {
  font-family: "Source Sans Pro", sans-serif; }

.bulleted-list {
  list-style-type: disc; }

.center-text {
  text-align: center; }

.no-padding {
  padding: 0; }

.current-page {
  border-bottom: 3px solid #6f4e37; }

h2 {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-align: center; }

h3 {
  font-size: 18px;
  padding: 0 0 15px 0;
  text-align: center; }

h4 {
  font-size: 18px;
  color: #28344a; }

h2, h3 {
  font-weight: bold; }

a, a:link, a:visited {
  color: #365d2e; }

a:hover {
  color: #28344a; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid #6f4e37; }

input, textarea {
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 10px 10px 10px 10px; }

input::placeholder, textarea::placeholder {
  color: #61a753;
  opacity: 1;
  /* For Firefox */ }

address {
  font-style: normal;
  padding-bottom: 16px;
  line-height: 22.4px; }

/*For IE 10-11 */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #61a753; }

/*For Edge */
::-ms-input-placeholder {
  color: #61a753; }

input:focus,
textarea:focus,
input:focus-visible,
textarea:focus-visible {
  box-shadow: 0px 0px 3px 3px rgba(54, 93, 46, 0.6);
  transition: 0.2s; }

.subheader-divider {
  border-bottom: 2px solid #28344a;
  margin-bottom: 15px; }

header {
  width: 100%;
  height: 226px;
  background: url("../images/coffee-shop-background.jpg") 0% 0%/cover no-repeat; }

.title-container {
  position: relative;
  top: -40px;
  text-align: center; }
  .title-container #mainTitle a {
    display: inline-block;
    font-size: 21px;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    color: #6f4e37;
    text-shadow: 0.5px 1px #d1b6a3; }

.subtitle-container {
  position: relative;
  top: -30px;
  display: block;
  width: 192px;
  height: auto;
  padding: 10px 12px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  background-color: rgba(54, 93, 46, 0.8); }

#logo {
  position: static;
  width: 32px;
  padding-top: 5px;
  margin-left: 10px; }

.logo__link {
  display: block; }

#mobileNav {
  display: block;
  padding: 0;
  background-color: #6f4e37;
  transition: 0.8s all ease-in; }

#desktopNav {
  display: none; }

nav {
  color: #6f4e37; }
  nav ul {
    font-size: 0; }
  nav a {
    font-size: 18px;
    font-weight: bold;
    transition: 0.2s; }
    nav a:hover {
      transition: 0.2s; }
    nav a.current-page:hover {
      transition: 0.2s; }
    nav a:focus-visible {
      transition: none; }

#mobileNav a {
  color: #f9f9f9;
  background-color: #6f4e37; }
  #mobileNav a:link, #mobileNav a:visited {
    color: #f9f9f9;
    background-color: #6f4e37; }
  #mobileNav a:hover {
    color: #d1b6a3; }
  #mobileNav a:focus-visible {
    border: 2px solid #ffffff; }
  #mobileNav a.current-page {
    border-bottom: 3px solid #ffffff; }
  #mobileNav a.current-page:hover {
    border-bottom: 3px solid #d1b6a3; }

#desktopNav a:link, #desktopNav a:visited {
  color: #6f4e37; }
#desktopNav a:hover {
  color: #bb9275; }
#desktopNav a.current-page:hover {
  border-bottom: 3px solid #bb9275; }

#dropdownButton {
  position: absolute;
  top: 19px;
  right: 10px;
  width: 26px;
  height: 26px;
  background-color: transparent;
  cursor: pointer; }

.dropdown-part-1 {
  border-bottom: 3px solid #6f4e37;
  margin-bottom: 6px;
  transition: 0.4s ease-in; }

.dropdown-part-2 {
  border-bottom: 3px solid #6f4e37;
  margin-bottom: 6px;
  transition: 0.4s ease-in; }

.dropdown-part-3 {
  border-bottom: 3px solid #6f4e37;
  transition: 0.4s ease-in; }

#mobileNav.show {
  padding: 15px;
  transition: 0.8s all ease-in; }
  #mobileNav.show li {
    opacity: 1;
    height: 21px;
    margin-bottom: 20px;
    transition: 0.8s all ease-in; }
    #mobileNav.show li:last-of-type {
      margin-bottom: 0; }

#mobileNav.show .dropdown-part-1 {
  transform: translateY(9px) rotate(45deg);
  transition: 0.4s ease-in; }

#mobileNav.show .dropdown-part-2 {
  opacity: 0;
  transition: 0.4s ease-in; }

#mobileNav.show .dropdown-part-3 {
  transform: translateY(-9px) rotate(-45deg);
  transition: 0.4s ease-in; }

#dropdownContent {
  padding: 0;
  transition: 0.8s all ease-in; }
  #dropdownContent li {
    display: block;
    height: 0;
    margin-bottom: 0px;
    opacity: 0;
    transition: 0.8s all ease-in; }

.content h3 {
  color: #6f4e37; }
.content a, .content a:link, .content a:visited {
  text-decoration: underline; }

footer {
  font-size: 28px;
  background: url("../images/coffee-shop-exterior.jpg") 0% 100%/cover no-repeat; }
  footer .footer-background {
    color: #333333;
    background-color: rgba(209, 182, 163, 0.85);
    text-align: center; }
    footer .footer-background .footer__additional-wrapper {
      padding: 30px 20px; }
  footer .footer-to-top a, footer .footer-copyright, footer .footer-hours *, footer .location-footer * {
    font-size: 18px; }
  footer a, footer a:link, footer a:visited {
    color: #365d2e; }
  footer a:hover {
    color: #ffffff; }
  footer .footer-to-top {
    padding-bottom: 0px; }
    footer .footer-to-top a, footer .footer-to-top a:link, footer .footer-to-top a:visited {
      color: #28344a;
      font-weight: bold;
      transition: 0.4s all; }
    footer .footer-to-top a:hover {
      color: #ffffff;
      transition: 0.4s all; }
  footer .footer-copyright {
    padding-top: 20px;
    padding-bottom: 20px; }
  footer .social-container {
    padding-top: 20px;
    padding-bottom: 20px; }
    footer .social-container .social-logo {
      display: inline-block;
      padding: 0 15px; }
      footer .social-container .social-logo .social-logo__link:focus-visible {
        display: block; }
      footer .social-container .social-logo .social-icon {
        transition: 0.4s all; }
      footer .social-container .social-logo .social-icon:hover {
        transition: 0.4s all; }
  footer .footer-hours {
    padding-top: 20px;
    padding-bottom: 10px; }
    footer .footer-hours .day-hours {
      padding-bottom: 10px; }
    footer .footer-hours .day, footer .footer-hours .hours {
      width: 150px;
      display: inline-block; }
    footer .footer-hours .hours {
      padding-left: 20px; }
  footer .location-footer {
    padding-top: 20px; }

input, textarea {
  outline: 0; }

.input-container {
  padding: 15px;
  color: #6f4e37; }
  .input-container label {
    display: inline-block;
    margin-bottom: 8px; }
  .input-container input {
    width: 100%; }
  .input-container textarea {
    width: 100%; }

.input-container.submit {
  padding-bottom: 0; }

table {
  width: 100%;
  border-collapse: collapse; }
  table th, table td {
    padding: 10px 0px; }
  table th {
    font-size: 20px;
    font-weight: bold; }
  table tr {
    border-bottom: 1px solid #6f4e37; }
  table img {
    width: 100%;
    height: auto; }

.item-image-td.empty {
  padding: 0; }

.item-image-td.empty .item-image {
  display: none; }

.item-image-container {
  overflow: hidden; }

.item-image-container__link {
  display: block;
  border-radius: 5px; }

.item-image-container__link:focus-visible {
  outline: 3px solid #6f4e37; }

.item-image {
  height: 220px;
  transition: transform 0.8s ease-in; }

.item-image:hover {
  transform: scale(1.08);
  transition: transform 0.8s ease-in; }

.index-section {
  margin-bottom: 40px; }

.index-section:last-of-type {
  margin-bottom: 0; }

.index-section-content {
  padding-bottom: 10px; }

.food-beverage-list {
  padding-left: 30px; }

.page-index .item-image-container {
  border-radius: 5px;
  transition: 0.4s; }

.page-index .item-image-container:hover {
  box-shadow: 0 0 6px 6px rgba(40, 52, 74, 0.6);
  transition: 0.4s; }

.page-index .item-image {
  cursor: pointer;
  transition: transform 0.8s; }

.page-index .item-image:hover {
  cursor: pointer;
  transform: scale(1.12);
  transition: transform 0.8s; }

.item-image.index-one {
  background: url("../images/index/roasted-coffee.jpg") 50% 0%/cover no-repeat; }

.item-image.index-two {
  background: url("../images/index/mocha-on-plate.jpg") 50% 0%/cover no-repeat; }

.item-image.index-three {
  background: url("../images/index/coffee-shop-counter.jpg") 50% 0%/cover no-repeat; }

.item-image.one {
  background: url("../images/menu/house-coffee.jpg") 50% 0%/cover no-repeat; }

.item-image.six {
  background: url("../images/menu/mocha.jpg") 50% 0%/cover no-repeat; }

.item-image.seven {
  background: url("../images/menu/green-tea-latte.jpg") 50% 0%/cover no-repeat; }

.item-image.twenty {
  background: url("../images/menu/cake-slice.jpg") 50% 0%/cover no-repeat; }

.visitors-bg-image {
  width: 100%;
  height: 220px;
  margin-bottom: 20px; }

.visitors-bg-image.one {
  background: url("../images/three-women-talking-at-a-table.jpg") 50% 0%/cover no-repeat; }

.visitors-bg-image.two {
  background: url("../images/two-visitors-at-a-table.jpg") 50% 0%/cover no-repeat; }

.visitors-bg-image.three {
  background: url("../images/busy-coffee-order-area.jpg") 50% 0%/cover no-repeat;
  margin-bottom: 0px; }

.form-transmission-results {
  display: none; }

.form-transmission-results.show {
  display: block; }

.form-transmission-results p {
  font-size: 16px;
  font-weight: bold;
  color: #000000; }

/*Location page**/
.content h3.coffee-shop-hours-header {
  color: #6f4e37; }
.content h3.location-header {
  color: #365d2e; }
.content .coffee-shop-hours-header, .content .location-header {
  text-align: center; }
.content .hours-table {
  text-align: left; }
  .content .hours-table th {
    color: #365d2e; }
  .content .hours-table .hours-col-1 {
    width: 45%; }
  .content .hours-table .hours-col-2 {
    width: 55%; }

.location-section {
  padding-top: 40px; }

/* Menu page */
.table-container {
  padding-top: 20px;
  padding-bottom: 20px; }

.menu-table th, .menu-table td, .events-table th, .events-table td {
  display: block; }
.menu-table th, .events-table th {
  color: #365d2e; }
.menu-table .event-name, .menu-table .date-time, .menu-table .event-info, .events-table .event-name, .events-table .date-time, .events-table .event-info {
  display: none; }
.menu-table .table-subheader td, .events-table .table-subheader td {
  padding: 25px 0px;
  background-color: #d1b6a3;
  background-image: linear-gradient(90deg, #af7f5e, #d1b6a3, #af7f5e);
  text-transform: uppercase;
  text-align: center; }
.menu-table tr td:first-of-type, .events-table tr td:first-of-type {
  font-size: 18px;
  font-weight: bold;
  color: #6f4e37; }
.menu-table td, .events-table td {
  text-align: center; }
.menu-table td:first-of-type, .events-table td:first-of-type {
  padding-top: 30px; }
.menu-table td:last-of-type, .events-table td:last-of-type {
  padding-bottom: 30px; }

.menu-table .item-name, .menu-table .photos, .menu-table .description {
  display: none; }
.menu-table h4 {
  color: #ffffff; }

/*Events page*/
/*Contact Us page*/
.contact-us-container {
  color: #6f4e37; }

.write-us, .contact-westland {
  text-align: center; }

.contact-westland {
  padding-bottom: 10px; }

.javascript-validation-results-contact-us {
  padding-top: 15px; }

.submit-button {
  padding: 10px 15px;
  border: 2px solid #333333;
  border-radius: 15px;
  background-color: #d1b6a3;
  cursor: pointer;
  transition: background-color 0.8s; }

.submit-button:hover {
  background-color: #ddc8ba;
  transition: background-color 0.8s; }

/*Careers page */
.careers-featured h4 {
  padding-bottom: 15px;
  text-align: center;
  color: #28344a; }

.positions-open-container {
  margin-top: 30px; }

.positions-title-container {
  padding-bottom: 10px; }

.position-container {
  padding-bottom: 40px; }

.position-text-container {
  position: relative; }

.position-title {
  padding-bottom: 15px;
  text-align: center; }

.item-image-container.position-image-container {
  float: left;
  width: 150px;
  height: 120px;
  margin-right: 15px;
  margin-bottom: 10px; }

.item-image.position-image-one {
  background: url("../images/mug-with-coffee.jpg") 50% 0%/cover no-repeat; }

.item-image.position-image-two {
  background: url("../images/mug-with-coffee.jpg") 50% 0%/cover no-repeat; }

.barista {
  width: 100%;
  height: 220px; }

.barista.one {
  background: url("../images/one-of-our-baristas.jpg") 50% 0%/cover no-repeat; }

.careers-container {
  padding-top: 25px;
  padding-bottom: 20px; }

.careers-form {
  padding-bottom: 15px; }

.application-form__title {
  text-align: center; }

@media only screen and (min-width: 500px) {
  h2 {
    font-size: 20px; }

  h3 {
    font-size: 19px; }

  .title-container {
    position: relative;
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center; }
    .title-container #mainTitle a {
      font-size: 28px; }

  .subtitle-container {
    width: 200px; }

  .item-image-container {
    width: 60%;
    margin-left: auto;
    margin-right: auto; }

  .item-image {
    margin-left: auto;
    margin-right: auto; }

  .item-image {
    height: 300px; }

  .visitors-bg-image {
    width: 80%;
    height: 300px;
    margin-left: auto;
    margin-right: auto; }

  .barista {
    height: 300px; } }
@media only screen and (min-width: 700px) {
  header {
    width: 100%;
    height: 220px;
    background: url("../images/coffee-shop-background.jpg") 50% 0%/cover no-repeat; }

  h2 {
    font-size: 21px; }

  h3 {
    font-size: 21px; }

  h4 {
    font-size: 20px; }

  table th, table td {
    padding: 12px 0px; }

  .title-container {
    position: relative;
    top: -45px;
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center; }
    .title-container #mainTitle a {
      font-size: 38px; }

  .subtitle-container {
    display: block;
    position: relative;
    top: -30px;
    width: 220px;
    max-width: 335px;
    margin-left: auto;
    margin-right: auto; }

  .item-image-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0; }

  .item-image {
    width: 100%;
    height: 240px;
    margin-left: 0;
    margin-right: 0; }

  .visitors-bg-image {
    width: 100%;
    height: 240px;
    margin-left: 0;
    margin-right: 0; }

  table .item-image-container {
    width: 60%;
    margin-left: auto;
    margin-right: auto; }

  .index-section {
    margin-bottom: 0px; }

  .index-section-content {
    padding-bottom: 0px; }

  /*Careers */
  .position-title {
    text-align: left;
    padding-left: 20px; }

  .barista {
    height: 220px; } }
@media only screen and (min-width: 1000px) {
  header {
    background: url("../images/coffee-shop-background.jpg") 50% 10%/cover no-repeat; }

  .visitors-bg-image {
    height: 300px; } }
@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 22px; }

  h3 {
    font-size: 22px;
    text-align: left; }

  h4 {
    font-size: 22px; }

  /* The main border around the entire document */
  /* *** Beginning of Major divs *** */
  .inner-wrapper {
    width: 1200px; }

  header {
    height: 240px;
    background: url("../images/coffee-shop-background.jpg") 0% 42%/auto no-repeat; }

  .title-container {
    position: static;
    width: 216px;
    padding-top: 30px;
    margin-left: 160px;
    margin-right: 0;
    text-align: left; }
    .title-container #mainTitle {
      width: 100%;
      max-width: 210px; }

  #logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    padding-left: 0;
    padding-top: 0;
    margin-left: 0; }

  .subtitle-container {
    display: inline-block;
    position: absolute;
    top: 160px;
    left: 160px;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-top: 15px; }

  nav {
    padding: 0 15px; }

  #mobileNav {
    display: none; }

  #desktopNav {
    display: block;
    position: absolute;
    top: -235px;
    right: 0; }

  nav {
    padding: 15px 15px; }
    nav li {
      display: inline-block;
      padding-right: 38px; }
      nav li a, nav li a:link, nav li a:visited {
        font-size: 21px; }

  footer {
    background: url("../images/coffee-shop-exterior.jpg") 50% 100%/cover no-repeat; }

  .content {
    padding: 50px 10px; }

  table th {
    font-size: 22px; }
  table th, table td, table tr td:first-of-type, table tr td:last-of-type {
    padding: 15px 10px; }
  table img {
    width: auto;
    height: 150px; }
  table .item-image-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  table .item-image {
    width: 100%;
    height: 200px;
    margin-left: 0;
    margin-right: 0; }

  .item-image {
    height: 240px; }

  .item-image.index-one {
    background: url("../images/index/roasted-coffee.jpg") 50% 20%/cover no-repeat; }

  .visitors-bg-image {
    height: 400px; }

  .hours-table th, .hours-table td {
    padding-left: 80px; }
  .hours-table th {
    text-transform: uppercase; }

  .location-section {
    padding-top: 0; }

  .table-container {
    padding-top: 0;
    padding-bottom: 0; }

  .menu-table th, .events-table th {
    text-transform: uppercase;
    text-align: left; }
  .menu-table th, .menu-table td, .events-table th, .events-table td {
    display: table-cell; }
  .menu-table th, .menu-table td, .menu-table tr td:first-of-type, .menu-table tr td:last-of-type, .events-table th, .events-table td, .events-table tr td:first-of-type, .events-table tr td:last-of-type {
    padding: 15px 10px; }
  .menu-table .event-name, .menu-table .date-time, .menu-table .event-info, .events-table .event-name, .events-table .date-time, .events-table .event-info {
    display: table-cell; }
  .menu-table .table-subheader td, .events-table .table-subheader td {
    padding: 25px 0px; }
    .menu-table .table-subheader td h4, .events-table .table-subheader td h4 {
      font-size: 20px; }
  .menu-table td, .events-table td {
    text-align: left; }

  .menu-table .table-subheader td:first-of-type {
    text-align: center; }
  .menu-table .item-name, .menu-table .photos, .menu-table .description {
    display: table-cell;
    padding-left: 20px; }
  .menu-table .item-name {
    width: 32%; }
  .menu-table .photos {
    width: 30%; }
  .menu-table .description {
    width: 38%; }

  .events-table .event-name {
    width: 30%; }
  .events-table .date-time {
    width: 30%; }
  .events-table .event-info {
    width: 40%; }

  .contact-westland {
    padding-bottom: 15px; }

  .item-image-container.position-image-container {
    width: 220px;
    height: 160px; }

  .position-image {
    width: 220px;
    height: 160px; }

  .barista {
    height: 300px; }

  .form-transmission-results p {
    font-size: 18px; } }
@media only screen and (min-width: 1600px) {
  h2 {
    font-size: 26px; }

  h3 {
    font-size: 26px; }

  .title-container {
    width: 242px; }
    .title-container #mainTitle a {
      font-size: 56px; }

  .subtitle-container {
    top: 240px; }

  header {
    height: 400px;
    background: url("../images/coffee-shop-background.jpg") 50% 5%/cover no-repeat; }

  #desktopNav {
    top: -396px; }

  nav li {
    padding-right: 40px; }
    nav li a, nav li a:link, nav li a:visited {
      font-size: 22px; }

  .item-image {
    height: 300px; }

  .item-image.index-one {
    background: url("../images/index/roasted-coffee.jpg") 50% 0%/cover no-repeat; } }

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