.contact_details {
    margin-top: 80px;
}

.contact_details_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.contact_details h2 {
    margin-top: 0;
    font-size: 40px;
    color: var(--blue);
    font-weight: 400;
    text-align: center;
}

.contact_details h3 {
    color: var(--grey);
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    font-size: 15px;
}

.contact_details hr {
    width: 15px;
    flex-grow: 0;
    height: 2px;
    background-color: var(--grey);
    border: none;
}

.contact_detail {
    width: 30%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 25px;
    box-sizing: border-box;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.1);
}

.contact_detail:first-of-type {
    margin-right: 50px;
}

.contact_detail h3 {
    margin-top: 0;
    font-size: 24px;
    color: var(--blue);
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.contact_detail_text a {
    color: var(--green);
    text-align: center;
}

.contact_detail_text a p {
    margin: 0;
}

.contact_detail_text a i {
    margin-right: 10px;
    font-size: 20px;
}

@media(max-width: 950px) {
    .contact_details_wrapper {
        display: block;
    }

    .contact_detail {
        width: 100%;
        margin-bottom: 40px;
        margin-right: 0;
    }
}