.contact h3 {
    color: #404040;
    font-weight: 600;
    font-size: 21px;
}
.contact-top {
    text-align: center;
    padding-top: 85px;
}
.contact-top img {
    margin-bottom: 26px;
}
.contact-top p {
    min-height: 48px;
    max-width: 290px;
    margin: 0 auto 36px;
}
.contact-top a {
    color: #ff8d00;
    border: 1px solid #ff8d00;
    width: 220px;
    height: 48px;
    line-height: 46px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 85px;
}
.contact-top a:hover {
    color: #fff;
    background-color: #ff8d00;
}
.contact-bottom {
    box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.1);
    display: flex;
}
.contact-map {
    width: 40%;
    background-image: url('../img/map.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    min-height: 485px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 90px;
}
.contact-map-label {
    max-width: 308px;
    background-color: #ff8d00;
    color: #fff;
    position: relative;
    padding: 36px 36px 36px 54px;
    max-height: 290px;
}
.contact-map-label p {
    margin: 0;
    padding-bottom: 18px;
}
.contact-map-label:after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -12px;
    content: " ";
    pointer-events: none;
    border: solid transparent;
    border-width: 12px;
    border-top-color: #ff8d00;
}
.contact-label-heading {
    font-weight: 600;
    position: relative;
}
.contact-label-heading i {
    position: absolute;
    left: -20px;
    font-size: 22px;
}
.contact-label-btn {
    display: inline-block;
    margin-top: 36px;
    color: #fff;
    border: 1px solid #fff;
    height: 48px;
    line-height: 46px;
    border-radius: 30px;
    padding: 0 30px;
}
.contact-label-btn:hover {
    color: #ff8d00;
    background-color: #fff;
}
.contact-label-btn i {
    font-size: 12px;
    margin-left: 10px;
}
.contact-info {
    background-color: #f5f5f5;
    width: 60%;
    height: 485px;
    padding: 0 30px;
    display: flex;
}
.contact-info > div {
    width: 50%;
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .contact-map,
    .contact-info {
        width: 50%;
    }
    .contact-info {
        flex-direction: column;
    }
    .contact-info > div {
        width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .contact-map,
    .contact-info {
        width: 100%;
    }
    .contact-bottom {
        flex-direction: column;
    }
}