@import url('core-styles.css');
/* DO NOT ALTER ABOVE - MUST BE PRESENT FOR PROPER CHAINING */

/* Headerline Area */

#header-container {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 500;
}

#headerline {
	width: 100%;
	height: 110px;
	padding: 0;
	margin: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #ba0d0d url(/images/site/template/headerline-bkg.png) no-repeat;
	background-size: cover;
	background-position: top;
	border-bottom: 5px solid #facd1a;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-box-shadow: 0px 6px 18px 6px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 6px 18px 6px rgba(0,0,0,0.75);
	box-shadow: 0px 6px 18px 6px rgba(0,0,0,0.75);
}

#navbox {
    width: calc(97% - 280px);
    padding: 0;
    margin: 0;
	position: absolute;
	top: 35px;
    right: 0px;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#logobox {
	position: absolute;
	left: 3%;
	top: 3px;
	z-index: 500000;
	animation: 1.0s ease-out 0s 1 logoTransIn;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

@keyframes logoTransIn {
  0% {
    transform: perspective(400px) rotateY(180deg);
  }

  100% {
    transform: perspective(400px) rotateY(0);
  }
}

#logobox > a > img {
	width: 100%;
	height: auto;
	display: block;
}

#logobox:hover {
	transform: scale(0.9);
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}


/* Slider Area */

#sliderline {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 10;
	margin-top: 100px;
	-webkit-box-shadow: 0px 6px 18px 6px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 6px 18px 6px rgba(0,0,0,0.75);
	box-shadow: 0px 6px 18px 6px rgba(0,0,0,0.75);
}

/* Page Header Area */

#pageheaderline > img {
	width: 100%;
	height: auto;
	display: block;
	z-index: 1;
}

#pageheaderline-overlay {
    width: 100%;
    height: 15%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
    background: #facd1a;
    clip-path: polygon(0 90%, 100% 0, 100% 100%, 0% 100%);
    animation: 1.0s ease-out 0s 1 titlebarOverlayTransIn;
}
@keyframes titlebarOverlayTransIn {
  0% {
    right: -100%;
  }

  100% {
    right: 0%;
  }
}

#pageheader-titlebar {
    width: 60%;
    padding: 15px 3% 15px 3%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    background: #8710b9 url(/images/site/template/buttonline-bkg.jpg) repeat;
    animation: 1.0s ease-out 0s 1 titlebarTransIn;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@keyframes titlebarTransIn {
  0% {
    left: -100%;
  }

  100% {
    left: 0%;
  }
}

#pageheader-title {
	font-family: "interstate-condensed", sans-serif;
	font-weight: 800;
	font-style: normal;
	color: #fff;
	font-size: 48px;
	text-transform: uppercase;
	text-align: left;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
}

.pageheader-parallax1, .pageheader-parallax1b, .pageheader-parallax2, .pageheader-parallax3 {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
.pageheader-parallax1 {
  min-height: 700px;
}

.pageheader-parallax1b {
  min-height: 1000px;
}

/* Event Line */

#eventline-heading {
	width: 100%;
	padding: 25px 3% 20px 3%;
	position: relative;
	background: #8710b9;
	font-family: "interstate-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	font-size: 60px;
	line-height: 1;
	text-align: center;
	text-shadow: 3px 3px 9px rgba(0,0,0,0.40);
}

#eventline-heading > span {
	font-family: "modish", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #faf21a;
}

#eventline {
	width: 100%;
	padding: 3% 0 3% 0;
	position: relative;
	z-index: 3;
	background: #fab81a url(/images/site/template/eventline-bkg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

#eventline:before {
	content: "";
	width: 20%;
	padding: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 4;
	background: url(/images/site/template/eventline-capL.png) no-repeat;
	background-size: cover;
    background-position: center right;
}

#eventline:after {
    content: "";
    width: 20%;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
    background: url(/images/site/template/eventline-capR.png) no-repeat;
    background-size: cover;
    background-position: center left;
}

#eventbox {
	width: 100%;
	min-height: 100px;
	padding: 0 10% 3% 10%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	z-index: 5;
}

#eventbox > .event {
	width: 31.33%;
	margin: 1% 1% 1% 1%;
	padding: 0 3% 70px 3%;
	position: relative;
	background: #6d0093 url(/images/site/template/eventbkg1.jpg) no-repeat;
	background-size: cover;
	background-position: top;
	border: 3px solid #fff;
	-webkit-box-shadow: 8px 8px 0px 0px rgba(186,13,13,1);
	-moz-box-shadow: 8px 8px 0px 0px rgba(186,13,13,1);
	box-shadow: 8px 8px 0px 0px rgba(186,13,13,1);
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

#eventbox > .event:nth-child(2) {
	background: #6d0093 url(/images/site/template/eventbkg2.jpg) no-repeat;
	background-size: cover;
	background-position: top;
}

#eventbox > .event:nth-child(3) {
	background: #6d0093 url(/images/site/template/eventbkg3.jpg) no-repeat;
	background-size: cover;
	background-position: top;
}

.event-overlay {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background: rgba(104,7,144,0.8);
/*
	background: -moz-linear-gradient(top,  rgba(104,7,144,0.9) 0%, rgba(129,3,189,0.6) 60%, rgba(146,0,219,0.2) 100%);
	background: -webkit-linear-gradient(top,  rgba(104,7,144,0.9) 0%,rgba(129,3,189,0.6) 60%,rgba(146,0,219,0.2) 100%);
	background: linear-gradient(to bottom,  rgba(104,7,144,0.9) 0%,rgba(129,3,189,0.6) 60%,rgba(146,0,219,0.2) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6680790', endColorstr='#339200db',GradientType=0 );
*/
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;

}

.event-name {
	width: 100%;
	padding: 10% 0% 15px 0%;
	position: relative;
	z-index: 5;
	border-bottom: 3px solid #fff;
	font-family: "interstate-condensed", sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: 40px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: #faf21a;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.85);
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.event-loc {
	width: 100%;
	padding: 0px 0% 5px 0%;
	position: relative;
	z-index: 5;
	font-family: "interstate", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}

.event-dates {
	width: 100%;
	padding: 15px 0% 5px 0%;
	position: relative;
	z-index: 5;
	font-family: "interstate-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 28px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}

.event-toolbar {
	width: 100%;
	padding: 0 5% 0 5%;
	position: absolute;
	z-index: 5;
	bottom: 15px;
	left: 0px;
	right: 0px;
	text-align: center;
}

.e-button{ 
	position: relative;
	background: #0080f3;
	font-size: 24px;
	line-height: 1;
	text-align: center;
	color: #ffffff !important; 
	white-space: nowrap;
	font-family: "interstate-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	text-decoration: none !important;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-transition: all 1.0s ease;
	-webkit-transition: all 1.0s ease;
	transition: all 1.0s ease;
}

.e-button:hover { 
	background: #ffcc00 !important;
	color: #000000 !important;
	cursor: pointer; 
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.e-btn1 {
	width: 99%;
	margin: 0px 0.5% 0 0.5%;
 	padding: 10px 10px 10px 10px; 
	margin: 0;
	display: inline-block; 
	*display: inline; 
}

.e-btn2 {
	width: 48%;
 	padding: 10px 10px 10px 10px; 
	margin: 0px 1% 0 1%;
	display: inline-block; 
	*display: inline; 
}

#eventbox > .event:hover {
	cursor: pointer;
	border: 3px solid #ffcc00;
	-webkit-box-shadow: 8px 8px 0px 0px rgba(135,16,185,1);
	-moz-box-shadow: 8px 8px 0px 0px rgba(135,16,185,1);
	box-shadow: 8px 8px 0px 0px rgba(135,16,185,1);
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.event:hover .event-overlay {
	background: rgba(104,7,144,0.9);
/*	background: -moz-linear-gradient(top,  rgba(104,7,144,0.9) 0%, rgba(129,3,189,0.9) 60%, rgba(146,0,219,0.9) 100%);
	background: -webkit-linear-gradient(top,  rgba(104,7,144,0.9) 0%,rgba(129,3,189,0.9) 60%,rgba(146,0,219,0.9) 100%);
	background: linear-gradient(to bottom,  rgba(104,7,144,0.9) 0%,rgba(129,3,189,0.9) 60%,rgba(146,0,219,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6680790', endColorstr='#339200db',GradientType=0 );
*/
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;

}

.event:hover .event-name {
	border-bottom: 3px solid #faf21a;
	color: #ffffff;
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}


/* Button Line */

#buttonline {
	width: 100%;
	padding: 3% 0 3% 0;
	position: relative;
	z-index: 3;
}

#buttonline:after {
	content: "";
	width: 100%;
	height: 75%;
	position: absolute;
	top: 0;	
	right: 0;
	left: 0;
	z-index: 1;
	background: #8710b9 url(/images/site/template/buttonline-bkg.jpg) no-repeat;
	background-size: 100% auto;
	background-position: top center;
}

.feature-heading {
	width: 100%;
	padding: 0px 0% 25px 0%;
	position: relative;
	z-index: 5;
	font-family: "interstate-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	font-size: 40px;
	line-height: 1.3;
	text-align: center;
	text-shadow: 3px 3px 9px rgba(0,0,0,0.40);
}

.feature-heading > span {
	font-family: "modish", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 80px;
	color: #faf21a;
	display: block;
}

#buttonbox {
	width: 100%;
	padding: 0 2% 0 2%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	z-index: 3;
}

.button {
	width: 23%;
	margin: 1% 1% 1% 1%;
	position: relative;
	float: left;
	overflow: hidden;
    border: 3px solid #fff;
    -webkit-box-shadow: 10px 10px 0px 0px rgba(250,164,26,1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(250,164,26,1);
    box-shadow: 10px 10px 0px 0px rgba(250,164,26,1);
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button > img {
	width: 100%;
	height: auto;
	display: block;
	z-index: 1;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button:after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: -moz-linear-gradient(45deg,  rgba(104,7,144,1) 0%, rgba(104,7,144,0) 70%, rgba(104,7,144,0) 100%);
	background: -webkit-linear-gradient(45deg,  rgba(104,7,144,1) 0%,rgba(104,7,144,0) 70%,rgba(104,7,144,0) 100%);
	background: linear-gradient(45deg,  rgba(104,7,144,1) 0%,rgba(104,7,144,0) 70%,rgba(104,7,144,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#680790', endColorstr='#00680790',GradientType=1 );
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button-title {
	width: 100%;
	padding: 0 0 0 8%;
	position: absolute;
	z-index: 5;
	bottom: 5%;
	right: 0;
	left: 0;
	font-family: "interstate-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-align: left;
	font-size: 60px;
	line-height: 1;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button-title > span {
    display: block;
    font-size: 85%;
}

.button:hover {
    -webkit-box-shadow: 10px 10px 10px 0px rgba(250,164,26,1);
    -moz-box-shadow: 10px 10px 10px 0px rgba(250,164,26,1);
    box-shadow: 10px 10px 10px 0px rgba(250,164,26,1);
}

.button:hover img {
	cursor: pointer;
	transform: scale(1.1);
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button:hover .button-title {
	font-size: 290%;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button:hover:after {
	cursor: pointer;
	background: -moz-linear-gradient(45deg,  rgba(104,7,144,1) 0%, rgba(104,7,144,0) 40%, rgba(104,7,144,0) 100%);
	background: -webkit-linear-gradient(45deg,  rgba(104,7,144,1) 0%,rgba(104,7,144,0) 40%,rgba(104,7,144,0) 100%);
	background: linear-gradient(45deg,  rgba(104,7,144,1) 0%,rgba(104,7,144,0) 40%,rgba(104,7,144,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#680790', endColorstr='#00680790',GradientType=1 );
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/* Home Line */

#homeline {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 1;
	background: #00a1ed url(/images/site/template/homeline-bkg.jpg) no-repeat;
	background-size: 100% auto;
	background-position: center 100%;
}

#homeline:after {
    content: "";
    width: 50%;
    height: 100%;
    padding: 0;
    position: absolute;
    left: 0;
    /* top: 40%; */
    bottom: 0;
    z-index: 1;
    background: url(/images/site/template/homecol-bkg.png) no-repeat;
    background-position: right 100%;
    background-size: auto 65%;
}

.homecontent {
	width: 100%;
	padding: 30px 0% 0px 3%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	z-index: 2;
}

.homecol1 {
    width: 40%;
    padding: 0 2% 5% 0;
    position: relative;
    float: left;
    font-family: "interstate", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 20px;
}

.homecol2 {
    width: 50%;
    margin: 0 0 0 10%;
    padding: 0 0 0 2%;
    position: relative;
    float: left;
    text-align: right;
    background: url(/images/site/template/fury.png) no-repeat;
    background-position: left top;
    background-size: cover;
}



/* Page Header Area */



/* Content Box Area */

#contentline {
	width: 100%; 
	height:auto; 
	position: relative; 
	padding: 0; 
	margin: 0; 
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 43%, rgba(140,206,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 43%,rgba(140,206,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 43%,rgba(140,206,234,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#8cceea',GradientType=0 );
}

#contentbox {
	width: 100%; 
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: auto;
	z-index: 5;
}

.contentbox-img {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    left: 0;
	opacity: 0.4;
    mix-blend-mode: overlay;
}

#mainbox-bodybox { 
	width: 100%; 
	margin: 0px auto; 
	padding: 40px 3% 70px 3%; 
	position: relative;
	font-family: var(--main-body-font);
	font-weight: var(--main-body-font-weight);
	font-style: var(--main-body-font-style);
	font-size: 22px;
	color: #000000;
}

#mainbox-bodybox a{
	color: #dcab3f;
	text-decoration: underline;
}

#mainbox-bodybox a:hover{
	color: #ffffff;
	text-decoration: none;
}


#mainbox-bodybox ol {padding: 5px 0 0 20px;}
#mainbox-bodybox ul {margin-top: 10px;}
#mainbox-bodybox li { margin-left: 40px; margin-bottom: 5px;}
#mainbox-bodybox h1, #mainbox-bodybox h2, #mainbox-bodybox h3, #mainbox-bodybox h4 {
	font-family: var(--main-heading2-font);
	font-weight: var(--main-heading2-font-weight);
	font-style: var(--main-heading2-font-style);
	color: #ba0d0d; 
	font-weight: normal; 
	text-transform: uppercase;
	clear:both;
}
#mainbox-bodybox p { padding-bottom: 15px;}


/* FOOTER AREA */

#footerline {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
	overflow-x: hidden;
	background: #8710b9;
}

#footerbox {
	width: 100%;
	padding: 2vw 3% 2vw 3%;
	margin: 0;
	position: relative;
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
}

.footer-col {
	padding: 0 1% 0 1%;
	position: relative;
}

.footer-col:first-child {
	width: 75%;
}

.footer-col:last-child {
	width: 25%;
}


.footer-col > .logo {
	float: left;
	position: relative;
}

.footer-col > .contact {
	padding: 10px 0 0 4%;
	float: left;
	position: relative;
	font-family: "interstate-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-align: left;
	font-size: 22px;
}

.footer-col > .contact > span {
	font-size: 30px;
}

.footer-col > .contact a{
	text-decoration: none;
	color: #fff;
}

.footer-col > .contact a:hover{
	text-decoration: underline;
	color: #fff000;
}

.footer-col > .social {
	position: absolute;
	right: 0;
	top: 25%;
	text-align: center;
} 

.footer-col > .social > a {
	padding: 0 10px;
}

.footer-col > .social > a > img {
	max-width: 100%;
	height: auto;
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.footer-col > .social > a > img:hover {
	cursor: pointer;
	transform: scale(1.1);
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}



#sigline {
	width: 100%;
	padding: 10px 2% 10px 2%;
	position: relative;
	background: #72099e;
	font-family: "interstate", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
}

#sigline > a{
	color: #fff000;
	text-decoration: underline;
}


#sigline > a:hover{
	color: #ffffff;
	text-decoration: none;
}



/* OTHER ATTRIBUTES */

 .imgborder {
	max-width: calc(100% - 20px);
	height: auto;
	margin: 0px 5px 10px 15px; 
	border: 5px solid #facd1a;
}


.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden; 
}
.video-container iframe,.video-container object,.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-col-1 { 
	float:left; 
	width: 35%; 
	padding: 0 2%; 
	margin: 0; 
	text-align: left; 
	position: relative;
}
.contact-col-2 { 
	float:left; 
	width: 60%; 
	padding: 0; 
	margin: 0; 
	text-align: left; 
	position: relative;
}

.col33 {
	width: 33.33%;
	padding: 0 0.5% 0 0.5%;
	margin: 0;
	float: left;
	position: relative;
}

.col40 {
	width: 40%;
	padding: 0 1% 0 1%;
	position: relative;
	float: left;
}

.col50 {
	width: 50%;
	padding: 0 0.5% 0 0.5%;
	margin: 0;
	float: left;
	position: relative;
}

.col60 {
	width: 60%;
	padding: 0 1% 0 1%;
	position: relative;
	float: left;
}

.aligncenter {
	text-align: center;
}

.round325 {
	width: 90%;
	padding: 1%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background: #fff;
	border: 5px solid #f6ff00;
}


.round225 img {
	opacity: 0;
	filter: alpha(opacity=0);
}

.pageserverpg img {
	max-width: 94%; 
	height: auto;
}



/* OTHER */

.sitebtn{ 
	min-width: 280px;
 	padding: 10px 20px 10px 20px; 
	margin: 10px 0 10px 0!important;
	position: relative;
	display: inline-block;
	border: 0px solid #000000 !important;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0);
	background: #bf1111;
	font-family: var(--main-button-font);
	font-weight: var(--main-button-font-weight);
	font-style: var(--main-button-font-style);
	font-size: 30px;
	line-height: 1.1;
	text-align: center;
	color: #fff !important; 
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none !important;
	-moz-transition: all 1.0s ease;
	-webkit-transition: all 1.0s ease;
	transition: all 1.0s ease;
}

.sitebtn:hover { 
	background: #9a0b0b;
	color: #faf21a !important; 
	cursor: pointer; 
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,1);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,1);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,1);
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}


.row { 
	width: 100%; 
	padding: 0; 
	margin: 0; 
	position: relative;
}