﻿*, *::after,*::before{
	
	margin: 0px;
	padding: 0px;
	box-sizing: inherit;
}

body {
	margin:0px;
	font-family:Arial, Helvetica, sans-serif;
	background: #333;
	color: white;
	font-size: 1.1em;
	line-height: 1.5;
	text-align: center;
}

img {
	display: block;
	width: 100%;
	height: 100%;
}

h1, h2, h3 {
	margin: 0;
	padding: 1em 0;
	
}

p {
	margin: 0;
	padding: 1em 0;
}

.btn {
	display: inline-block;
	background:#333;
	color: white;
	text-decoration: none;
	padding: 1em 2em;
	border: 1px solid #666;
	margin: .5em 0;
}

.btn:hover {
	background: #eaeaea;
	color: #333;
}

/* Header Showcase*/
header {
	height: 100vh;
}

#showcase {
	min-height: auto;
	color: white;
	text-align: center;
}

#showcase .bg-image {
	position: absolute;
	background: #333 url(https://images.pexels.com/photos/546819/pexels-photo-546819.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);  /*(images/img1.jpg);*/         /*('https://images.pexels.com/photos/2653362/pexels-photo-2653362.jpeg?cs=srgb&dl=blur-code-dark-2653362.jpg&fm=jpg');*/
	background-position:center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	z-index: -1;	
	opacity: 0.5;
	
}

#showcase h1 {
	padding-top:30px;
	padding-bottom: 0;
	
}

#showcase h2 {
	font-weight: 800;
	text-transform:uppercase;
}

#showcase h3 {
	padding: 0px;
	padding-bottom: .5em;
}

.initial {
	padding: 0em 5em 0em 5em;
}

.name {
	background-color: red;
	margin: 3em 1em;
	padding: 2em 5em 2em 5em;
	border-radius: 10em;
}

#section-a {
	background: #eaeaea;
	color: #333;
	padding-bottom: 2em;
		
}

#section-b {
	padding: 2em 1em 1em;
}

#section-b ul {
	list-style:none;
	margin: 0;
	padding: 0;
}

#section-b li {
	margin-bottom: 1em;
	background: white;
	color: #333;
}

.card-content {
	padding: 1.5em;
}

#section-c {
	background:white;
	color: #333;
	padding: 2em;
}

#section-d .box {
	padding: 2em;
	color: white;
}

#section-d .box:first-child {
	
	background:#2690d4;
}

#main-footer {
	padding: 2em;
	background: black;
	color: white;
	text-align: center;
	
}

#main-footer a {
	color: #2690d4;
	text-decoration: none;
}

/* Media Queries */

@media(min-width: 700px) {
	.grid {
	display: grid;
	grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;
}

	#section-a .content-text {
	columns: 2;
	column-gap: 2em;
}

	#section-a .content-text p {
	padding-top:0;
}
	.content-wrap, #section-b ul {
	grid-column: 2/4;
}
	.box, #main-footer div {
	grid-column: span 2;
}
	#section-b ul {
	display: flex;
	justify-content: space-around;
}
	#section-b li {
	width: 31%;
}
}

@media(min-width: 300px) {
	h1 {
	font-size: 1.5em;
}
}

@media(max-width: 700px) {
	
.name {
	font-size: small;
	text-align: center;
}
}





