body {
    box-sizing: border-box;
}

.container {
    align-items: center;
    justify-content: center;
    align-content: center;
}

.grid-container {
    display: grid;
    justify-content: center;
    align-content: center;
    gap: 3%;
    grid-auto-flow: column;
    text-align: center;
}

.div_same {
    display: inline-block;
    width: 300px;
    height: auto;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid black;
    border-radius: 10px;
}

.section-heading {
    margin-top: 0;
    font-weight: 500;
    padding-bottom: 11px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 22px;
}

.container_2 {
    margin-top: 10%;
}

.link_tel {
    color: black;
}

@media only screen and (max-width: 680px) {
    .grid-container {
        display: grid;
        grid-template-rows: 1fr 1fr;
    }

    .div_same {
        width: 200px;
        height: auto;
    }
}