/*************************** Contact Methods ********************************/
.contact_heading {
    margin-top: 80px;
    margin-bottom: 20px;
    text-align: center;
}

.contact_methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin: 30px auto 96px;
}

.contact_method {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 60px) / 3);
    background-color: var(--white);
    padding: 15px;
    box-sizing: border-box;
    border: 2px solid var(--border-grey);
}

.contact_method .square_icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: var(--light-grey);
    color: var(--black);
    box-sizing: border-box;
    border: 2px solid var(--border-grey);
    margin-right: 15px;
}

.contact_method h4 {
    margin: 15px 0 0 0;
}

.contact_method p {
    margin: 5px 0 0 0;
}

.contact_method a {
    color: var(--gold);
    font-weight: 700;
}

.contact_social {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact_social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    margin-right: 15px;
    font-size: 1.2em;
    font-weight: 400;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    background-color: transparent;
    overflow: hidden;
    box-sizing: border-box;
    transition: 0.2s all ease-in-out;
}

.contact_social a:last-of-type {
    margin-right: 0;
}

.contact_social a:hover {
    color: var(--white);
    background-color: var(--dark-blue);
    transition: 0.2s all ease-in-out;
}

@media (max-width: 1330px) {
    .contact_method {
        width: calc((100% - 30px) / 2);
    }

    .contact_method:last-of-type {
        margin: 30px auto 0;
    }
}

@media (max-width: 750px) {
    .contact_methods {
        flex-direction: column;
    }

    .contact_method {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact_method:last-of-type {
        margin: 0;
    }  
}