@charset "UTF-8";
/******************************************************************************/
/* VARIABLES */
/* Use it with var(--varname) */
/* root is pseudo class */
/* Install sass: https://code.visualstudio.com/docs/languages/css */
/* And use: Live Sass Compiler */
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/* HEADER */
/******************************************************************************/
header {
  width: 100%;
  margin-top: 70px;
  text-align: center;
}

header img {
  width: 90%;
}

/******************************************************************************/
/******************************************************************************/
/* FOOTER */
/******************************************************************************/
footer {
  margin: 10px;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 10px;
  background-color: #F4F4F4;
  color: #393536;
}

footer p {
  line-height: 18px;
  font-size: 10px;
  padding: 10px;
  margin: 0px;
}

footer p img {
  width: 16px;
  margin-top: 4px;
  margin-left: 2px;
  margin-right: 2px;
}

footer p a {
  text-decoration: none;
  color: inherit;
  margin: 0px 5px;
}

/******************************************************************************/
/******************************************************************************/
nav {
  background-color: #ffffff;
  color: #393536;
}

.navbarLogoSmall {
  z-index: -1;
  /* needed to have menu clickable*/
  position: relative;
  top: 0%;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.navbarLogoSmall img {
  width: 58px;
}

.navbarOverlay {
  background-color: #ffffff;
  height: 0%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: hidden;
  z-index: 2;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.navbarOverlayContent {
  top: 0%;
  text-align: center;
  margin-top: 30px;
}

.navbarOverlay a {
  padding: 10px;
  text-decoration: none;
  font-size: 25px;
  color: inherit;
  display: block;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  cursor: pointer;
  font-family: 'Ubuntu', sans-serif;
}

.navbarOverlay a:hover,
.navbarOverlay a:focus {
  letter-spacing: 2px;
  font-stretch: ultra-condensed;
}

@media screen and (max-height: 450px) {
  /* Needs to behind actual CSS code to overwrite */
  .navbarOverlayContent {
    top: 0%;
  }
  .navbarOverlay {
    overflow-y: auto;
  }
  .navbarOverlay a {
    font-size: 12px;
  }
}

/* Services Sub Menu */
.servicesDropdown {
  background-color: inherit;
}

.servicesSubMenu {
  background-color: inherit;
  display: none;
}

.servicesSubMenu a {
  font-size: 16px;
  padding: 3px;
}

.servicesSubMenu a:before {
  content: "• ";
}

/* Menu Icon */
.menuIconContainer {
  z-index: 10;
  float: right;
  display: block;
  cursor: pointer;
  position: fixed !important;
  top: 20px;
  right: 20px;
  padding: 20px;
  height: 18px;
  background-color: #BF1B2C;
  border-radius: 50%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.menuIconContainer:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -webkit-transform: rotate(90deg) scale(1.1);
          transform: rotate(90deg) scale(1.1);
}

.bar1, .bar2, .bar3 {
  width: 18px;
  height: 2px;
  background-color: #F4F4F4;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.bar1 {
  margin-bottom: 6px;
}

.bar3 {
  margin-top: 6px;
}

.change .bar1 {
  -webkit-transform: translate(0, 8px) rotate(45deg);
          transform: translate(0, 8px) rotate(45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  /* -webkit-transform: TODO; */
  -webkit-transform: translate(0, -8px) rotate(-45deg);
          transform: translate(0, -8px) rotate(-45deg);
}

/******************************************************************************/
/******************************************************************************/
/* BODY AND HTML */
/******************************************************************************/
body {
  margin: auto;
  background-color: #ffffff;
  overflow-wrap: break-word;
}

html {
  /* Prevent font scaling in landscape while allowing user zoom */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/******************************************************************************/
/******************************************************************************/
/* MAIN CONTENT */
/******************************************************************************/
main {
  font-family: "Ubuntu", sans-serif;
  /* font-family: 'Open Sans', sans-serif; */
  color: #393536;
  text-align: justify;
  margin: 10px;
}

@-webkit-keyframes animateUnderline {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes animateUnderline {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

main section {
  padding: 50px 0px;
}

main h1 {
  margin: 20px 0px;
  color: #393536;
  position: relative;
  text-align: center;
  font-family: 'Merriweather', serif;
  font-size: 26px;
  font-weight: bolder;
  letter-spacing: 5px;
  text-transform: uppercase;
  z-index: 1;
}

main h1:before {
  color: #393536;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #000;
  -webkit-animation: 2s animateUnderline;
          animation: 2s animateUnderline;
}

main h1:after {
  color: #393536;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: -2px;
  left: 0;
  background-color: #000;
  -webkit-animation: 2s animateUnderline;
          animation: 2s animateUnderline;
}

main section h2 {
  color: #393536;
  position: relative;
  text-align: center;
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: bolder;
  letter-spacing: 5px;
  text-transform: uppercase;
  z-index: 1;
}

main section h2:before {
  color: #393536;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: #000;
  -webkit-animation: 2s animateUnderline;
          animation: 2s animateUnderline;
}

main section h3 {
  color: #4F4C4D;
  font-weight: normal;
  text-align: center;
  font-family: 'Merriweather', serif;
  font-size: 18px;
}

main section h3::before {
  content: "» ";
}

main section h3::after {
  content: " «";
}

main section p {
  color: #393536;
  font-size: 16px;
  line-height: 24px;
  /* This should be lineHeight-fontSize: */
  margin: 10px 0px;
  /* margin-top: -6px; */
}

p.centered {
  text-align: center;
}

/******************************************************************************/
/******************************************************************************/
/* Repsonsive Image Gallery */
/******************************************************************************/
.imageGallery {
  font-size: 0px;
}

.imageGallery {
  margin: 20px -5px;
  /* Should be box shadow size */
  text-align: center;
}

.imageGallery figure {
  width: calc(100vw - (100vw - 100%));
  display: inline-block;
  margin: 0px 0px;
}

.imageGallery figure img {
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.imageGallery figure a {
  width: 100%;
  position: relative;
  display: inline-block;
}

.imageGallery figure a:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: inset 0px 0px 0px 5px #ffffff;
          box-shadow: inset 0px 0px 0px 5px #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.imageGallery figure a:hover:before {
  -webkit-box-shadow: inset 0px 0px 0px 0px #ffffff;
          box-shadow: inset 0px 0px 0px 0px #ffffff;
}

@media screen and (min-width: 600px) {
  .imageGallery figure {
    width: calc(50vw - (50vw - 50%));
  }
}

@media screen and (min-width: 768px) {
  .imageGallery figure {
    width: calc(25vw - (25vw - 25%));
  }
}

/******************************************************************************/
/******************************************************************************/
/* GLOBAL CLASSES */
/* needs to be a t bottom to overwrite */
/******************************************************************************/
.show {
  display: block;
}

.showNav {
  height: 75%;
}

/******************************************************************************/
/******************************************************************************/
/* Desktop */
/******************************************************************************/
@media screen and (min-width: 768px) {
  header {
    margin: 20px 0px;
  }
  header img {
    width: 748px;
  }
  footer {
    width: 748px;
  }
  footer p {
    line-height: 12px;
  }
  footer p img {
    width: 12px;
  }
  footer p a {
    margin: 0px 2px;
  }
  body {
    width: 768px;
  }
  .menuIconContainer {
    display: none;
  }
  nav {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    background-color: #F4F4F4;
    color: #393536;
    height: 41px;
  }
  .navbarOverlay {
    background-color: unset;
    position: relative;
    overflow-y: visible;
    height: 100%;
  }
  .navbarOverlay a {
    z-index: 1;
    font-size: 18px;
    float: left;
    width: 149px;
    padding: 10px 0px;
    text-transform: uppercase;
    letter-spacing: 0px;
  }
  .navbarOverlayContent > a:focus,
  .navbarOverlayContent > a:hover {
    color: #F4F4F4;
    background-color: #BF1B2C;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .navbarOverlayContent {
    margin: auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navbarOverlay .navbarLogoSmall {
    display: none;
  }
  /* Needs to be below to have styles apply */
  .servicesDropdown {
    float: left;
  }
  .servicesDropdown a:focus,
  .servicesDropdown a:hover {
    color: #F4F4F4;
    background-color: #BF1B2C;
  }
  .servicesDropdown:hover > .servicesSubMenu {
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    visibility: visible;
    opacity: 1;
  }
  .servicesSubMenu {
    visibility: hidden;
    opacity: 0;
    display: block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-top: 41px;
    position: absolute;
    z-index: -1;
    background-color: #ffffff;
  }
  .servicesSubMenu a {
    float: none;
    width: 149px;
    font-size: 13px;
  }
  .servicesSubMenu a::before {
    content: "";
  }
  .servicesSubMenu a:hover,
  .servicesSubMenu a:focus {
    letter-spacing: 0px;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .show {
    /* when having resized from mobile to desktop */
    display: none;
  }
  main h1 {
    font-size: 36px;
  }
  main section h2 {
    font-size: 30px;
  }
  main section h3 {
    font-size: 22px;
  }
}

/******************************************************************************/
