/* CSS Document */

body {
  line-height: 1.6rem;
  background-color: #4C9BD5;
  background-image: url(../img/bar1.jpg);
  background-blend-mode: multiply;
  background-attachment: fixed;
}


header {
	background-color: #fff;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
}

header img {
  max-width: 970px;
  min-width: 250px;
  width: 20vw;
  margin: 2rem 2rem 1rem;
}

.grid {
	width: 90%;
	margin: auto;
	max-width: 1200px;
	display: grid;
	grid-template-columns: repeat(auto-fill, 325px);
	grid-gap: 2rem;
	justify-content: center;
	background-color: rgba(255,255,255,.80);
}

#accordion {
    padding: 0 10px;

    }
#accordion li {
    list-style:none;
    width:100%;

    }
#accordion li label {
    display:block;
    color:#000;
	cursor: pointer;
	font-weight: bold;
	padding-top: .75rem;
    }

#accordion li label:hover{
	color: #4C9BD5;
}


/* Hide the radio buttons */
#accordion label + input[type='radio'] {
      display: none;
}
/* hide content by default */
#accordion .content {
    display:none;
	color: #fff;
	margin-top: 1rem;
    padding:10px;
	font-weight: normal;
    background-color: #4C9BD5;
	border-radius: 5px;
	box-shadow: 2px 2px 8px 1px gray;
	transition: all 250ms;
}
/* Show content boxes when the radio buttons are checked */
#accordion label + input[type='radio']:checked + .content {
    display:block;
}

a {
  color: #4C9BD5;
  text-decoration: none;
}

.back-to-on-tap {
  color: #fff;
  height: 50px;
  width: 100%;
  background-color: #4C9BD5;
  font-family: 'Open Sans Condensed', sans-serif;
  text-align: center;
  position: fixed;
  bottom: 0;
  z-index: 20;
  display: none;
  text-transform: uppercase;
}

.back-to-on-tap a {
  color: white;
}

@media screen and (min-width:770px) {
	.back-to-on-tap {bottom: -200px;}
}

@media screen and (max-width:1162px) {
	.placeholder {display: none;}
}
