* {
    margin: 0px;
    padding: 0px;
}
body {
    background-color: #434343;
    font-family: arial;
    font-weight: normal;
}
a {
	color: orange;
	text-decoration: none;
}
.sectiontitle {
    display: flex;
    column-gap: 10px;
}
h1 {
    color: #434343;
    font-size: 2em;
    text-transform: uppercase;
}
h2 {
    color: #fff;
    margin: 10px 10px;
}
p {
    color: #fff;
    margin: 5px 10px;
}
.left p {
	color: #333;
	margin-top: 20px;
}
.logo {
    color: #fff;
    font-size: 1.6em;
	margin: 0px;
	font-weight:400;
	font-family: monospace;
}
div {
    box-sizing: border-box;
}
header {
    padding: 10px;
    background-color: #7a828a;
   /* border-bottom: 4px solid #e65100;*/
}
.headerwrap {
    margin: 0 auto;
}
footer {
    padding: 20px;
    color: #fff;
    font-size: 1.4em;
	border-top: 4px solid #e65100; 
}
.footerwrap {
    max-width: 800px;
    margin: 0 auto;
}
.footerwrap p {
	margin: 0 0 20px 0;
	font-size: .9em;
}
.serviceswrap {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0px;
    height: auto;
    column-gap: 20px;
}
p.copyright {
	font-size: 11px !important;
    text-align: center;
    margin: 40px !important;
    color: #ddd;
}
.services {
    background-color: #fff;
    padding: 40px 20px;
}
.services .left {
    height: 100%;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    text-align: left;
    padding: 0 0 20px 0;
}
.services .right {
    min-height: 300px;
    border-radius: 20px;
    padding: 20px;
    flex: 0 0 100%;
    max-width: 520px;
    background-color: #7a828a;
    display: flex;
    column-gap: 0px;
    flex-wrap: wrap;
    row-gap: 20px;
	border: 4px inset #ddd;
}
.divider {
  background: #ff5a00;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  width: 100%;
  border-bottom:4px solid #e65100;
}
.divider p {
	font-size: 1.4em;
	text-align: center;
}

/* mobile/ipads etc. */
@media only screen and (max-width: 860px) {
	.services .right {
		max-width: 100% !important;
	}
	.left p {
		margin-top: 15px !important;
	}
	.divider p {
		font-size: 1.4em !important;
	}
}