
.desc {
    margin-top: 40px;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.clear {
    clear: both;
}

.button {
	background-color: #b47acf;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	color: #fff !important;
	font-size: 16px;
	text-decoration: none;
	display: inline-block;
	padding: 12px 0 12px 16px;
	transition: box-shadow 0.2s;
}

.button:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.button span {
	background-color: rgba(0, 0, 0, 0.08);
	border-radius: 0 3px 3px 0;
	font-weight: bold;
	margin-left: 24px;
	padding: 12px 16px 12px 8px;
	position: relative;
	transition: padding 0.2s;
}

.button:hover span {
	padding: 12px 24px 12px 16px;
}

    .button span:before {
        width: 14px;
        content: '';
        background-image: url(../html/images/button-divider.png);
        background-repeat: no-repeat;
        position: absolute;
        left: -14px;
        bottom: 0;
        top: 0;
    }

#map-section {
    width: 100%;
    /*width: 1000px;*/
    max-width: 100%;
}

.new {
	background-color: #ccc;
	border-radius: 3px;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 0 2px;
	vertical-align: top;
}

/* Map */
.map-container {
	margin: 0 auto;
	margin-bottom: 60px;
}

/* Icons */
.icon {
	background-repeat: no-repeat;
	background-position: center 10px;
	padding-top: 60px;
}

    .icon.landmark {
        background-image: url(../html/images/icon-landmark.png/index.html);
    }
    .icon.layer {
        background-image: url(../html/images/icon-layer.png/index.html);
    }
    .icon.link {
        background-image: url(../html/images/icon-link.png/index.html);
    }
    .icon.browser {
        background-image: url(../html/images/icon-browser.png/index.html);
    }
    .icon.responsive {
        background-image: url(../html/images/icon-responsive.png/index.html);
    }
    .icon.mobile {
        background-image: url(../html/images/icon-mobile.png/index.html);
    }

.one-third {
	float: left;
	padding-left: 2%;
	padding-right: 2%;
	width: 29%;
}

.one-half {
	float: left;
	padding-left: 2%;
	padding-right: 2%;
	width: 46%;
}

section.gray {
	background-color: #ddd;
	color: #fff;
	padding: 20px 0;
	transition: background-color 0.2s;
}

section.gray:hover {
	background-color: #ccc;
}

/* Responsivity */
@media all and (max-width: 667px) {
	#main-menu li {
		display: none;
	}

	#main-menu li:last-child {
		display: inline-block;
	}
}