        html {
            height: 100%;
        }

        header {
            flex: 1 0 auto;
        }

        body {
            display: flex;
            flex-direction: column;
            height: 100%;
            margin: 0;
            font-family: 'Noto Sans', sans-serif;
            color: #14295E;
        }

        h1 {
            font-size: 28px;
            line-height: 30px;
            margin-top: 0;
            margin-bottom: 10px;
        }

        a {
            color: #14295E;
        }

        .wrapper {
            padding: 0px;
            margin: 0 auto;
            max-width: 1024px;
            display: flex;
            flex-direction: column;
            flex: 1 0 auto;
            justify-content: space-between;
        }

        .logo {
            padding: 30px 40px;
        }

        .content {
            display: flex;
            justify-content: space-between;
            margin: 0 82px;
        }

        .left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            width: 420px;
            padding-right: 80px;
        }

        .text {
            font-size: 15px;
            line-height: 20px;
        }

        .image-wrapper {
            width: 481px;
        }

        .banner {
            margin-top: 140px;
            margin-bottom: 40px;
            margin-left: 120px;
            margin-right: 120px;
        }

        footer {
            display: grid;
            grid-template: "logo links"
                "text links";
            grid-template-columns: 1fr 365px;
            flex: 0 0 auto;
            padding: 20px 44px;
            border-top: 1px solid #DFE2EA;
        }

        .footer-logo {
            grid-area: logo;
        }

        .footer-text {
            grid-area: text;
            color: #8994AF;
            font-size: 10px;
        }

        .footer-links {
            display: grid;
            grid-area: links;
            grid-template-columns: repeat(2, 1fr);
            grid-column-gap: 80px;
            grid-row-gap: 10px;
            font-size: 13px;
        }

        .footer-links>a {
            text-decoration: none;
        }

        .footer-links>a:hover {
            text-decoration: underline;
        }
		
        @media only screen and (max-width: 960px) {
            h1 {
                margin-top: 22px;
            }

            .logo {
                padding: 15px 15px 15px;
            }

            .content {
                flex-direction: column-reverse;
                align-items: center;
                margin: 0 15px;
            }

            .image-wrapper {
                width: 290px;
            }

            .left {
                width: auto;
                padding-right: 0px;
            }

            .banner {
                margin-top: 40px;
                margin-left: 15px;
                margin-right: 15px;
            }

            footer {
                display: block;
                padding: 27px 27px 20px 30px;
            }

            .footer-links {
                padding: 14px 0;
                margin: 14px 0;
                border-top: 1px solid #F3F4F7;
                border-bottom: 1px solid #F3F4F7;
            }
		}