/*
Theme Name: CIS Australia Theme
Author: Michael Fucilli
Decription: Child theme of Global Educators Responsive, handling all CIS Australia company specific styling and support.
Template: geresponsive
Version: 0.1
Tags: bootstrap, child-theme, global educators
*/

@media(min-width:992px){
    .stickynav {
            position: fixed;
            top: 90px;
            width: 100%;
            z-index: 99;
            background: #fff;
            max-width: 100%!important;
            opacity:1;
            -webkit-animation-name:stickynav;
            animation-name:stickynav;
            -webkit-animation-duration: 0.1s;
            animation-duration: 0.1s;
            -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
            -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.15);
            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.15);
        }
        @-webkit-keyframes stickynav{
            from {top:0;}
            to {top: 90px;}  
        }
        @keyframes stickynav{
            from {top:0;}
            to {top: 90px;}  
        }
    }