/***************** PSEUDO & GENERAl CLASSES ***************/

body {
  -webkit-font-smoothing: antialiased;
}
input {
  appearance: none;
  -webkit-appearance: none;
}

#loader {
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2000;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#progress-bar {
  height: 10px;
  background-color: #222;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  transition: width 0.5s ease;
  position: relative;
  top: 400px;
  width: 0px;
}
.hide-loader {
  opacity: 0 !important;
  z-index: -1 !important;
}
.no-scroll {
  overflow: hidden !important;
}

/** SPACING **/

.pad-large {
  padding-top: 88px;
  padding-bottom: 88px;
}

.pad-small {
  padding-top: 44px;
  padding-bottom: 44px;
}

.pad-top {
  margin-top: 88px;
}

.pad-bottom {
  margin-bottom: 88px;
}

/** TYPO **/

.text-white {
  color: #fff;
}

.text-small {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-right: -10px;
}

/** ELEMENTS **/

.hr {
  background-color: #222;
  height: 1px;
  margin: 0px auto;
}

.semi-hr {
  background-color: #222;
  height: 1.5px;
  margin: 0px auto;
}

.thick-hr {
  background-color: #222;
  height: 2px;
  margin: 0px auto;
}

.icon--xs {
  font-size: 1.14286rem;
}

.btn {
  border: 1px solid #222;
  border-right: 3px solid;
  border-bottom: 3px solid;
  padding: 15px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.btn:hover {
  border-right: 1px solid;
  border-bottom: 1px solid;
  top: 2px;
  left: 2px;
}

.btn-wrapper {
  display: inline-block;
}

.page-header .box-heading {
  font-family: "Petrona";
  font-size: 14px;
  padding: 10px 22px 10px 20px;
  border: 1px solid #222;
  margin-bottom: 22px;
  display: inline-block;
}

.page-header .box-heading[data-border="false"] {
  border: none;
}

.page-header .hr,
.page-header .semi-hr {
  margin-top: 22px;
}

#quote-divider {
  position: relative;
}

#quote-divider:before {
  content: "";
  background: url("../img/line-cook.jpg"), rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: color;
  width: 100%;
  height: 100%;
  position: absolute;
}

@media screen and (max-width: 768px) {
  #quote-divider:before {
    background-size: auto 100vh;
  }
}

#quote-divider .large-8 {
  padding-top: 88px;
  padding-bottom: 88px;
}

#quote-divider .thick-hr {
  margin: 0px;
  margin-top: 22px;
  margin-bottom: 32px;
  background-color: #fff;
}

#quote-divider .btn-wrapper {
  margin-right: 11px;
}

#quote-divider .btn {
  border-color: #fff;
  color: #fff;
  letter-spacing: 3px;
  font-size: 12px;
}

#quote-divider .btn i {
  margin-right: 5px;
}

#clients {
  background: url("http://placehold.it/1200x800");
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

#clients:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
}

#clients .large-12 {
  margin-top: 88px;
  margin-bottom: 44px;
}

#clients .large-12 .hr {
  background-color: #fff;
  margin-top: 22px;
}

.client {
  margin-bottom: 88px;
}

.client img {
  width: 80%;
}

.client .pad {
  position: relative;
  bottom: 20px;
}

.visible-xs {
  display: none !important;
}

.visible-lg {
  display: flex !important;
}

@media screen and (max-width: 768px) {
  .visible-xs {
    display: block !important;
  }
  .visible-lg {
    display: none !important;
  }
}

/***************** NAVIGATION ***************/

#mobile-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#mobile-overlay.show {
  display: block;
}

#mobile-menu {
  z-index: 999;
}

.py-34 {
  padding: 34px 0 !important;
}

.mobile-nav {
  display: none;
  max-width: 375px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 999;
  width: 85%;
  pointer-events: none;
  max-width: 375px;
  background-color: #fff;
  text-align: start !important;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.open-menu {
  transform: translateX(0);
  pointer-events: auto;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.mobile-nav * {
  color: inherit !important;
  text-decoration: none;
}

.mobile-nav .navigation {
  border-top: solid #333 1px;
  width: 100%;
  height: 60vh;
}

.mobile-nav .navigation li {
  padding: 5px 20px;
  font-size: 14px;
  display: block;
}

.mobile-nav .navigation li a {
  color: inherit;
}

.nav-bottom {
  border-top: solid #333 1px;
  padding-top: 25px;
}

.nav-bottom .subtext {
  padding: 30px 0px 0px;
}

.menu-close-btn {
  position: absolute;
  top: 32px;
  right: 3vw;
  cursor: pointer;
}

#nav {
  max-height: 90px;
  min-height: 90px;
  overflow: hidden;
  background-color: #fff;
  position: fixed;
  top: 0px;
  z-index: 200;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.open-nav {
  max-height: 300px !important;
}

.navigation {
  overflow: hidden;
  list-style: none;
  padding-top: 37px;
  display: inline-block;
  margin-bottom: 0px;
}

.navigation li {
  float: left;
  margin-right: 44px;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.navigation li:last-child {
  margin-right: 0px;
}

.navigation li a {
  color: #222;
}

#logo {
  padding-top: 32px;
}

@media (max-width: 768px) {
  #contact {
    margin-bottom: 61px;
  }
  .fixed-menu-bottom {
    width: 100%;
    position: fixed;
    display: block;
    height: 61px;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 140;
  }
  .menu-phone-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }
  .fixed-menu-iteam {
    width: 23%;
    text-align: center;
  }
  .fixed-menu-iteam svg {
    height: 30px;
  }
  .fixed-menu-iteam a {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
    align-items: center;
  }
  .fixed-menu-iteam a:hover {
    fill: white !important;
    color: white !important;
    background-color: #ccc;
  }
  .fixed-menu-iteam p {
    color: #000;
    margin: 0;
    margin-top: -3px;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
  }
}

/***************** HOME ***************/

#home {
  overflow: hidden;
}

#home-slider {
  position: relative;
  overflow: hidden;
  margin-top: 90px;
}

#home-slider .slides li {
  padding-top: 150px;
  padding-bottom: 150px;
  background-size: cover !important;
  background-position: center;
}

#home-slider .flex-direction-nav .flex-prev {
  left: -44px;
  opacity: 0.7;
  top: 48%;
}

#home-slider .flex-direction-nav .flex-next {
  right: -44px;
  opacity: 0.7;
  top: 48%;
}

#home-slider:hover .flex-direction-nav .flex-prev {
  left: 44px;
}

#home-slider:hover .flex-direction-nav .flex-next {
  right: 44px;
}

.slider-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.tile-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px;
  width: 350px;
  height: 350px;
  margin: 0px auto;
}

.slider-tile {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0px auto;
  text-align: center;
  padding-top: 60px;
  height: 330px;
}

.slider-tile i {
  font-size: 2.5em;
}

.slider-tile h5 {
  margin-top: 11px;
  margin-bottom: 22px;
}

.slider-tile .hr {
  margin-bottom: 44px;
}

.slider-tile .biline {
  width: 61%;
  font-weight: 300;
  margin: 0px auto;
  font-family: "Petrona";
}

/***************** ABOUT ***************/

#about-text {
  font-weight: 300;
  font-size: 3vh;
  letter-spacing: 0.1em;
  margin-bottom: 66px;
}

.team-member {
  opacity: 0.7;
  text-align: center;
  padding: 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

.team-member:hover {
  opacity: 1;
}

.team-member span {
  font-size: 14px;
}

.team-member .hr {
  margin-top: 11px;
  margin-bottom: 11px;
}

.team-social {
  list-style: none;
  overflow: hidden;
  margin: 0px auto;
  margin-bottom: 0px;
  display: inline-block;
}

.team-social li {
  float: left;
  margin-right: 5px;
}

.team-social a {
  color: #222;
}

.team-social i {
  font-size: 36px;
}

.team-social li:last-child {
  margin-right: 0px;
}

.team-img-wrapper {
  margin: 0px auto;
  margin-bottom: 11px;
}

.team-img-holder img {
  width: 80%;
}

.team-member h6 {
  letter-spacing: 7px;
  margin-right: -7px;
  margin-bottom: 5px;
}

/* TESTIMONIALS */

.slides li {
  padding-bottom: 20px;
}

.testimonial blockquote {
  border: none;
}

/* Flexslider Overrides */

.testimonial {
  cursor: grab !important;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.testimonial:active {
  cursor: grabbing;
}

.testimonial .slider .flex-control-nav {
  display: flex !important;
}

.flex-control-nav li {
  margin: 0px;
}

.flex-control-paging li a {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  width: 8px;
  height: 8px;
  opacity: 0.25;
  cursor: pointer;
  background: #666666;
  border: none;
  margin: 0 0.46428571em;
}

.flex-control-paging li a:hover {
  background: #aaa;
  opacity: 1;
}

.flex-control-paging li a.flex-active {
  background: #222;
  opacity: 1;
}

.flex-direction-nav {
  display: none !important;
}

.flex-control-nav {
  position: relative !important;
}

/***************** ORDER ***************/

.order-text h3 {
  color: #fff;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 0 0 18px;
}

.order-text p {
  color: #fff;
  letter-spacing: 0.02em;
}

.mobile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  max-width: calc(400px - 6vw);
  height: auto;
}

.order-wrapper {
  padding-left: 400px;
  padding-left: calc(500px - 6vw);
  width: 100%;
}

@media (max-width: 768px) {
  .order-wrapper {
    padding-left: 0px;
    text-align: center;
    padding-bottom: 300px;
    padding-bottom: calc(270px + 10vw);
  }
  .mobile-overlay {
    left: 50%;
    transform: translateX(-50%);
  }
}

/***************** SERVICES ***************/

.services-row {
  margin-bottom: 22px;
}

.services-row:last-child {
  margin-bottom: 0px;
}

.service {
  padding: 15px;
  border: 1px solid #222;
  border-right: 3px solid #555;
  border-bottom: 3px solid #555;
  max-height: 132px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.service:hover {
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  top: 2px;
  left: 2px;
}

.open-service {
  max-height: 380px !important;
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
}

.open-service .hr {
  opacity: 1 !important;
}

.open-service p {
  opacity: 1 !important;
}

.service i {
  font-size: 42px;
}

.service h5 {
  margin-top: 22px;
  letter-spacing: 7px;
  margin-right: -7px;
}

.service .hr {
  margin-top: 22px;
  margin-bottom: 22px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.service p {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 7px;
}

/***************** WORK ***************/
.work-row {
  margin-bottom: 30px;
}

.work-img-holder {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.work-img-holder img {
  width: 100%;
}

.work-overlay {
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 120px 15px 15px 15px;
  position: absolute;
  font-weight: 300;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.work-overlay h7 {
  letter-spacing: 1px;
  margin-right: -7px;
  color: #222;
}

.work-overlay .hr {
  margin: 0px;
  margin-top: 11px;
  margin-bottom: 11px;
}

.work-img-holder:hover .work-overlay {
  opacity: 1;
  width: 94%;
  height: 94%;
  top: 3%;
  left: 3%;
}

.project {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
}

.open-project {
  max-height: 1000px !important;
}

.close-project {
  margin-top: 88px;
  margin-bottom: 44px;
  cursor: pointer;
}

.close-project i {
  font-size: 62px;
}

.work-slider {
  position: relative;
}

.project-img-holder {
  width: 630px;
  height: 630px;
  overflow: hidden;
  margin: 0px auto;
}

.work-slider .flex-direction-nav a {
  top: 46%;
}

.work-slider .flex-direction-nav a:before {
  color: #222;
}

.project-details {
  margin-bottom: 44px;
}

.project-details .hr {
  margin-top: 22px;
  margin-bottom: 22px;
}

.project-details p {
  width: 50%;
  display: block;
  margin: 0px auto;
}

/***************** CONTACT ***************/

#contact {
  position: relative;
  z-index: 1;
}

#contact-holder {
  padding-top: 88px;
  padding-bottom: 88px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
}

.contact-fade {
  opacity: 0 !important;
  z-index: -1 !important;
}

#map-toggle {
  position: absolute;
  z-index: 3;
  top: 44px;
  right: 44px;
  letter-spacing: 3px;
  font-size: 12px;
}

#contact iframe {
  border: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0px;
}

#contact-details {
  overflow: hidden;
  list-style: none;
}

#contact-details li {
  float: left;
  margin-right: 11px;
  padding: 10px 10px 13px 10px;
  background-color: #222;
  color: #fff;
  margin-bottom: 11px;
}

#contact-details li a {
  color: #fff;
}

#contact-form #name {
  overflow: hidden;
  width: 48%;
  margin-right: 2%;
  float: left;
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
  border-top: 1px solid #222;
  border-left: 1px solid #222;
  padding: 5px;
  margin-bottom: 11px;
  background-color: rgba(255, 255, 255, 0.5);
}

#form-name {
  width: 80%;
  float: left;
  margin-bottom: 0px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}

#contact-form #email {
  overflow: hidden;
  width: 48%;
  float: right;
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
  border-top: 1px solid #222;
  border-left: 1px solid #222;
  padding: 5px;
  margin-bottom: 11px;
  background-color: rgba(255, 255, 255, 0.5);
}

#form-email {
  width: 80%;
  float: left;
  margin-bottom: 0px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}

.form-icon {
  border-right: 2px solid #222;
  float: left;
  margin-right: 11px;
  padding-right: 3px;
}

.form-icon i {
  font-size: 29px;
}

#email .form-icon i {
  position: relative;
  bottom: 2px;
}

#message {
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
  border-top: 1px solid #222;
  border-left: 1px solid #222;
  padding: 5px;
  margin-bottom: 11px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  float: none;
  clear: both;
}

#form-message {
  float: left;
  width: 88%;
  height: 100px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}

#contact-form .btn-wrapper {
  font-size: 12px;
  letter-spacing: 3px;
  float: right;
}

#details-error {
  padding: 10px;
  background-color: #ba2f2f;
  display: block;
  float: left;
  display: none;
}

#form-sent {
  padding: 10px;
  background-color: #2fba53;
  display: block;
  float: left;
  display: none;
}

/***************** FOOTER ***************/

footer {
  background: #0b1422;
  padding: 50px 60px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  margin: 20px;
}

.footer-title {
  position: relative;
  font-size: 14px;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 20%;
  height: 1px;
  background: #ffffff;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.6;
  color: #b0b8c2;
  margin-bottom: 10px;
}

.footer-section a {
  font-size: 13px;
  color: #b0b8c2;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffffff;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #ffffff;
}

/* SVG inside links */
.social-icons a svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  vertical-align: middle;
  transition: fill 0.3s ease;
}

.social-icons a:hover svg {
  cursor: pointer;
}

@media (max-width: 768px) {
  .social-icons a {
    margin: 0 10px;
  }
}

/* Newsletter */

.flex {
  display: flex;
}

.newsletter input[type="email"] {
  padding: 8px;
  width: 70%;
  border: none;
  outline: none;
  border-radius: 3px;
  margin-right: 5px;
}

.newsletter button {
  padding: 4px;
  max-width: 50px;
  border: none;
  background: #ffffff;
  color: #0b1422;
  cursor: pointer;
  border-radius: 3px;
}

.newsletter button:hover {
  background: #ccc;
  color: #fff;
}

.newsletter svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  vertical-align: middle;
  transition: fill 0.3s ease;
}

.newsletter label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
  padding: 18px 20px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #2c3545;
  gap: 10px;
  max-width: 100%;
}

.footer-bottom div {
  margin: 5px 0;
}

.footer-bottom a {
  margin: 0 6px;
  color: #b0b8c2;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Tablets */
@media (max-width: 992px) {
  footer {
    flex-direction: row;
    justify-content: flex-start;
  }
  .footer-section {
    flex: 1 1 45%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  footer {
    flex-direction: column;
    padding: 30px 20px;
  }
  .footer-section {
    flex: 1 1 100%;
    margin: 10px 0;
  }
  .newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .newsletter button {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
