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

.contact_heading {
    font-size: 100px;
    text-align: center;
    margin: 120px auto 50px;
    width: 750px;
}

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

.contact_method {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
    background-color: var(--trans-white);
    border: 2px solid var(--white);
    border-radius: 10px;
    padding: 20px;
    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(--beaver);
    color: var(--black);
    border-radius: 5px;
    box-sizing: border-box;
    margin-right: 20px;
}

.contact_method h4 {
    margin: 15px 0 0 0;
    font-size: 36px;
    text-transform: uppercase;
}

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

.contact_method a {
    color: var(--beaver);
    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: 20px;
    font-size: 1.2em;
    font-weight: 400;
    color: var(--white);
    background-color: var(--brown);
    border-radius: 5px;
    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 {
    background-color: #6B5D4B;
    transition: 0.2s all ease-in-out;
}

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

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

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

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

@media (max-width: 900px) {
    .contact_heading {
        font-size: 60px;
        width: 80%;
    }
}

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

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

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

@media (max-width: 600px) {
    .contact_heading {
        font-size: 48px;
        width: 100%;
        margin: 80px auto 30px;
    }

    .contact_methods {
        margin-bottom: 100px;
    }

    .contact_method {
        align-items: center;
        text-align: center;
    }

    .contact_method h4 {
        font-size: 24px;
        text-align: center;
    }

    .contact_method .square_icon {
        margin-right: 0;
    }

    .contact_method .contact_header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}