@font-face {
	font-family: Metropolis;
	src: /Fonts/metropolis-2
}

a:visited {
	color: #ca5adb;
}

.banner {
    background-color: #D5D5D4;
    width: 100%;
    height: 7em;
}

body {
	font-family: Metropolis, Tahoma, Verdana, sans-serif;
    letter-spacing: .1em;
    margin: 0;
}

p {margin: .5em 0px;}

/*
#logobox {
	float: none;
	position: fixed;
	left: 2em;
	top: 0em;
}

#logobox img{
	width: 50%;
	margin: 2em;
}
*/

#legaladdress {
    text-align: center;
    font-size: .8em;
}    
#locationaddress {
    text-align: center;
    font-size: .8em;
}

#bodybox {
    background-color: RGB(39,40,39);
    margin: 0 12%;
    padding: 1em 1.5em;
    color: white;
    min-width: fit-content;
}
#bodybox a {
    color: white;
}

#bodybox fieldset {
    margin: 1em;
    border: 1px solid #636463;
}
#bodybox fieldset label {
    width: 7em;
    display: block;
    float: left;
    clear: left;
    margin: .5em .2em;
}
/* 
#bodybox fieldset label:before {
    content: "\a";
    white-space: pre;
}
 */
#bodybox fieldset input, #bodybox fieldset textarea {
    float: left;
    width: 18em;
    margin: .5em 0;
    border: none;
    padding: .2em;
}
#bodybox fieldset #submitButton {
    clear: left;
    width: 10em;
    margin-left: 15em;
    padding: .3em;
    border-radius: .2em;
}


#bodybox .alert-bad {
    color: #fdc2c2;
    border: 2px solid #ff6767;
    padding: .5em;

}
#bodybox .alert-good {
    color: #c8e191;
    border: 2px solid #81bc00;
    padding: .5em;

}

#captcha {
    width:19em;
}

select.dropdown {
    float: left;
    margin: .5em 0;
 
}

.active-tag {
    border-bottom: 2px solid black;
    padding: 0 0 2px 0;
}

#header {
	position: fixed;
	z-index: 10;
}

#header {
	background-color: #D5D5D4;
    width: 100%;
    height: 7em;
}

#header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header-logo img{
	width: 50%;
	margin: 2em;
}

#navigation {
    position: fixed;
	z-index=101
    top: 1.5em;
    right: 1.5em;
    margin: 2em 2em;
}

#navigation li {
    display: inline-block;
    margin: 0 0.5em;
}

#navigation li a {
    padding-left: 2px;
    padding-right: 2px;
    color: #000;
    font-family: Metropolis medium, Tahoma;
    text-decoration: none;
}

#navigation li:not(.active-tag) a:hover {
    background: #EAEBEA;
 	padding: 2px;
}

#banner-images {
	display: flex;
	align-items: center;
}

#banner-text {
	position: absolute; /*overlaps the header, fix later with z-index probably*/
	top: 30%;
	width: 100%;
	color: white;
	font-size: 5vw;
	text-shadow: 0px 2px 5px #000000;
}

.text {
	margin: 5em;
	color: #272827;
	font-size: 1.25em;
}

.banner-text {
	background-color: #272827;
	padding: 3em;
	color: white;
}

ul ul li {
  font-size: 14px;
  margin: 6px
}

/* Above affects the font appearance of ul ul li elements */


ul ul li::marker {
  content: '- ';
  color: white;
}

/*
ul {
	list-style-type: 'bullet';
}

ul ul {
	list-style-type: 'dash';
}
 */

a.footer-link {
    color: #555;
    font-size: 10px;
}

p.footer-text {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0px;
}

@media (max-width: 530px){
    #bodybox {
        margin: 0;
	padding: .5em;
    }
    #navigation li {
	margin: 0.5em 0;
        display: block;
    }
}

.section-title {
	display: flex;
	align-content: center; 
	justify-content: center;
	padding: 0.5em;
	margin: 7px auto;
	width: 30%;
	border-style: solid;
	border-color: #81bc00;
	font-size: 1.25em
}

/*classes for animated scroll*/
.carousel {
	margin: 0 auto;
	padding: 20px 0;
	max-width: 95%;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	font-size: 1vw;
	> * {
		flex: 0 0 100%;
	}
	&:hover .group1, &:hover .group2 {
	  animation-play-state: paused;
	}
}

.group1 {
	display: flex;
	align-items: center;
	float: none;
	gap: 20px;
	padding-right: 20px;
	will-change: transform;
	animation: scrolling1 120s linear infinite;
}

.group2 {
	display: flex;
	float: none;
	gap: 20px;
	padding-right: 20px;
	will-change: transform;
	animation: scrolling2 120s linear infinite;
}

@keyframes scrolling1 {
	0% {
		transform: translateX(0);
	}
	100%{
		transform: translateX(-700%); /*two carousels will need different class settings */
	}
}

@keyframes scrolling2 {
	0% {
		transform: translateX(0);
	}
	100%{
		transform: translateX(-1100%); /*two carousels will need different class settings */
	}
}

.tile {
	width: 100%;
	background: #EAEBEA;
	border-radius: 25px;
	padding: 20px;
	justify-content: center;
	align-items: center;
	min-height: 350px;
}


div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

div.gallery-item {
  margin: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  /*border: 1px solid #ccc;*/
  width: 30%;
  height: 12em;
  color: white;
  text-shadow: 0 0 5px black;
}

div.tall {
	margin-bottom: 6em;
	background-color: #272827;
}

div.taller {
	margin-bottom: 8em;
	background-color: #272827;
}