.hamburger {
  font-size: 150%;
  display: inline-block;
  width: 1em;
  height: .75em;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer; }

.hamburger span {
  display: block;
  position: absolute;
  height: .15em;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

.hamburger span:nth-child(1) {
  top: 0px; }

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: .3em; }

.hamburger span:nth-child(4) {
  top: .6em; }

.hamburger.open span:nth-child(1) {
  top: .3em;
  width: 0%;
  left: 50%; }

.hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.hamburger.open span:nth-child(4) {
  top: .3em;
  width: 0%;
  left: 50%; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  height: 100%;
  background-color: #313131;
  background-image: url("../img/background.jpg");
  background-position: top;
  background-size: cover;
  color: #ffffff;
  font-family: 'PT Serif',serif; }

a {
  color: #c23838;
  text-decoration: none; }

h1 {
  font-weight: lighter; }

#main-header {
  background-color: rgba(0, 0, 0, 0.3);
  background-position: left center;
  background-size: cover;
  text-align: center;
  padding-top: 3.5em;
  padding-bottom: 1em;
  color: black; }
  #main-header #logo {
    width: 40%; }
  #main-header #social-links {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 150%;
    padding: .6em; }
    #main-header #social-links a {
      color: white;
      margin-left: .3em; }
  @media screen and (max-width: 1000px) {
    #main-header #logo {
      width: 60%; } }
  @media screen and (max-width: 700px) {
    #main-header #logo {
      width: 90%;
      margin-top: 3em; }
    #main-header #social-links {
      padding: 0;
      font-size: 40px;
      text-align: left;
      left: 20px;
      top: 20px;
      right: unset; } }

.main-nav {
  font-family: 'PT Serif', serif;
  font-size: 120%;
  margin-top: 1em;
  text-align: right; }
  .main-nav .expand-button {
    display: none; }
  .main-nav ul li {
    display: inline-block; }
    .main-nav ul li a {
      position: relative;
      padding: .3em .3em;
      margin-right: 1em;
      color: white;
      outline: none; }
      .main-nav ul li a::after {
        position: absolute;
        left: 10%;
        right: 10%;
        bottom: 0;
        width: 80%;
        height: 2px;
        content: '';
        background: #c23838;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out; }
      .main-nav ul li a:hover::after, .main-nav ul li a.active::after {
        left: 0;
        right: 0;
        width: 100%;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -ms-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in; }
  @media screen and (max-width: 1600px) {
    .main-nav {
      font-size: 90%; }
      .main-nav a::after {
        height: 1px; } }
  @media screen and (max-width: 700px) {
    .main-nav .expand-button {
      display: block;
      position: absolute;
      top: 30px;
      right: 30px;
      z-index: 1; }
      .main-nav .expand-button .hamburger {
        font-size: 40px; }
    .main-nav ul {
      position: absolute;
      top: 3.5em;
      right: 30px;
      overflow: hidden;
      display: block;
      transition: max-height 0.5s ease-out;
      max-height: 0;
      font-size: 170%;
      z-index: 1; }
      .main-nav ul li {
        display: block;
        margin-top: 1em; }
        .main-nav ul li a {
          margin-right: 0; }
        .main-nav ul li:last-child {
          margin-bottom: .5em; }
    .main-nav.show ul {
      max-height: 2000px;
      transition: max-height 0.5s ease-in; } }

footer {
  font-size: 90%;
  padding: 3em;
  background-color: #3a3a3a;
  color: #ddd; }
  footer a {
    text-decoration: underline; }

#landing-header {
  overflow: hidden;
  height: 100%; }

#top-bar {
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  color: black; }
  #top-bar #logo {
    width: 40%; }
  @media screen and (max-width: 1000px) {
    #top-bar #logo {
      width: 60%; } }
  @media screen and (max-width: 700px) {
    #top-bar #logo {
      width: 90%; } }

#landing-nav {
  position: relative;
  float: right;
  margin-top: 1em;
  font-family: 'PT Serif', serif;
  font-size: 180%; }
  #landing-nav ul {
    list-style-type: none; }
    #landing-nav ul li {
      padding: .3em .3em;
      margin-top: .4em;
      margin-right: 1em;
      text-align: right; }
      #landing-nav ul li a {
        position: relative;
        color: white;
        outline: none;
        padding-bottom: .15em; }
        #landing-nav ul li a::after {
          position: absolute;
          left: 50%;
          right: 0;
          bottom: 0;
          width: 50%;
          height: 2px;
          content: '';
          background: #c23838;
          -webkit-transition: all 0.2s ease-out;
          -moz-transition: all 0.2s ease-out;
          -ms-transition: all 0.2s ease-out;
          -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out; }
        #landing-nav ul li a:hover::after, #landing-nav ul li a.active::after {
          left: 0;
          right: 0;
          width: 100%;
          -webkit-transition: all 0.2s ease-in;
          -moz-transition: all 0.2s ease-in;
          -ms-transition: all 0.2s ease-in;
          -o-transition: all 0.2s ease-in;
          transition: all 0.2s ease-in; }
  #landing-nav .top-menu {
    top: 0; }

#landing-footer {
  background-color: transparent;
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1em; }

#hero {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 2fr;
  grid-gap: 2em;
  padding: 2em; }
  #hero div {
    position: relative;
    overflow: hidden; }
    #hero div img {
      width: 100%;
      transform: scale(1);
      -webkit-transition: transform 0.2s ease-out;
      -moz-transition: transform 0.2s ease-out;
      -ms-transition: transform 0.2s ease-out;
      -o-transition: transform 0.2s ease-out;
      transition: transform 0.2s ease-out; }
    #hero div p {
      background: rgba(0, 0, 0, 0.7);
      background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.7)));
      background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=transparent, endColorstr=rgba(0, 0, 0, 0.7));
      position: absolute;
      bottom: 0;
      text-align: center;
      padding: 1em;
      width: 100%;
      font-size: 150%; }
    #hero div:hover img {
      transform: scale(1.02);
      -webkit-transition: transform 0.3s ease-in;
      -moz-transition: transform 0.3s ease-in;
      -ms-transition: transform 0.3s ease-in;
      -o-transition: transform 0.3s ease-in;
      transition: transform 0.3s ease-in; }
  @media screen and (max-width: 1600px) {
    #hero {
      grid-gap: 1em;
      padding: 1em; } }
  @media screen and (max-width: 1000px) {
    #hero {
      grid-gap: .5em;
      grid-template-columns: 1fr 2fr 1fr;
      padding: .5em; }
      #hero div:nth-child(4) {
        display: none; } }
  @media screen and (max-width: 700px) {
    #hero {
      grid-gap: 0;
      grid-template-columns: 1fr;
      padding: 0; }
      #hero div {
        display: none; }
        #hero div:nth-child(2) {
          display: block; } }
  @media all and (-ms-high-contrast: none) {
    #hero {
      display: block;
      padding: 1%; }
      #hero div {
        display: inline-block;
        width: 16.16%;
        margin-right: 1%; }
        #hero div:nth-child(2), #hero div:nth-child(4) {
          width: 32.3%; }
        #hero div:nth-child(4) {
          margin-right: 0; } }

body {
  overflow-y: scroll; }

#main {
  background-color: #232323; }
  #main h1 {
    padding-top: 1em;
    padding-bottom: 0em;
    text-align: center;
    font-size: 300%;
    font-weight: lighter;
    color: #999; }
  #main #offerings-header {
    padding-top: 1em;
    padding-left: 2em;
    font-weight: normal; }

@media screen and (max-width: 1600px) {
  #main h1 {
    font-size: 200%; } }
@media screen and (max-width: 700px) {
  #main #offerings-header {
    padding-left: 6%; } }
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  grid-gap: 4em;
  padding: 6em;
  padding-top: 4em; }
  .cards .card {
    overflow: hidden; }
    .cards .card h2 {
      text-align: center;
      font-size: 140%;
      color: #c23838;
      padding-bottom: 1em;
      font-weight: normal;
      text-transform: uppercase;
      padding-top: .5em;
      line-height: .3; }
      .cards .card h2 span {
        display: inline-block;
        position: relative; }
        .cards .card h2 span:before, .cards .card h2 span:after {
          content: '';
          position: absolute;
          height: 5px;
          border-bottom: 1px solid #c23838;
          border-top: 1px solid #c23838;
          top: 0;
          width: 100%; }
        .cards .card h2 span:before {
          right: 100%;
          margin-right: 15px; }
        .cards .card h2 span:after {
          left: 100%;
          margin-left: 15px; }
    .cards .card hr {
      border: 0;
      color: #c23838;
      background-color: #c23838;
      height: 1px;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 1em; }
    .cards .card p {
      text-align: justify;
      font-size: 110%;
      padding-bottom: 1em;
      line-height: 1.5; }

@media screen and (max-width: 1600px) {
  .cards {
    grid-gap: 3em;
    padding: 4em;
    padding-top: 2em; }
    .cards .card h2 {
      font-size: 85%; }
      .cards .card h2 span:before, .cards .card h2 span:after {
        height: 4px;
        border-bottom: 0.5px solid #c23838;
        border-top: 0.5px solid #c23838;
        top: 0;
        width: 100%; }
    .cards .card p {
      font-size: 80%; } }
@media screen and (max-width: 1000px) {
  .cards {
    grid-template-columns: 1fr 1fr !important; } }
@media screen and (max-width: 700px) {
  .cards {
    padding: 6%;
    grid-template-columns: 1fr !important; }
    .cards .card h2 {
      font-size: 120%; }
    .cards .card p {
      font-size: 100%; } }
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cards {
    display: block; }
    .cards .card {
      display: inline-block;
      width: 22.75%;
      margin-right: 3%;
      vertical-align: top; }
      .cards .card:last-child {
        margin-right: 0; } }
#about-container {
  display: table;
  position: relative;
  /* Track */
  /* Handle */
  /* Handle on hover */ }
  #about-container ::-webkit-scrollbar {
    width: 10px; }
  #about-container ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1); }
  #about-container ::-webkit-scrollbar-thumb {
    background: rgba(194, 56, 56, 0.5);
    border-radius: 5px; }
  #about-container ::-webkit-scrollbar-thumb:hover {
    background: #c23838; }
  #about-container #about {
    background-color: #232323;
    padding: 4em;
    overflow-y: scroll;
    display: table-cell;
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0; }
    #about-container #about img {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 40%;
      padding-bottom: 2em; }
    #about-container #about h1 {
      font-size: 300%;
      padding: 0;
      padding-bottom: .5em;
      font-weight: lighter; }
    #about-container #about h2 {
      padding-bottom: 1em;
      color: #c23838; }
    #about-container #about p {
      font-size: 110%;
      margin-bottom: 1em;
      line-height: 1.75; }
  #about-container #about-sidebar {
    line-height: 0;
    padding: 1em;
    display: table-cell;
    width: 50%; }
    #about-container #about-sidebar img {
      width: 100%; }

@media screen and (max-width: 1600px) {
  #about-container #about {
    padding: 2em; }
    #about-container #about h1 {
      font-size: 200%; }
    #about-container #about h2 {
      font-size: 110%; }
    #about-container #about p {
      font-size: 80%; } }
@media screen and (max-width: 1000px) {
  #about-container #about {
    display: block;
    width: 100%;
    padding: 4em;
    overflow: auto;
    position: unset;
    top: unset;
    bottom: unset; }
    #about-container #about h2 {
      font-size: 130%; }
    #about-container #about p {
      font-size: 100%; }
  #about-container #about-sidebar {
    display: block;
    width: 100%;
    padding: .5em;
    grid-gap: .5em; } }
@media screen and (max-width: 700px) {
  #about-container #about {
    padding: 2em; } }
#portfolio-menu h1 {
  font-size: 250%;
  font-weight: lighter;
  padding: 0;
  padding: 1.5em; }
#portfolio-menu h2 {
  padding: 1.5em;
  text-align: right;
  font-weight: normal; }
#portfolio-menu .container {
  background-color: #232323;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 1em; }
  #portfolio-menu .container h2 {
    grid-column: 1/5; }
  #portfolio-menu .container .gallery-link {
    width: 100%;
    padding-bottom: 61.8%;
    background-color: silver;
    background-size: cover;
    position: relative;
    border: 3px solid white;
    -webkit-transition: border, 0.2s ease-out;
    -moz-transition: border, 0.2s ease-out;
    -ms-transition: border, 0.2s ease-out;
    -o-transition: border, 0.2s ease-out;
    transition: border, 0.2s ease-out; }
    #portfolio-menu .container .gallery-link .shadow {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      top: 75%;
      background: rgba(0, 0, 0, 0.7);
      background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.7)));
      background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=transparent, endColorstr=rgba(0, 0, 0, 0.7)); }
    #portfolio-menu .container .gallery-link span {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding-right: 1em;
      padding-bottom: .5em;
      color: white;
      font-size: 150%;
      text-align: right; }
    #portfolio-menu .container .gallery-link:hover:not(.disabled), #portfolio-menu .container .gallery-link.active {
      border: 3px solid #c23838;
      -webkit-transition: border, 0.2s ease-in;
      -moz-transition: border, 0.2s ease-in;
      -ms-transition: border, 0.2s ease-in;
      -o-transition: border, 0.2s ease-in;
      transition: border, 0.2s ease-in; }
      #portfolio-menu .container .gallery-link:hover:not(.disabled) span, #portfolio-menu .container .gallery-link.active span {
        animation-name: bounce;
        animation-duration: .5s;
        animation-timing-function: ease-out;
        animation-delay: .2s; }
    #portfolio-menu .container .gallery-link.disabled {
      opacity: .5;
      cursor: default; }
@keyframes bounce {
  0% {
    bottom: 0; }
  25% {
    bottom: .15em; }
  75% {
    bottom: 0; }
  100% {
    bottom: 0; } }
@media screen and (max-width: 1600px) {
  #portfolio-menu h1 {
    font-size: 190%; }
  #portfolio-menu h2 {
    font-size: 120%; }
  #portfolio-menu .container .card span {
    font-size: 120%; } }
@media screen and (max-width: 1000px) {
  #portfolio-menu .container {
    grid-template-columns: 1fr 1fr; }
    #portfolio-menu .container h2 {
      grid-column: 1/3; } }
@media screen and (max-width: 700px) {
  #portfolio-menu .container {
    grid-template-columns: 1fr; }
    #portfolio-menu .container h2 {
      grid-column: 1; } }
@media all and (-ms-high-contrast: none) {
  #portfolio-menu .container {
    display: block; }
    #portfolio-menu .container .card {
      display: inline-block;
      width: 25%;
      padding-bottom: 15.45%; } }
h1 {
  padding: 1em; }

#thumb-container {
  background-color: #232323;
  position: relative;
  margin: 1%; }
  #thumb-container .grid-sizer, #thumb-container .gutter-sizer {
    display: block; }
  #thumb-container .grid-sizer {
    width: 32.66%; }
  #thumb-container .gutter-sizer {
    width: 1%; }
  #thumb-container #loading-message {
    position: absolute;
    text-align: center;
    padding: 1em;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    right: 0; }
  #thumb-container #thumb-container-inner {
    margin: 1%;
    position: relative; }
    #thumb-container #thumb-container-inner .item {
      width: 32.66%;
      transition: top 2s ease-in;
      background-color: none;
      margin-top: 1em;
      opacity: 1;
      transition: opacity .5s ease-in; }
      #thumb-container #thumb-container-inner .item img {
        width: 100%;
        opacity: 1; }
  #thumb-container.before-load .grid-sizer {
    display: none; }
  #thumb-container.before-load .gutter-sizer {
    display: none; }
  #thumb-container.before-load #loading-message {
    grid-column: 1/4; }
  #thumb-container.before-load #thumb-container-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1%; }
    #thumb-container.before-load #thumb-container-inner .item {
      width: 100%;
      background-color: #3d3d3d; }
      #thumb-container.before-load #thumb-container-inner .item img {
        height: 400px;
        opacity: 0; }
  #thumb-container.hide-items #thumb-container-inner .item {
    opacity: 0;
    transition: opacity .5s ease-out; }
    #thumb-container.hide-items #thumb-container-inner .item img {
      opacity: 0; }

@media screen and (max-width: 700px) {
  #thumb-container {
    margin: 0; }
    #thumb-container .grid-sizer {
      width: 100%; }
    #thumb-container #thumb-container-inner .item {
      width: 100%; }
    #thumb-container.before-load #thumb-container-inner {
      display: block; } }
#location-container {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  #location-container #location-map {
    margin: 4em;
    background-color: #444444; }
    #location-container #location-map .location-image {
      width: 50%;
      display: none; }
    #location-container #location-map #map {
      height: 100%; }
  #location-container #address-container #navigate-link {
    display: none; }
  #location-container #address-container .location-image {
    width: 49%;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-right: 2%; }
    #location-container #address-container .location-image:nth-child(2) {
      margin-right: 0; }
  #location-container #address-container #address {
    background-color: #232323;
    padding: 4em;
    padding-top: 2em; }
    #location-container #address-container #address h2 {
      font-size: 200%;
      margin-top: 1em;
      margin-bottom: .5em;
      font-weight: lighter; }
    #location-container #address-container #address p {
      font-family: 'PT Serif', serif; }

@media screen and (max-width: 1600px) {
  #location-container #address {
    padding: 3em; }
    #location-container #address h2 {
      font-size: 150%; }
    #location-container #address p {
      font-size: 90%; } }
@media screen and (max-width: 1000px) {
  #location-container {
    grid-template-columns: 1fr; }
    #location-container #location-map {
      height: 300px;
      margin: 0; }
      #location-container #location-map .location-image {
        display: inline; }
      #location-container #location-map #map {
        width: 100%; }
    #location-container #address-container .location-image {
      display: none; } }
@media screen and (max-width: 700px) {
  #location-container #address-container #navigate-link {
    margin-top: 1em;
    margin-bottom: 1em;
    display: block;
    background-color: #c23838;
    color: white;
    width: 80%;
    padding: 1em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 120%; }
  #location-container #address-container #address {
    padding: 1em; } }
@media all and (-ms-high-contrast: none) {
  #location-container {
    vertical-align: top; }
    #location-container #location-map {
      display: inline-block;
      width: 49%;
      height: 800px;
      margin: 0;
      padding: 4em; }
    #location-container #address-container {
      display: inline-block;
      width: 50%; } }
.no-close .ui-dialog-titlebar-close {
  display: none; }

.ui-widget-overlay {
  opacity: .7 !important; }

#contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  #contact-container #sidebar {
    background-color: #232323;
    font-size: 120%;
    text-align: center;
    display: table;
    height: 100%; }
    #contact-container #sidebar .outer {
      display: table-cell;
      vertical-align: middle; }
      #contact-container #sidebar .outer .inner {
        display: inline-block;
        text-align: left; }
        #contact-container #sidebar .outer .inner h1 {
          padding: 0;
          margin-bottom: .3em;
          font-weight: lighter; }
        #contact-container #sidebar .outer .inner ul {
          margin-left: auto;
          margin-right: auto;
          list-style-type: none;
          line-height: 1.75;
          text-align: left; }
          #contact-container #sidebar .outer .inner ul li i {
            margin-right: 1em; }
        #contact-container #sidebar .outer .inner a {
          text-decoration: underline; }
  #contact-container #form-container #form {
    margin: 4em;
    padding: 3em 4em;
    background-color: rgba(34, 34, 34, 0.5); }
    #contact-container #form-container #form input[type=text], #contact-container #form-container #form textarea {
      background-color: transparent;
      color: white;
      display: inline-block;
      width: 100%;
      padding: .5em;
      border: 0;
      border-bottom: 2px solid #c23838;
      margin-bottom: 1.5em;
      outline: none;
      font-size: 110%;
      font-family: 'PT Serif', serif !important; }
      #contact-container #form-container #form input[type=text].short, #contact-container #form-container #form textarea.short {
        display: inline-block;
        width: 50%; }
      #contact-container #form-container #form input[type=text]::placeholder, #contact-container #form-container #form textarea::placeholder {
        font-size: 100%;
        color: white; }
    #contact-container #form-container #form textarea {
      resize: vertical;
      min-height: 2.5em;
      max-height: 10em; }
    #contact-container #form-container #form input[type=submit] {
      display: block;
      padding: .75em 1em;
      margin-left: auto;
      margin-right: 0;
      background-color: transparent;
      border: 3px solid #c23838;
      color: white;
      font-size: 120%;
      font-family: 'PT Serif',serif;
      font-weight: bold;
      cursor: pointer; }

@media screen and (max-width: 1600px) {
  #contact-container #sidebar {
    font-size: 100%; }
  #contact-container #form-container #form {
    padding: 2em 3em;
    margin: 3em; }
    #contact-container #form-container #form input[type=text], #contact-container #form-container #form textarea {
      font-size: 100%;
      border-bottom: 1px solid #c23838; }
      #contact-container #form-container #form input[type=text].short, #contact-container #form-container #form textarea.short {
        width: 100%; }
    #contact-container #form-container #form input[type=submit] {
      border: 2px solid #c23838;
      font-size: 100%; } }
@media screen and (max-width: 1000px) {
  #contact-container {
    display: block; }
    #contact-container #sidebar {
      width: 100%;
      padding: 2em;
      font-size: 100%; }
    #contact-container #form-container {
      width: 100%;
      background-image: url("../img/background.jpg");
      background-size: cover;
      padding: 3em; }
      #contact-container #form-container #form {
        margin: 0;
        background-color: rgba(34, 34, 34, 0.5); }
        #contact-container #form-container #form input {
          border-radius: 0; }
        #contact-container #form-container #form input[type=text].short, #contact-container #form-container #form textarea.short {
          width: 50%; } }
@media screen and (max-width: 700px) {
  #contact-container {
    grid-template-columns: 1fr; }
    #contact-container #form-container {
      padding: 1em; }
      #contact-container #form-container #form {
        padding: 2em 2em;
        margin: 1em; }
        #contact-container #form-container #form input[type=text], #contact-container #form-container #form textarea {
          font-size: 100%; }
          #contact-container #form-container #form input[type=text].short, #contact-container #form-container #form textarea.short {
            width: 100%; } }
@media all and (-ms-high-contrast: none) {
  #contact-container {
    display: block; }
    #contact-container #sidebar {
      background-color: transparent;
      display: inline-block;
      width: 50%; }
      #contact-container #sidebar .outer {
        display: block;
        width: 50%;
        background-color: #232323;
        margin-left: auto;
        margin-right: auto;
        padding-top: 1em;
        padding-bottom: 1em; }
    #contact-container #form-container {
      display: inline-block;
      width: 50%; } }
.testimonials-container {
  display: grid;
  grid-template-columns: 3fr 2fr; }
  .testimonials-container .featured-testimonials {
    background-color: #232323;
    font-size: 120%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4em; }
    .testimonials-container .featured-testimonials h1 {
      font-size: 200%;
      padding: 0;
      margin-bottom: .5em; }
    .testimonials-container .featured-testimonials > p {
      font-size: 80%;
      width: 65%;
      line-height: 1.5;
      margin-bottom: 2em; }
    .testimonials-container .featured-testimonials .testimonial {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      margin-top: 3em; }
      .testimonials-container .featured-testimonials .testimonial .thumbnail {
        margin-right: 3em;
        display: flex;
        align-items: center; }
        .testimonials-container .featured-testimonials .testimonial .thumbnail img {
          width: 100%;
          border-radius: 20%; }
      .testimonials-container .featured-testimonials .testimonial .quote-container {
        display: flex;
        align-items: center; }
        .testimonials-container .featured-testimonials .testimonial .quote-container .quote {
          font-size: 90%;
          font-style: italic;
          line-height: 1.5;
          font-weight: lighter;
          width: 100%;
          position: relative;
          margin-top: 0;
          quotes: "\201C" "\201D" "\2018" "\2019"; }
          .testimonials-container .featured-testimonials .testimonial .quote-container .quote::before {
            content: open-quote;
            font-size: 1200%;
            position: absolute;
            top: -.1em;
            left: -.15em;
            line-height: .8;
            font-family: 'Times New Roman';
            font-weight: bold;
            opacity: .07;
            user-select: none; }
      .testimonials-container .featured-testimonials .testimonial .attrib {
        width: 100%;
        line-height: 1.1;
        text-align: left;
        padding-left: 2em;
        display: flex;
        align-items: center; }
        .testimonials-container .featured-testimonials .testimonial .attrib .name {
          font-size: 140%;
          font-weight: normal;
          display: block;
          color: #c23838; }
      .testimonials-container .featured-testimonials .testimonial:first-child {
        margin-top: 0; }
  .testimonials-container .secondary-testimonials {
    background-color: rgba(35, 35, 35, 0.65);
    padding: 4em;
    margin: 4em; }
    .testimonials-container .secondary-testimonials .testimonial {
      margin-top: 3em;
      font-size: 100%;
      line-height: 1.5;
      display: flex;
      justify-content: flex-start; }
      .testimonials-container .secondary-testimonials .testimonial .quote {
        font-size: 100%;
        font-style: italic;
        line-height: 1.5;
        font-weight: lighter;
        width: 80%;
        position: relative;
        margin-top: 0;
        quotes: "\201C" "\201D" "\2018" "\2019"; }
        .testimonials-container .secondary-testimonials .testimonial .quote::before {
          content: open-quote;
          font-size: 1200%;
          position: absolute;
          top: -.1em;
          left: -.15em;
          line-height: .8;
          font-family: 'Times New Roman';
          font-weight: bold;
          opacity: .13;
          user-select: none; }
      .testimonials-container .secondary-testimonials .testimonial .attrib {
        width: 40%;
        padding-left: 2em;
        line-height: 1.1;
        text-align: left;
        display: flex;
        align-items: center; }
        .testimonials-container .secondary-testimonials .testimonial .attrib .name {
          font-size: 140%;
          font-weight: normal;
          display: block;
          color: #c23838; }
      .testimonials-container .secondary-testimonials .testimonial:first-child {
        margin-top: 0; }
  @media screen and (max-width: 1600px) {
    .testimonials-container .featured-testimonials {
      padding: 3em; }
      .testimonials-container .featured-testimonials .testimonial {
        grid-template-columns: 1fr 3fr 1fr; }
        .testimonials-container .featured-testimonials .testimonial .thumbnail {
          margin-right: 2em; }
        .testimonials-container .featured-testimonials .testimonial .quote-container .quote {
          font-size: 80%; }
        .testimonials-container .featured-testimonials .testimonial .attrib .name {
          font-size: 110%; }
    .testimonials-container .secondary-testimonials {
      margin: 3em;
      padding: 3em; }
      .testimonials-container .secondary-testimonials .testimonial {
        margin-top: 2em; }
        .testimonials-container .secondary-testimonials .testimonial .quote {
          width: 80%;
          font-size: 95%; }
        .testimonials-container .secondary-testimonials .testimonial .attrib {
          width: 25%; }
          .testimonials-container .secondary-testimonials .testimonial .attrib .name {
            font-size: 120%; } }
  @media screen and (max-width: 1000px) {
    .testimonials-container {
      grid-template-columns: 1fr; } }
  @media screen and (max-width: 700px) {
    .testimonials-container .featured-testimonials {
      padding: 2em; }
      .testimonials-container .featured-testimonials > p {
        width: 100%; }
      .testimonials-container .featured-testimonials .testimonial {
        grid-template-columns: 1fr; }
        .testimonials-container .featured-testimonials .testimonial .thumbnail {
          margin-right: 0; }
        .testimonials-container .featured-testimonials .testimonial .quote-container {
          margin-top: 2em; }
          .testimonials-container .featured-testimonials .testimonial .quote-container .quote {
            font-size: 90%; }
        .testimonials-container .featured-testimonials .testimonial .attrib {
          margin-top: 1em;
          padding: 0; }
    .testimonials-container .secondary-testimonials {
      margin: 1em;
      padding: 2em; }
      .testimonials-container .secondary-testimonials .testimonial {
        flex-direction: column; }
        .testimonials-container .secondary-testimonials .testimonial .quote {
          width: 100%;
          font-size: 100%; }
        .testimonials-container .secondary-testimonials .testimonial .attrib {
          width: 100%;
          padding: 0;
          margin-top: 1em;
          margin-bottom: 1em; } }

.events-container {
  display: grid;
  grid-template-columns: 3fr 4fr; }
  .events-container > main {
    background-color: #232323;
    padding: 4em; }
    .events-container > main #events-calender .fc-today {
      background: rgba(194, 56, 56, 0.5); }
    .events-container > main #events-calender .fc-event {
      background-color: #c23838;
      border-color: #c23838; }
  .events-container > aside {
    padding: 4em; }
    .events-container > aside .events-list-container {
      background-color: rgba(35, 35, 35, 0.5);
      padding: 1em; }
      .events-container > aside .events-list-container .item {
        padding: 1em;
        background-color: rgba(35, 35, 35, 0.85);
        margin-top: .5em;
        display: block;
        border: 1px solid transparent;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden; }
        .events-container > aside .events-list-container .item .date {
          color: #c23838; }
        .events-container > aside .events-list-container .item .name {
          color: white; }
        .events-container > aside .events-list-container .item:first-child {
          margin-top: 0; }
        .events-container > aside .events-list-container .item:hover {
          background-color: #232323;
          border-color: rgba(255, 255, 255, 0.2); }
  @media screen and (max-width: 1600px) {
    .events-container > aside .events-list-container .item .name {
      font-size: 90%; } }
  @media screen and (max-width: 1000px) {
    .events-container {
      grid-template-columns: 1fr; } }
  @media screen and (max-width: 700px) {
    .events-container > aside {
      padding: 1em; }
    .events-container > main {
      padding: 1em; } }

.error-message {
  padding: 6em;
  float: left; }
  .error-message h1 {
    padding: 0;
    font-size: 300%;
    font-weight: lighter; }
  .error-message p {
    padding-top: 1em;
    font-size: 120%; }

.modal-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s ease-out;
  z-index: -1; }
  .modal-shadow.show {
    background-color: rgba(0, 0, 0, 0.7);
    transition: background-color 0.5s ease-in;
    z-index: 0; }

/*# sourceMappingURL=style.css.map */
