html {
	font-family: Roboto, sans-serif;
}

body {
	margin: 0;
}

header > :first-child,
footer > :first-child {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 60%;
	margin: auto;
}

header > div > :first-child,
footer > div > :first-child {
	justify-self: start;
}

header > div > :nth-child(2),
footer > div > :nth-child(2) {
	justify-self: center;
}

header > div > :last-child,
footer > div > :last-child {
	justify-self: end;
}

header > img {
	width: 100%;
}

#call-us {
	text-align: center;
	color: #c0281f;
	text-shadow: 2px 2px black;
	font-size: 30px;
}

#call-us > h4 {
	margin: 20px 0 20px 0;
}

#call-us > a {
	color: inherit;
	font-size: inherit;
}

#banner {
	position: relative;
}

#banner > div {
	position: absolute;
	display: flex;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#banner > div > a {
	background-color: #ad2a23;
	color: white;
	width: 175px;
	height: 50px;
	font-size: 18px;
	text-align: center;
	line-height: 50px;
	border-radius: 5px;
	margin: 0 10px 0 10px;
}

#banner > img {
	width: 100%;
}

.phone {
	color: #c0281f;
	font-weight: bold;
}

nav > ul {
	display: flex;
	justify-content: center;
	list-style: none;
}

nav > ul > li {
	margin: 0 15px 0 15px;
}


a {
	text-decoration: none;
	color: black;
	font-weight: bold;
	font-size: 20px;
}

ul {
	padding: 0;
}

main {
	max-width: 1100px;
	margin: auto;
	padding: 20px 10px 0 10px;
	margin-bottom: 100px;
}

h1,h2 {
	font-size: 32px;
	font-weight: 350;
}

p {
	font-size: 17px;
}

input {
	height: 25px;
}

input, textarea {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	font-size: 16px;
	padding: 5px;
	border: 1px solid;
	border-radius: 4px;
}

button {
	background-color: #ad2a23;
	color: white;
	border: 2px solid black;
	padding: 10px 20px 10px 20px;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
}

.bold-red {
	color: #ad2a23;
	font-weight: 500;
}

.centered-header {
	color: #ad2a23;
	margin-top: 50px;
	text-align: center;
	font-weight: 500;
}

.review {
	color: dimgray;
	border: 1px solid whitesmoke;
	font-style: italic;
	border-radius: 5px;
	padding: 10px;
	margin-bottom: 40px;
	box-shadow: 10px 5px 5px lightgray;
	position: relative;
}

.review > p::before {
	content: "★★★★★ ";
	color: gold;
	font-size: 1.2em;
	font-style: normal;
	display: inline;
}

.review::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 60px;
	width: 0;
	height: 0;
	border-top: 30px solid white;
	border-right: 30px solid transparent;
	border-left: 0 solid transparent;
	filter: drop-shadow(5px 2px 2px lightgray);
}

.review > p {
	font-size: initial;
	margin-bottom: 0;
}

.review > img {
	display: block;
	margin-left: auto;
	width: 30px;
}

.reviewer {
	font-family: Helvetica, sans-serif;
	color: #595959;
	margin-left: 30px;
	margin-bottom: 20px;
}

#about {
	display: grid;
	grid-template-columns: 2fr 1fr;
}

#about > img {
	width: 600px;
	height: auto;
	margin: 0 20px 0 20px;
}

#service-area {
	margin-top: 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

#service-area > ul {
	margin: auto;
}

#service-area li {
	margin: 6px 0;
}

@media (max-width: 768px) {
    #about {
        grid-template-columns: 1fr;
    }
}
