﻿#banner {
    z-index: 999;
    position: absolute;
    top: 95px;
    left: 100px;
    height: 90px;
    width: 538px;
    background-color: #2b2e47;
    -webkit-transition: all 180ms ease-in-out;
    -moz-transition: all 180ms ease-in-out;
    -ms-transition: all 180ms ease-in-out;
    -o-transition: all 180ms ease-in-out;
    transition: all 180ms ease-in-out;
}

    #banner .inner {
        padding: 30px;
    }

        #banner .inner .word p {
            font-size: 26px;
            line-height: 1.3em;
            font-weight: 300;
            /*margin: 40px 0 41px 0;*/
            color: white;
            max-width: 900px;
            margin: 0;
            -webkit-transition: all 180ms ease-in-out;
            -moz-transition: all 180ms ease-in-out;
            -ms-transition: all 180ms ease-in-out;
            -o-transition: all 180ms ease-in-out;
            transition: all 180ms ease-in-out;
        }

    /* Hover */
    #banner:hover {
        background-color: white;
        color: #2b2e47;
        -webkit-transition: all 180ms ease-in-out;
        -moz-transition: all 180ms ease-in-out;
        -ms-transition: all 180ms ease-in-out;
        -o-transition: all 180ms ease-in-out;
        transition: all 180ms ease-in-out;
    }

        #banner:hover .inner .word p {
            color: #2b2e47;
            -webkit-transition: all 180ms ease-in-out;
            -moz-transition: all 180ms ease-in-out;
            -ms-transition: all 180ms ease-in-out;
            -o-transition: all 180ms ease-in-out;
            transition: all 180ms ease-in-out;
        }



@media (max-width: 1200px) {
    #banner {
        /*background-color: green;*/
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: 60px;
    }

        #banner .inner {
            padding: 21px
        }

            #banner .inner .word p {
                font-size: 19px;
            }
}

@media (max-width: 767px) {
    #banner {
        top: 45px;
    }
}

@media (max-width: 550px) {
    #banner {
        width: 320px;
        height: 50px;
    }

        #banner .inner {
            padding: 17px;
        }

            #banner .inner .word p {
                font-size: 16px;
            }
}
