/* FOOTER */
.contact-info{
    padding: 36px 0;
}

.contact-info > .item{
    float: left;
    padding: 0 40px;
    display: flex;
    align-items: center;
    text-align-last: start;
    width: 100%;
    margin-bottom: 40px;
}

.contact-info > .item:last-child{
    margin-bottom: 0;
}


.contact-info > .item > .item-logo{
    position: relative;
    padding-right: 40px;
    font-size: 40px;
    top: 4px;
    width: 40px;
    height: 40px;
    margin-right: 40px;
}

.contact-info > .item > .item-logo, .contact-info > .item > .item-content{
    display: table-cell;
    vertical-align: top;
}

.contact-info > .item > .item-logo:after{
    background-color: #ffc527;
    content: "";
    height: 22px;
    position: absolute;
    left: 60px;
    top: 10px;
    width: 2px;
}

.contact-info > .item > .item-content{
    text-align: start;
}

.contact-info > .item > .item-content > h5{
    font-weight: 500;
}

.contact-info > .item > .item-content > p{
    font-weight: 400;
    margin-bottom: 0;
}

.contact-info > .item > .item-content > .footer-link{
    color: rgba(0,0,0,0.8);
    font-weight: 400;
}

.contact-info > .item > .item-content > .footer-link:hover{
    color: #c6a855;
    text-decoration: none;
}

#contact > .section-content{
    display: flex;
    justify-content: space-around;
}

input.button-link{
    cursor: pointer;
}
@media only screen and (max-width: 858px){
    .contact-info > .item {
        width: 100%;
        border-right: none;
        margin-bottom: 20px;
        float: none;
    }

    .contact-info > .item:last-child {
        margin-bottom: 0;
    }

    .contact-info {
        display: block;
    }

}

@media only screen and (max-width: 764px){
    #contact > .section-content{
        display: block
    }

    .contact-form{
        margin-left: auto;
        margin-right: auto;
        max-width: 75%;
    }
}

@media only screen and (max-width: 575px){
    .contact-info{
        width: 95vw;
        max-width: 100%;
    }

}