.contact-locations {
    width: 100%;
    height: auto;
    padding: 100px 0px 50px;
    background-color: #eff6f4;
}

.contact-locations ul {
    margin-top: 30px;
    /*float: left;*/
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.contact-locations ul li {
    width: 31.5%;
    /*float: left;*/
    padding: 40px 25px 60px;
    box-sizing: border-box;
    background-color: transparent;
    border: 1px solid #707070;
    min-height: auto;
    margin-bottom: 50px;
    position: relative;
    margin-right: 2.7%;
    list-style: none;
}

.contact-locations ul li:nth-child(3n) {
    margin-right: 0px;
}

.contact-locations h1 {
    font-family: 'Gotham Book';
    font-size: 40px;
    color: #000;
}

.contact-locations h4 {
    font-size: 25px;
    color: #000;
    font-family: 'Gotham Book';
}

.contact-locations .contact-number {
    color: #000;
    font-family:'Gotham Book';
    margin-top: 10px;
}

.contact-locations .contact-number a {
    color: #000;
    font-family: 'Gotham Book';
    text-decoration: none;
}

.contact-locations p {
    margin-top: 10px;
    float: left;
    font-family: 'Gotham Book';
    font-size: 15px;
    color: #000;
    line-height: 24px;
}
.location-btn {
    color: #7aac37;
    font-size: 16px;
    display: inline-block;
    position: absolute;
    bottom: 35px;
    left: 25px;
    text-decoration: none;
}

.location-btn::after {
    content: "";
    width: 8px;
    height: 1px;
    background-color: #7aac37;
    position: absolute;
    bottom: -2px;
    left: -1px;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

.location-btn:hover {
    color: #ed4714;
}

.location-btn:hover::after {
    width: 100%;
    background-color: #ed4714;
}
@media only screen and (max-width: 1400px) {
    .contact-locations ul li {
        padding: 30px 25px 40px;
    }
}
@media only screen and (max-width: 768px) {
    .contact-locations ul li {
        width: 100% !important;
        margin-bottom: 20px;
        margin-right: 0%;
    }
    .contact-locations ul li {
        padding: 21px 15px 40px;
    }
    .location-btn{
        bottom: 15px;
    }
    h2{
        font-size: 39px !important;
        line-height: 49px !important;
    }
}

