.contacts {
    margin: 70px 0;
}

.contacts_title {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f5f7;
}

.contacts_title h1 {
    font-size: 5rem;
}

.contacts_inner-info {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.contacts_inner-info address {
    flex: 1 33%;
}

.contacts_inner-info address small {
    color: #9a9a9a;
    margin-bottom: 10px;
    display: block;
}

.contacts_inner-info address p {
    margin: 0;
}

address a {
    color: #0e0e0e;
    display: inline-block;
    position: relative;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

address a:before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
    color: #000;
}

address a:hover {
    transform: translateY(-100%);
    text-decoration: none;
}

address p {
    overflow: hidden;
}