/*************************** Contact Methods ********************************/
.contact_opening {
    margin-top: 60px;
}

.home_scroll {
	margin: 0px auto 80px;
}

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

.contact_methods h2 {
    text-align: center;
}

.contact_method {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    padding: 35px;
    box-sizing: border-box;
}

.contact_method h3 {
    margin: 0;
}

.contact_method p {
    margin-bottom: 0;
}

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

.square_icon,
.contact_social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0px 3px 5px #00000014;
    color: var(--bronze);
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
}

.contact_method .square_icon {
    cursor: auto;
}

.contact_social {
    display: flex;
    flex-wrap: wrap;
}

.contact_social a {
    margin-bottom: 0;
    background-color: var(--green);
    color: var(--white);
    margin-right: 15px;
    margin-top: 20px;
}

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

@media (max-width: 1330px) {
    .contact_method {
        width: 48%;
    }

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

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

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

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