/* Media Query
--------------------*/
@media screen {
    /* sticky header */
    .header-wrap {
        position: relative;
        z-index: 2;
        height: 65px;
    }
    #header {
        background: #fff;
        position: relative;
        width: 100%;
        transform: translate3d(0, 0, 0);
        left: 0;
        top: 0;    
        bottom: auto;
        top: 0px;
        margin-top: 0px;
		padding: 2rem 0;
		clear: both;
		overflow: hidden;
    }
    /* sticky header ends */
}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {
    
    /* sticky header */
    .header-wrap {
        height: 125px;
    }
    /* sticky header ends */

}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
	#header {
		padding: 3.25rem 0;
	}    
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Media ends
--------------------*/