@import url('./theme.css');
@import url('./header.css');
@import url('./footer.css');
@import url('./quality.css');

/*
#hero {
    background: url('../assets/office/UK-London.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    padding: 6rem 2rem;
}
*/

/* Hero section - see also header.css */
#index_hero {
    background-image: url('../assets/office/DE-Karlsruhe.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 60%;
    background-position-x: center;
    background-color: var(--text-primary);
    min-height: 100vh;
}

#map_text {
    padding: 5rem 1rem;
}

#map_text .container {
    display: grid;
    grid-template-columns: 1fr 6fr;
    gap: 2rem;
    align-items: center;
}

#map_text .container img {
    width: 100%;
    height: auto;
}

#odo {
    padding: 8rem 1rem;
    background-color: var(--secondary-light-2);
}

@media (max-width:542px) {
    #features {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

#features>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
}

#features h5:has(.dot) {
    font-size: 2rem;
    display: flex;
    align-items: center;
    font-weight: 700;
}

#features h5:has(.dot)>div {
    color: var(--primary);
    /* display: flex; */
}

#features h5:not(:has(.dot)) {
    font-weight: 800;
    font-size: .8rem;
    font-style: italic;
    letter-spacing: .24em;
}

#office {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('../assets/skyscraper_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    margin-block: 2rem;
    padding: 6rem 2rem;
}

#office img {
    width: 10rem;
    height: auto;
}

