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

/* Fonts */

body {
	font-family: Lato, sans-serif; 
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

/* High-level */

h1 {
	font-size: 1.7em;
	line-height: 1.1em;
	margin-bottom: 20px;
}

.wrapper {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px 20px 0 20px;
	text-align: center;
}

/* Header */

header {
	position: relative;
	background: linear-gradient(to bottom right, #ff644e, #ffcc00);
	color: white;
	line-height: 1.5em;
}

header .wrapper {
	padding: 30px;
}

header .logo {
	width: 300px;
	max-width: 80%;
	margin-bottom: 0;
}

header a {
	text-decoration: underline;
}


/* Lists */

ul {
	list-style-type: none;
	margin-block-start: 0;
	margin-block-end: 0;
}

.article-list article,
.steps {
	border-radius: 15px;
}

/* Links */

a {
	text-decoration: none;
	color: inherit;
}

p a {
	text-decoration: underline;
}

.button {
	display: inline-block;
	text-align: center;
	vertical-align: middle; 
	font-size: 1.2em;
	font-weight: bold;
	color: white; 
	background-color: #2AB400;
	text-decoration: none; 
	text-shadow: none; 
	border-radius: 6px;
	height: 44px;
	line-height: 44px;
	width: 180px;
	margin-left: auto;
	margin-right: auto;
	border-style: solid;
	border-width: 1px;
	border-color: #ccc;
	margin-top: -3px;
}

.grid-two {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 2px;
	grid-row-gap: 2px;	
	width: auto;
}

table .button {
	width: 132px;
}

.grid-two div {
	display: inline-block;
}

li table {
	display: inline-table;
}

li table td{
	text-align: left;
}

.wrapper > h2 {
	text-align: center;
	margin-left: 12px;
	margin-bottom: 15px;
	color: black;
}

.steps {
	background-color: #f3f3f3;
	padding: 20px;
}

.steps ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 25px;
}

.steps li {
	display: inline-block;
}

.steps li img {
	display:inline-block;
	max-width: auto;
	height: 44px;
}

.steps3 ul {
	grid-template-columns: repeat(3, 1fr);
}

.steps4 ul {
	grid-template-columns: repeat(4, 1fr);
}


.steps h2 {
	margin-bottom: 10px;
}

.person {
	display: flex;
	justify-content: center;
	align-items: center;
}

.person img {
	object-fit: cover;
	width: 50px !important;
	height: 50px !important; 
	border-radius: 50%;
	margin-right: 8px;
}

.person span {
	display: table-cell;
	vertical-align: middle;
	font-weight: bold;
	font-size: 1.7em;
	line-height: 1.1em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.steps li p {
	margin-bottom:10px;
}

.steps .name {
	display: inline-block;
	font-weight: bold;
	font-size: 1em;
	margin-bottom: 10px;

	height: 40px;
	width: 40px;
	line-height: 40px;

	-moz-border-radius: 30px; /* or 50% */
	border-radius: 30px; /* or 50% */

	background-color: #ff902d;
	color: white;
	text-align: center;
	font-size: 2em;
}

.steps .tagline {
	display: block;
	color: #333;
	font-size: 1.2em;
	clear:both;
}

.steps p {
	text-align: center;
	width:100%;
}

#choose-all, #choose-all2 {
	display: none;
}

#choose-one, #choose-one2 {
	display: block;
}

/* Grid */

.grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 15px;
}

.grid > * {
	display: flex;
}

.grid .col2 {
	grid-column-end: span 2;
}

.grid .col3 {
	grid-column-end: span 3;
}

.grid .col4 {
	grid-column-end: span 4;
}

.grid .col6 {
	grid-column-end: span 6;
}

/* Articles */

article {
	width: 100%;
	text-align: left;
	margin: 0 auto;
	padding: 20px;
}

.article-list article {
	background-color: #f3f3f3;
}

.article-list {
	margin-bottom: 20px;
}

.article-list article img {
	max-width: 100%;
	margin-bottom: 10px;
}

article h2 {
	font-size: 1.5em;
	line-height: 1.1em;
	margin: 22px 15px;
}

article p {
	margin-top: 20px;
	font-size: 1.15em;
	line-height: 1.5em;
}


/* Footer */

footer {
	margin: 30px 0;
	padding: 0 20px;
	text-align: center;
	color: #666;
	line-height: 1.4em;
}

/* Responsive */

@media(max-width: 600px) {
	article > h1 {
		text-align: center;
	}

	header .wrapper {
		padding: 15px;
	}

	header .logo {
		max-width: 40%;
	}

	header p:first-child {
		margin-bottom: 5px;
	}

	.grid {
		display: block;
	}

	.grid > * {
		margin-bottom: 15px;
	}

	.wrapper > h2 {
		text-align: center;
		margin-left: 0;
	}

	.wrapper > article {
		padding: 0;
	}

	.steps ul {
		grid-template-columns: repeat(1, 1fr);
		text-align: center;
	}

	.shot-why img {
		width: 40%;
		height: auto;
		float:right;
		margin-left: 30px;
	}
}
