header.page-header {
    padding: 5vw 0;
    background-color: var(--text-500-color);
    text-align: center;
}

header.page-header h1 {
    font-size: clamp(32px, 8vw, 60px);
    color: #FFF;
}

header.page-header p {
    font-size: clamp(20px, 4vw, 26px);
    color: var(--text-100-color);
    line-height: 1.5;
    max-width: 700px;
    font-weight: lighter;
    margin: 0 auto;
}

.main-wrapper {
    display: grid;
    grid-template-columns: 500px 1fr;
    grid-template-columns: 1fr;
}

section#branches {
    padding: 30px;
}

.map iframe {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 600px;
}


.branches-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 30px;
}

.branch {
    border: 1px solid var(--text-200-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: #FFF;
}

.branch h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    header.page-header {
        padding: 15vw 0
    }

    .branches-list {
        padding: 5vw;
        gap: 5vw;
    }

    .map iframe {
        min-height: 450px;
    }
}