.contact-title {
    width: 250px;
}

.map-container {
    height: 600px;
}

.fac-img-item {
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: 50% !important;
}

.contact-group {
    display: none;
    margin-bottom: 120px;
}

.contact-group-title {
    font-size: 18px;
    margin-bottom: 25px;
}

.fac-dot-group {
    position: relative;
    display: block;
    font-size: 0px;
    left: -5px;
}

.fac-dot-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 15px;
}

.fac-dot-item:before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 5px;
    width: 5px;
    height: 5px;
    border: 1px solid #6e6e70;
    background: transparent;
    margin-right: 10px;
    border-radius: 50%;
    
    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.fac-dot-item:hover:before {
    background: #6e6e70;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.fac-dot-item.active:before {
    background: #6e6e70 !important;
}


@media screen and (max-width : 768px) {
    .contact-title {
        width: 100%;
    }
}

@media screen and (max-width : 500px) {
    .contact-desc {
        padding: 50px 30px;
    }

    .contact-group {
        margin-bottom: 50px;
    }
}