main {
	position: relative;
	width:100%;
	z-index: 1;
	box-shadow: 0 -2px 5px #ccc;
}
    #contact {
		width: 100%;
		padding: 75px 0;
		background: #fff;
	}
		#contact_block {
			width:100%;
			max-width:1000px;
			margin: 0 auto;
            overflow: hidden;
		}
			#contact_block > h3 {
				font:2.4em "OpenSansB";
				text-align: center;
			}
			#contact_block > h3:after {
				content: '';
				width:40px;
				height:2px;
				background: #6196ad;
				margin: 15px auto;
				display: block;
			}
            .contact_block_post {
                width:32%;
                float: left;
            }
            .contact_block_post:nth-of-type(2) {
                margin: 0 2%;
            }
                .contact_block_post > img {
                    width: 64px;
                    height:64px;
                    display: block;
                    margin: 20px auto;
                }
                .contact_block_post > h4 {
                    font: 1.2em "OpenSansB";
                    text-align: center;
                    margin-bottom: 10px;
                }
                .contact_block_post > a {
                    font: 1em "OpenSans";
                    color: #000;
                    text-align: center;
                    text-decoration: none;
                    margin-bottom: 3px;
                    display: block;
                    transition: color 0.2s, transform 0.2s;
                }
                .contact_block_post > a:hover {
                    color: #6196ad;
                    transform: translateY(-2px);
                }
    #map {
        width:100%;
        height:500px;
        overflow: hidden;
    }
        #map > iframe {
            width:100%;
            height:100%;
        }