@import url("https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #fdfdfd;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
}
main {
  max-width: 400px;
  margin: auto;
  
  text-align: center;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2776b6;
  padding: 0.5rem;
}

.home nav,
nav.footer {
 display: flex;

flex-direction: column;
align-items: center;
  background: #2776b6;
  padding: 5rem 0.5rem 2rem 0.5rem;

}
nav.footer li {
	width:100%;
	line-height:2;
	
}
ul {
  list-style: none;
  display: flex;
  width:90%
}

li {
  min-width:20%;
  padding:5px;
}
li a {
	display:block;
	width:100%;
	background:rgba(255,255,255,0.2);
	border-radius:10px;
	padding:5px;
	color: white;
	font-weight:700;
}
li a.active {
	background:rgba(255,255,255,0.8);
	color: #2776b6;
}
h1 {
  color: white;
  margin-bottom: 0.5rem;

  font-size:2em;
}

nav a, nav a:hover{
	text-decoration:none;
}

[class^=arr-]{
  border:       solid currentColor;
  border-width: 0 .15em .15em 0;
  display:      inline-block;
  padding:      .20em;
}
.arr-right {transform:rotate(-45deg);}
.arr-left  {transform:rotate(135deg);}
.arr-up    {transform:rotate(-135deg);}
.arr-down  {transform:rotate(45deg);}

.icon-search {
width: 0.8em;
height: 0.8em;
display: inline-block;
border: .15em solid;
border-radius: 50%;
position: relative;

}

.icon-search:after {
content: "";
display: inline-block;
position: absolute;
width: .15em;
height: 100%;
background-color: currentColor;
transform: rotate(-45deg);
top: 0.4em;
left: 0.5em;
}


.container,
.searchContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 1rem 0;
}

.bus .timing {
	background:#FF6828;
}
.food .timing {
	background:#FFCA28;
}
.workshop-session .timing {
	background:#27b67a;
}

.card {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  width: 90%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
}
.card--avatar {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}
.card--title {
  color: #222;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.card--link {
  text-decoration: none;
  background: #db4938;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

/*.home .container a {
	display:block;
	text-decoration:none;
	color:white;
	background:#2776b6;
	width:90%;
	border-radius:10px;
	padding:10px;
	margin:auto;
}*/

a {
	text-decoration:none;
	color:currentColor;;
}

.title-subscript {
	font-size:1em;
	color:black;
}

.timing {
	background:#2776b6;
	color:white;
	padding:5px;
	min-width:20%;
}

.card-content {
	padding:5px;
	width:80%;
}

.card-content.wide {
	width:100%;
}

#searchbar {
	width:100%;
	background:#2776b6;
	color:white;
	padding:5px;
	display:none;
}

input[type=text] {
  padding: 6px;
  border: none;
  font-family: "Nunito", sans-serif;
font-size: 1rem;
width:90%;
border-radius:10px;
}

img {
  max-width:100%;
}

.maps-link {
	display:block;
	width:80%;
	background:#2776b6;
	border-radius:10px;
	padding:5px;
	color: white;
	font-weight:700;
	margin: auto;
}