body {
    margin: 0;
    padding: 0;
    font-family: tahoma;
}
.wraper {
    max-width: 70em;
	min-width: 320px;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
header > img {
    max-width: 11em;
}
header {
    display: flex;
    justify-content: space-between;
}
h2 {
    border: 1px solid #eeeeee;
    padding: 2em;
    text-align: center;
    direction: rtl;
    font-family: tahoma;
    font-size: 1.2em;
}
main img {
    margin: 0 auto;
    display: block;
    width: 100%;
}
main h1 {
    background: #f8f8f8;
    padding: 2em;
    text-align: center;
    font-size: 1.2em;
    font-family: tahoma;
    line-height: 2em;
    direction: rtl;
}
footer {
    background: #222;
    padding: 4em 0;
    text-align: center;
    color: #FFF;
    position: relative;
    margin-top: 2em;
}
footer .wraper {
    display: flex;
    justify-content: space-around;
}
.box a {
    background: #FFF;
    border-radius: 50%;
    padding: 5em 3em;
    box-sizing: border-box;
    text-align: center;
    display: block;
    border: 10px solid #466C09D6;
    line-height: 2em;
    text-decoration: none;
    font-size: 1.2em;
    color: #333;
    box-shadow: 0px 0px 0px 15px #85c226 inset;
    min-width: 13.5em;
}

h4, .title {
    position: relative;
    z-index: 2;
}
h4 {
    padding-bottom: 1em;
}
h4:before , h4:after  {
    content: "";
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 2px;
    
    background: #ffffff;
}
h4:before {
    left: calc(50% - 90px);
}
h4:after {
    right: calc(50% - 90px);
}
.contact {
    display: flex;
    justify-content: space-around;
    margin: 1em 0;
    background: #f8f8f8;
}
.contact span {
    padding: 2em;
    border-radius: 5px;
}
.contact img {
    width: 1.5em;
    margin-bottom: 1em;
}
.title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #85c226;
}
@media only screen and (max-with: 42em){
    .box a {
        padding: 1em;
    }
}