/*
Theme Name:     TWG Material
Theme URI:      https://github.com/TWGHQ/TWGMaterialTheme.git
Description:    TWG Material Theme
Author:         The Web Guys - Ben
Author URI:     http://www.the-web-guys.com
Version:        2.1.7
Text Domain:    twg-material
Tested up to: 6.1
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
@import url("main.css");

/*** stickynav ***/ 

/*header.site-header nav.navbar{
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 9;
    display: block;
}
header.site-header nav.navbar.stickynav-active{
	position: fixed;
	animation: smoothScroll 0.3s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}*/