* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segue UI', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #fff;
	color: #000;
	font-size: 15px;
	line-height: 1.5;
}

a {
	color: #262626;
	text-decoration: none;
}

ul {
	list-style: none; 
}

.container {
	width: 90%;
	max-width: 1100px;
	margin: auto;
}

.pic {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
}

/* Nav */
.main-nav {
	display: flex;
	align-items: center; 
	justify-content: space-between;
	height: 60px;
	padding: 20px 0;
	font-size: 13px;
}

.main-nav .logo {
	width: 60px;
}

.main-nav ul {
	display: flex;
}

.main-nav ul li {
	padding: 0 10px;
}

.main-nav ul li a {
	padding-bottom: 2px;
}

.main-nav ul li a:hover {
	border-bottom: 2px solid #262626;
}

.main-nav ul.main-menu{
	flex: 1;
	margin-left: 20px;
}

.menu-btn {
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 30px;
	z-index: 2;
	display: none;

}

.btn {
	cursor: pointer;
	display: inline-block;
	border: 0;
	font-weight: bold;
	padding: 10px 20px;
	background: #120D78;
	color: #fff;
	font-size: 15px;
}

.btn:hover {
	opacity: 0.8;
}

/* Showcase */
.showcase {
	width: 100%;
	height: 400px;
	background: url('./img/showcase-empty-class.jpg') no-repeat center center/cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: flex-end;
	padding-bottom: 50px;
	margin-bottom: 20px;
}

.showcase .subshow {
	background: lightgray;
	padding: .7    ;
   
}

.showcase h1 {
  color: blue;
  opacity: .9;
  text-align: center;
}

.showcase h2, .showcase h3, .showcase p {
	margin-bottom: 10px;
	color: blue;
	font-weight: bold;
}

.showcase .btn {
	margin-top: 20px;
}


/* Home Cards */
.home-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	margin-bottom: 40px;
}

.home-cards .lightblue {
	background-color: rgb(231, 242, 249);
	border-radius: 8px;
}

.home-cards h3 {
	margin-top: 10px;
}

.home-cards h3, h4, p, a {
	margin-left:  15px;
	margin-right: 15px;
}

.home-cards img {
	width:100%;
	height:calc;
	object-fit: cover; /* trying to scale an image so cards are all the same size */ 
	align-items: flex-end;
	margin-bottom: 10px;
}

.home-cards .pricing {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: -15px;
	
}

.home-cards a.price {
	display: inline-block;
	margin-top: -1px;
}

.home-cards .info {
	margin-bottom: 5px;
}

.home-cards #half {
	height: 24px;
	width: 60px;
	padding-left: 20%;
	margin-top: 10px;
}

.home-cards h4.school {
	padding-top: 5px;
}

.home-cards a {
	display: inline-block;
	padding-top: 10px;
	color: #0067b8;
	text-transform: uppercase;
	font-weight: bold;
}

.home-cards a:hover i {
	margin-left: 10px;
}

/* Follow */
.follow {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 30px 0 30px;
}

.follow * {
	margin-right: 10px;
}

/* Links */
.links {
	background: #f2f2f2;
	color: #616161;
	font-size: 12px;
	padding: 35px 0;
}

.links-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 10px;
	align-items: flex-start;
	justify-content: center;
}

.links li {
	line-height: 2.8;
}

/* Footer */
.footer {
	background: #f2f2f2;
	color: #616161;
	font-size: 12px;
	padding: 20px 0;	
}

.footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer div {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.footer div i {
	margin-right: 10px;
}

.footer ul {
	display: flex;
	flex-wrap: wrap;
}

.footer li {
	margin-right: 30px;
	margin-bottom: 20px;
}


@media(max-width: 950px) {
	.home-cards {
		grid-template-columns: repeat(3, 1fr);
	}


}

@media(max-width: 700px) {
	.menu-btn {
		display: block;
	}

	.menu-btn:hover {
		opacity: 0.5;
	}

	.main-nav ul.right-menu {
		margin-right: 50px;
	}

	.main-nav ul.main-menu {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		background: #f2f2f2;
		width: 50%;
		height: 100%;
		border-right: #ccc 1px solid;
		opacity: 0.9;
		padding: 30px;
		transform: translateX(-500px);
		transition: transform 0.5s ease-in-out;	
		z-index: 1;

	}


	.main-nav ul.main-menu li {
		padding: 10px;
		border-bottom: #ccc solid 1px;
		font-size: 15px
	}

	.main-nav ul.main-menu li:last-child {
		border-bottom: 0;
	}

	.main-nav ul.main-menu.show {
		transform: translateX(-20px);
	}

	.home-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.links div.links-inner {
		grid-template-columns: 1fr;
	}

}

@media(max-width: 500px) {
	.home-cards {
		grid-template-columns: 1fr;
	}

	.links div.links-inner {
		grid-template-columns: 1fr;
	}
}