@charset "UTF-8";
/* CSS Document */

/*@Resuable Global Styles
===================================== */
body {
	background:var(--dark-blue);
	padding: 0;
	margin: 0;
	position: relative;
	cursor: default;
}


#mainWrapper{
    width:100%;
    height: auto;
    min-height:100vh;
    display: block;
    
    background-image: url(../images/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    
}

.reveal,
.reveal:focus{
    background-color: var(--white) !important;
    borders: 1px solid var(--borders);
}

img {
	image-rendering: optimizeQuality;
	-ms-interpolation-mode: bicubic;
}

.vertical-align {
	display: -webkit-flex;
	display: flex;
	display: -ms-flexbox;

	-webkit-flex-direction: row;
	flex-direction: row;
	-ms-flex-direction: row;

	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;

	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-pack: justify;
}

.reveal-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

.box-shadow{
	box-shadow: 0 4px 4px 0 rgb(0 0 0 / 0.1);
}

.bg-image{
    background-position: top center;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.side-bar{
    padding: 2em 3em;
    height: 100%;
    background-color: rgba(8, 25, 26, 0.4);
    color: var(--white);
}

.side-bar-content{
    width: 100%;
    display: inline-block;
}

.side-bar .brand-hero{
    margin: 0 auto 3em;
    text-align: center;
    display: block;
}
/*@end Resuable Global Styles
===================================== */

/* @Primary Navigation
===================================== */
.hideShow{
	display:block !important;
}

.brand {
    max-width:300px;
    position: relative;
}

.brand-hero{
    width:100%;
    max-width: 272px;
    margin-bottom: 3em;
}

#navWrapper{
	width: 100%;
    padding: 2em 2em;
    position: fixed;
    top:0;
    left: 0;
    z-index: 1000;
}

#navWrapper ul{
	list-style: none;
    display: inline-block;
    text-align: center;
    padding: 0;
    margin:0 0;
    float: right;
}

#navWrapper ul li {
	text-align:center;
    font-weight: 600;
	
	padding:0 0.55em;
	margin: 0;
	display: inline-block;
}

#navWrapper ul li a{
    font-size: 18px;
	color:var(--white);
    font-weight: 600;
	line-height: normal;
    text-transform: uppercase;
    
    
	display: inline-block;
    padding: 0 1em 0.25em;
    position: relative;
    border-bottom: 2px solid transparent;
	
	 transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

#navWrapper ul li a:hover,
#navWrapper ul li a:active,
#navWrapper ul li a:focus{
    color:var(--white);
	text-decoration:none;
    background: none !important;
    background-color:none !important;
    border-bottom: 2px solid var(--light-blue);
}

#navWrapper ul li a.current{
    color:var(--white);
	text-decoration:none;
    border-bottom: 2px solid var(--light-blue);
}

#navWrapper.scrolling{
    background-position: 50% 14%;
    padding: 1.55em 1.55em;
    background-image: url(../images/bg-hero.jpg);
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/* @end Primary Navigation
===================================== */


/* @Off Canvas List
===================================== */
#mobileNav{
	width:100%;
	position: fixed;
    top: 0;
    left: 0;
	z-index: 500;
	padding: 1em 1.25em;    
    
    background-color: transparent;
    
}

#mobileNav.scrolling{
    background-color: var(--dark-blue);
    background-image: url(../images/bg-hero.jpg);
    background-position: 40% center;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: auto;
}


#mobileMenuWrapper{
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
		
	position:fixed;
	z-index:400;
	top: 60px;
	height:100%;
	width:100%;
	background: var(--blue); 
	display:none;
	opacity:0;
	padding: 0 0 6em;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

#mobileMenuWrapper ul{
	list-style-type: none;
	padding: 0;
	margin: 0 0;
	display: block;
    font-size: 18px;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	position: relative;
	z-index: 1;
} 

#mobileMenuWrapper ul li {
	margin: 0;
}

#mobileMenuWrapper ul li a {
    color: var(--white);
    font-size: 18px;
	font-weight: 500;
    text-transform: none;
    
    display: block;
    padding: 0.75em 1.25em;
    position: relative;
    z-index: 1;
}

#mobileMenuWrapper ul li a.current, 
#mobileMenuWrapper ul li a:hover {
	color:var(--dark-blue);
    background-color: var(--light-blue);
	text-decoration: none;
}

.menu-icon-mobile {
    width: 40px;
    height: 15px;
    margin: 0;
    top: -2px;
    float: right;
    position: relative;
	
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.menu-icon-mobile span{
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.menu-icon-mobile span:nth-child(1) {
	top: 0px;
}

.menu-icon-mobile span:nth-child(2) {
	top: 8px;
    width:80%;
}

.menu-icon-mobile span:nth-child(3) {
	top: 16px;
}

.menu-icon-mobile.open span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.menu-icon-mobile.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.menu-icon-mobile.open span:nth-child(3) {
	top: 8px;
	
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
/* @end Off Canvas List
===================================== */

/* @Hero / Title Wrappers
===================================== */
#heroWrapper{
	width:100%;
    padding: 6em 1em;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

#heroWrapper .grid-container,
#heroWrapper .grid-x{
    position: relative;
    z-index: 2;
}


#heroWrapper .btn{
    margin-top: 1.55em;
}

#heroWrapper.small-hero{
    height: 450px;
    min-height: auto;
     background-position: center top;
}

#heroWrapper p{
    color: var(--white);
}
/* @end Hero / Title Wrappers
===================================== */

/*@Section Wrapper
===================================== */
#sectionWrapper{
	width: 100%;
    height: auto;
	padding:6em 1em;
	overflow: hidden;
	position:relative;
	z-index:1;
}

/*@end Section Wrapper
===================================== */

.roundie{
    width:100%;
    height:auto;
    overflow: hidden;
    border-radius: 50%;
}

.team-wrapper{
    padding:0 2em;
    display: inline-block;
    width:100%;
}

.form-row{
    margin-bottom: 1.55em
}
/* @Footer
===================================== */
#footerWrapper{
	width:100%;
	padding: 1.55em 2.55em;
	position:relative;
	z-index:4;
	overflow: hidden;
    color: var(--white);
    font-size: 0.825rem;
    text-align: right;
}

#footerWrapper .brand-footer {
    max-width:180px;
    float: right;
}
/* @end Footer
===================================== */

/* @Main Menu
===================================== */
.main-menu {
    width: 90px;
    height: 100vh;
    min-height: 100vh;
    padding: 1em 0.55em;
    background: var(--very-dark-blue);
    
    position: -webkit-sticky;
    position: sticky;
    z-index: 300;
    top: 0;
    left: 0;
    float: left;
    overflow-y: auto;

    
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
}

.container {
    width: calc(100% - 90px);
    min-height: 100vh;
    margin-left: 90px;
    position: relative;
}

.grid-wrapper{
    min-height: 100vh;
}

.search-form{
    width:400px;
    height: 100%;
    padding:1.875rem;
    background-color: var(--dark-blue);
}

.dashboard-content-wrapper{
    padding:2em 1.55em;
}

.card-wrapper{
    width: 100%;
    min-height: 250px;
    padding:1.25rem;
    border-radius: 8px;
    border: 1px solid var(--blue);
    margin-bottom: 1.875rem;
    
    color: var(--white);
}

.header-icon{
    width:100%;
    max-width: 16px;
    margin-right: 0.75em;
}

.card-wrapper h3{
    margin-bottom: 0; 
}

.severity{
    display: inline-block;
    font-size: 0.725rem;
    font-weight: 500;
    padding: 0.35em 1em;
    height: 20px;
    line-height: 1em;
    border-radius: 16px;
}

.avatar-medium{
    width:60px; 
    height: 60px;
}

.card-heading{
    margin-bottom: 1.25em;
}

.table-row{
    border-bottom: 1px solid var(--blue);
    font-size: 0.75rem;
    padding-top:0.55em;
    padding-bottom: 0.55em;
}

.table-wrapper .table-row:last-child{
    border-bottom: none;
}

.table-row p{
    font-size: 0.75rem;
    margin-bottom: 0;
}

.table-row h4{
    margin-bottom: 0;
}

.card-row{
   margin-bottom: 1em;
}

.card-wrapper .card-row:last-child{
   margin-bottom: 0;
}

@media only screen and (max-width: 1600px) {
    .full-width-medium-large{
        flex: 0 0 auto !important;
        width: calc(100% - 1.875rem) !important;
        margin-bottom: 1.875rem;
    }
}

@media only screen and (max-width: 1440px) {
    .grid-x > .card-cell {
        flex: 0 0 auto;
        width: calc(100% - 1.875rem) !important;
    }
    
    .full-width-medium-large{
        flex: 1 1 0px !important;
        width: auto !important;
        margin-bottom:0;
    }
    
}


@media only screen and (max-width: 1280px) {
    
    .brand-hero{
        max-width: 225px;
    }

    .full-width-medium-large{
        flex: 0 0 auto !important;
        width: calc(100% - 1.875rem) !important;
        margin-bottom: 1.875rem;
    }

}


@media only screen and (max-width: 720px) {
	html{
		height: 100%;
		width: 100%;
	}
    
    .top-spacer{
        display: block;
        width:100%;
        height: 64px;
    }
    
    .brand-mobile{
        width: 145px;
        min-width: inherit;
        margin-top: 0;
        top: -2px;
    }
    
    .brand {
        max-width: 250px;
    }
    
    #heroWrapper .brand{
        margin-bottom: 1.75em;
    }
    
    .brand-hero{
        max-width: 200px;
        margin-bottom: em;
    }

    .vertical-align{
        display:inline-block;
    }
    

	.hide-me{
		display: none;
	}
    
    .add-margin-bottom{
        margin-bottom: 1.55em;
    }   
    
    #heroWrapper,
    #heroWrapper.small-hero{
        height: auto;
        min-height: calc(100vh - 66px);
        padding: 3em 1.55em 1em;
    }
    
    #heroWrapper .grid-container, 
    #heroWrapper .grid-x {
        height: auto;
    }
    
    
    #sectionWrapper {
        padding: 4em 1em;
    }
    
    #footerWrapper {
        text-align: left;
    }
    
    
    #footerWrapper .brand-footer {
        max-width: 150px;
        float: none;
        margin: 0 auto;
    }
    
    .side-bar {
        padding: 2em 1.55em !important;
        height: auto;
    }
    
    
}
