/*************************** Contact Methods ********************************/
#methods {
    position: absolute;
    margin-top: -150px;
}

.contact_heading {
    font-size: 70px;
    margin-top: 92px;
    margin-bottom: 20px;
    text-align: center;
}

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

.contact_method {
    display: flex;
    flex-direction: column;
    width: calc((100% - 30px) / 3);
    background-color: var(--white);
    padding: 15px;
    box-sizing: border-box;
}

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

.contact_method h4 {
    margin: 15px 0 0 0;
    font-size: 40px;
}

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

.contact_method a {
    color: var(--red);
    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(--red);
    border: 2px solid var(--red);
    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(--red);
    transition: 0.2s all ease-in-out;
}

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

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

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

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

@media (max-width: 800px) {
    .contact_heading {
        margin-top: 70px;
    }
    
    .contact_methods {
        margin: 30px auto 80px;
    }
}

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

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

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

@media (max-width: 600px) {
    .contact_heading {
        font-size: 36px;
    }
}