body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
html {
  height: -webkit-fill-available;
}

body
{
    overflow-x: hidden;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #FFFFFF;
    border-left: 8px solid #222222;
    border-right: 8px solid #222222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

:root {
  --vh: 1vh;
}

/*OnScroll.js*/
[data-scroll].is-outside {
	transition: none;
	animation: none;
}

a, p, h1, h2, h3, h4, h5
{
  color: #222222;
  font-weight:bold;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.mulder
{
  transform: translateY(10em);
  opacity: 0;
}
section, div, footer, li
{
   -webkit-transition: all ease-out 0.6s;
   -moz-transition: all ease-out 0.6s;
   -o-transition: all ease-out 0.6s;
   transition: all ease-out 0.6;
}

section:first-of-type
{
  -webkit-animation: ease-out 0.6s slideInFromBottom;
   -moz-animation: ease-out 0.6s slideInFromBottom;
   -o-animation: ease-out 0.6s slideInFromBottom;
   animation: ease-out 0.6s slideInFromBottom;
}

#hamWrap
{
  -webkit-animation: ease-out 0.6s slideInFromRight;
   -moz-animation: ease-out 0.6s slideInFromRight;
   -o-animation: ease-out 0.6s slideInFromRight;
   animation: ease-out 0.6s slideInFromRight;
}


 h1, h2, p, hr, img, nav, #hamOne, #hamTwo, #hamThree, #hamSplash, #fog, #splashWidth
{
   -webkit-transition: all ease-out 0.3s;
   -moz-transition: all ease-out 0.3s;
   -o-transition: all ease-out 0.3s;
   transition: all ease-out 0.3s;
}

@keyframes explode {
  0% {
    width:0;
    opacity: 0;
  }
  100% {
    width: 200px;
    opacity: 1;
  }
}

@keyframes explode2 {
  0% {
    height: 0;
    width:0;
    opacity: 0;
  }
  100% {
    width: 90vw;
    height: calc(var(--vh, 1vh) * 90);
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  80%{
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes colorIn {
  0% {

  }
  100% {
    height: 35px;
  }
}


a
{
    text-decoration: none;
}

a:visited
{
  color: inherit;
}
a:hover
{
    color: #802420;
}


hr
{
  border-top: thin solid #333;
}

ul, li, ol
{
    list-style: none;
}

.hidden
{
  display: none;
}

.logoWrap
{
  display: flex;
  justify-content: center;
  position: relative;
}

#logo
{
  width: 100px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  cursor: pointer;
  top:3px;
}

#fog
{
  left:0;
  top:0;
  position:fixed;
  z-index: 2;
  height: 100%;
  width:0;
  background-color: #ffffff;
  opacity: 0.8;
  padding: 0;
}

#splashWidth
{
  left:0;
  top:0;
  width: 0px;
  height: 100%;
  position: fixed;
  pointer-events: none;
  z-index: 3;
  background-color: #80241F;

}

#hamSplash
{
  opacity: 1;
  background-color: #ffffff;
  z-index: 3;
  position: absolute;
  width: 100%;
  left:0;
  top:0;
  margin: 0;
  overflow-x: hidden;
  padding-bottom: 100px;
  box-shadow: 0 20px 12px -7px  #591915;
}

#mobileNav
{
  width: 90%;
  padding:0;
  margin:0 auto;
  margin-top: 130px;
}

#mobileNav li
{
  display: flex;
  align-items: left;
  justify-content: left;
}

.mobileNavMain
{
  pointer-events: all;
  border-bottom: thin solid lightgrey;
  padding-top: 20px;
  padding-bottom: 20px;
}

.mobileNavMain a
{
  font-size: 1rem;
  font-weight: bold;
}

#navAbout img
{
  width:15px;
  height: auto;
  margin-left:10px;
  position: relative;
}

.navChevUp
{
  transform: rotateZ(180deg);

}

.mobileNavMini
{
  background-color: #ffffff;
  pointer-events: all;
  border-bottom: thin solid #e5e5e5;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: all ease-out 0.2s;
  -moz-transition: all ease-out 0.2s;
  -o-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}

.mobileNavMini a
{
  font-size: 1rem;
  font-weight: 500;
  color:#222222;
}

.aboutNavHidden
{
  height:0;
  padding:0;
  overflow: hidden;
  border:none;
  -webkit-transition: all ease-out 0.2s;
  -moz-transition: all ease-out 0.2s;
  -o-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}

#searchWrap
{
  width:250px;
  display: none;
  position: relative;
}

.search
{
pointer-events: all;
overflow: hidden;
height:40px;
padding-top: 5px;
display: flex;
align-items: center;
justify-content: center;
}

.search input
{
  font-size: 1rem;
  font-weight: bold;
  border:none;
  -webkit-appearance: none;
  border-bottom: thin solid lightgrey;
  padding-bottom: 5px;
  width: 160px;
  -webkit-transition: width ease-out 0.3s;
  -moz-transition: width ease-out 0.3s;
  -o-transition: width ease-out 0.3s;
  transition: width ease-out 0.3s;
}

.search input:focus
{
  width: 100%;
  -webkit-transition: width ease-out 0.3s;
  -moz-transition: width ease-out 0.3s;
  -o-transition: width ease-out 0.3s;
  transition: width ease-out 0.3s;
}


.search input::-webkit-search-cancel-button
{
    -webkit-appearance: none;
    background-image: url("../icons/cancel1.svg");
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.search input:placeholder-shown + button
{
  display: inline-block;
}

.search button
{
  background: none;
  border: none;
  display: none;
  position: relative;
  bottom:5px;
  right:50px;
  width: 0;
}

.search button img
{
  width: 15px;
  height: auto;
}

.livesearch
{
  position: absolute;
  z-index: 2;
  background-color: #ffffff;
  display: none;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  pointer-events: all;
}


.livesearch ul
{
  padding-left: 0;
  margin-bottom: 0;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.livesearch ul li
{
  border-bottom: 1px solid #A5ACB2;
  width: 100%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.livesearch ul li a
{
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}


.searchMobile
{
  max-height: 40vh;
  overflow-y: scroll;
  top:160px;
  width:400px;
  max-width: 90%;
  overflow-x: hidden;
  transform: translateY(20px);
}
.searchMobile ul
{
width: 100%;
}

.searchMobile ul li
{
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: left;
}

.searchMobile ul li a
{
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: left;
}




#fullWrap
{
  background-color: #ffffff;
  width: 100%;
  height: 100%;
}

#topBar
{
  height: 40px;
}

#redBar
{
  background-color: #802420;
  border-left: 8px solid #802420;
  border-right: 8px solid #802420;
  height: 40px;
  position: absolute;
  left:12px;
  top:0;
  width: 100%;
}

#redBar p
{
    color: #ffffff;
    font-size: 0.8em;
    text-align: center;
    font-weight: normal;
}

#redBar a
{
  text-decoration: underline;
  color:#ffffff;
  font-weight: normal;
}

#hamNav
{
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0px 8px 5px -5px #b8b8b8;
}

#navWrap
{
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
}

#deskNav
{
  float: right;
}

#searchCol
{
  float:left;
}

#hamCont
{
  float: right;
  margin-top:20px;
}


#deskNav
{
  display: none;
  justify-content: flex-end;
  padding-left:0;
  margin-bottom: 0;
  height: 100%;
}
#deskNav li
{
  display: inline-flex;
  white-space: nowrap;
  height:60px;
  width: auto;
  position: relative;
}

#deskNav li:hover > .deskLink
{
  color: #ffffff;
}

#deskNav li:hover > .tab
{
  -webkit-animation: ease-out 0.2s colorIn;
   -moz-animation: ease-out 0.2s colorIn;
   -o-animation: ease-out 0.2s colorIn;
   animation: ease-out 0.2s colorIn;
   animation-fill-mode: forwards;
}


#deskNav li:not(:hover) > .tab
{
  -webkit-animation: ease-out 0.2s colorOut;
   -moz-animation: ease-out 0.2s colorOut;
   -o-animation: ease-out 0.2s colorOut;
   animation: ease-out 0.2s colorOut;
   animation-fill-mode: forwards;
}

.tab
{
  height: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom:0;
}

.deskHome .tab
{
  background-color: #802420;
}

.deskWork .tab
{
  background-color: #496D61;
}

.dropdown .tab
{
  background-color: #802420;
}

.deskCont .tab
{
  background-color: #D67C1E;
}

.deskLink
{
  font-size: 0.9rem;
  padding-left:0.4em;
  padding-right:0.4em;
  margin-top:30px;
  position: relative;
  z-index: 2;
}

#hamWrap
{
  height: 30px;
  width: 40px;
  padding: 3px;
  z-index: 3;
  cursor: pointer;
  float: right;
}

.hamRel
{
  position: relative;
  bottom:10px;
}

.hamFixed
{
  position: fixed;
  top:50px;
  right:20px;
}

#hamWrap div
{
    background-color: #878484;
    height: 4px;
    width: 35px;
    margin-top: 5px;
}

#hamWrap div:first-child
{
  background-color: #D67C1E;
}

#hamWrap div:nth-child(2)
{
 background-color: #496D61;
}

#hamWrap div:last-child
{
  background-color: #802420;
}

#redImage::before
  {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: url("../images/ourStory.jpg") no-repeat center top fixed;
    filter: brightness(60%);
  }


#redImage
{
  position: relative;
  height:600px;
  width: 100%;
}


#redImage h2
{
  color:#ffffff;
  text-align: center;
  position: absolute;
  font-size: 15vw;
  margin:0 auto;
  top: 50%;
 -ms-transform: translateY(-50%);
 transform: translateY(-50%);
}
#redImage h2 span
{
  font-size: 25vw;
}

#imageSection
{
  padding-bottom: 15px;
  overflow-x: hidden;
}

#introSection
{
  padding-top: 180px;
  padding-bottom: 180px;
  border-top: thin solid lightgrey;
  border-bottom: thin solid lightgrey;
}

#redText
{
  text-align: center;
}

#redText p
{
  font-weight: normal;
}

#redText h2
{
  margin-bottom: 30px;
}

#favSection
{
  margin-top: 80px;
  padding-bottom:80px;
  border-bottom: thin solid lightgrey;
}

.secHead
{
  margin-bottom: 15px;
}

.viewBtn
{
  float: right;
  margin-bottom: 6px;
  padding-bottom: 1px;
}

.viewBtn:hover
{
  border-bottom: 1px solid #802420;
  margin-bottom: 5px;
}

.redBlocks
{
  height: 100px;
  padding-right: 5px;
  padding-left: 5px;
  margin-bottom: 10px;
}

.redBlockInner
{
  width: 100%;
  height: 100%;
  background-size: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: background-size ease-out 1s;
  -moz-transition: background-size ease-out 1s;
  -o-transition: background-size ease-out 1s;
  transition: all ease-out 1s;
  cursor: pointer;
}

.redBlockInner h4
{
  background-color: lightgrey;
  display: inline-flex;
  opacity: 0.8;
  padding:10px;
  margin-top: 10px;
  -webkit-transition: transform ease-out 0.2s;
  -moz-transition: transform ease-out 0.2s;
  -o-transition: transform ease-out 0.2s;
  transition: transform ease-out 0.2s;
}

.redBlockInner:hover
{
  background-size: 175%;
  filter: brightness(80%);
  -webkit-transition: background-size ease-out 1s;
  -moz-transition: background-size ease-out 1s;
  -o-transition: background-size ease-out 1s;
  transition: background-size ease-out 1s;
}

.redBlockInner:hover > h4
{
  opacity: 0.9;
  background-color: #ffffff;
  transform: scale(1.1,1.1);
  -webkit-transition: transform ease-out 0.2s;
  -moz-transition: transform ease-out 0.2s;
  -o-transition: transform ease-out 0.2s;
  transition: transform ease-out 0.2s;
}

#redPies
{
  background-image: url("../images/phPies.jpg");
  background-position: center;
}
#redPig
{
  background-image: url("../images/phPig.jpeg");
  background-position: center;
}
#redPor
{
  background-image: url("../images/phPorc.jpg");
  background-position: center;
}
#redSaus
{
  background-image: url("../images/phSaus.jpg");
  background-position: center;
}
#redLas
{
  background-image: url("../images/phLas.jpg");
  background-position: center;
}
#redWork
{
  background-image: url("../images/phWork.jpg");
  background-position: center;
}

#caroSection
{
  margin-top:150px;
  padding-bottom: 150px;
}

#caroWrap
{
    height: 380px;
    position: relative;
    width: 100%;
}

.caroText
{
  position: relative;
  z-index: 1;
  margin:0 auto;
  color: #ffffff;
  text-align: center;
  top:calc(100vw/5);
  font-size: 0.8rem;
}

.caroTextBold
{
  font-weight: bold;
  font-size: 1.3rem;
}


#caroViewport
{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  pointer-events: none;
  padding-bottom: 0;
  margin:0;
}
/*Remove scrollbar*/
#caroViewport {
  box-sizing: border-box;
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
}

#caroViewport::-webkit-scrollbar {
  width: 0;
}

#caroViewport::-webkit-scrollbar-track {
  background: transparent;
}

#caroViewport::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

#caroViewport {
  -ms-overflow-style: none;
}

.carousel
{
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  background-color: #f99;
  counter-increment: item;
}

#caroWrap a
{
  position: absolute;
  z-index: 2;
  top:45%;
  width: 30px;
  height: auto;
}
#caroNext
{
    right:0;
}
#caroPrev
{
  left:0;
}

#caroNext img, #caroPrev img
{
  height:30px;
  width: auto;
}

#caroSlide1::before
{
background: url("../images/slide1Mob.jpg") no-repeat center center;
content: "";
position: absolute;
width: 100%;
height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: brightness(40%);
}

#caroSlide2::before
{
background: url("../images/slide2Mob.jpg") no-repeat center center;
content: "";
position: absolute;
width: 100%;
height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: brightness(40%);
}

#caroSlide3::before
{
background: url("../images/slide3Mob.jpg") no-repeat center center;
content: "";
position: absolute;
width: 100%;
height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: brightness(50%);
}

#socSection
{
  padding-top:80px;
  padding-bottom:80px;
  border-top: thin solid lightgrey;
  border-bottom: thin solid lightgrey;
}

#elfSightCover
{
  height:1px;
  position: relative;
  bottom: 40px;
}

#elfSightCover div
{
  background-color: #FFFFFF;
  height: 35px;
  width: 100%;
  position: absolute;
  top:0;
  left:0;
  z-index: 100000000000;
}


#locSection
{
  margin-top: 80px;
  margin-bottom:80px;
}

#locBox
{
  background-color: #222222;
  height:420px;
  padding-top:40px;
}

#locBox ul
{
  padding-left: 0;
}

#locBox ul li p a
{
  color: #ffffff;
}

#locBox ul li h3
{
  color:#ffffff;
  text-align: left;
}

#locBox ul li p
{
  color:#ffffff;
  font-size: 0.8rem;
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
}

#locBox h3
{
  margin-bottom:20px;
}

#locDir
{
  margin: 0 auto;
  background-color: #80241F;
  color:#ffffff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
  border-bottom: 0px solid #bd6d1a;
  -webkit-transition: background-color ease-out 0.1s, transform ease-out 0.1s;
  -moz-transition: background-color ease-out 0.1s, transform ease-out 0.1s;
  -o-transition: background-color ease-out 0.1s, transform ease-out 0.1s;
  transition: background-color ease-out 0.1s, transform ease-out 0.1s;
}

#locDir h4
{
  color:  #ffffff;
}


#locDir:hover
{
  background-color: #5e1a25;
  -webkit-transition: background-color ease-out 0.1s, transform ease-out 0.1s;
  -moz-transition: background-color ease-out 0.1s, transform ease-out 0.1s;
  -o-transition: background-color ease-out 0.1s, transform ease-out 0.1s;
  transition: background-color ease-out 0.1s, transform ease-out 0.1s;

}

#locMap
{
  background-color: lightgrey;
  height:420px;
  overflow: hidden;
}

#bigFooter
{
  background-color: #222222;
}

#topFooter
{
  padding-top: 20px;
  margin-bottom: 80px;
}

#topFooter div
{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#topFooter div img
{
  width: 20px;
  transform: rotateZ(180deg);
}

#topFooter div a
{
  color: #FFFFFF;
  padding-top:10px;
}

#topFooter div
{
  cursor:pointer;
}

#topFooter div:hover > img
{
  transform: translateY(-5px) rotateZ(180deg);
}

#footerLinks
{
  margin-top: 30px;
}

.linkBlock
{
  height: 220px;
}

.linkBlock ul li
{
  text-align: center;
  margin-top: 20px;
}

.linkBlock ul li a, .linkBlock ul li p, .linkBlock ul li h5
{
  color:#ffffff;
}

.linkBlock ul
{
  padding: 0;
  margin: 0;
}

.offLink, #firstVl
{
  margin-top: 250px;
}

.offLink:last-child
{
  font-size: 0.7rem;
}

#middleLink
{
  margin-top: 30px;
  max-width: 400px;
  position: absolute;
}

#homeEmail
{
  height: 40px;
  width: 65%;
  padding: 10px;
  margin: 0;
}

#homeSubmit
{
  background-color: #802420;
  text-align: center;
  height: 40px;
  width:35%;
  display: flex;
  float: right;
}

#homeSubmit input
{
  border: none;
  background-color: #802420;
  color: #ffffff;
  font-weight: bold;
  margin: 0 auto;
  font-size: 0.8rem;
}

#footCall
{
 margin:0 auto;
 height: 30px;
 margin-top: 20px;
}

#footCall div div img
{
  width: 25px;
}

#footCall div div
{
  cursor: pointer;
}

#footCall div div:hover > img
{
  transform: rotateZ(25deg);
}

#footCall div div p
{
  color: #ffffff;
  font-size: 0.8rem;
  margin-top:2px;
  padding-left: 10px;
  display: inline-flex;
}

#callLink
{
  color:#ffffff;
}

#footCall div div
{
  margin:0 auto;
  width:200px;
}


.socIcons
{
  width: 30px;
  margin: 0 auto;
  margin: 5px;
}

#facebookSVG:hover > path
{
  fill:#3B5998;
  -webkit-transition: fill ease-out 0.2s;
  -moz-transition: fill ease-out 0.2s;
  -o-transition: fill ease-out 0.2s;
  transition: fill ease-out 0.2s;
}



#instagramSVG:hover > path
{
  fill: url(#brand-gradient);
  -webkit-transition: fill ease-out 0.2s;
  -moz-transition: fill ease-out 0.2s;
  -o-transition: fill ease-out 0.2s;
  transition: fill ease-out 0.2s;
}

svg path
{
  -webkit-transition: fill ease-out 0.2s;
  -moz-transition: fill ease-out 0.2s;
  -o-transition: fill ease-out 0.2s;
  transition: fill ease-out 0.2s;
}



#footSoc div div
{
  width:85px;
  margin: 0 auto;
  margin-top: 15px;
}


.vl {
  background-color: grey;
  width: 1px;
  height: 200px;
  padding: 0;
  margin: 0 auto;
}

#secondVl
{
  display: none;
}

#finalFooter
{
  text-align: center;
  margin-top: 100px;
}

#finalFooter div p
{
  color:#ffffff;
  font-size: 0.8rem;
}

/*Custom Query*/
@media screen and (min-width: 465px) {
  #redBar
  {
    height: 20px;
  }
  #topBar
  {
    height: 20px;
  }
  #finalFooter
  {
    text-align: center;
    margin-top: 80px;
  }
  .hamFixed
  {
    position: fixed;
    top:30px;
    right:45px;
  }
}
@media screen and (min-width: 768px) {
  #socialWrap ul li:last-child
  {
    display: inline-flex;
  }
  #middleLink
  {
    position: relative;
  }
  #secondVl
  {
    display: block;
  }
  .offLink, #firstVl
  {
    margin-top: 0;
  }
}
/*Custom Query*/
@media screen and (min-width: 300px) {
  #logo
  {
    width: 150px;
  }
}

/*Small Screen Query*/
@media screen and (min-width: 576px) {
  #logo
  {
    width: 200px;
  }
  .redBlocks
  {
    height: 200px;
  }
  .redBlockInner h4
  {
    padding:20px;
    margin-top: 25px;
  }
  .caroText
  {
    top:25%;
    font-size: 1rem;
  }
  .caroTextBold
  {
    font-size: 1.5rem
  }

  #locBox ul li p
  {
    text-align: left;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #locBox h3
  {
    text-align: left;
  }
  #locBox ul
  {
    padding-left: 30px;
  }
  #locDir
  {
    margin: 1px;
  }
  .offLink:last-child
  {
    font-size: 0.9rem;
  }
  #redImage::before
  {
    background: url("../images/ourStory.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/ourStory.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/ourStory.jpg', sizingMethod='scale')";
  }

}




/*Medium Screen Query*/
@media screen and (min-width: 720px) {
  #fog
  {
    display: block;
  }
  #redImage
  {
    height: 600px;
  }
  #redBar p
  {
    text-align: left;
  }

  #mobileNav li a
  {
    font-size: 1.2rem;
  }
  #mobileNav li input
  {
    font-size: 1.2rem;
  }
  #mobileNav li button img
  {
    width: 20px;
  }
  .search button
  {
    bottom:5px;
    right:30px;
  }
  .search input::-webkit-search-cancel-button
  {
      height: 20px;
      width: 20px;
  }
  #mobileNav li
  {
    display: flex;
    align-items: left;
    justify-content:flex-start;
  }
  .mobileNavMini a
  {
    padding-left: 10px;
  }
  #redImage h2
  {
    font-size: 5rem;
    top: 50%;
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
   padding-bottom: 50px;
   padding-top: 20px;
  }
  #redImage h2 span
  {
    font-size: 8rem;
  }
  .caroText
  {
    top:30%;
  }
  #caroSlide1::before
  {
    background: url("../images/slide1.jpg") no-repeat center center;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: brightness(40%);
  }
  #caroSlide2::before
  {
    background: url("../images/slide2.jpg") no-repeat center center;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: brightness(40%);
  }
  #caroSlide3::before
  {
    background: url("../images/slide3.jpg") no-repeat center center;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: brightness(40%);
  }
}

/*Search Bars*/
@media screen and (min-width: 960px) {
  .search
  {
    width:100%;
    margin-top: 20px;
  }

  .search input
  {
    width: 37%;
    font-size: 0.9rem;
    border-bottom: none;
    -webkit-transition: width ease-out 0.3s;
    -moz-transition: width ease-out 0.3s;
    -o-transition: width ease-out 0.3s;
    transition: width ease-out 0.3s;
  }

  .search input:focus
  {
    width: 100%;
    border-bottom: thin solid darkgrey;
    -webkit-transition: width ease-out 0.3s;
    -moz-transition: width ease-out 0.3s;
    -o-transition: width ease-out 0.3s;
    transition: width ease-out 0.3s;
  }

  .search button img
  {
    width:13px;
    padding-bottom: 5px;
  }
  .search input::-webkit-search-cancel-button
  {
      height: 13px;
      width: 13px;
  }
}
/*Custom Query*/
@media screen and (min-width: 1170px) {
  .deskLink
  {
    padding-left: 1em;
    padding-right: 1em;
  }
}


/*Large Screen Query*/
@media screen and (min-width: 960px) {
  #hamCont
  {
    display: none;
  }
  #deskNav
  {
    display: flex;
  }

  #searchWrap
  {
    display: inline-block;
  }
  .search button
  {
    bottom:2px;
    right:30px;
  }
}



li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top:60px;
  left:-30px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a {
  border-bottom: thin solid #e5e5e5;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
  
}

#finalFooter a
{
    color:#fff;
    transition: all 0.3s;
    font-size: 13px;
}

#finalFooter div:last-of-type
{
    height:60px;
}

#finalFooter a:hover
{
    color:#80241F;
    transition: all 0.3s;
}


