<style>

html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
  font-size: 1.0rem;
  font-family: Garamond, serif;
}

* {
margin: 0;
padding: 0;
}

body {
background-color: #000000;
}

p {
  font-size: 1.5rem;
  margin:25px 20px 0px 20px;
}


a {color: #966F33; text-decoration: underline;}
a:visited {color: #966F33; text-decoration: none;}
a:hover {color: #f9be62;text-decoration: underline;}
a:active {color: #f9be62; text-decoration: none;}


h1 {
color: #ffffff;
font-size: 2.25rem;
font-weight: bold;
margin-top: 10px;
margin-bottom: 1px;
margin-left: 5px;
margin-right: 5px;
/* offset-x | offset-y | blur-radius | color */
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


h2 {
color: #000000;
font-size: 2.75rem;
font-weight: bold;
margin-top: 10px;
margin-bottom: 1px;
margin-left: 5px;
margin-right: 5px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}




hr {
  height: 20px;
  border: 0px;
  margin: 0;
  box-shadow: 0 10px 10px -10px #333 inset;
  @media (max-width: 768px) 
  {
	  hr {display: none;}
  }
}	



.button-dark {
  position: relative;
  margin: auto;
  padding: 10px 30px;
  background-color: #000000;
  border: 1px solid #deceb8;
  border-radius:5px;
  font-size: 1.25rem;
  color: #deceb8;
}

.button-dark:hover {
      background-color: #966F33;
	  color: #ffffff;
	  border: none;
      transition: 0.7s;
	  cursor: pointer;
  }
  
.button-dark:active {
    background-color: #e3a06d;
}



/* NAVBAR STYLING STARTS */

 /* mobile nav menu styling */
 
header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
}
#menuspace {
  font-size: inherit;
  margin: 0;
}

#menuToggle {
  display: none;

}

label {
  cursor: pointer; 
  font-size: 1.2rem;
  color: white;
  background: black;
  padding: 8px;
  z-index: 100000;

}


nav {
    position: absolute;
    top: -100vh;
    left: 0;
	height: 85vh;
    width: 100vw;
    transition: 0.5s;
	background-color: black;
    color: #ffffff;
    text-align: right;
    z-index: 100000;
    border-bottom-right-radius: 50px 50px;
    border-bottom-left-radius: 50px 50px;
}

 /* mobile landscape styling */
@media screen and (orientation:landscape)
and (min-device-width: 319px) 
and (max-device-width: 920px) {
nav {
    position: absolute;
    top: -300vh;
    left: 0;
	height: 175vh;
    width: 100vw;
    transition: 0.5s;
	background-color: black;
    color: #ffffff;
    text-align: right;
    z-index: 999;
  }
  
}




nav label {
  line-height: 3;
  margin-right: 1rem;
  font-size: 1.2rem;
}

ul {
  list-style: none;
  margin: 50px 0px 0px 0px;
  text-align: center;
  font-size: 1.2rem;
}


ul a:link {
  color: white;
  text-decoration: none;
  line-height: 2.5rem;
}

ul a:visited {
  color: white;
  text-decoration: none;
  line-height: 3rem;
}

ul a:hover {
   color: white;
   text-decoration: underline;
 }
  
#mobilelogo {
    position: absolute;
	left: 0px;
	top: 0px;
	height: 115px;
  }
  
#logomobilemenu {
	height: 115px;
	width: 115px;
  }


#mobiletext {
    position: relative;
    margin-top: 50px;	
    margin-left: 15px;	
	text-align: left;
	color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
  }

  
#menuToggle:checked + label + nav {
    top: 0;
}




 /* desktop nav menu styling */
 
@media (min-width: 1024px) {
  header > label,
  nav label {display: none;}
  
#mobilelogo {display: none;}
  
#mobiletext {display: none;}


 nav {
    background-color: black;
    display: flex;
    height: 50px;
    width: auto;  
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    transition: none;
	border: 0px solid red;
    border-bottom-right-radius: 1px 1px;
    border-bottom-left-radius: 1px 1px;
  }
  
  ul {
    display: flex;
	margin: 10px;
  }
  
   ul li{
  padding: 5px 14px;
  margin-right: 10px;
  background-color: black;
  border-radius: 5px;
   }
   
 ul li:hover {
  background-color: #966F33;
}
  
  ul a:link {
  padding: 8px 1px;
  color: white;
  text-decoration: none;
  line-height: 1rem;

}

  ul a:visited {
  color: white;
  text-decoration: none;
 }

 ul a:hover {
  color: white;
  text-decoration: none;
}

  ul a:active {
  color: white;
  text-decoration: none;
}


}

/* NAVBAR STYLING ENDS */








/* Homepage Image Fade */
.crossfade > figure {
  animation: imageAnimation 30s linear infinite 0s;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  color: #3C4142;
  height: 100vh;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 65px;
  left: 0px;
  margin: 0px;
  z-index: 1;
  overflow: hidden;
}

.crossfade > figure:nth-child(1) {
  background-image: url('images/Home1.png');
}
.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('images/Home2.png');
}
.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('images/Home3.png');
}
.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('images/Home4.png');
}
.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('images/Home5.png');
}
.crossfade > figure:nth-child(6) {
  animation-delay: 30s;
  background-image: url('images/Home6.png');
}
@media only screen and (max-device-width: 480px){
.crossfade > figure:nth-child(1) {
  background-image: url('images/Home1.png');
}
.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('images/Home2vert.png');
}
.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('images/Home3vert.png');
}
.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('images/Home4vert.png');
}
.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('images/Home5vert.png');
}
.crossfade > figure:nth-child(6) {
  animation-delay: 30s;
  background-image: url('images/Home6vertpng');
}
}



@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  8% {
    animation-timing-function: ease-out;
    opacity: 1;
  }
  17% {
    opacity: 1
  }
  25% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}






/* Create two equal columns that float next to each other for item section on home page*/
.columnITM {
  float: left;
  width: 45%;
  padding:5px;
  border: 0px solid black;
  text-align: center;
  margin-left: 15px;
  }

/* Clear floats after the columns */
.rowITM:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
@media only screen and (max-device-width: 700px){
  .columnITM {
    width: 90%;
	text-align: center;
  }
}  







/* Create three equal columns that float next to each other for reviews on home page section */
.columnRVW {
  float: left;
  width: 30%;
  padding:15px 1px;
  border: 1px solid #494949;
  border-radius: 15px;
  background: #ffffff;
  text-align: center;
  margin-left: 15px;
  margin-bottom: 10px;
  min-height: 400px;
  }

/* Clear floats after the columns */
.rowRVW:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
@media only screen and (max-device-width: 700px){
  .columnRVW {
    width: 90%;
	text-align: center;
  }
}  





#secttop {margin:0px; padding:0px; height: 100vh; overflow: hidden;}
#sectstock {margin:0px; width:100%; background-color: #f4f4f4;}
#sectbio {margin:0px; width:100%; background-color: #494949;}
#sectreviews {margin:0px; width:100%; background-color: #f4f4f4}


@media only screen and (max-device-width: 480px){
#logo  {position: absolute; width: 280px; margin-top: 0px; margin-left: 0px; z-index: 50; border: 0px solid white;}
#shadow  {position: absolute; width: 350px; margin-top: 0px; margin-left: 0px; z-index: 30; border: 0px solid white;}
#shadowpages  {position: absolute; width: 275px; margin-top: 0px; margin-left: 0px; z-index: 30; border: 0px;}
#homeimage  {position: relative; height: 100vh; object-fit: contain; object-position: -500px -50px; margin-top: 0px;}
.centeredtxt {position: absolute; bottom:100px; left:50%; transform: translate(-50%, -50%); z-index: 10; white-space: nowrap; background-color: rgba(0, 0, 0, 0.7); border-radius:5px; padding: 20px;}
h3 {color: #ffffff; font-size: 1.5rem; letter-spacing: 0.1em; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); padding: 0px; margin: 15px;}
h4 {color: #ffffff; font-size: 1.0rem; letter-spacing: 0.1em; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); padding: 0px; margin: 15px;}
#curve {width: 100%; margin-top: -2px;}
#itemicon {height:170px; border:1 px solid white; border-radius: 5%;}
#fivestars {height: 50px;}
#sectform {margin:0px; width:100%; background-color: #494949;}
#socialIcon {width: 30px; margin: 20px; border-radius: 5%;}
#socialIconLG {width: 50px; margin: 20px; border-radius: 5%;}
#footerlogo {width: 150px; margin: 10px;}
}

/* Media Query for low resolution  Tablets, Ipads, iphones landscape mode, caw ipad*/
@media only screen and (min-device-width: 481px) and (max-device-width: 768px){
#logo  {position: absolute; width: 400px; margin-top: 0px; margin-left: 0px; z-index:50; border: 0px solid white;}
#shadow  {position: absolute; width: 450px; margin-top: 0px; margin-left: 0px; z-index: 30; border: 0px solid white;}
#shadowpages  {position: absolute; width: 350px; margin-top: 0px; margin-left: 0px; z-index: 30; border: 0px;}
#homeimage  {position: relative; height: 100vh; object-fit: contain; object-position: -350px -50px; margin-top: 0px;}
.centeredtxt {position: absolute; bottom:80px; left:50%; transform: translate(-50%, -50%); z-index: 10; white-space: nowrap; background-color: rgba(0, 0, 0, 0.7); border-radius:5px; padding: 20px;}
h3 {color: #ffffff; font-size:2.5rem; letter-spacing: 0.1em; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); padding: 0px; margin: 15px;}
h4 {color: #ffffff; font-size: 1.5rem; letter-spacing: 0.1em; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); padding: 0px; margin: 15px;}
#curve {width: 100%; margin-top: -2px;}
#itemicon {height: 180px; border:1 px solid white; border-radius: 5%;}
#fivestars {height: 30px;}
#sectform {margin:0px; width:100%; height: 750px; background-color: #494949;}
#socialIcon {width: 30px; margin: 20px; border-radius: 5%;}
#socialIconLG {width: 30px; margin: 20px; border-radius: 5%;}
#footerlogo {width: 150px; margin: 10px;}
}

/* Media Query for Tablets Ipads portrait mode */
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px){
#logo  {position: absolute; width: 400px; margin-top: 0px; margin-left: 0px; z-index: 950; border: 0px;}
#shadow  {position: absolute; width: 500px; margin-top: 0px; margin-left: 0px; z-index: 30; border:0px solid white;}
#shadowpages  {position: absolute; width: 400px; margin-top: 0px; margin-left: 0px; z-index: 30; border: 0px;}
#homeimage  {position: relative; height: 100vh; object-fit: cover; object-position: -200px -50px;}
.centeredtxt {position: absolute; bottom:60px; left:50%; transform: translate(-50%, -50%); z-index: 10; white-space: nowrap; background-color: rgba(0, 0, 0, 0.7); border-radius:5px; padding: 20px;}
h3 {color: #ffffff; font-size: 3.5rem; letter-spacing: 0.1em; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); padding: 0px; margin: 15px;}
h4 {color: #ffffff; font-size: 2.0rem; letter-spacing: 0.1em; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); padding: 0px; margin: 15px;}
#curve {width: 100%; margin-top: -2px;}
#itemicon {height: 200px; border:1 px solid white; border-radius: 5%;}
#fivestars {height: 40px;}
#sectform {margin:0px; width:100%; height: 750px; background-color: #494949;}
#socialIcon {width: 30px; margin: 20px; border-radius: 5%;}
#socialIconLG {width: 90px; margin: 20px; border-radius: 5%;}
#footerlogo {width: 150px; margin: 10px;}
}

/* Media Query for Laptops and Desktops */
 @media only screen  and (min-device-width: 1025px) and (max-device-width: 1200px){
#logo  {position: absolute; width: 500px; margin-top: 0px; margin-left: 0px; z-index: 999; border: 0x;}
#shadow  {position: absolute; width: 600px; margin-top: 0px; margin-left: 0px; z-index: 30; border: 0px solid white;}
#shadowpages  {position: absolute; width: 475px; margin-top: 0px; margin-left: 0px; z-index: 30; border: 0px;}
#homeimage  {position: relative; height: 100vh; object-fit: cover; object-position: -100px -50px;}
.centeredtxt {position: absolute; bottom:50px; left:50%; transform: translate(-50%, -50%); z-index: 10; white-space: nowrap; background-color: rgba(0, 0, 0, 0.7); border-radius:5px; padding: 20px;}
h3 {color: #ffffff; font-size: 4.0rem; letter-spacing: 0.1em; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); padding: 0px; margin: 15px;}
h4 {color: #ffffff; font-size: 2.0rem; letter-spacing: 0.1em; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); padding: 0px; margin: 15px;}
#curve {width: 100%; margin-top: -2px;}
#itemicon {height: 300px; border:1 px solid white; border-radius: 5%;}
#fivestars {height: 50px;}
#sectform {margin:0px; width:100%; height: 750px; background-color: #494949;}
#socialIcon {width: 30px; margin: 20px; border-radius: 5%;}
#socialIconLG {width: 100px; margin: 20px; border-radius: 5%;}
#footerlogo {width: 150px; margin: 10px;}
}

/* Media Query for Large screens caw screens */
 @media only screen and (min-device-width: 1201px){
#logo  {position: absolute; width: 600px; margin-top: 0px; margin-left: 0px; z-index: 999; border: 0px;}
#shadow  {position: absolute; width: 700px; margin-top: 0px; margin-left: 0px; z-index: 30;}
#shadowpages  {position: absolute; width: 550px; margin-top: 0px; margin-left: 0px; z-index: 30; border: 0px;}
#homeimage  {position: relative; height: 100vh; object-fit: fill; object-position: 0px -50px;}
.centeredtxt {position: absolute; bottom:40px; left:50%; transform: translate(-50%, -50%); z-index: 10; white-space: nowrap; background-color: rgba(0, 0, 0, 0.7); border-radius:5px; padding: 20px;}
h3 {color: #ffffff; font-size: 4.5rem; letter-spacing: 0.1em; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); padding: 0px; margin: 15px;}
h4 {color: #ffffff; font-size: 2.5rem; letter-spacing: 0.1em; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); padding: 0px; margin: 15px;}
#itemicon {height: 350px; border:1 px solid white; border-radius: 5%;}
#fivestars {height: 50px;}
#sectform {margin:0px; width:100%; padding: 0px; background-color: #494949;}
#socialIcon {width: 30px; margin: 20px; border-radius: 5%;}
#socialIconLG {width: 120px; margin: 20px; border-radius: 5%;}
#footerlogo {width: 150px; margin: 10px;}
#curve {width: 100%; margin-top: -1px; padding: 0px; border: 0px solid red;}
}



footer {
  position:relative;
  bottom:0;
  left:0;
  width:100%;
  height: 480px;
  text-align: center;
  padding: 0px;
  background-color: #ffffff;
  color: #3C4142;
  font-family: Garamond, serif;
  font-size: 0.9rem;
}


</style>