body {
    background: #FFF;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 10;

    .image {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .text-content {
        flex: 1;
        font-family: Montserrat, sans-serif;
        padding-left: 10rem;

        .title {
            color: #5DB8B4;
            font-size: 48px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        .text {
            color: #304052;
            font-size: 22px;
            font-style: normal;
            font-weight: 700;
            line-height: 140%;
        }
    }
}

.footer {
    position: absolute;
    left: 10rem;
    bottom: 5rem;
}

.bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    max-height: 99vh;
    z-index: 0;

    svg {
        height: 100%;
    }
}

@font-face {
    font-family: 'montserrat';
    src: url('montserrat-medium.ttf');
}

@media screen and (max-width: 900px) {
    .container {
        flex-direction: column;

        .text-content {
            text-align: center;
            padding: 0 2rem;
        }

        .image {
            max-width: 50%;

            svg {
                width: 100%;
            }
        }
    }

    .footer {
        text-align: center;
        width: 100%;
        left: unset;
    }
}