html{
	height: 100%;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a{
	text-decoration: none;
}
li{
	text-decoration: none;
	list-style: none;
}
body{
  background-color:#eee;
	height: 100%;
	font-family:'Segoe UI';
}


header {
	background: url(https://www.mensjournal.com/wp-content/uploads/mf/1280-man-running-main.jpg?w=900&quality=86&strip=all) no-repeat;
	background-size: cover;
	box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
	grid-column: 1 / -1;
	height: 70vh;
	color: white;
	display: flex;
	flex-direction: column;
}

nav {
	font-size: 16px;
	height: 100px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 20px 25px;
}


.menu ul {
	justify-content: flex-end;
	display: flex;
	list-style: none;
}

.menu ul li {
	padding:  5em;
}

.menu ul li a {
	color: white;
	text-decoration: none;
}

.menu ul li a:hover {
	color: orange;
	transition: 0.9s;
}

.banner {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner h1 {
	font-size: 72px;
}

.banner p {
	font-size: 22px;
	text-align: center;
	max-width: 40%;
	padding: 60px 0;
}

.button {
	background: #c49300;
	color: white;
	padding: 15px 50px;
}

.button:hover {
	background: #8c6900;
	transition: 0.9s;
}
footer{
  margin-top:20px;
	padding: 50px 0;
	background-color: white;
}
footer .social{
	text-align: center;
	padding-bottom: 25px;
	color: #4b4c4d;
}
footer .social a{
	font-size: 24px;
	color: inherit;
	border: 1px solid #CCC;
	width: 40px;
	height: 40px;
	line-height: 38px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	margin: 0 8px;
	opacity: 0.75;
}
footer .social a:hover{
	opacity: 0.9;
}
footer ul{
	margin-top: 0;
	padding: 0;
	list-style: none;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 0;
	text-align: center;
}
footer ul li a{
	color: inherit;
	text-decoration: none;
	opacity: 0.8;
}
footer ul li{
	display: inline-block;
	padding: 0 15px;
}
footer ul li a:hover{
	opacity: 1;
}
footer .copyright{
	margin-top: 15px;
	text-align: center;
	font-size: 13px;
	color: #aaa;
}
.wrapper{
	min-height: 100%;
	display: flex;
	flex-direction: column;
}
.main{
	flex: 2 1 auto;
}













	/*Responsive*/
	@media only screen and (max-width: 768px){
		.banner h1 {
		font-size: 50px;
	}
	header {
	background: url(https://www.mensjournal.com/wp-content/uploads/mf/1280-man-running-main.jpg?w=900&quality=86&strip=all) no-repeat;
	background-size: cover;
	box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
	grid-column: 1 / -1;
	height: 50vh;
	color: white;
	display: flex;
	flex-direction: column;
}
.menu ul li {
	padding:  1em;
}

	}
	/*Responsive*/































.card {
    background-color: #fff;
    width: 200px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 10px 10px 40px #434040;

    margin: auto;
    margin-top: 100px;
}

.card-img {
    border-radius: 11px;
}

.card-title {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

.card-sub {
    font-size: 14px;
    font-weight: 315;
    margin-top: 20px;
}

.btn-keeper {
    margin-top: 20px;
    text-align: center;
}

.btn {
    background-color: #846A6A;
    padding: 7px 12px;
    text-decoration: none;
    color: #eee;
    border-radius: 5px;
    transition: background-color 0.5s linear;
}

.btn:hover {
    background-color: #b90e0e;
}
.wrapper_sh{
   justify-content:centre;
     display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 768px){
	 .wrapper_sh{
     display: grid;
     grid-template-columns: 1fr;
}  
	}