.contact_map_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 96px 0 -96px;
    margin-top: 96px;
}

.map_details {
    width: 280px;
    margin-right: 96px;
}

.contact_map_wrapper .square_icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: var(--dark-blue);
    color: var(--white);
    box-sizing: border-box;
}

.contact_map_wrapper h2 {
    margin: 15px 0 10px 0;
}

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

.contact_map_wrapper .button_2 {
    margin-top: 30px;
}

.contact_map {
    width: calc(100% - 280px - 96px);
    background-color: var(--white);
    height: 575px;
    padding: 15px;
    box-sizing: border-box;
    border: 2px solid var(--border-grey);
}

@media (max-width: 1330px) {
    .contact_map_wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: inherit;
        max-width: inherit;
    }
}

@media (max-width: 1000px) {
    .map_section {
        max-width: 100% !important;
        padding: 80px 0;
    }

    .contact_map_wrapper {
        flex-direction: column;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }

    .map_details,
    .contact_map {
        width: 100%;
        text-align: center;
    }

    .map_details {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 500px) {
    .map_details .button_2 {
        width: 100%;
    }
}