.map_section {
    background-color: var(--white);
    padding: 110px 0;
}

.map_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.map_details {
    width: 285px;
    margin-right: 15px;
    padding: 15px;
    box-sizing: border-box;
    background-color: var(--light-grey);
}

.map_section .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;
}

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

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

.map_section .button_2 {
    margin-top: 20px;
}

.map {
    width: calc(100% - 300px);
    background-color: var(--white);
    height: 575px;
}

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

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

    .map_wrapper {
        flex-direction: column;
    }

    .map_details,
    .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%;
    }
}