:root {
    --globeWidth: 25vw;
}

section.locations {
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-color: var(--customGrey);
    padding-bottom: 40px;
}

.locationsTitle {
    font-size: 30px;
    font-weight: bold;
    /* margin-top: calc(var(--upBarHeight) * 1); */
    margin-top: 40px;
    margin-left: var(--generalMarginLeft);
    margin-bottom: 15px;
}

.locationsContent {
    display: flex;
    justify-content: space-between;
}

.globe {
    margin-left: var(--generalMarginLeft);
    width: var(--globeWidth);
    height: 50vh;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../assets/images/globe.webp);
}

.cities {
    width: calc(100vw - var(--globeWidth));
    display: grid;
    padding-left: 5vw;
    justify-items: flex-start;
    grid-template-columns: repeat(4, 1fr);
}

.city {
    margin-bottom: 20px;
}

.city .title {
    font-weight: bold;
}

.city .title,
.city .subtitle {
    margin-bottom: 5px;
}