@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: TitleFont;
    src: url("../fonts/Metropolis-Bold.ttf") format("truetype");
}
@font-face {
    font-family: TitleFont2;
    src: url("../fonts/Metropolis-Bold.ttf") format("opentype");
}
@font-face {
    font-family: MenuFont;
    src: url("../fonts/GothamMedium.ttf") format("truetype");
}
@font-face {
    font-family: MainBodyFont;
    src: url("../fonts/GothamMedium.ttf") format("truetype");
}
@font-face {
    font-family: PWDFont;
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
    font-family: Scripty;
	src: url(../fonts/ClickerScript-Regular.ttf) format("truetype");
}

/*Scroll Bar*/
/* width */
::-webkit-scrollbar {
  width: 11px;
	background: transparent;
}
/* Track */
::-webkit-scrollbar-track {
  background: #000000;
}
/* Handle */
::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: #990000;
	margin-right: 1px;
	margin-left: 1px;
	width: 8px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #990000;
}

#tracker{
  position: absolute;  
  top: calc(50vh - 100px);
  left: calc(50vw - 100px);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
}
#tracker:after {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  border-radius: 50%;
  height: 200px;
  width: 200px;
  background: radial-gradient(rgba(176,41,38,0.9), rgba(176,41,38,0.6), rgba(176,41,38,0.2), rgba(0,0,0,0));

}

#pagecontainer{
	width: 100%;
	min-height: inherit;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: stretch;
	position: relative;
	z-index: 5;
}
#InlineLink{
	display: inline-flex;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	align-self: center;
	justify-content: center;
	align-content: center;
	align-items: center;
}
#PWD {
	display: inline-flex;
	flex-direction: row;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	align-self: center;
	justify-content: center;
	align-content: center;
	align-items: center;
	transform: scale(0.9);
}

#PWD:hover > .PWDLink {
	color: #5b37cc;
}
.PWDspidericon{
	width: 25px;
	height: 25px;
	padding-left: 2px;
}
.PWDspider {
	fill: #515151;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#PWD:hover .PWDspider {
	fill: #5b37cc !important;

}
.PWDeyes {
	fill: #5b37cc;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#PWD:hover .PWDeyes {
	fill: #44ef44 !important;
}
.PWDtext {
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	font-family: PWDFont;
	text-align: right;
	margin-right: 5px;
}
.PWDlink:link {
	text-decoration: none;
	color: #515151;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.PWDlink:visited {
	text-decoration: none;
	color: #515151;
}
.PWDlink:hover {
	text-decoration: none;
	color: #5b37cc;
}
.PWDlink:active {
	text-decoration: none;
}

#popupBackground{
	z-index: 9998 !important;
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(20,20,20,0.9);
}
#popup{
	width: 90%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	z-index: 9999 !important;
	left: 50%;
	right: auto;
	position: absolute;
	background-color: transparent;
	margin-top: 0px;
	padding-top:0px;
	overflow-y: scroll;
	justify-content: center;
	float: none;
	max-width: 650px;
	align-self: center;
	transform: translate(-50%, 0%);
}
#popupText{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: relative;
	background-color: transparent;
	z-index: 2;
	max-width: 600px;
	padding-bottom: 20px;
	padding-top: 20px;
	padding-left: 0%;
	font-size: 100%;
	overflow-y: scroll;
    padding-right: 17px;
    box-sizing: content-box; /* So the width will be 100% + 17px */
}
.hidescroll::-webkit-scrollbar { 
    display: none; 
}
.hidescroll{ 
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */ 
}
.RedClose {
	color: #efefef;
	font-size: 250%;
	font-family: MainBody, calibri, Tahoma, Geneva, sans-serif;
	font-weight: 400;
	padding-right: 30px;
}

.PrimaryColor {
	color: #990000 !important;	
}
.SecondaryColor {
	color: #515151 !important;
	transition: all 0.6s ease;
	font-weight: bold;
}
.SecondaryColorLight {
	color: #d1c6b4 !important;
	transition: all 0.6s ease;
	font-weight: bold;
}
.BrightBlue{
	color: #43b3ff !important;	
}
.BrightTeal{
	color: #15c1ce !important;	
}
.DarkColor {
	color: #353535 !important;
}
.White {
	color: #ffffff !important;
}
.Black {
	color: #000000 !important;
}
.DarkGreyText {
	color: #353535 !important;
	transition: all 0.6s ease;
}
.GreyText {
	color: #c8c5cc !important;
	transition: all 0.6s ease;
}
.LightGreyText {
	color: #ccc !important;
}
.RedText {
	color: #c02134;
	transition: all 0.5s linear;
}
.LogoGrey{
	fill: #fff;
	transition: all 0.5s linear;
}
.LogoGrey.stick{
	fill: #6f7271;
	transition: all 0.5s linear;
}
.LogoRed{
	fill: #c02134;
}
.tablepadding{
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	padding: 20px !important;
}
#BackToTop:hover .RedText{
	transition: all 0.5s linear;
	color: #ffffff !important;
}

#AutonomousVehicleCameras{
	position: fixed;
	min-width: 100%;
	min-height: 100%;
	z-index: 1;
	overflow: hidden;
}
.Handwriting {
	font-family: Scripty !important;
}
.copywritesection{
	min-height: 40px !important;
	background-color: #000;
	position: absolute;
}

#BackToTop{
	display: flex;
	position: fixed;
	right: 0;
	bottom: 0;
	margin-right: 5px;
	margin-bottom: 5px;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 10px;
	width: 75px;
	height: 75px;
	background-color: #000000;
	opacity: 0;
	z-index: 5000;
	transition: all 0.5s linear;
	cursor: pointer;
	transform: scale(0%);
	border: 1px solid #c02134;
}
#BackToTop:hover{
	background-color: #c02134;
	transition: all 0.5s linear;
	color: #ffffff !important;
}
#BackToTop.stick{
	opacity: 1;
	transition: all 0.5s linear;
	transform: scale(100%);
}
#BackToTopAnchor {
	height: 0px;
	width: 0px;
	position: absolute;
	top: 0;
	left: 0;
}
.BackToTopText {
	font-size: 16px;
	font-family: MainBodyFont, calibri, Tahoma, Geneva, sans-serif;
	font-weight: normal;
	padding: 5px;
	margin: 0px;
}
.ProcessNumberSVGline{
	fill: none;
	stroke: #231f20;
	stroke-miterlimit: 10;
}

.ProcessNumberSVGcircle{
	fill: #231f20;
	stroke-width: 0px;
}

.SloganBackground {
	background-color: rgba(255,255,255, 0.8);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.anchorlink{
	top: -150px;
	display: block;
    position: relative;
    visibility: hidden;
}
.ScriptFont{
	font-family: Scripty !important;
	font-size: 85%;
}

.WhiteCircleMiddle{
	position: relative;
	background-color: #000;
	display: flex;
	margin: 0;
	padding: 0;
	z-index: 10;
	width: 100%;
}
.hovertint{
	filter:contrast(100%);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.hovertint:hover{
	filter:contrast(130%);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.hovergreyscale{
	filter:grayscale(100%);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.hovergreyscale:hover{
	filter:grayscale(0%);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.hovergreyscaledark{
	filter:grayscale(100%) brightness(40%);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.hovergreyscaledark:hover{
	filter:grayscale(0%) brightness(100%);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#svgmask{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: flex;
	align-self: center;
	justify-content: center;
	align-content: center;
	align-items: center;
	transform-origin: center center;
	}
#svgmaskreverse{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: flex;
	align-self: center;
	justify-content: center;
	align-content: center;
	align-items: center;
	transform-origin: center center;
	}
#svgmaskcontainer{
	width: 0%;
	height: 0%;
	object-fit: contain;
	object-position: center center;
	position: relative;
	display: flex;
	align-self: center;
	justify-content: center;
	align-content: center;
	align-items: center;
	transform-origin: center center;
	}

.linecolor{
	background-color: #202020;
	border-left: solid 4px #3b5998;
}
.iconcolor{
	fill:#68bd43;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.iconcolorblue{
	fill:#2fc3ea;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.hometab:hover .iconcolor{
	fill:#fff;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.hometab:hover .iconcolorblue{
	fill:#808080;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.HomeScripty {
	font-family: Scripty;
	text-transform: none;
	font-weight: normal;
	font-size: 80%;
}
.videonomouse {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.FullVideo{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	min-width:100%;
	min-height: 100%;
	object-fit: cover; 
	margin-left: auto;
	margin-right: auto;
	position: relative;
	object-position: center center;
	transform-origin: center center; 
	background-image: url("../Graphics/MedicalLab.gif");
   -webkit-background-size:400px 300px; 
   -moz-background-size:400px 300px; 
   -o-background-size:400px 300px; 
   background-size:400px 300px;
	background-position: center center;
	background-repeat: no-repeat;
}
.HalfVideo{
	min-width:100%; 
	height: 200px; 
	top: 0;
	object-fit: cover; 
	transform-origin: center center; 
	background-image: url("../Graphics/MedicalLab.gif");
   -webkit-background-size:300px 200px; 
   -moz-background-size:300px 200px; 
   -o-background-size:300px 200px; 
   background-size:300px 200px;
	background-position: center center;
	background-repeat: no-repeat;
}
 video[poster]{
    object-fit: cover;
  }
.iframevideoadjust {
	aspect-ratio: 16 / 9;
	display: flex;
	position: relative;
    height: auto;
    width: 100%;
	margin: 0 0%;
	border: 0px solid transparent;
	box-sizing: border-box;
}
.iframevideoadjustWideScreen {
	aspect-ratio: 16 / 6.5;
	display: flex;
	position: relative;
    height: auto;
    width: 100%;
	margin: 0 0%;
	border: 2px solid transparent;
	box-sizing: border-box;
}
.iframemodeladjust {
	aspect-ratio: 4 / 3;
	display: flex;
	position: relative;
    min-height: inherit;
    min-width: 100%;
	margin: 0 0%;
	border: 1px solid rgba(255,255,255,0.3);
	box-sizing: border-box;
}
#sequencimagecontainerstick{
   height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	position: sticky;
	top: 0;
}
#sequencimagecontainer{
   height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	position: sticky;
	top: 0;
}
#sequencimagecontainer img{
   aspect-ratio: 16 / 9;
   min-width: 100%;
	width: auto;
	height: auto;
position: sticky;
top: 0;

}
.sup{
	vertical-align: super;
	font-size: 14px;
}
.textpadding{
	padding:0px 5px !important;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.HeadlineFade{
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 200px;
	z-index: 2;
	background: -webkit-linear-gradient(transparent, #101923);  
    background: -moz-linear-gradient(transparent, #101923);  
    background: -o-linear-gradient(transparent, #101923);  
    background: linear-gradient(transparent, #101923);
	background-size: 1px 100%;
	background-repeat: repeat-x;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
}
.BodyFlexSplit{
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 20px 0px;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.more {
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}
.FooterIcons {
	color: #232323;
	font-size: 200%;
	font-family: MainBodyFont, calibri, Tahoma, Geneva, sans-serif;
	font-weight: 100;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0px;
}

#tint2{
	width:100%;
	height:100%;
	display: flex;
	min-height:800px;
	left: 0;
	background-color:rgba(0,0,0,0.25);
	-webkit-backdrop-filter: grayscale(50%) brightness(50%);
    backdrop-filter: grayscale(50%) brightness(50%);
	position:relative;
	z-index:2;
	margin-top:0px;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.Copyright {
	color: #fff;
	font-size: 111%;
	font-family: MainBodyFont, calibri, Tahoma, Geneva, sans-serif;
	padding-right: 11px;
	padding-left: 11px;
	line-height: 1.5;
}

.BalloonLink{
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
}

.BalloonHeader2 {
	display: inline-block;
	height:35px;
	padding-bottom: 5px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	transition: all 0.3s ease-in-out;
}
.TitleLineFlexed{
	display: block;
	width:100%;
	align-items: center;
	align-content: center;
	vertical-align: middle;
}
.TitleLine{
	width: 100%;
	height: auto;
	padding-right: 0px;
	padding-bottom: 100px;
	padding-left: 0px;
	padding-top: 0px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	z-index: 1;
}
.hometab:hover .TitleLine {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }
.whitebtn:hover .TitleLine {
	width: 20px;
	padding-right: 5px;
    transform: scaleY(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }
.whitebtnsmall:hover .TitleLine {
	width: 20px;
	padding-right: 5px;
    transform: scaleY(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }
.hometabHoverTextColor{
	color: #cb7225;
	white-space: nowrap;
	margin: auto;
	width: auto;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hometab:hover .hometabHoverTextColor {
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }
.grid-item:hover {
	border: 1px solid;
	border-color: rgba(175,148,83,1);
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	filter: brightness(80%);
}

.ConsultForm{
	background: -webkit-linear-gradient(to bottom left, #28323e, #101923, #28323e);  
    background: -moz-linear-gradient(to bottom left, #28323e, #101923, #28323e);  
    background: -o-linear-gradient(to bottom left, #28323e, #101923, #28323e);  
    background: linear-gradient(to bottom left, #28323e, #101923, #28323e);
	background-size: 100% 100%;
	background-position: center center;
	border-radius:2px;
	border-width: 2px;
    border-style: solid;
	border-image: linear-gradient(to bottom, #fecd8f, #f7941d, #3b2313) 1;
	width: 90%;
	padding-bottom: 20px;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 20px;
	max-width: 500px;
	}

.imagebackground{
	background-size: cover;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size: cover;
	background-repeat: no-repeat;
	background-position:center center !important;
}
.imagebackgroundslide{
	position: absolute;
	height: 1000px;
	margin-top: -200px;
	min-width: 100%;
	z-index: -1;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size:  cover;
	background-repeat: no-repeat !important;
	background-position:center center !important;
}
.FullSlideContainer{
	position: relative;
	width: calc(100% - 40px);
	margin: 20px;
	overflow: hidden;
}
.imagebackgroundslideLg{
	position: absolute;
	height: 1700px;
	margin-top: -100px;
	width: 100%;
	z-index: -1;
	background-size: cover;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size: cover;
	background-repeat: no-repeat !important;
	background-position:center center !important;
}
.tint{
	-webkit-filter: brightness(60%);
	filter: brightness(60%);
}
.tintlight{
	-webkit-filter: brightness(75%);
	filter: brightness(75%);
}
.tint2{
	-webkit-filter: brightness(50%);
	filter: brightness(50%);
	width: 100%;
	height: 100%;
}
.tintBlur{
	background-color: rgba(0,0,0,0);
	-webkit-backdrop-filter: brightness(60%) blur(3px);
    backdrop-filter: brightness(60%) blur(3px);
	width: 100%;
	height: 100%;
}
.tintBlurVideo{
	-webkit-filter: brightness(40%) blur(5px);
    filter: brightness(40%) blur(5px);
}
.tintBW{
	background-color: rgba(0,0,0,0.5);
	-webkit-backdrop-filter: grayscale(100%);
    backdrop-filter: grayscale(100%);
	width: 100%;
	height: 100%;
}
.blackandwhite{
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* Backgrounds */
.whitebackground { 
    background-color: #fff !important;
}
.blackbackground { 
    background: #000;
}
.brownkbackground { 
    background: #6a5f4b;
}
.beigekbackground { 
    background: #d1c6b4;
}
.invertbackground{
	-webkit-backdrop-filter: invert(1);
    backdrop-filter: invert(1);
}
.invertwhitebackground{
	background: rgba(255,255,255,0.5);
	-webkit-backdrop-filter: invert(1);
    backdrop-filter: invert(1);
}
.blurbackground{
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.logoiconback{
	background-image: url("../AutonomousVehicles/CameraManufacturing/CarnegieRobotics-AutonomousVehicleSolutions2.svg");
	background-size: auto 80%;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: visible;
}
.metalback{
	background-image: url("../OversizedLoadTrucking/HeavyTrucking/LargeCargoHauling/OversizedTrailerTrucking/MetalBackground.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.tealbackground {
	background: -webkit-linear-gradient(to bottom right, #137893, #0d7988, #0e3a47);  
    background: -moz-linear-gradient(to bottom right, #137893, #0d7988, #0e3a47);  
    background: -o-linear-gradient(to bottom right, #137893, #0d7988, #0e3a47);  
    background: linear-gradient(to bottom right, #137893, #0d7988, #0e3a47);
}
.gridtealback{
	background-color: #000;
	background: url("../ImportsAndExports/ShippingLogistics/InternationalShippingCompany/InternationalShippingLogisticsCompany.svg"), linear-gradient(to bottom right, rgba(14,58,71,0.9), rgba(13,121,136,0.5), rgba(46,117,175,0.9)); 
	background-size: 100% auto; 
	background-position: center top;
	background-repeat: repeat-y;
}
.blackbackgroundblur { 
    background-color: rgba(0,0,0,0.7);
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
}
.lightgreybackground {  
    background: rgba(255,255,255,0.9);
}
.greybackground {  
    background: rgba(220,220,220,0.5);
}
.greybackgroundsolid {  
    background: rgba(111,114,113,0.7);
}
.greybackgroundsolidDark {  
    background: rgba(35,39,42,1);
}
.borderTB{
	border-top: 1px solid rgba(48,161,161,0.3);
	border-bottom: 1px solid rgba(48,161,161,0.3);
}
.borderTB.stick{
	border-top: 1px solid rgba(192,33,52,0.3);
	border-bottom: 1px solid rgba(192,33,52,0.3);
	-webkit-transition: all 0.5s ease-in-out 0.5s;
    -moz-transition: all 0.5s ease-in-out 0.5s;
    -o-transition: all 0.5s ease-in-out 0.5s;
    transition: all 0.5s ease-in-out 0.5s;
}
.borderB{
	border-bottom: 1px solid rgba(48,161,161,1);
}
.borderT{
	border-top: 1px solid rgba(48,161,161,1);
}
.borderTBgrey{
	border-top: 1px solid rgba(111,114,113,0.3);
	border-bottom: 1px solid rgba(111,114,113,0.3);
}
.borderBgrey{
	border-bottom: 1px solid rgba(111,114,113,0.3);
}
.borderTgrey{
	border-top: 1px solid rgba(111,114,113,0.3);
}
#ColorFlip{
	background: rgba(0,0,0,0);
	-webkit-transition: all 0.5s ease-in-out 0.5s;
    -moz-transition: all 0.5s ease-in-out 0.5s;
    -o-transition: all 0.5s ease-in-out 0.5s;
    transition: all 0.5s ease-in-out 0.5s;
}
#ColorFlip.stick{
	background: rgba(255,255,255,0.8);
}
.ColorFlipWhite{
	color: #ffffff;
	-webkit-transition: all 0.5s ease-in-out 0.5s;
    -moz-transition: all 0.5s ease-in-out 0.5s;
    -o-transition: all 0.5s ease-in-out 0.5s;
    transition: all 0.5s ease-in-out 0.5s;
}
.ColorFlipWhite.stick{
	color: #000000;
}
.ColorFlipGrey{
	color: #6f7271;
	-webkit-transition: all 0.5s ease-in-out 0.5s;
    -moz-transition: all 0.5s ease-in-out 0.5s;
    -o-transition: all 0.5s ease-in-out 0.5s;
    transition: all 0.5s ease-in-out 0.5s;
}
.ColorFlipGrey.stick{
	color: #000000;
}

/* Buttons */
.shinebtn {
  --hue: 259;
  position: relative;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: white;
	margin: auto 5px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: hsl(var(--hue), 100%, 100%);
  border: 1px solid hsl(var(--hue), 100%, 100%);
  outline: transparent;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: 0.25s;
}
.shinebtn:hover {
  background: hsl(var(--hue), 100%, 100%);
}
.shinebtn-primary {
  --hue: 259;
}
.shinebtn-ghost {
  color: hsl(var(--hue), 100%, 100%);
  background-color: transparent;
  border-color: hsl(var(--hue), 100%, 100%);
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.shinebtn-ghost:hover {
  color: white;
}
.shinebtn-light {
  color: white;
  background-color: transparent;
  border-color: white;
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.shinebtn-light:hover {
  color: white;
	border-color: hsl(var(--hue), 100%, 100%);
}
.shinebtn-shine {
  color: white;
	font-weight: bold;
	margin: 10px;
	background: rgba(153,0,0,0);
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}
.shinebtn-shine::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, hsla(var(--hue), 100%, 100%, 0.85), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}
.shinebtn-shine:hover {
  background: rgba(153,0,0,0.9);
  box-shadow: 0 0 10px 5px hsla(var(--hue), 100%, 100%, 0.5);
}
.shinebtn-shine:hover::before {
  transform: translateX(100%);
}



.shinebtndark {
  --hue: 259;
  position: relative;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  background-color: hsl(var(--hue), 100%, 100%);
  border: 1px solid rgba(153,0,0,1);
  outline: transparent;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: 0.25s;
}
.shinebtndark:hover {
  background: hsl(var(--hue), 100%, 100%);
}
.shinebtndark-primary {
  --hue: 259;
}
.shinebtndark-ghost {
  color: hsl(var(--hue), 100%, 100%);
  background-color: transparent;
  border-color: #990000;
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.shinebtndark-ghost:hover {
  color: white;
}
.shinebtndark-light {
  color: white;
  background-color: transparent;
  border-color: white;
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.shinebtndark-light:hover {
  color: #990000;
	border-color: hsl(var(--hue), 100%, 100%);
}
.shinebtndark-shine {
  color: #FFF;
	font-weight: bold;
	background: rgba(153,0,0,1);
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}
.shinebtndark-shine::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, hsla(var(--hue), 100%, 100%, 0.85), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}
.shinebtndark-shine:hover {
  background: rgba(0,0,0,0.9);
	color: #990000;
  box-shadow: 0 0 10px 5px hsla(var(--hue), 100%, 100%, 0.5);
}
.shinebtndark-shine:hover::before {
  transform: translateX(100%);
}



/* Links */
.HeaderLinksContainer{
	width: 100%;
	max-width: 680px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: auto 0px auto auto;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
}
.HeaderLink {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
	color: #fff;
	width: 100%;
	margin: auto;
	text-align: center;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.HeaderLink:visited {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
	color: #fff;
	width: auto;
	text-align: center;
}
.HeaderLink:hover {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
	color: #070707 !important;
}
.FooterLink:link {
	display: block;
	position: relative;
	text-decoration: none;
	color: #c4c4c4;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}
.FooterLink:visited {
	text-decoration: none;
	color: #c4c4c4;
}
.FooterLink:hover {
	text-decoration: none;
	color: #990000;
}
.FooterLink:active {
	text-decoration: none;
}
.WhiteLink:link {
	text-decoration: none;
	color: #fff !important;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.WhiteLink:visited {
	text-decoration: none;
	color: #fff !important;
}
.WhiteLink:hover {
	text-decoration: none;
	color: #990000 !important;
}
.WhiteLink:active {
	text-decoration: none;
}
.BlueLink:link {
	color: #15c1ce;
	font-weight:normal;
	text-decoration:none;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.BlueLink:visited {
	color: #15c1ce;
	text-decoration:none;
}
.BlueLink:hover {
	text-decoration: none;
	color: #fff;
}
.BlueLink:active {
	text-decoration: none;
}
.OrangeLink:link {
	display: block;
	position: relative;
	text-decoration: none;
	color: #990000;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}
.OrangeLink:visited {
	color: #990000;
	text-decoration:none;
}
.OrangeLink:hover {
	text-decoration: none;
	color: #000;
}
.OrangeLink:active {
	text-decoration: none;
}


.BlackLink:link {
	text-decoration: none;
	color: #000;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}
.BlackLink:visited {
	text-decoration: none;
	color: #000;
}
.BlackLink:hover {
	text-decoration: none;
	color: #990000;
}
.BlackLink:active {
	text-decoration: none;
}


.menuA1{
	color:#fff !important;
}
.menuA1.stick{
	color:#fff !important;
}
.menuA2{
	color:#000 !important;
}
.menuA2:hover{
	color:#000 !important;
}
.socialbutton{
	padding: 5px;

}


/* Page Menu */
#pagemenusidebar li{
	width: 100%;
	height: 50px;
	align-content: stretch;
	align-items: stretch;
	position: relative;
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
	border-bottom: none;
}
#pagemenusidebar li a{
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
	display: flex;
	height: 50px;
	width: 100%;
	color: #fff;
	font-size: 18px;
	text-wrap: none;
	text-transform: none;
	font-family: TitleFont, sans-serif;
	text-decoration: none;
	text-align: center;
	font-weight: normal;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	flex-wrap: wrap;
	vertical-align: middle;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	background-size: 100% 50%;
	background-position: center top;
	background-repeat: no-repeat;
	border-color: transparent;
	border-width: 5px;
	border-style: solid;
	box-sizing: border-box;
}
#pagemenusidebar li:hover > a {
    color: #15c1ce;
	background-size: 100% 50%;
	border-left-color: rgba(21,193,206,1);
	background-repeat: no-repeat;
	background-position: top center;
    }

/* Main Menu */

#menu li{
	width: 100%;
	height: 100%;
	align-content: stretch;
	align-items: stretch;
	position: relative;
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
	border-bottom: none;
}

#menu li:hover{
	

}
.navbarjoin {   
	background-color: rgba(255,27,39, 1) !important;
	color: #fff !important;
	box-sizing: border-box;
	border-bottom-width: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-left-width: 0px;
    border-style: solid;
	border-color: transparent;
}
.navbarjoin:hover {   
	background-color: rgba(139,219,255, 1) !important;
	color: #223f8b !important;
}

#menu li:nth-child(15) a {   
	color: #68bd43 !important;
}
#menu li:nth-child(15) a:hover {   
	color: #fff !important;
}
#menu ul li:nth-child(15) a {   
	color: #fff!important;
}
#menu ul li:nth-child(15) a:hover {   
	color: #fff !important;
}
#BackToTopArrow {
	opacity: 0;
	border-top: 1px solid rgba(255,255,255,0.3) !important;
	box-sizing: border-box;
	position: absolute; 
	bottom: 90px; 
	left: 0; 
	padding: 40px 0;
	width: 100%; 
	height: 50px; 
	display: flex; 
	justify-content: center; 
	align-content: center; 
	align-items: center;
	z-index: 100;
    }
#BackToTopArrow.stick {
	opacity: 1;
	color: #ffffff !important;
    }

#menu li:hover > a {
    color: #990000;
	background-size: 100% 50%;
	border-bottom-color: rgba(48,161,161,0);
	background-color: rgba(48,161,161,0);
	background-repeat: no-repeat;
	background-position: top center;
    }
#menu li a span:after {
      content: '';
      display: flex;
      border-bottom: solid 2px;
      transform: scaleX(0);
      transition: transform .3s ease-in-out;
    }
#menu li:hover a span:after {
      transform: scaleX(1);
    }
#menu li span {
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
    }
#menu li:hover span {
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
    }

#menu li:hover > ul{
	display: block;
	height: 50px;
	max-height: 120px;
	opacity:1;
	pointer-events: inherit;
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
}
#menu li:hover > ul a{
	opacity:1;
	border-bottom-color: rgba(200,197,204,0);
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
}

/* Sub-menu */
#menu ul{
	display: block;
	pointer-events:none;
	position: absolute;
	opacity:0;
	left:0px;
	padding:0px;
	width: 100%; 
	overflow: visible;
	min-width:275px;
	height: 50px;
	max-height: 120px;
	margin-top: 0px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-top: 1px solid hsla(0, 0%, 100%, 0);
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
}
#menu ul li{
	margin: 0px;
	padding: 0px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	border-left: none;
	border-right: none;
	border-top: none;
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
	text-align:center;
}
#menu ul li:last-child{
	border-bottom: 1px solid rgba(153,0,0,1,1);
}
#MenuCenter{
	width: 96%;
	padding: 0 2%;
	display: grid;
	grid-template-columns: 50% 50%;
	box-sizing: border-box;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
}
#MenuLeft{
	width: 100%;
	box-sizing: border-box;
	margin: auto;
	padding: 0px 5px;
}
#MenuRight{
	width: 100%;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px 5px;
}
.menutable{
	background-color: rgba(37,87,142,0.5);
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
	min-width: 500px;
}
.menutablelink{
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}
#menu ul a:hover{
	background-color: rgba(0,0,0,1);
	border-left: 5px solid rgba(153,0,0,0.95);
	color: #990000;
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
	border-top-color: transparent;
}

.dropmenuitem{
	width: 100%;
	background: rgba(0,0,0,0.7);
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	display: flex;
	position: relative;
	outline: 1px solid rgba(255,255,255,0.3);
}


/* Clear floated elements */
#menu:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	
	}






/* Main Menu Phone */
#menu2{
	width: 100%;
	height: 100%;
	margin-left:  0%;
	padding: 0px 0px 0px 0px;
	list-style: none;  
	border-top:none;
}

#menu2 li{
	float: left;
	padding: 0px 0px 0px 0px;
	position: relative;
	width:96%;
	margin-left: 2%;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	border-width: 0;
    border-bottom: 0px solid;
}

#menu2 a{
	display: flex;
	height: auto;
	padding-bottom:10px;
	padding-left:20px;
	padding-right:0px;
	padding-top:10px;
	color: #fff;
	font-size: 18px;
	text-transform: capitalize;
	font-family: TitleFont, sans-serif;
	text-decoration: none;
	font-weight: normal;
	text-align:left;
	background-color: transparent;
	letter-spacing: 2px;
	-webkit-transition: all 0.5s linear 0s;
	-moz-transition: all 0.5s linear 0s;
	-ms-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

#menu2 li:hover > a{
	color: #d1c6b4;
	background: transparent;
	-webkit-transition: all 0.5s linear 0s;
	-moz-transition: all 0.5s linear 0s;
	-ms-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;
}

#menu2 li span {
	-webkit-transition: all 0.5s linear 0s;
	-moz-transition: all 0.5s linear 0s;
	-ms-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;
	transform: rotate(0deg);
    }
#menu2 li:hover span {
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
	transform: rotate(90deg);
    }
#menu2 li:hover .HeaderLink span {
	-webkit-transition: all 0.25s linear 0s;
	-moz-transition: all 0.25s linear 0s;
	-ms-transition: all 0.25s linear 0s;
	-o-transition: all 0.25s linear 0s;
	transition: all 0.25s linear 0s;
	transform: rotate(0deg);
    }

*html #menu2 li a:hover{ /* IE6 */
	color: #cb7225;
	background: transparent;
}

#menu2 li:hover > ul{
    display: block;
    opacity:1;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
	
}
/* Sub-menu */
#menu2 ul{
	list-style: none;
	display: none;
	position: relative;
	border: none;
	left: 0px;
	width: 100%; 
	min-width: auto;
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	color: #000;
	text-shadow: none;
	margin: 0px auto 0px -40px;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
	border-radius: 0px;
}
#menu2 ul li{
	float: none;
	margin: 0px;
	padding: 0px;
	display: block;
	color: #000;
	text-shadow: none;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
	width: 100%;
	border-bottom: none;
}
#menu2 ul li:last-child{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
	color: #000;
	text-shadow:none;
	-webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out; 
	border: none; 
}
#menu2 ul a{
	padding: 10px 0px;
	padding-left:40px; 
	height: auto;
	line-height: 1;
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
	margin-right: 0px;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	text-shadow: none;
	-webkit-transition: all 0.5s linear 0s;
	-moz-transition: all 0.5s linear 0s;
	-ms-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;
}
.phonemenuicon{
	font-size: 50%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	height: 100%;
	width: auto;
}
*html #menu2 ul a{ /* IE6 */   
	height: 10px;
	color: #000;
	text-shadow:none;
	font-weight:bold;
}
*:first-child+html #menu2 ul a{ /* IE7 */    
	height: 10px;
	color: #000;
	text-shadow:none;
}
#menu2 ul a:hover{
	width: 100%;
	text-shadow:none;
    background: transparent;
	-webkit-transition: all 0.5s linear 0s;
	-moz-transition: all 0.5s linear 0s;
	-ms-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;
}
#menu2 ul li:first-child a{  
}
#menu2 ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 0px solid transparent;
}
#menu2 ul li:first-child a:hover:after{
    border-bottom-color: transparent; 
}
#menu2 ul li:last-child a{
}
/* Clear floated elements */
#menu2:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html #menu2             { zoom: 1; } /* IE6 */
*:first-child+html #menu2 { zoom: 1; } /* IE7 */

/* Sub-Sub-menu */
#menu2 ul ul{
	list-style: none;
	display: none;
	position: relative;
	border: none;
	right: 0;
	width: auto; 
	min-width:100%;
	z-index: 99999;
	margin-left: 25px;
	background: none;
	blend-mode: multiply;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	color: #000;
	text-shadow: none;
	margin-bottom: 10px;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
	border-radius: 0px;
}



/*Phone Menu*/
.nav-drill {
  margin-top: 79px;
  transform: translateX(100%);
}
.nav-drill.stick {
  margin-top: 143px;
  transform: translateX(100%);
}

.nav-is-toggled .nav-drill {
  transform: translateX(0);
}
.nav-is-toggled::after {
  opacity: 1;
  visibility: visible;
}

.nav-drill {
  display: flex;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #efefef;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: 0.45s;
	padding-bottom: 100px;
}
.nav-items {
  flex: 0 0 100%;
}
.nav-item:not(:last-child) {
  border-bottom: solid 1px #6f7271;
}
.nav-link {
  display: block;
  padding: 0.675em 1em;
  background-color: #efefef;
  color: #000;
  font-size: 1.0rem;
  line-height: 1.2em;
  font-weight: 300;
	text-decoration: none;
	font-family: MainBodyFont;
}
.nav-expand-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: #efefef;
  transition: 0.3s;
  visibility: hidden;
}
.nav-expand-content .nav-item:not(:last-child) {
  border-bottom: solid 1px #6f7271;
}
.nav-expand-content .nav-link {
  background-color: #efefef;
}
.nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background-color: #000 !important;
  color: #fff;
}
.nav-expand-content .nav-back-link::before {
  content: "<";
  margin-right: 0.5em;
	font-weight: bold;
}
.nav-expand-link {
  display: flex;
  justify-content: space-between;
}
.nav-expand-link::after {
	content: ">";
  flex: 0 1 auto;
  font-weight: bold;
}
.nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}
.nav-expand .nav-expand-content {
  background-color: #efefef;
}
.nav-expand .nav-expand-content .nav-link {
  background-color: #efefef;
}
.nav-expand .nav-expand-content .nav-expand-content {
  background-color: #efefef;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-link {
  background-color: #efefef;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content {
  background-color: #efefef;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-link {
  background-color: #efefef;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-expand-content {
  background-color: #efefef;
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-expand-content .nav-link {
  background-color: #efefef;
}




/*Accordian*/
 .accordion {
    width: 100%;
	 background-color: transparent;
}
.accordion .accordion-head {
    color: #000;
	display: flex;
    background-color: transparent;
    border-bottom: none;
    position: relative;
    padding: 13px;
    cursor: pointer;
    overflow: hidden;
	border-top: rgba(0,0,0, 0.3) solid 1px;
	border-bottom: rgba(0,0,0, 0.3) solid 1px;
	align-content: center;
	align-items: center;
}
.accordion .accordion-head * {
    cursor: pointer;
}
.accordion .accordion-head h4 {
    float: left;
	 width: calc(100% - 75px);
	margin-left: 10px;
}
.accordion .accordion-body p {
	 width:100%;
	color: #000;
	background-color: #fff;
	margin: 0;
	padding-top: 20px;
	padding-bottom: 20px;
}
.accordion .accordion-body span {
	 width:100%;
	color: #000;
	background-color: #fff;
	margin: 0;
	padding-left: 30px;
	padding-right: 30px;
}
.accordion .accordion-body div {
    width: 86%;
	margin-left: 7%;
	margin-right: 7%;
	display: block;
}
.accordion .accordion-head:hover {
	color: #fff !important;
	background-color: #990000;
}

.accordion .accordion-body {
    border-bottom: none;
    height: auto;
    display: none;
	background-color: #fff;
}
.accordion .accordion-head:hover .faqarrow span {
   rotate:180deg;
	overflow: hidden;
	color: #fff;
}
.faqarrow {
	display: flex;
    float: right;
    width: 40px;
    height: 100%;
	margin: auto;
	position: relative;
	justify-content: center;
	align-content: center;
	align-items: center;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.faqarrow span {
	display: flex;
    width: 40px;
    height: 40px;
	margin: auto;
	justify-content: center;
	align-content: center;
	align-items: center;
	-webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}
.accordion-head.open .faqarrow span {
   height: 2px;
	overflow: hidden;
	color: #fff;
	rotate: 180deg;
	-webkit-transition: all 0.5s ease-in-out 0.1s;
    -moz-transition: all 0.5s ease-in-out 0.1s;
    -o-transition: all 0.5s ease-in-out 0.1s;
    transition: all 0.5s ease-in-out 0.1s;
}
.accordion-head.open {
    border-bottom: none;
	color: #fff;
	background-color: #990000;
}