        html{
            padding:0;
            margin:0;
            background-image: url(https://fkcapitalrealty.com/images/bg1.jpg) no-repeat center center fixed; 
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
            box-sizing:border-box;
            height:100vh;
            font-family:'Oswald', sans-serif;
        }
        body{
            padding:0;
            margin:0;
        }
        #information{
            height:100px;
            background-color:#353535;
            padding:10px 15px;
            margin-top:65%;
            margin-top:75vh;
            color:white;
            text-align:center;
        }
        .row{
            height:85%;
            max-width:1180px;
            margin:0 auto;
            position:relative;
        }
        .col-35{
            height:100%;
            position:relative;
            width:35%;
            float:left;
            text-align:left;
        }
        .col-35 img{
            max-height:100%;
            max-width:100%;
            width:auto;
        }
        .col-65{
            height:100%:;
            position:absolute;
            top:50%;
            text-align:right;
            font-size:.9em;
            transform:translateY(-50%);
            left:35%;
            width:65%;
        }
        @media only screen 
        and (max-width: 768px){
            .row{
                display:block;
                height:80%;
            }
            .col-35{
                width:100%;
                float:none;
            }
            .col-35 img{
                max-width:50%;
            }
            .col-65{
                width:100%;
                float:none;
                position:relative;
                transform:none;
                left:0;
            }
            #information{
                height:auto;
                margin-top:100px;
            }
        }