@charset "UTF-8";

/* Base and Master Stylings */

/* Easier rem/em conversion from px: 1rem = 10px */
html {
  font-size: 62.5%; }
/* Hide Scrollbar For Mobile Views
   Done to help with sticky nav on mobile */
@media (max-width: 575px) {
  html::-webkit-scrollbar {
    display: none;
  }
}

body {
  background: url("/assets/design/bg.webp");
  font-family: 'Minion Pro', sans-serif;
  color: #69131c;
  margin: 0px;
  padding: 0px; }

  body.gsc-overflow-hidden #top-nav #search {
    z-index: 20 !important; }

.dispNoneMedD {
  display: inherit; }
  @media (max-width: 991px) {
    .dispNoneMedD {
      display: none; } }

.dispNoneLargeU {
  display: none; }
  @media (max-width: 991px) {
    .dispNoneLargeU {
      display: inherit; } }

a {
  text-decoration: none; }

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0; }

address, article, aside, div, footer, header, hgroup, layer, main, nav, section {
  display: block; }

* {
  -webkit-font-smoothing: subpixel-antialiased; }

h1 {
  font-family: "Blacksword", "Arial", sans-serif;
  text-align: center;
  font-size: 11rem;
  margin: 0;
  font-weight: 500;
  line-height: 11rem;
  text-shadow: 0px 0px 10px white, 0px 0px 10px white; }
  @media (max-width: 576px) {
    h1 {
      font-size: 7rem !important;
      line-height: 7rem; } }

h2 {
  font-family: "Trajan Pro", "Times New Roman", serif;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin: 0;
  font-weight: bold; }
  @media (max-width: 576px) {
    h2 {
      font-size: 2.8rem; } }

p {
  font-size: 2.4rem;
}

section.intro img {
  display: block;
  margin: 10px auto;
}
/* Main Container Blocks - Used for Header, Footer, Main content, etc */
.container {
  display: block;
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 576px) {
    .container {
      width: 540px !important; } }
  @media (min-width: 768px) {
    .container {
      width: 720px !important; } }
  @media (min-width: 992px) {
    .container {
      width: 960px !important; } }
  @media (min-width: 1200px) {
    .container {
      width: 1140px !important; }
  }
/* Class dedicated to targeting the main body content of every page */
.container.main {
  /* MOVE FIRST TWO LINES TO DIFFERENT LOCATION LATER */
  background-blend-mode: normal, normal;
  background-origin: border-box, border-box;
  background-repeat: no-repeat, repeat-y;
  background-color: white;
  overflow: hidden;
}

/* Header - includes Top Navigation */
header {
  z-index: 1;
  position: sticky;
  top: -853px; }
  @media (max-width: 1199px) {
    header {
      top: -718px; } }
  @media (max-width: 991px) {
    header {
      top: -392px; } }
  @media (max-width: 767px) {
    header {
      top: -294px; } }
  @media (max-width: 575px) {
    /*
    Scrollbars are forced to be hidden at this screen width (html declaration)
    This allows the 100vw to be accurate as the width of content w/o scrollbar.
    Slider images are a 57/31 ratio, so calculate height based on vw and ratio.
    Use that height to set the top value so sticky nav works in right place.
    */
    header {
      top: calc(((100vw*31) / 57 ) * -1);
    }
  }

header #headerImage {
  display: none; }
  @media (min-width: 992px) {
    header #headerImage {
      display: block !important; } }

header #headerImage img {
  max-width: 100%;
  height: auto;
  display: block;
}
header #announcement {
  display: block;
  position: relative;
}
header #announcement img {
  display: block;
  max-width: 100%;
  height: auto;
}
header #announcement div.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
header #announcement div.content img {
  max-width: 100%;
} @media (max-width: 1199px) {
    header #announcement div.content img {
      max-width: 80%; } }
  @media (max-width: 991px) {
    header #announcement div.content img {
      max-width: 70%; } }
  @media (max-width: 767px) {
    header #announcement div.content img {
      max-width: 65%; } }
  @media (max-width: 575px) {
    header #announcement div.content img {
      width: 25rem;
      max-width: 100%;
    }
}
header #announcement div.content .box {
  background: #fff8c1;
  padding: 1.5rem 5rem;
  border: 8px solid #134629;
  border-radius: 32px;
} @media (max-width: 1199px) {
    header #announcement div.content .box {
      padding: 1.5rem 8rem;
      border: 8px solid #134629; } }
  @media (max-width: 991px) {
    header #announcement div.content .box {
      padding: 1.5rem 6rem;
      border: 6px solid #134629; } }
  @media (max-width: 767px) {
    header #announcement div.content .box {
      padding: 1.5rem 4rem;
      border: 4px solid #134629; } }
  @media (max-width: 575px) {
    header #announcement div.content .box {
      padding: .5rem 2rem;
      border: 2px solid #134629;
    }
}
header #announcement div.content .box h2 {
  font-family: "Rockwell", "Arial", sans-serif;
  font-size: 6.5rem;
  line-height: 0.9em;
  font-weight: 900;
  color: #134629;
  text-align: center;
  margin-bottom: .1em;
} @media (max-width: 1199px) {
    header #announcement div.content .box h2 {
      font-size: 6rem !important; } }
  @media (max-width: 991px) {
    header #announcement div.content .box h2 {
      font-size: 4.5rem !important; } }
  @media (max-width: 767px) {
    header #announcement div.content .box h2 {
      font-size: 2.2rem !important; } }
  @media (max-width: 575px) {
    header #announcement div.content .box h2 {
      font-size: 2rem !important;
    }
}
header #announcement div.content .box h2 > span {
  display: block;
  font-size: .95em;
}
header #announcement div.content .box h2 > span span {
  font-size: .9em;
}
header #announcement div.content .box h3 {
  font-family: "Rockwell", "Arial", sans-serif;
  font-size: 3.1rem;
  line-height: 1em;
  font-weight: 700;
  color: #134629;
  text-align: center;
  margin-bottom: .2em;
} @media (max-width: 1199px) {
    header #announcement div.content .box h3 {
      font-size: 2.5rem !important; } }
  @media (max-width: 991px) {
    header #announcement div.content .box h3 {
      font-size: 2.0rem !important; } }
  @media (max-width: 767px) {
    header #announcement div.content .box h3 {
      font-size: 1.6rem !important; } }
  @media (max-width: 575px) {
    header #announcement div.content .box h3 {
      font-size: 1.4rem !important;
    }
}
header #announcement div.content .box h3 a {
  color: #134629;
}
header #announcement div.content .box h3 a:hover {
  color: #206d40;
}
header #announcement div.content .box p {
  font-family: "Rockwell", "Arial", sans-serif;
  font-size: 2.5rem;
  line-height: 1em;
  font-weight: 700;
  color: #134629;
  text-align: center;
} @media (max-width: 1199px) {
    header #announcement div.content .box p {
      font-size: 1.8rem !important; } }
  @media (max-width: 991px) {
    header #announcement div.content .box p {
      font-size: 1.6rem !important; } }
  @media (max-width: 767px) {
    header #announcement div.content .box p {
      font-size: 1.4rem !important; } }
  @media (max-width: 575px) {
    header #announcement div.content .box p {
      font-size: 1.2rem !important;
    }
  }

/* Top Navigation */
nav {
  top: 0; }
  @media (max-width: 991px) {
    nav #top-nav .nav-bar .menu-toggle, nav #top-nav .nav-bar .search-toggle {
      display: inline-block !important; } }

nav #top-nav {
  position: relative;
}
nav #top-nav .nav-bar {
  background: white;
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #401515;}
  @media (max-width: 991px) {
    nav #top-nav .nav-bar {
      background: url("../assets/design/julie-schweiss-red-bg.webp");
      background-position: center, center;
      width: 100%;
      height: 58px;
      -moz-box-shadow: 0 0 10px 0 #000;
      -webkit-box-shadow: 0 0 10px 0 #000;
      box-shadow: 0 0 10px 0 #000; } }
  @media (max-width: 767px) {
    nav #top-nav .nav-bar {
      width: 540px;
      height: 60px;
      border-bottom: none;
      -moz-box-shadow: 0 0 10px 0 #000;
      -webkit-box-shadow: 0 0 10px 0 #000;
      box-shadow: 0 0 10px 0 #000; } }
  @media (max-width: 575px) {
    nav #top-nav .nav-bar {
      width: inherit;
      left: 0;
      right: 0;
      height: 60px; }
  }

nav #top-nav .nav-bar .menu-toggle {
  float: right;
  height: 100%;
  width: 73px;
  border: 0px;
  border-radius: 0px;
  background: url("../assets/design/julie-schweiss-red-bg.webp");
  background-position: center, center;
  padding: 18px 23px;
  cursor: pointer;
}
nav #top-nav .nav-bar .menu-toggle:hover {
  filter: brightness(125%);
}
nav #top-nav .nav-bar .menu-toggle .bar {
  height: 4px;
  width: 26px;
  background: #fff;
  margin-bottom: 5px;
}

nav #top-nav .nav-bar .search-toggle {
  float: right;
  height: 100%;
  width: 73px;
  border: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: url("../assets/design/julie-schweiss-red-bg.webp");
  background-position: center, center;
  padding: 0px 23px 10px 23px;
  cursor: pointer;
  position: relative;
}
nav #top-nav .nav-bar .search-toggle:hover {
  filter: brightness(125%);
}
nav #top-nav .nav-bar .search-toggle .circle {
  height: 12px;
  width: 12px;
  border: 5px solid #fff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
nav #top-nav .nav-bar .search-toggle .bar {
  height: 5px;
  width: 15px;
  background: #fff;
  position: absolute;
  top: 32px;
  left: 37px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav #top-nav .logo {
  display: none;
  overflow: hidden;
  height: 100%;
  background: url("../assets/design/julie-schweiss-red-bg.webp");
  background-position: center, center;
  position: absolute;
  left: 20px;
}
  @media (max-width: 991px) {
    nav #top-nav .logo {
      display: inline-block;}
  }
nav #top-nav .logo a {
  display: inline-block;
  height: 100%;
}
nav #top-nav .logo img {
  max-height: 80%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: auto; }
  @media (max-width: 360px) {
    nav #top-nav .logo img {
      content: url("../assets/design/js-logo.webp");
    }
  }
nav #top-nav .links {
  background-color: transparent;
  overflow: hidden;
  position: relative;
  width: 71%;
  display: inline-block;
  vertical-align: middle; }
  @media (max-width: 991px) {
    nav #top-nav .links {
      display: none; }
  }
nav #top-nav .links a {
  color: #69131c;
  font-size: 1.6rem;
  font-family: "Trajan Pro", serif;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  width: 19.5%;
  padding: 1em 0;
}
nav #top-nav .links a:not(:first-of-type):after {
  content: "";
  background-color: #69131c;
  width: 1px;
  height: 50%;
  display: block;
  position: absolute;
  top: 25%;
}
nav #top-nav .links a:hover {
  color: #e8273b !important;
  text-shadow: 0 0 2px #999;
}

nav #top-nav .links a.active {
  color: white !important;
  text-shadow: 0 0 2px black;
  background: linear-gradient(#ad1f2e, #67131c 70%)
}

nav #top-nav .links a.active + a:after {
  background: white;
}


nav #top-nav #mobile-nav {
  position: absolute;
  z-index: -1;
  top: -215px;
  right: 0px;
  background: #6c6c6c;
  transition: top 1s;
  max-height: 400px;
  max-height: calc(100vh - 72px);
  overflow-y: hidden;
  overflow-x: hidden;
}
nav #top-nav #mobile-nav.drop {
  top: 58px; }
  @media (max-width: 767px) {
    nav #top-nav #mobile-nav.drop {
      top: 60px; }
  }
nav #top-nav #mobile-nav a, nav #top-nav #mobile-nav button {
  display: block;
  width: 145px;
  padding: 15px 0px;
  background-color: transparent;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  border-bottom: 1px solid white;
  color: white;
  text-align: center;
  background: #6c6c6c;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  /* pointer-events: none;
  cursor: default; */
}
nav #top-nav #mobile-nav a:hover, nav #top-nav #mobile-nav button:hover {
  color: #aaa;
  text-shadow: 0 0 5px #aaa;
}
/* nav #top-nav #mobile-nav.drop a, nav #top-nav #mobile-nav.drop button {
  pointer-events: all;
  cursor: default;
} */
nav #top-nav #mobile-nav .divider {
  display: none; }
  @media (min-width: 992px) {
    nav #top-nav #mobile-nav {
      display: none !important; } }
  @media (max-width: 575px) {
    nav #top-nav {
      width: 100%; }
  }



/* Swiper Slider Styles */
section#carousel {
 }
  @media (max-width: 575px) {
    section#carousel {
      /* display: none;  */
    }
  }
section#carousel div.swiper-slide img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
section#carousel .swiper-button-prev, section#carousel .swiper-button-next {
  color: #ad0e0e;
}
@media (min-width: 380px) {
  section#carousel .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 .7rem;
  }
}

section#carousel .swiper-pagination-bullet-active {
  background: #ad0e0e;
}

section#carousel .dates {
  position: absolute;
  right: 3rem;
  top: 3rem;
  z-index: 2;
  background-color: #69131c;
  border: 4px solid #fff;
  border-radius: 24px;
  text-shadow: 1px 1px 8px black, 1px 1px 4px black, 1px 1px 2px black;
  padding: 2em 3.5em 2em 2em; }
  @media (max-width: 991px) {
    section#carousel .dates {
      right: 1rem;
      top: 1rem; } }

section#carousel .dates h2 {
  font-family: "Minion Pro", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 4vrem;
  line-height: 1em;
  text-align: center;
  text-transform: none;
  color: #fff; }
  @media (max-width: 991px) {
    section#carousel .dates h2 {
      font-size: 2rem; } }
  @media (max-width: 767px) {
    section#carousel .dates h2 {
      font-size: 1.5rem; } }
  @media (max-width: 575px) {
    section#carousel .dates h2 {
      font-size: 1.5rem; } }
  @media (max-width: 361px) {
    section#carousel .dates h2 {
      font-size: 1.5rem; }
}

section#carousel .dates h3 {
  font-family: "Minion Pro", sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: 3rem;
  line-height: 1em;
  text-align: center;
  color: #fff;
  margin-top: 2rem;}
  @media (max-width: 991px) {
    section#carousel .dates h3 {
      font-size: 1.5rem; } }
  @media (max-width: 767px) {
    section#carousel .dates h3 {
      font-size: 1.25rem;
      margin-top: 1rem; } }
  @media (max-width: 575px) {
    section#carousel .dates h3 {
      font-size: 1.25rem;
      margin-top: 1rem; } }
  @media (max-width: 361px) {
    section#carousel .dates h3 {
      font-size: 1.25rem;
      margin-top: 1rem; }
}

section#carousel .dates sup {
  font-size: 0.6em; }

/* Footer */
footer {
  background: url("../assets/design/julie-schweiss-red-bg.webp");
  background-position: center, center;
  color: #fff;
  overflow: hidden;
}
footer #bgContainer {
  width: 100%;
  display: block;
  position: relative;
}
footer #bgContainer img.bg {
  width: 100%;
  height: auto;
  display: block; }
  @media(max-width: 991px) {
    footer #bgContainer img.bg {display: none;}
  }
footer #bgContainer div.flex {
  position: absolute;
  bottom: 0%;
  width: 100%;
  padding: 0 2rem 2rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between; }
  @media (max-width: 991px) {
    footer #bgContainer div.flex {
      position: relative;
      flex-direction: column;
      padding: 2rem 2rem;
      width: auto;
      align-items: center;
      gap: 1.25rem;  } }
  @media (max-width: 575px) { }
  @media (max-width: 360px) { }

footer #bgContainer div.flex > div:not(.socials) {
  flex-grow: 1;
  flex-basis: 0; }
  @media (max-width: 991px) {
    footer #bgContainer div.flex > div {
      width: 100%;
    }
  }

footer #bgContainer div.flex div.mobileLogo {
  display: none; }
  @media (max-width: 991px) {
    footer #bgContainer div.flex > div:not(:last-of-type) {
      display: block;
      text-align: center;
      padding-bottom: 1rem;
      border-bottom: 2px solid #a3a2a2;}
    footer #bgContainer div.flex div.mobileLogo {
      display: block;
      text-align: center;
      margin: 0; }
  }
footer #bgContainer div.flex div.mobileLogo img {
  max-width: 100%;
  height: auto;
}

footer #bgContainer div.flex div.contactInfo a {
  display: block;
  font-family: "Trajan Pro", serif;
  font-size: 1.8rem;
  font-style: normal;
  text-shadow: 1px 1px 5px black;
  color: white;
  line-height: 1.6;
  text-decoration: none; }
  @media (max-width: 991px) {
    footer #bgContainer div.flex div.contactInfo a {
      font-size: 2.4rem; } }
  @media (max-width: 479px) {
    footer #bgContainer div.flex div.contactInfo a {
      font-size: 1.8rem; } }
  @media (max-width: 372px) {
    footer #bgContainer div.flex div.contactInfo a {
      font-size: 1.4rem; } }
  @media (max-width: 299px) {
    footer #bgContainer div.flex div.contactInfo a {
      font-size: 1.2rem; }
}

footer #bgContainer div.flex div.contactInfo a.btn {
  display: inline-block;
  margin-top: .75rem;
  border: 2px solid #2a2a2a; /* #505050 */
  border-radius: 8px;
  background: linear-gradient(#808080, #2a2a2a 90%); /* #8B8B8B, #505050 70% */
  padding: .5rem 2rem .5rem 2rem;
}

footer #bgContainer div.flex div.contactInfo a.btn:hover {
  opacity: .90;
  box-shadow: 0px 0px 10px #fff;
}

footer #bgContainer div.flex div.socials a {
  display: inline-flex;
  margin: 1rem 1.0rem 3rem 1.5rem; }
  @media (max-width: 991px) {
    footer #bgContainer div.flex div.socials a {
      margin: 0 1rem 0 1.5rem; }
}

footer #bgContainer div.flex div.googleMaps {
  text-align: right; }
  @media (max-width: 991px) {
    footer #bgContainer div.flex div.googleMaps {
      text-align: center; }
}

footer #bgContainer div.flex div.googleMaps div iframe {
  width: 240px;
  height: 155px; }
  @media (max-width: 991px) {
    footer #bgContainer div.flex div.googleMaps div iframe {
      width: 80%;
      height: 100%; } }
  @media (max-width: 575px) {
    footer #bgContainer div.flex div.googleMaps div iframe {
      width: 100%;
      height: 175px;
    }
  }


/* Back To Top Button */
#back-to-top {
  display: block;
  opacity: .75;
  position: fixed;
  margin-right: -550px;
  right: 50%;
  bottom: 30px;
  background-color: #b2202f;
  height: 50px;
  width: 50px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
#back-to-top div {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  margin: auto;
  padding-top: 17px; }
  @media (max-width: 1199px) {
    #back-to-top {
      margin-right: -460px; } }
  @media (max-width: 991px) {
    #back-to-top {
      margin-right: -340px; } }
  @media (max-width: 767px) {
    #back-to-top {
      margin-right: -250px; } }
  @media (max-width: 575px) {
    #back-to-top {
      margin-right: 0px;
      right: 20px; }
  }



/* Index Page / Home Page */
/* rgba(255,255,255,0) = Transparent, had to replace it because of Safari...*/
#index {
  background-color: #fff;
  background-image: linear-gradient( rgba(255,255,255,0), white 5% 95%, rgba(255,255,255,0) 99%), url("../assets/design/canvas-texture.webp");
  background-position: center, center;
}
#index .wrapper {
  border: 2px solid #69131c;
  outline: 4px solid #69131c;
  outline-offset: 10px;
  position: relative;
  margin: 80px 50px 80px 50px; }
  @media (max-width: 1199px) {
    #index .wrapper {
      margin: 80px 40px 80px 40px; } }
  @media (max-width: 991px) {
    #index .wrapper {
      margin: 60px 40px 60px 40px; } }
  @media (max-width: 767px) {
    #index .wrapper {
      margin: ; } }
  @media (max-width: 575px) {
    #index .wrapper {
      margin: ; }
  }

#index .wrapper .corner {
  position: absolute;
}
#index .wrapper .corner.TL {
  top: -40px;
  left: -40px;
}
#index .wrapper .corner.TR {
  top: -40px;
  right: -40px;
  transform: rotate(90deg);
}
#index .wrapper .corner.BL {
  bottom: -40px;
  left: -40px;
  transform: rotate(-90deg);
}
#index .wrapper .corner.BR {
  bottom: -40px;
  right: -40px;
  transform: rotate(180deg);
}
#index .sidebyside {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 10%;
  padding-top: 4%;
  margin-bottom: 3rem;}
  @media (max-width: 1199px) {
    #index .sidebyside {
       gap: 5%; } }
  @media (max-width: 991px) {
    #index .sidebyside {
       flex-direction: column; }
  }
#index .sidebyside .flexItem {
  max-width: 33.5%;
  margin-bottom: 4.5rem; }
  @media (max-width: 991px) {
    #index .sidebyside .flexItem {
       max-width: 96%;
       margin: 2rem;
       margin-top: 0; }
  }
#index .sidebyside .flexItem.aboutJulie {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#index .sidebyside .flexItem.aboutJulie h2 {
  margin-bottom: 2rem;
}
#index .sidebyside .flexItem.aboutJulie p {
  margin-bottom: 20px;
  font-size: 2.2rem;
  text-align: justify; }
  @media (max-width: 360px) {
    #index .sidebyside .flexItem.aboutJulie p {
      font-size: 1.8rem; }
  }
#index .sidebyside .flexItem.aboutJulie img {
  margin-top: 10px;
}
#index .sidebyside .flexItem.image-container {
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  max-width: 42%; }
  @media (max-width: 991px) {
    #index .sidebyside .flexItem.image-container {
       max-width: 96%;
       margin: 2rem;
       margin-top: 0; }
}

#index .sidebyside .flexItem.image-container img {
  width: 96%;
  height: auto;
  padding: 2%;
  background-color: white;
  box-shadow: 1px 10px 15px 0px #717171;
}
#index .sidebyside .flexItem.image-container p {
  font-size: 1.9rem;
  font-style: italic;
  color: black;
  margin-top: 2rem;
  text-align: left;
  background: #E9E9E9;
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
}
#index .sidebyside .flexItem.image-container span {
  display: block;
  text-align: right;
}
#index .links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  gap: 20px; }
  @media (max-width: 991px) {
    #index .links {
      flex-direction: column;
      gap: 0px;}
  }
#index .links a {
  color: #69131c;
  max-width: 27%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column; }
  @media (max-width: 1199px) {
    #index .links a { max-width: 27%;}
  }
  @media (max-width: 991px) {
    #index .links a { max-width: 80%; width: 70%; margin: 2rem;}
  }
#index .links a h2 {
  text-align: center;
  margin-bottom: 0rem;
  margin-top: 1rem;
}
#index div.line {
  height: 2px;
  width: 80%;
  background-image: linear-gradient(to left, transparent 0.5%, 15%, #69131c 50%, 85%, transparent 99.5%);
  margin: 0 auto;
  margin-bottom: 4.5rem; }
  @media (max-width: 991px) {
    #index div.line {width: 90%;}
  }
#index .links a div.line {
  width: 90%;
  background-image: linear-gradient(to left, transparent 0.5%, 15%, #69131c 50%, 85%, transparent 99.5%);
  margin-bottom: 1rem;
}
#index .links a img {
  max-width: 100%;
  height: auto; }
  @media (max-width: 991px) {
    #index .links a img {
      width: 100%;
    }
  }

  /* About Page*/
  /* rgba(255,255,255,0) = Transparent, had to replace it because of Safari...*/
  #about {
    background-color: #fff;
    background-image: linear-gradient( rgba(255,255,255,0), rgba(255,255,255,0), white 1020px, white, white, rgba(255,255,255,0)), url("../assets/images/about/about-river-tree-header.jpg"), url("../assets/design/canvas-texture.webp");
    background-position: center, top center, center;
    background-blend-mode: normal, multiply, normal;
    background-origin: border-box, border-box, border-box;
    background-repeat: no-repeat, no-repeat, repeat-y;
  }
  #about .content {
    display: inline-block;
    margin: 30rem 20rem 10rem 20rem;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0 0 35px 40px rgba(255,255,255,0.9);
    text-shadow: 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white; }
    @media (max-width: 1199px) {
      #about .content {
        margin: 20rem 10rem 10rem 10rem;
      }
    }
    @media (max-width: 991px) {
      #about .content {
        margin: 10rem 6rem 6rem 6rem;
      }
    }
    @media (max-width: 767px) {
      #about .content {
        margin: 10rem 6rem 6rem 6rem; }
    }
    @media (max-width: 575px) {
      #about .content {
        margin: 10rem 2rem 6rem 2rem;
        box-shadow: 0 0 10px 15px rgba(255,255,255,0.9); }
    }
  #about .content .intro img {
    display: block;
    margin: 10px auto;
    filter: drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white);
  }
  #about h2 {
    text-align: center;
  }
  #about p {
    margin: .5rem 0 4rem 0; }
    @media (max-width: 991px) {
      #about p {
        text-align: justify;
      }
    }
  #about section:last-of-type p {
    margin-bottom: 0;
  }
  #about #awards h2 {
    border-top: 2px dotted #69131c;
    border-bottom: 2px dotted #69131c;
    padding: 1rem 0;
  }
  #about #awards h3 {
    font-family: "Trajan Pro", "Times New Roman", serif;
    font-size: 2.4rem;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: .4rem;
    text-align: center;
    margin-top: 3rem;
  }
  #about #awards h4 {
    font-family: "Trebuchet MS", "Times New Roman", serif;
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: .4rem;
    text-align: center;
    margin-top: 1rem;
    /* color: #666666; */
  }
  #about #awards p {
    color: black;
    margin: .5rem 0 .5rem 0;
    text-align: center;
    text-transform: uppercase;
  }

/* Gallery Page */
/* rgba(255,255,255,0) = Transparent, had to replace it because of Safari...*/
#gallery {
  background-image: linear-gradient( rgba(255,255,255,0), white 1020px, white 99%, rgba(255,255,255,0)), url("../assets/design/canvas-texture.webp");
  background-position: center, center;
  background-blend-mode: normal, normal;
  background-origin: border-box, border-box;
  background-repeat: no-repeat, repeat-y;
  background-color: white;
}
#gallery .intro {
  display: block;
  margin: 10rem 8rem 0rem 8rem;
  text-shadow: 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white; }
  @media (max-width: 1199px) {
    #gallery .intro {
      margin: 10rem 10rem 0rem 10rem;
    }
  }
  @media (max-width: 991px) {
    #gallery .intro {
      margin: 10rem 2rem 0rem 2rem;
    }
  }
#gallery .intro hr {
  height: 2px;
  background-color: #8c1420;
  margin-top: -1.2rem;
}
#gallery .intro img {
  display: block;
  margin: 2rem auto 2rem auto;
  filter: drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white);
  max-width: 100%;
  height: auto;
}
#gallery .intro h2 {
  text-align: center;
}
#gallery .intro p {
  font-size: 2.4rem;
  text-align: justify;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 6rem;
  margin-right: 6rem; }
  @media (max-width: 991px) {
    #gallery .intro p {
      text-align: justify;
      margin-left: 0;
      margin-right: 0;
    }
  }
#gallery .intro p.center {
  text-align: center;
  margin: 0;
}
#gallery .artwork {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 5rem;
  overflow-x: hidden;
}
#gallery .artwork .piece {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 4rem;}
@media (max-width: 991px) {
  #gallery .artwork .piece {
    flex-direction: column;
    align-items: center;
  }
}
#gallery .artwork .piece .image {
  background-color: #fff;
  box-shadow: 1px 3px 10px gray;
  max-width: 39.82%;
  padding: 5px;
  height: auto;
  overflow: hidden;
  position: relative; }
  @media (max-width: 991px) {
    #gallery .artwork .piece .image {
      max-width: 80%;
      height: auto;
      margin: 0 2%;
    }
  }
  @media (max-width: 767px) {
    #gallery .artwork .piece .image {
      max-width: 100%;
    }
  }
#gallery .artwork .piece .image a {
  width: 100%;
}
#gallery .artwork .piece .image a img {
  width: 100%;
  height: auto;
  display: inline-block;
  float: left;
}
#gallery .artwork .piece .image a .caption {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  text-transform: capitalize;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
#gallery .artwork .piece .image a .caption p {
  font-weight: normal;
  font-size: 22px;
  text-align: center;
}
#gallery .artwork .piece .image a:hover .caption {
  background-color: rgba(103, 19, 27, 0.75);
  opacity: 1;
}
#gallery .artwork .piece .details {
  max-width: 39.82%;
  min-width: 39.82%;
  display: flex;
  flex-direction: column; }
  @media (max-width: 991px) {
    #gallery .artwork .piece .details {
      max-width: 100%;
      height: auto;
      margin: 0 2%;
    }
  }
#gallery .artwork .piece .details h3 {
  font-size: 3.7rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-top: 2rem;
  margin-bottom: .4rem;}
  @media (max-width: 1199px) {
    #gallery .artwork .piece .details h3 {
      font-size: 3.0rem;
    }
  }
  @media (max-width: 991px) {
    #gallery .artwork .piece .details h3 {
      font-size: 4.0rem;
    }
  }
  @media (max-width: 575px) {
    #gallery .artwork .piece .details h3 {
      font-size: 3.0rem;
    }
  }
#gallery .artwork .piece .details p {
  font-size: 2.8rem;
  text-align: center;
  font-style: italic; }
  @media (max-width: 1199px) {
    #gallery .artwork .piece .details p {
      font-size: 2.4rem;
    }
  }
  @media (max-width: 991px) {
    #gallery .artwork .piece .details p {
      font-size: 3.2rem;
    }
  }
  @media (max-width: 575px) {
    #gallery .artwork .piece .details p {
      font-size: 2.4rem;
    }
  }
#gallery .artwork .piece .details p.saleStatus {
  font-weight: bold;
  text-transform: uppercase;
}
#gallery .artwork .piece .details .products {
  max-width: 100%;
  margin: 0 auto; }
#gallery .artwork .piece .details .products h4 {
  font-size: 3.2rem;
  text-align: left;
  text-transform: uppercase;
  margin-top: 2rem; }
  @media (max-width: 1199px) {
    #gallery .artwork .piece .details .products h4 {
      font-size: 2.8rem;
    }
  }
  @media (max-width: 991px) {
    #gallery .artwork .piece .details .products h4 {
      font-size: 3.2rem;
    }
  }
  @media (max-width: 575px) {
    #gallery .artwork .piece .details .products h4 {
      font-size: 2.4em;
    }
  }
#gallery .artwork .piece .details .products ul {
 margin: 0;
 padding: 0;
 list-style-type: none;
}
#gallery .artwork .piece .details .products ul li {
  font-size: 2.6rem; }
  @media (max-width: 1199px) {
    #gallery .artwork .piece .details .products ul li {
      font-size: 2.0rem;
    }
  }
  @media (max-width: 991px) {
    #gallery .artwork .piece .details .products ul li {
      font-size: 2.5rem;
    }
  }
  @media (max-width: 575px) {
    #gallery .artwork .piece .details .products ul li {
      font-size: 1.8rem;
    }
  }
#gallery .artwork .piece .details .products ul li::before {
  content: "\2022";
  margin-right: .4em;
}
#gallery .error {text-align: center; margin-top: 3rem; margin-bottom: 3rem; color: red;}

#gallery #fullscreen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: none; }
  #gallery #fullscreen #artwork-title {
    color: white;
    text-transform: capitalize;
    text-align: center;
  }
  #gallery #fullscreen #fullscreen-img {
    display: block;
    max-width: 94%;
    max-height: 92%;
    margin: 0px auto;
    position: relative;
   }
  #gallery #fullscreen #close {
    position: absolute;
    right: 54px;
    top: 30px; }
    #gallery #fullscreen #close div {
      position: relative; }
      #gallery #fullscreen #close div div {
        position: absolute;
        width: 32px;
        height: 8px;
        background-color: #f66;
        cursor: pointer; }
        #gallery #fullscreen #close div div:first-child {
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg); }
        #gallery #fullscreen #close div div:last-child {
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          -o-transform: rotate(-45deg);
          transform: rotate(-45deg); }

body.fullscreen {
  overflow: hidden; }
  body.fullscreen #fullscreen {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

#myvideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  background-color: #000;
  background-size: cover;
  z-index: 100; }
  @media (orientation: landscape) {
    #myvideo {
      height: 100%    !important;
      width: auto   !important; } }
  @media (orientation: portrait) {
    #myvideo {
      height: auto  !important;
      width: 100%   !important; }
  }

/* Products Page */
/* rgba(255,255,255,0) = Transparent, had to replace it because of Safari...*/
#products {
  background-image: linear-gradient( rgba(255,255,255,0), white 50%, white 92%, rgba(255,255,255,0)), url("../assets/design/canvas-texture.webp");
  background-position: center, center;
  background-blend-mode: normal, normal;
  background-origin: border-box, border-box;
  background-repeat: no-repeat, repeat-y;
  background-color: white;
}
#products .intro {
  display: block;
  margin: 10rem 8rem 0rem 8rem;
  text-shadow: 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white; }
  @media (max-width: 1199px) {
    #products .intro {
      margin: 10rem 10rem 0rem 10rem;
    }
  }
  @media (max-width: 991px) {
    #products .intro {
      margin: 10rem 2rem 0rem 2rem;
    }
  }
#products .intro h1 {
  ; }
@media (max-width: 360px) {
  #products .intro h1 {
    font-size: 6rem !important;
  }
}
#products .intro hr {
  height: 2px;
  background-color: #8c1420;
  margin-top: -1.2rem;
}
#products .intro img {
  display: block;
  margin: 1rem auto;
  filter: drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white);
  max-width: 100%;
  height: auto;
}
#products .intro h2 {
  text-align: center;
}
#products .intro p {
  font-size: 2.4rem;
  hyphens: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 6rem;
  margin-right: 6rem; }
  @media (max-width: 991px) {
    #products .intro p {
      text-align: justify;
      margin-left: 0;
      margin-right: 0;
    }
  }
#products .intro p:last-of-type{
  text-align: center;
  font-weight: bold;
}
#products .links {
  display: flex;
  flex-direction: column;
  margin-bottom: 10rem;
}
#products .links .row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
#products .links .row a {
  background: #fff;
  padding: 5px;
  margin: 1rem;
  box-shadow: 1px 4px 10px darkgray, 1px 5px 10px darkgray;
  max-width: 315px; }
  @media (max-width: 767px) {
    #products .links .row a {
      max-width: 100%;
      height: auto;
      margin: 2rem 2%;
    }
  }
#products .links .row a:hover {
  opacity: 0.65;
}
#products .links .row a img {
  display: block;
  max-width: 100%;
  height: auto;
}
#products .links .row a p.caption {
  border-top: 2px solid #69131c;
  background: url("/assets/design/tan-canvas-bg.webp");
  padding: .1em 0;
  text-align: center;
  font-size: 3.8rem;
  font-weight: 600;
  font-variant: small-caps;
  letter-spacing: .2rem;;
  color: #69131c;
  text-shadow: -1px -1px 0px #fff, -1px 1px 0px #fff, 1px -1px 0px #fff, 1px 1px 0px #fff; }
  @media (max-width: 360px) {
    #products .links .row a p.caption {
      font-size: 3.4rem;
    }
  }

/* Product Pages */
/* IE: Canvas Prints, Art Prints, Notepads, Napkins, Coasters */
/* rgba(255,255,255,0) = Transparent, had to replace it because of Safari...*/
#productsPage {
  background-image: linear-gradient( rgba(255,255,255,0), white 1020px, white 99%, rgba(255,255,255,0)), url("../assets/design/canvas-texture.webp");
  background-position: center, center;
  background-blend-mode: normal, normal;
  background-origin: border-box, border-box;
  background-repeat: no-repeat, repeat-y;
  background-color: white;
}
#productsPage .intro {
  display: block;
  margin: 10rem 8rem 0rem 8rem;
  text-shadow: 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white; }
  @media (max-width: 1199px) {
    #productsPage .intro {
      margin: 10rem 10rem 0rem 10rem;
    }
  }
  @media (max-width: 991px) {
    #productsPage .intro {
      margin: 10rem 2rem 0rem 2rem;
    }
  }
#productsPage .intro hr {
  height: 2px;
  background-color: #8c1420;
  margin-top: -1.2rem;
}
#productsPage .intro img {
  display: block;
  margin: 2rem auto 2rem auto;
  filter: drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white) drop-shadow(0px 0px 2px white);
  max-width: 100%;
  height: auto;
}
#productsPage .intro h2 {
  text-align: center;
}
#productsPage .intro p {
  font-size: 2.4rem;
  text-align: justify;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 6rem;
  margin-right: 6rem; }
  @media (max-width: 991px) {
    #gallery .intro p {
      text-align: justify;
      margin-left: 0;
      margin-right: 0;
    }
  }
#productsPage .intro p.center {
  text-align: center;
  margin: 0;
}
#productsPage .catalog {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 5rem;
  overflow-x: hidden;
}
#productsPage .catalog .item {
  background-color: #fff;
  box-shadow: 1px 3px 10px gray;
  max-width: 39.82%;
  min-width: 39.82%;
  padding: 5px;
  margin: 2rem;
  height: auto;
  overflow: hidden;
  position: relative; }
  @media (max-width: 991px) {
    #productsPage .catalog .item {
      max-width: 80%;
      min-width: 80%;
      height: auto;
      margin: 2rem 2%;
    }
  }
  @media (max-width: 767px) {
    #productsPage .catalog .item {
      max-width: 100%;
      min-width: 100%;
    }
  }
#productsPage .catalog .item a {
  width: 100%;
}
#productsPage .catalog .item a img {
  width: 100%;
  height: auto;
  display: inline-block;
  float: left;
}
#productsPage .catalog .item a .caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  text-transform: capitalize;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
#productsPage .catalog .item a .caption p {
  font-weight: normal;
  font-size: 22px;
  text-align: center;
}
#productsPage .catalog .item a:hover .caption {
  background-color: rgba(103, 19, 27, 0.75);
  opacity: 1;
}
#productsPage .catalog .item a .caption ul.details {
  display: none;
}
#productsPage .error {text-align: center; margin-top: 3rem; margin-bottom: 3rem; color: red;}
#productsPage #fullscreen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: none;
}
/* Applied by Javascript */
body.fullscreen {
  overflow: hidden; }
  body.fullscreen #productsPage #fullscreen {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#productsPage #fullscreen div.flexContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* max-width: 98%; */
  /* max-height: 94%; */
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height:100%;
  padding: 2rem;
  position: relative;}
  @media (max-width: 991px) {
    #productsPage #fullscreen div.flexContainer {
      flex-direction: column;
    }
}

#productsPage #fullscreen #fullscreen-img {
  display: block;
  max-width: 56%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  margin: 1rem;
  position: relative;
  flex-shrink: 1; }
  @media (max-width: 991px) {
    #productsPage #fullscreen #fullscreen-img {
      max-width: 100%;
      width: auto;
      max-height: 80%;
    }
}

#productsPage #fullscreen div.fullscreen-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 42%;
  flex-shrink: 0;
  background: rgba(143, 10, 22, 0.75);
  border: 1px solid pink;
  border-radius: 8px;
  margin: 1rem;
  padding: 1rem 2rem;
  position: relative;}
  @media (max-width: 991px) {
    #productsPage #fullscreen div.fullscreen-details {
      width: 100%;
    }
}
#productsPage #fullscreen .flexContainer .fullscreen-details h2#artwork-title {
  color: white;
  text-transform: capitalize;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 3.2rem; }
  @media (max-width: 1199px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details h2#artwork-title {
      font-size: 2.6rem;
    }
 }
  @media (max-width: 991px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details h2#artwork-title {
      font-size: 4rem;
    }
}
  @media (max-width: 575px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details h2#artwork-title {
      font-size: 2.6rem;
    }
}
#productsPage #fullscreen .flexContainer .fullscreen-details p#more-details {
  color: white;
  text-align: center;
  text-underline-offset: 5px;
  margin-top: .2em;
  font-size: 2.6rem; }
  @media (max-width: 1199px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details p#more-details {
      font-size: 2.4rem;
    }
 }
  @media (max-width: 991px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details p#more-details {
      font-size: 2.6rem;
    }
}
  @media (max-width: 575px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details p#more-details {
      font-size: 2.4rem;
    }
}

#productsPage #fullscreen .flexContainer .fullscreen-details ul {
  display: block;
  margin: 1rem 0 2rem 0;
  padding: 0;
  list-style-type: none;
  color: white;
}
#productsPage #fullscreen .flexContainer .fullscreen-details ul li {
  font-size: 2.6rem;
  margin-left: -0.4em;}
  @media (max-width: 1199px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details ul li {
      font-size: 2.2rem;
    }
  }
  @media (max-width: 991px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details ul li {
      font-size: 2.6rem;
    }
  }
  @media (max-width: 575px) {
    #productsPage #fullscreen .flexContainer .fullscreen-details ul li {
      font-size: 1.8rem;
    }
}
#productsPage #fullscreen .flexContainer .fullscreen-details ul li::before {
  content: "\2022";
  margin-right: .4em;
}

#productsPage #fullscreen #close {
  position: absolute;
  right: 54px;
  top: 30px;
}
#productsPage #fullscreen #close div {
  position: relative;
}
#productsPage #fullscreen #close div div {
  position: absolute;
  width: 32px;
  height: 8px;
  background-color: #f66;
  cursor: pointer;
}
#productsPage #fullscreen #close div div:first-child {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#productsPage #fullscreen #close div div:last-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/* Contact Page */
/* Reset appearance for Cross-Browser Compatibility */
#contact legend, #contact fieldset, #contact textarea, #contact input, #contact button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: Arial, sans-serif;
}
#contact {
  overflow-x: hidden;
  background-color: #fff;
  background-image: linear-gradient( transparent, transparent, white 1020px, white, white, transparent), url("../assets/images/contact/contact-deer-in-field-header.jpg"), url("../assets/design/canvas-texture.webp");
  background-position: center, top center, center;
  background-blend-mode: normal, multiply, normal;
  background-origin: border-box, border-box, border-box;
  background-repeat: no-repeat, no-repeat, repeat-y;
}
#contact .content {
  display: inline-block;
  margin: 28rem 29rem 10rem 29rem;
  background-color: rgba(255,255,255,0.9);
  box-shadow: 0 0 35px 40px rgba(255,255,255,0.9);
  text-shadow: 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white; }
  @media (max-width: 1199px) {
    #contact .content {
      margin: 25rem 20rem 10rem 20rem; } }
  @media (max-width: 991px) {
    #contact .content {
      margin: 20rem 6rem 6rem 6rem; } }
  @media (max-width: 767px) {
    #contact .content {
      margin: 15rem 6rem 6rem 6rem; } }
  @media (max-width: 575px) {
    #contact .content {
      margin: 10rem 2rem 6rem 2rem;
      box-shadow: 0 0 10px 15px rgba(255,255,255,0.9); }
  }
@media (max-width: 767px) {
  #contact .intro h1 {
    font-size: 6.5rem !important;
    line-height: 8rem;}
}
#contact .intro p {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}
#contact span.red, #contact p.red {
  color: #f00;
  padding: 0px 0px 20px 0px;
}
#contact hr.red {
  border: none;
  border-top: 2px solid #f00;
  height: 0px;
  margin-top: 8px;
  margin-bottom: 16px;
}
#contact #form-container {
  width: 100%;
}
#contact #form-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
#contact #form-container form .flexRow {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;}
  @media (max-width: 767px) {
    #contact #form-container form .flexRow {
      flex-direction: column; }
  }
#contact #form-container form .flexRow label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  width: 20%;
  flex-grow: 0;
}
#contact #form-container form .flexRow input, #contact #form-container form .flexRow select {
  width: 82%;
  box-sizing: border-box;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 4px 12px 4px 12px;
  background-color: #e8e8e8;
  font-size: 1.8rem; }
  @media (max-width: 767px) {
    #contact #form-container form .flexRow input, #contact #form-container form select, #contact #form-container form .flexRow label {
      width: 100%;
      float: none; }
  }
#contact #form-container form .flexRow.cityStateZIP {
  display: flex;
  flex-direction: row; }
  @media (max-width: 767px) {
    #contact #form-container form .flexRow.cityStateZIP {
      flex-direction: column; }
  }
#contact #form-container form .flexRow.cityStateZIP label:not(:first-of-type) {
  max-width: 10%;
  width: auto;
  margin-left: 2%;
  margin-right: 1%; }
  @media (max-width: 767px) {
    #contact #form-container form .flexRow.cityStateZIP label:not(:first-of-type) {
      margin: 0;
      width: 100%;
      max-width: 100%; }
  }
#contact #form-container form .flexRow.cityStateZIP label:first-of-type {
  width: 20%;
  max-width: 20%; }
  @media (max-width: 767px) {
    #contact #form-container form .flexRow.cityStateZIP label:first-of-type {
      margin: 0;
      width: 100%;
      max-width: 100%; }
  }
#contact #form-container form .flexRow.cityStateZIP input#city {
  width: 21.5%; }
#contact #form-container form .flexRow.cityStateZIP select#state {
  width: 28%; }
#contact #form-container form .flexRow.cityStateZIP input#zip {
  width: 14%; }
    @media (max-width: 767px) {
      #contact #form-container form .flexRow.cityStateZIP input#city,
      #contact #form-container form .flexRow.cityStateZIP select#state,
      #contact #form-container form .flexRow.cityStateZIP input#zip {
        width: 100%; }
    }
#contact #form-container form .flexRow:last-of-type {
  flex-direction: column;
  gap: .15rem;
  margin-top: 4rem;
}
#contact #form-container form .flexRow:last-of-type label {
  width: 100%;
}
#contact #form-container form .flexRow textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: #e8e8e8;
  color: #000;
  line-height: 1.5;
  font-size: 1.6rem;
  border: 1px solid #aaa;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 5px;
}
#contact #form-container form button#sendMessageButton {
  margin-top: 5rem;
  background: linear-gradient(#ad1f2e, #67131c 70%);
  color: #fff;
  width: 50%;
  font-family: "Trajan Pro", serif;
  font-size: 2.0rem;
  text-transform: uppercase;
  font-weight: bold;
  padding: 8px;
  text-shadow: 0px 1px 5px black;
  box-shadow: 0 0 5px black;
  border: 1px solid black;
  cursor: pointer; }
  #contact #form-container button#sendMessageButton:hover {
    opacity: .75;
    box-shadow: 0px 0px 10px #f00;
  }
#contact #form-container form #help-block {
  color: #f00;
}
#contact #error {
  background-color: transparent; }
#contact #error p.short-msg {
  text-align: center;
  font-size: 3rem;
  color: #f00;
  padding: 3.2rem 1.6rem; }
#contact #error p.long-msg {
  padding: 3.2rem 1.6rem;
  font-size: 2rem;
  text-align: center;
  color: #f00; }
  #contact #error p.long-msg a {
    font-weight: bolder; }
  /* Honeypot Field for Spammers - Invisible To Human Eye */
  #contact #contactForm .gotcha {
    display: none; opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1;
  }



/* 404 Page */
#e404 {
  background-color: #fff;
  background-image: linear-gradient( transparent, transparent, white 100px, white, white, transparent), url("../assets/design/canvas-texture.webp");
  background-position: center, center;
  background-blend-mode: normal, normal;
  background-origin: border-box, border-box;
  background-repeat: no-repeat, repeat-y;
}
#e404 > div {
  padding: 32px;
}
#e404 > div h1 {
  font-size: 60px;
}
#e404 > div h3 {
  font-size: 24px;
}
#e404 > div ul {
  list-style: circle;
  font-size: 20px;
  line-height: 1.5;
}
#e404 > div ul li a {
  color: #2b50c1;
}
#e404 > div ul li a:hover {
  text-shadow: 0 0 2px #889fe4;
}
/* Font Face Declarations - Primarily use Blacksword, Trajan, and Minion */
@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/roboto-condensed/RobotoCondensed-Regular.ttf") format("truetype"); }
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  src: url("../assets/fonts/roboto-condensed/RobotoCondensed-Italic.ttf") format("truetype"); }
@font-face {
  font-family: "Roboto Condensed";
  font-weight: bold;
  src: url("../assets/fonts/roboto-condensed/RobotoCondensed-Bold.ttf") format("truetype"); }
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: bold;
  src: url("../assets/fonts/roboto-condensed/RobotoCondensed-BoldItalic.ttf") format("truetype"); }
@font-face {
  font-family: "Roboto Condensed";
  font-weight: light;
  src: url("../assets/fonts/roboto-condensed/RobotoCondensed-Light.ttf") format("truetype"); }
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: light;
  src: url("../assets/fonts/roboto-condensed/RobotoCondensed-LightItalic.ttf") format("truetype"); }

/* Blacksword */
@font-face {
  font-family: "Blacksword";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/blacksword/Blacksword.woff2") format("woff2"),
       url("../assets/fonts/blacksword/Blacksword.woff") format("woff"),
       url("../assets/fonts/blacksword/Blacksword.otf") format("opentype");
}
/* Trajan Pro */
@font-face {
  font-family: "Trajan Pro";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/trajan-pro/TrajanPro-Regular.woff2") format("woff2"),
       url("../assets/fonts/trajan-pro/TrajanPro-Regular.woff") format("woff"),
       url("../assets/fonts/trajan-pro/TrajanPro-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Trajan Pro";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/trajan-pro/TrajanPro-Bold.woff2") format("woff2"),
       url("../assets/fonts/trajan-pro/TrajanPro-Bold.woff") format("woff"),
       url("../assets/fonts/trajan-pro/TrajanPro-Bold.otf") format("opentype");
}
/* Minion Pro */
@font-face {
  font-family: "Minion Pro";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-Regular.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-Regular.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Minion Pro";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-Medium.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-Medium.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Minion Pro";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-Semibold.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-Semibold.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-Semibold.otf") format("opentype");
}
@font-face {
  font-family: "Minion Pro";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-Bold.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-Bold.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Minion Pro";
  font-weight: normal;
  font-style: italic;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-It.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-It.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-It.otf") format("opentype");
}
@font-face {
  font-family: "Minion Pro";
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-MediumIt.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-MediumIt.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-MediumIt.otf") format("opentype");
}
@font-face {
  font-family: "Minion Pro";
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-SemiboldIt.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-SemiboldIt.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-SemiboldIt.otf") format("opentype");
}
@font-face {
  font-family: "Minion Pro";
  font-weight: bold;
  font-style: italic;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-BoldIt.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-BoldIt.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-BoldIt.otf") format("opentype");
}
/* Minion Pro Condensed */
@font-face {
  font-family: "Minion Pro Condensed";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-BoldCn.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-BoldCn.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-BoldCn.otf") format("opentype");
}
@font-face {
  font-family: "Minion Pro Condensed";
  font-weight: bold;
  font-style: italic;
  font-display: swap;
  src: url("../assets/fonts/minion-pro/MinionPro-BoldCnIt.woff2") format("woff2"),
       url("../assets/fonts/minion-pro/MinionPro-BoldCnIt.woff") format("woff"),
       url("../assets/fonts/minion-pro/MinionPro-BoldCnIt.otf") format("opentype");
}
/* Arvo */
@font-face {
  font-family: "Arvo";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/arvo/Arvo-Regular.woff2") format("woff2"),
       url("../assets/fonts/arvo/Arvo-Regular.woff") format("woff"),
       url("../assets/fonts/arvo/Arvo-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Arvo";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/arvo/Arvo-Bold.woff2") format("woff2"),
       url("../assets/fonts/arvo/Arvo-Bold.woff") format("woff"),
       url("../assets/fonts/arvo/Arvo-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Arvo";
  font-weight: normal;
  font-style: italic;
  font-display: swap;
  src: url("../assets/fonts/arvo/Arvo-Italic.woff2") format("woff2"),
       url("../assets/fonts/arvo/Arvo-Italic.woff") format("woff"),
       url("../assets/fonts/arvo/Arvo-Italic.otf") format("opentype");
}
@font-face {
  font-family: "Arvo";
  font-weight: bold;
  font-style: italic;
  font-display: swap;
  src: url("../assets/fonts/arvo/Arvo-BoldItalic.woff2") format("woff2"),
       url("../assets/fonts/arvo/Arvo-BoldItalic.woff") format("woff"),
       url("../assets/fonts/arvo/Arvo-BoldItalic.otf") format("opentype");
}
/* Rockwell */
@font-face {
  font-family: "Rockwell";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/rockwell/Rockwell-Regular.woff2") format("woff2"),
       url("../assets/fonts/rockwell/Rockwell-Regular.woff") format("woff"),
       url("../assets/fonts/rockwell/Rockwell-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Rockwell";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/rockwell/Rockwell-Bold.woff2") format("woff2"),
       url("../assets/fonts/rockwell/Rockwell-Bold.woff") format("woff"),
       url("../assets/fonts/rockwell/Rockwell-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Rockwell";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/rockwell/Rockwell-ExtraBold.woff2") format("woff2"),
       url("../assets/fonts/rockwell/Rockwell-ExtraBold.woff") format("woff"),
       url("../assets/fonts/rockwell/Rockwell-ExtraBold.otf") format("opentype");
}
@font-face {
  font-family: "Bernard MT Condensed";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/bernard-mt-condensed/Bernard-MT-Condensed.woff2") format("woff2"),
       url("../assets/fonts/bernard-mt-condensed/Bernard-MT-Condensed.woff") format("woff");
}

/* OVERRIDE AND STYLE CUSTOM GOOGLE SEARCH BOX STYLES */
nav #top-nav #search {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 20%;
  margin: 0 4%;
  transition: none;
}
@media (max-width: 991px) {
  nav #top-nav #search {
    position: absolute;
    margin: 0;
    top: 0;
    right:0px;;
    width: 146px;
    transition: top 1s;
    z-index: -1;
  }
}
nav #top-nav #search.drop {
  top: 58px;
}
#___gcse_0 {
  line-height: 1.0;
  text-align: left;
}
#___gcse_0 ::-moz-selection {
  color: #fff;
  background: #212529;
  text-shadow: none;
}
#___gcse_0 ::selection {
  color: #fff;
  background: #212529;
  text-shadow: none;
}
#___gcse_0 ::-webkit-input-placeholder {
  color: #fff;
}
#___gcse_0 ::-moz-placeholder {
  color: #fff;
}
#___gcse_0 :-ms-input-placeholder {
  color: #fff;
}
#___gcse_0 :-moz-placeholder {
  color: #fff;
}
#___gcse_0 .gsc-adBlock, #___gcse_0 .gsc-adBlockInvisible {
  height: 0px !important;
  width: 0px !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0px !important;
  padding: 0px !important;
}
#___gcse_0 .gsc-search-button {
  padding: 6px 6px 6px 0px !important; }
  @media (max-width: 991px) {
    #___gcse_0 .gsc-search-button {
      display: none !important; }
}
#___gcse_0 .gsc-input-box {
  border: none !important;
}
#___gcse_0 .gsc-thumbnail-inside, #___gcse_0 .gsc-url-top {
  padding-left: 0px !important;
}
#___gcse_0 .gsc-search-box-tools .gsc-search-box .gsc-input {
  padding-right: 0px !important;
}
#___gcse_0 .gsc-search-box {
  margin: 0px !important;
  padding: 0px !important;
}
#___gcse_0 .gsc-results-wrapper-overlay {
  top: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
  right: 0px !important; }
  @media (max-width: 767px) {
    #___gcse_0 .gsc-results-wrapper-overlay {
      width: 80% !important; }
}
@media (max-width: 991px) {
  #___gcse_0 .gsc-control-cse {
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
    border: none;
    padding: 0px !important; } }
@media (min-width: 992px) {
  #___gcse_0 .gsc-control-cse {
    border-color: lightgrey !important;
    padding: 0px !important;
    border-radius: 5px; }
}
@media (max-width: 991px) {
  #___gcse_0 .gsc-input-box, #___gcse_0 .gsc-search-box-tools .gsc-search-box input.gsc-input {
    background-color: #E7B2B2 !important;
  }
}
