/*

If you use Safari, Internet Explorer, or any Apple product,

I don't care about you


I make no promises as to the quality of this code.


TABLE OF CONTENTS: 

1. RESET
2. DEV TEMPORARY
3. DOCUMENT UNIVERSAL
4. STYLINGS
5. HEADER
6. MENU, MENU ICON, MENU BUTTON
7. MENU RESIZING
8. SLIDERS
9. FOOTER

pallettes:
		black: rgb(58, 58, 58)
		dark grey: rgb(68, 68, 68)
		light grey: rgb(185, 185, 185)
		gold: rgb(254, 193, 7)
*/

/*RESET*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, main,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section main {
	display: block;
}
body {
	line-height: 1.7;
}
ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}

/*RESET*/


/*Document*/


html {

	height:100%;	
	overflow-x: hidden;
}

/*document*/

/*stylings*/

#tel {
	display: inline-block;
	padding: 9px 6px;
	font-size: 1em;
	margin: 6px 0;
}

body {
		background-image: url(../img/background.jpg); 
	background-attachment: fixed;
	background-repeat: no repeat;
	background-position:center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

}

main {
	width: 100%;
	min-width: 320px;
	margin: auto;
	background-color: rgb(185, 185, 185);
}

.grid {
	width:75vw;
	min-width: 320px;
	margin: auto;
	padding: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	border-top: 3px solid rgb(254, 193, 7);
	text-align: center;
}

.grid>section {
	margin: 30px;
}

section>img {
	width: auto;
	height: 26vh;
	margin: 10px;
}

#about {
	margin: 0 60px;
	text-align:center;
}

#btmlogo {
	width: 20vw;
	min-width: 150px;
	height: auto;
	display: block;
	margin: 2.5em auto;
	padding: 20px;
}

a {
	text-decoration: none;
	color: white;
	font-family: helvetica, arial, sans-serif;
	font-size: 1.2em;
	font-weight: 500;
}

h2 {
	font-family: bookman, helvetica, sans-serif; 
	color: rgb(254, 193, 7);
	font-size: 2em;
	font-weight: 500;
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

h3 {
	color: rgb(254, 193, 7);
	font-family: helvetica, arial, sans-serif;
	font-size:.7rem;
}

p {
	margin-top: 20px;
	font-family: helvetica, arial, sans-serif;
	font-size: 120%;
	
}
.emphasis {
	font-size: 1.2em;
	font-style: italic;
	font-weight: 600;
}

.emphasis:hover {
	line-height: 1.8;
	transition: all 1.2s;
}

h2:hover {
	letter-spacing: .8px;
	transition: all 1.2s;
}
.bodylist {
    font-family: helvetica, arial, sans-serif;
    font-size: 1.1em;
	font-weight: 600;
    
}

/*stylings*/

/* header */

#tophide {
	background-color: rgba(185, 185, 185, .75);
	text-align: center;
}

#banner {
	display:inline-block;
	width: 20%;
	min-width: 280px; 
	height: auto;
}

#address {
	font-size: small;
	position: relative;
	text-align: center;
	margin: -40px auto 0px;
	

}

.header {
	background-color: rgb(68, 68, 68);
	z-index: 3;
	padding: 0 7vw;
	margin: 0;
	overflow: hidden;

}

header{
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	min-width: 320px;
	position: sticky;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
}

.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	background-color: rgb(68, 68, 68);
	text-align: center;

}
.header li a {
	display: block;
	padding: 5px 10px;
}
.header a:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(254, 193, 7); 
	transition: all 1s;
	box-shadow: 0 0 5px 5px rgb(58, 58, 58) inset;
}

#fb {
	margin: -1px -6px -8px;
}

.testimonial>img {
	width: 90%;
	height: auto;
	margin: 10px;
}

/*header*/

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .6s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: rgb(254, 193, 7);
  display: block;
  height: 2px;
  position: relative;
  transition: background .6s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: rgb(254, 193, 7);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .6s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu icon */

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* menu btn */

/* 48em = 768px */

@media (min-width: 55em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 12px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

/* 48em = 768px */

/*SLIDER*/

#gallery {
		border-top: 6px solid rgb(254, 193, 7);
	margin: auto;
	width: 75vw;
	min-width: 320px;
	height: auto;
}

#slider {
	overflow: hidden;
}

@keyframes slider {
	0% {
		left: 0;
	}
	22% {
		left: 0;
	}
	25% {
		left: -100%;
	}
	47% {
		left: -100%;
	}
	50% {
		left: -200%;
	}
	72% {
		left: -200%;
	}
	75% {
		left: -300%;
	}
	95% {
		left: -300%;
	}
	100% {
		left: 0;
	}
}

#slider figure {
	width: 400%;
	position: relative;
	animation: 12s slider infinite;
}

#slider figure img {
	width: 25%;
	height: 100%;
	float: left;
}

/*END SLIDER*/

/*ABOUT SLIDER*/

.slider {
    margin: auto;
    height: auto;
    min-height: 110vmin;
    padding: 2.5em 0;
    width: 50vw;
    min-width: 320px;
    position: relative;
}

/* Slides */

.slider li {
    box-shadow: 0 -1px 0 2px hsla(0,0%,0%,.03);
    list-style:none;
    position: absolute;
    
}
.slider input {
    display: none;
}

/* Navigation */

.slider label {
    background-color: rgb(254, 193, 7);
    border: .8em solid transparent;
    bottom: .5em;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 1em;
    left: 24em;
    opacity: 0;
    position: absolute;
    transition: .25s;
    width: 1.5em;
    visibility: hidden;
    z-index: 10;
}

.slider:hover label {
    opacity: 1;
    visibility: visible;
}
.slider input:checked + label {
    background-color: rgb(58, 58, 58);
}
.slider:hover li:nth-child(1) label {
    left: .5em;
}
.slider:hover li:nth-child(2) label {
    left: 2em;
}
.slider:hover li:nth-child(3) label {
    left: 3.5em;
}
.slider:hover li:nth-child(4) label {
    left: 5em;
}
.slider:hover li:nth-child(5) label {
    left: 6.5em;
}

/* Images */

.slider img {
    height: auto;
    opacity: 0;
    transition: .25s;
    width: 50vw;
    min-width: 320px;
    vertical-align: top;
    visibility: hidden;
}
.slider li input:checked ~ img {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/*END SLIDER*/


/* FOOTER */

footer #button{
	width:40px;
	height:40px;
	border: rgb(254, 193, 7) 5px solid;
	border-radius:35px;
	margin:0 auto;
	position:relative;
	
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
footer:hover #button{
	width:100%;
	height:.01px;
	border: rgba(185, 185, 185) .01px solid;
	background-color: rgb(254, 193, 7);
	border-radius:.01px;
	position:relative;

	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;

}

footer {
	bottom:0;
	left:0;
	position:fixed;
    width: 100%;
    height: 2.5em;
    overflow:hidden;
    margin:0 auto;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	z-index:999;
}
footer:hover {
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	height: 2.5em;
}
footer #container{
	width:100%;
height:100%;
  position:relative;
  top:0;
  left:0;
	background: rgb(58, 58, 58);
	text-align: center;
	padding-top: 11px;
}

/*END FOOTER */