/* init Syles */
html {
  scroll-behavior: smooth;
}

:target {
	scroll-margin-top: 120px;
}

:focus {
	outline: none;
}

.alignleft,
.alignLeft {
	float: left;
	margin-right: 20px;
}

.alignright,
.alignRight {
	float: right;
	margin-left: 20px;
}

video {
  max-width: 100%;
  height: auto;
}

.customIframe{
	width: 100%;
	height: 1240px;
}


/* Deletes Dropdown caret */
.navbar.bootsnav .nav>li>a:after {
	display: none;
}

/* Overrides Navbar negative space at the bottom */
nav.navbar.bootsnav ul.nav > li > a{
	margin-bottom: 0;
}

/* override animate css */
.wow{
 /*animation-duration: .5s;*/
}

.fadeIn,
.fadeOut{
 animation-duration: .2s;
}

/* Removes Background in the hamburger button */
nav.navbar.bootsnav .navbar-toggle {
	background-color: transparent;
}

/* Genex Signature */
footer #genexSignature div:last-child{
	/*background-color: #000;*/
	background-color: #3e3e3e;
	height: 9px;
}

footer #genexSignature img {
	display: inline-block;
	filter: contrast(.5);
}

footer #genexSignature{
	background-color: rgba(30,30,30,.8);
	padding-top: 15px;
}

footer .subFooter{
	margin-top: 3px;
	margin-bottom: 3px;
	float: left;
	color: #fff;
}


/* Utilty Class */
.customContainer{
	width: clamp( 320px , 100% , 1320px );
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
}

.customContainerFull{
	padding: 0 15px;
	position: relative;
}

.customPadding {
	padding: 20px 40px;
}

.dev{
	background-color: red;
	outline: black 2px solid;
}

.white{
	color: #fff !important;
}

.black{
	color: #000 !important;
}

.whiteImg{
	filter: grayscale() brightness(10);
}

.square {
	width: 100px;
	height: 100px;
}

.hSpacer,
.s{
	margin-top: 4rem;
	margin-bottom: 4rem;
}

.noMar{
	margin: 0 !important;
}

.noPad{
	padding: 0 !important;
}

.nobr{
	white-space: nowrap;
}

.bs,
.bottomSpace{
	margin-bottom: 30px !important;
}

.ts,
.topSpace{
	margin-top: 30px !important;
}

.relativeWrapper {
	position: relative;
}

.gCenter{
	display: grid;
	place-items: center;
}

.flex{
	display: flex;
}

.flex > *{
	flex-grow: 1;
}

.flexCenter{
	display: flex;
	justify-content: center;
	align-items: center;
}

.flexVCenter{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
}

.flexVCenter.alt{
	justify-content: space-between;
}


/* Controls Global Border Radius */
.bodyWrapper .btn,
.bodyWrapper input,
.bodyWrapper select,
.bodyWrapper textarea,
.bodyWrapper .img-thumbnail{
	border-radius: 0;
	border: none;
}

.bodyWrapper .img-thumbnail{
	border: #ddd solid 1px;
}

/* Forms Inputs to Black */
.bodyWrapper input,
.bodyWrapper select,
.bodyWrapper textarea{
	color: #000;
	border: #ddd solid 1px;
}

/* Font Sizes and Weights */
.small {
	font-size: small !important;
}

.smaller {
	font-size: smaller !important;
}

.big {
	font-size: larger !important;
}

.bigger {
	font-size: x-large !important;
}

.huge {
	font-size: xx-large !important;
}

.extreme {
	font-size: xxx-large !important;
}

.thin{
	font-weight: 200 !important;
}

strong,
.bold{
	font-weight: 600 !important;
}

.x-bold{
	font-weight: 800 !important;
}

.caps{
	text-transform: uppercase;
}

/* To Top */
#back-to-top {
	position: fixed;
	bottom: 80px;
	right: 15px;
	z-index: 9999;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 30px;
	background: #f5f5f5;
	color: #444;
	cursor: pointer;
	border: 0;
	border-radius: 2px;
	text-decoration: none;
	transition: opacity 0.2s ease-out;
	opacity: 0;
}

#back-to-top:focus,
#back-to-top:hover{
	background: #e9ebec;
}

#back-to-top.show {
	opacity: 1;
}