/*************************** Contact Methods ********************************/
.contact_heading {
    margin-top: 120px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--black);
    font-size: 46px;
    text-transform: uppercase;
}

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

.contact_method {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 40px) / 3);
    box-sizing: border-box;
    background-color: var(--form-field);
    padding: 20px;
}

.contact_method .square_icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: var(--gold);
    color: var(--white);
    box-sizing: border-box;
    margin-right: 20px;
}

.contact_method h4 {
    margin: 15px 0 0 0;
    color: var(--black);
}

.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(--white);
    background-color: var(--black);
    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 {
    opacity: 0.8;
    transition: 0.2s all ease-in-out;
}

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

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

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

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

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