@charset "UTF-8";
/* CSS Document */
html {
  background: #f8f8f8;
  font-family: system-ui;
  -webkit-font-smoothing: antialiased;
  //padding: 20px 0;
  //height: 100%;
}
body {
	margin: 0 !important;
    padding: 0 !important;
	background-color: #f8f8f8 !important;
}
h1 {
	margin-top: 0;}
header {
  width: 100%;
  //max-width: 1240px;
  margin: 0px 0 40px 0;
  margin-top: 0;
  //height:100%;
}
/*.cta {
	height: auto;
	background: #090;
	margin: -40px 0 40px 0;
	padding-left: 5%;
	padding-top: 40px;
	padding-bottom: 40px;
}
.cta-inside {
	width: 90%;
	color: white;
	//margin: 20px 0 20px 0;
}*/
.band {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 80px;
}
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
  .band {
	grid-template-columns: 1fr;
  }
}
@media (min-width: 1025px) {
  .band {
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
  }
}
.card {
  background: white;
  text-decoration: none;
  color: #444;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  top: 0;
  //transition: all 0.1s ease-in;
  -moz-border-radius: 8px 8px 8px 8px;
-webkit-border-radius: 8px 8px 8px 8px;
border-radius: 8px 8px 8px 8px; /* future proofing */
-khtml-border-radius: 8px 8px 8px 8px; /* for old Konqueror browsers */
overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.card:hover {
  //top: -2px;
  //box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
	text-decoration: none;
    color: #707070;
}
.card article {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card h1 {
  font-size: 1.8rem;
  margin: 0;
  color: #333;
}
.card p {
  flex: 1;
  line-height: 1.4;
  font-size: 1.1rem;
}
.card span {
  font-size: 0.8rem;
  font-weight: bold;
  color: #999;
  //text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2em 0 0 0;
}
.card .thumb-container {
	height:60%;
	overflow:hidden;
}
.card .thumb {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center center;
  
overflow: hidden;
  //-webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.card .thumb {
  max-width: 100%;
  
  -moz-transition: all 0.9s;
  -webkit-transition: all 0.9s;
  transition: all 0.9s ease;
}
.card .thumb:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (min-width: 1025px) {
  .item-1 {
    grid-column: 1 / span 2;
  }
  .item-1 h1 {
    font-size: 1.6rem;
  }
  .item-2 h1 {
    font-size: 1.6rem;
  }
  .item-2 p {
    font-size: 1.1rem;
  }
  .item-2 span {
    font-size: 0.9rem;
  }
  .item-1 p {
    font-size: 1.1rem;
  }
  .item-1 span {
    font-size: 0.9rem;
  }
}
footer {
	background-color:#17242a;
	margin-left:auto;
	margin-right:auto;
	border-spacing:0;
	height:148px;
	position:absolute;
	width:100%;
	//bottom:0; /* stick to bottom */
	margin-top:40px;
	padding-top:20px;
}
.copyr {
	margin-left:5%;
	margin-top:20px;
	color:white;
	font-size:12px;
}
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("images/businessrun_hero_cover.jpg");

  /* Set a specific height */
  height: 80vh;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size:34px;
  text-shadow:2px 2px 2px black;
}

.logo {
	-webkit-background-size: 200px;
	-moz-background-size: 200px;
	background-size: 200px;
	height: auto;
	margin-top: 23px;
	width: 200px;
}

.logo-wrapper {
	display: inline-block;
	font-size: 16px;
	margin-left: 5%;
}