/*#######################################
##### Global Styles
#######################################*/
/* COLORS
Blue - 01aef0
Grey - 444444
*/
/*Material Shadows*/
.shadow-0 {
    border: 1px solid #eee;
}
.shadow-1 {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.shadow-2 {
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.shadow-3 {
    box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}
.shadow-4 {
    box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);
}
.shadow-5 {
    box-shadow: 0 40px 77px 0 rgba(0, 0, 0, 0.22), 0 27px 24px 0 rgba(0, 0, 0, 0.2);
}
a{
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    color: #01aef0;
}
a:hover{
	color: #007095;
}
.card{
    background: white;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    padding: 20px;
    position: relative;
    z-index: 99;
}
.blue-section{
    background: #01aef0;
    padding: 20px 0;
}
.dark-section{
    background: url('../images/gun_metal.png') repeat;
    position: relative;
    z-index: 9;
}

h2{
    color: #01aef0;
    font-weight: bold;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.3);
}
h2.title{
	margin: 20px 0;
    text-align: center;
    padding: 0;
}
/*#######################################
##### Navigation Styles
#######################################*/
body{
	padding-top: 80px;
}
body.home{
	padding-top: 0;
}
.logo img{
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 8;
    margin-top: -28px;
    margin-left: -200px;
    width: 400px;
    -webkit-transition: all .55s ease-in-out;
    -moz-transition: all .55s ease-in-out;
    -ms-transition: all .55s ease-in-out;
    -o-transition: all .55s ease-in-out;
    transition: all .55s ease-in-out;
}
.logo img.movement,
.logo img.slide{
    top: 20px;
    left: 20px;
    margin-top: 0;
    margin-left: 0;
    width: 200px;
    z-index: 99999;
}
.logo h2{
    position: fixed;
    top: 50%;
    margin-top: 40px;
    text-align: center;
    color: white;
    font-size: 1.6em;
    width: 100%;
}
#navigation{
    height: 75px;
    width: 100%;
    background: rgba(0, 0, 0, .85);
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 999;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
#navigation.slide{
    background: rgba(0, 0, 0, .85);
    top: 0;
    height: 100vh;
}
i.menu{
    position: absolute;
    top: 14px;
    right: 20px;
    color: white;
    font-size: 3em;
    z-index: 99999;
    cursor: pointer;
}
#menu-main-menu,
#menu-homepage-menu{
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-150%);
    opacity: 0;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
#menu-main-menu.slide,
#menu-homepage-menu.slide{
    padding: 0;
    opacity: 1;
    top: 50%;
    transform: translate(-50%,-50%);
}
.menu-item{
    list-style: none;
    font-size: 2.5em;
    color: white;
    width: 100%;
    text-align: center;
    display: block;
}
.menu-item a:hover{
	color: white;
}
span.menu-icon {
    position: absolute;
    right: 55px;
    top: 11px;
    font-size: .5em;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif
}
.product-single img{
	float: left;
	margin: 0 10px 10px 0
}


body.home #navigation{
    background: rgba(0, 0, 0, 0);
}
body.home #navigation.fadeIn,
body.home #navigation.slide{
    background: rgba(0, 0, 0, .90);
}
.menu-item {
    font-size: 2em;
    text-transform: uppercase;
}
/*#######################################
##### Homepage Styles
#######################################*/
body.home .page-title{
    display: none;
}
#Welcome{
    width: 100%;
    height: 105vh;
    background: rgba(0, 0, 0, .5);
}
.more-button{
	position: fixed;
    top: 75%;
    width: 100%;
    text-align: center;
}
.more-button a{
	color: white;
	font-size: 5em;
	-webkit-animation: pusate 1s infinite alternate;
    -moz-animation: pusate 1s infinite alternate;
    -animation: pusate 1s infinite alternate;
    text-shadow: 0 0 8px #ccc;
}
.more-button a:hover {
    
}
@-webkit-keyframes pusate {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px #ffffff; }
}
@-moz-keyframes pusate {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px #ffffff; }
}
@keyframes pusate {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px #ffffff; }
}
div.card.message{
    margin: -75px 0;
}
.flex-video{
    margin-bottom: 0;
}
.card.small-12.medium-10.medium-centered.columns.wow.fadeInUp.clearfix {
	margin-bottom: 20px;
}
.button-section{
    padding-top: 100px;
}
a.icon-button{
    background: rgba(0, 0, 0, .75);
    color: white;
    text-align: center;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: block;
    margin: 20px auto;
    padding: 50px 0;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
a.icon-button:hover{
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
a.icon-button i.mdi{
    font-size: 3em
}
a.icon-button h4{
    color: white;
}

/*Testemony Slider*/
.testemony{
    position: relative;
    width: 100%;
    height: 380px;
    margin: 0;
    padding: 20px 40px;
}
.testemony img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%
}
.testemony div.content{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.testemony p.quote{
    font-size: 2em;
    color: white;
    text-align: center;
    line-height: 1;
    margin: 0;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
}
.testemony p.author{
    font-size: 1.8em;
    color: white;
    text-align: right;
    font-style: italic;
    line-height: 1;
    margin: 10px 0 0;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
}
div.difuse{
    width: 100%;
    height: 380px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgba(0,0,0,.35)
}



/*Product Cards*/
.product-card{
    margin-bottom: 25px;
}
div.photo img{
	margin: 0 15px;
}
.product-card:nth-child(odd) div.photo{
	float: left;
}
.product-card:nth-child(even) div.photo{
	float: right;
}
.product-card h2{
	font-size: 1.7em;
}
.product-card:nth-child(odd) div.product-content{
	text-align: left;
}
.product-card:nth-child(even) div.product-content{
	text-align: right;
}



/*#######################################
##### Blog Styles
#######################################*/
article.card{
	margin-bottom: 20px;
}
.article-header h2{
	font-size: 1.5em;
    margin: 0;
}
.byline{
    margin-bottom: .5rem;
}
a.thumbnail-img img{
	float: left;
	display: block;
	margin: 0 10px 10px 0;
}
h1.entry-title.single-title {
    line-height: 1;
    margin-bottom: 15px;
}

/*#######################################
##### Footer Styles
#######################################*/
#footer{
	z-index: 99999999999;
	position: relative
}
.sub-nav dd a, .sub-nav dt a, .sub-nav li a{
	color: white;
}
#footer .right a{
	color: white;
}
.copyright{
	font-size: .75rem;
}
#footer.blue-section{
	padding-bottom: 0;
}
/*#######################################
##### Media Queries Styles (UnComment when needed)
#######################################*/
/*Mobile Only - max-width 640px*/
/*@media only screen and (max-width: 40em) {

}*/

/*Medium Screen & Up - min-width 641px*/
/*@media only screen and (min-width: 40.063em) {

}*/

/*Large Screens & Up - min-width 1025px*/
/*@media only screen and (min-width: 64.063em) {

}*/
