@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,300&display=swap');

body {
    margin: 3em;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 3em;
    margin-bottom: 0.2em;
    color: #3555b5;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2em;
    color: #3555b5;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1.7em;
    margin-bottom: 0.2em;
    color: #3555b5;
}

p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.5em;
}

hr {
    border: #D9D9D9 0.5px solid;
    margin-top: 2em;
    margin-bottom: 2em;
}

.header {

}

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: sticky !important;
}

.logo {
    color: #3555b5;
}

.logo-1 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 2em;
}

.logo-2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 2em;
}

.logo-copy-1 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
}

.logo-copy-2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.navbar {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.navbar>a {
    text-decoration: none;
    color: #3555b5;
    margin-left: 2em;
}

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1em;
    flex-wrap: wrap;
}

.hero-text {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.hero-text>p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 1.7em;
}

.hero-img {
    filter: drop-shadow(0 0 0.5rem darkgrey);
    border-radius: 0.5rem;
    max-width: 40% !important;
    float: left;
}

.hero-img>img {
    width: 100%;
}

.anwendung-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.anwendung {
    margin-bottom: 2em;
    width: 80%;
}

.anwendung>h2, .anwendung>h3 {
    margin-bottom: 0.2em !important;
    color: #ffffff;
    text-align: center;
}

.anwendung>p {
    margin-bottom: 0.2em !important;
    color: #ffffff;
}

.btn-product {
    border-radius: 0.2em;
    background-color: #ffffff;
    color: #3555b5;
    font-size: 1.2em;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    padding: 0.7em;
    border: none;
}

#blue-bg-technologien, #blue-bg-anwendung {
    background-color: #3555B5;
    margin: 0 -500%;
    padding: 0 500% !important;
}

.technologien {

}

.technologien-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.technologien-container>h2{
    margin-bottom: 1em;
}

.tools {
    width: 60%;
    padding: 2em;
    margin: 2em auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4em;
}

.tool-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
    text-align: center;
}

.tool-box>h3 {
    color: #ffffff !important;
    text-align: center;
}

.tools-image {
    width: 4em;
}

.content-container-team {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin-top: 2em;
}

.team-container {
    max-width: 50%;
}

.team-members {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4em;
}

.team-member-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
}

.team-member-box>img {
    border-radius: 50%;
    width: 7em;
}

.team-member-box>h3 {
    margin-top: 0.5em;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-image {
    width: 4em;
}

@media (max-width: 1100px) {
    .tools {
        max-width: 100%;
        gap: 2em;
    }

    .tools-image {
        width: 3em;
    }

    .hero {
        justify-content: center;
        margin: 0 auto;
        flex-direction: column-reverse;
    }

    .hero-img {
        width: 90%;
    }

    .hero-text {
        text-align: center;
        width: 80%;
    }
}

@media (max-width: 800px) {
    .hero {
        flex-direction: column;
    }

    .team-container {
        max-width: 100%;
    }
}