body.lb-disable-scrolling {
  overflow: hidden;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  opacity: 0.8;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: 400;
  outline: 0;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid #fff;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #fff;
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(img/lightbox/loading.gif) no-repeat;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: 0;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}
.lb-next,
.lb-prev {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(img/lightbox/prev.png) left 48% no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(img/lightbox/next.png) right 48% no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: #ccc;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
}
.lb-data .lb-caption a {
  color: #4ae;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(img/lightbox/close.png) top right no-repeat;
  text-align: right;
  outline: 0;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}
* {
  margin: 0;
  padding: 0;
}
a {
  color: #242424;
  text-decoration: none;
}
body,
html {
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #353535;
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}
#content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
#logo img{
    max-width: 75px;
}
h1,
h2 {
  font-family: Alegreya, serif;
  font-size: 30px;
  line-height: 1.2;
  color: #353535;
  text-transform: uppercase;
  margin: 30px 0 10px;
}
h2 {
  font-size: 30px;
  margin: 20px;
}
#phone {
  display: inline-block;
  font-family: Alegreya, serif;
  font-size: 50px;
  color: rgb(240 109 54);
  margin: 20px 0;
  position: relative;
}
#phone:first-of-type{
    margin-bottom: 0;
}
#phone:last-of-type{
    margin-top: 0;
}
#phone::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 3px;
  background: rgb(240 109 54);
  left: 0;
  transition: 0.2s ease-in-out;
}
#phone:hover::after {
  width: 100%;
}
#gallery {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
#gallery div {
  float: left;
  width: 20%;
  position: relative;
}
#gallery div::after {
  position: absolute;
  content: "";
  width: 95%;
  height: 95%;
  border: 5% solid #fff;
}
#gallery div img {
  display: block;
  transition: all 0.3s ease-in;
}
#icons {
  margin: 20px 0;
}
#icons img {
  display: inline-block;
  max-width: 50px;
  margin: 0 10px;
  transition: 0.2s ease-in-out;
}
#icons img:hover {
  opacity: 0.7;
}
.lb-dataContainer {
  display: none !important;
}
#gallery a {
  transition: all 0.3s ease-in-out;
}
#gallery a:hover {
  opacity: 0.9;
}
#copy {
  font-size: 14px;
  margin-top: 30px;
}
#menu{
    margin: 10px 0;
}
.menu-item{
    display: inline-block;
    font-size: 25px;
    margin: 0 10px;
}
.menu-item.active a{
    text-decoration: underline;
}
@media (max-width: 1000px) {
  body,
  html {
    font-size: 18px;
  }
  #content {
    max-width: 90%;
  }
  #phone,
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 25px;
  }
  #icons img {
    max-width: 40px;
  }
  .menu-item{
    font-size: 20px;
}
}
@media (max-width: 480px) {
  body,
  html {
    font-size: 16px;
  }
  #phone,
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 20px;
  }
  #icons img {
    max-width: 30px;
  }
  #gallery div {
    width: 25%;
  }
}
