html {
    background: white;
    font-family: system-ui, -apple-system, Helvetica Neue, Arial, sans-serif;
}

body {
    margin: 0;
    padding:0;
}

a {
    color: blue;
    text-decoration: none;
}

.top-background {
    background: #0514410f;
    height: 500px;
    width: 100%;
}

.logo {
    width: 120px;
    height: 120px;
}

.logo--footer {
    width: 80px;
    background: #244991;
    padding: 12px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    color: #244991;
    width: 280px;
}

.intro-text {
    color: white;
}

.intro-background__image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.intro-background__text {
    position: absolute;
    background: white;
    left: 120px;
    padding-left: 24px;
    padding-right: 24px;
    color: #0000ff;
    font-weight: bold;
}

.intro-background__text-lower {
    position: absolute;
    background: #244991;
    left: 120px;
    padding-left: 24px;
    padding-right: 24px;
    font-weight: normal;
    bottom: 0;
    color: white;
    margin: 35px 35px 35px 0;
    font-size: 19px;
    width: 600px;
}

.intro-background__container {
    position: relative;
    margin-left: -100px;
    margin-right: -100px;
    margin-top: 48px;
}

.section--blue {
    padding: 48px 80px 80px;
    background: #244991;
}

.section--footer {
    background: #f8f7f5;
    padding: 48px 80px 80px;
    margin-top: 24px;
    font-weight: bold;
}

.section__inner {
    width: 1024px;
    margin: 0 auto;
}

.solution {
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 34px;
    border-bottom: 1px solid white;
    padding: 8px;
    width: 320px;
    margin-right: 24px;
    height: 80px;

    &:hover {
        opacity: 1;
    }

    h4 {
        color: white;
        margin: 0;
        font-weight: 600;
    }

    p {
        color: white;
        display: flex;
        span:nth-child(2) {
            font-size: 32px;
            line-height: 18px;
            font-weight: 100;
        }
    }
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.overview {
    font-size: 18px;
    line-height: 28px;
    width: 480px;
}

.stat {
    h1 {
        font-size: 48px;
        color: blue;
        margin: 0;
    }

    p {
        color: #244991;
        font-size: 18px;
    }
}

.contact {
    width: 340px;
}