/*---------------------------------
 layout
-----------------------------------*/

* {
 -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
 -moz-box-sizing: border-box;    /* Firefox, other Gecko */
 box-sizing: border-box;         /* Opera/IE 8+ */
}

/*---------------------------------
 overall settings
-----------------------------------*/

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
}

body {
 margin: 0;
 padding: 0 0 0 0;
 color: #ffffff;
 background: #000000;
 font: normal 1rem/140% Montserrat, sans-serif; /* font: font-style font-variant font-weight font-size/line-height font-family; 1rem=16px=100% , 1px=6.25%, 10px= 16px */
 text-shadow: 0 0 1px transparent; /* google font pixelation fix */
 /* overflow: hidden; */
}

html, body * {
 -webkit-text-size-adjust: 100%;
 -webkit-font-smoothing: antialiased !important;
 -moz-osx-font-smoothing: grayscale !important;
 font-smoothing: antialiased !important;
 text-rendering: optimizeLegibility !important;
 font-feature-settings: "kern" 1, "dlig" 1;
 font-weight: normal;
}

::-moz-selection { background: transparent; }
::selection { background: transparent; }
div::-moz-selection { background: transparent; }
div::selection { background: transparent; }

a { color: inherit; outline:0; text-decoration: none; }
a:active { color: inherit; outline:0; text-decoration: none; }
a:visited { color: inherit; outline:0; text-decoration: none; }
a:hover { color: inherit; outline:0; text-decoration: none; }
a img { border: 0; }
a [class^="icon-"]{color: inherit; text-decoration: none; }
strong, b {color: #000; font-weight: bold; }
strike { }
em, i{ }
.hide { display: none; }
.show { display: block; }

/*---------------------------------
 headers
-----------------------------------*/

h1, h2, h3, h4, h5, h6 {
 font-weight: bold;
 line-height: 140%;
}

h1 {
 font-size: 350%;
 margin: 10px 0 10px 0;
}

h2 {
 font-size: 300%;
 margin: 10px 0 10px 0;
}

h3 {
 font-size: 250%;
 margin: 10px 0 10px 0;
 line-height: 130%;
}

h4 {
 font-size: 200%;
 margin: 10px 0 10px 0;
}

h5 {
 font-size: 150%;
 margin: 10px 0 10px 0;
}

h6 {
 font-size: 120%;
 margin: 10px 0 5px 0;
}

/*---------------------------------
 paragraphs
-----------------------------------*/

p {
 margin: 10px 0;
 font-size: 90%;
 line-height: 1.2;
}

/*---------------------------------
 utility
-----------------------------------*/

.center { text-align: center }
.left { text-align: left }
.right { text-align: right }

/*---------------------------------
 lists
-----------------------------------*/

ul, ol{
padding:0;
margin:0 0 20px 25px;
}

li{
padding:5px 0;
margin:0;
}

ul.list-unstyled{
padding:0;
margin:0 0 20px 0;
}

ul.list-unstyled li{
padding:5px 0;
margin:0;
list-style-type:none;

}
	
ul.alt{
padding:0;
margin:0 0 20px 0;
}

ul.alt li{
list-style-type:none;
border-top:1px dotted #ccc;
border-bottom:1px dotted #ccc;
margin:0 0 -1px 0;
background:url(img/icon-arrow-right.png) no-repeat 5px 0.7em;
padding-left:20px;
}

ul.icons{
margin:0 0 20px 0;
padding:0;
}

ul.icons li{
list-style-type:none;
margin:0;
padding:5px 0;
}

/*---------------------------------
 tables
-----------------------------------*/
thead th,
tbody th,
tfoot th{
font-family: "Montserrat", sans-serif;
}

table{width:100%;margin:0 0 10px 0;text-align:left;border-collapse: collapse;}
	thead, tbody{margin:0;padding:0;}
	th, td{padding:7px 10px;font-size:0.9em;border-bottom:1px dotted #ddd;text-align:left;}
	thead th{font-size:0.9em;padding:3px 10px;border-bottom:1px solid #ddd;}
	tbody tr.last th,
	tbody tr.last td{border-bottom:0;}

/* striped */
table.striped{}
	table.striped tr.alt{background:#f5f5f5;}
	table.striped thead th{background:#fff;}
	table.striped tbody th{background:#f5f5f5;text-align:right;padding-right:15px;border-right:1px dotted #e5e5e5;}
	table.striped tbody tr.alt th{background:#efefef;}

/* tight */
table.tight{}
	table.tight th, .tight td{padding:2px 10px;}

/* sortable */
table.sortable{border:1px solid #ddd;}
	table.sortable thead th{cursor: pointer;position:relative;top:0;left:0;border-right:1px solid #ddd;}
	table.sortable thead th:hover{background:#efefef;}
	table.sortable span.arrow{border-style:solid;border-width:5px;
	display:block;position:absolute;top:50%;right:5px;font-size:0;
	border-color:#ccc transparent transparent transparent;
	line-height:0;height:0;width:0;margin-top:-2px;}
	table.sortable span.arrow.up{border-color:transparent transparent #ccc transparent;margin-top:-7px;}

/*---------------------------------
 header
-----------------------------------*/

#fixed-top-mo {
 position: fixed;
 top: 0;
 width: 100%;
 height: 50px;
 background: transparent;
 /* border-bottom: 1px solid #000000; */
 z-index: 10000;
}
#fixed-top-mo span.sb-toggle-left {
 float: left;
 color: #000000;
 padding: 10px;
}
#fixed-top-mo span.top-center {
 float: center;
 padding: 0px;
}
img.center {
 position: absolute;
 top: 50%;
 left: 50%;
 margin-right: -50%;
 transform: translate(-50%, -50%);
 height: 32px;
}
#fixed-top-mo span.sb-toggle-right {
 float: right;
 color: #000000;
 padding: 10px;
}

/*---------------------------------
 menu
-----------------------------------*/

#sidebarMenu {
 height: 100%;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 margin-top: 0px;
 transform: translateX(-100%);
 transition: transform 250ms ease-in-out;
 background: #000000;
 overflow-y: auto;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
 transform: translateX(0);
}
input[type=checkbox] {
 transition: all 0.3s;
 box-sizing: border-box;
 display: none;
}
.sidebarIconToggle {
 transition: all 0.3s;
 box-sizing: border-box;
 cursor: pointer;
 position: absolute;
 z-index: 99;
 height: 100%;
 width: 100%;
 top: 15px;
 left: 12px;
 height: 22px;
 width: 22px;
}
.spinner {
 transition: all 0.3s;
 box-sizing: border-box;
 position: absolute;
 height: 3px;
 width: 100%;
 background-color: #fff;
}
.horizontal {
 transition: all 0.3s;
 box-sizing: border-box;
 position: relative;
 float: left;
 margin-top: 3px;
}
.diagonal.part-1 {
 position: relative;
 transition: all 0.3s;
 box-sizing: border-box;
 float: left;
}
.diagonal.part-2 {
 transition: all 0.3s;
 box-sizing: border-box;
 position: relative;
 float: left;
 margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
 transition: all 0.3s;
 box-sizing: border-box;
 opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
 transition: all 0.3s;
 box-sizing: border-box;
 transform: rotate(135deg);
 margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
 transition: all 0.3s;
 box-sizing: border-box;
 transform: rotate(-135deg);
 margin-top: -9px;
}

.basicheaderonerespo {
 margin: 0;
 padding-bottom: 0.05em;
 background: none;
 text-align: center;
 font-family: "futura-pt-condensed", sans-serif;
 font-size: 3rem;
 font-style: italic;
 font-weight: 900;
 letter-spacing: -0.05em;
 text-transform: uppercase;
 display: block;
 line-height: 1.8;
 z-index: 1;
 position: relative;
}
.basicheaderonerespo a {
 text-decoration: none !important;
}

/* phone landscape and smaller */
@media all and (max-width: 480px) {
 .basicheaderonerespo {
 font-size: 2rem;
 }
}
/* tablet */
@media all and (min-width: 480px) and (max-width: 768px) {
 .basicheaderonerespo {
 font-size: 3rem;
 }
}
/* tablet landscape */
@media all and (min-width: 768px) and (max-width: 1024px) {
 .basicheaderonerespo {
 font-size: 3rem;
 }
}
/* desktop */
@media all and (min-width: 1024px) and (max-width: 1280px) {
 .basicheaderonerespo {
 font-size: 3rem;
 }
}

.fullscreenvegascontainer {
 margin: 0 auto;
 max-width: 100%;
 width: 100%;
 height: auto;
 display: -webkit-box;
 display: -moz-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-justify-content: flex-end;
 justify-content: flex-end;
 align-items: flex-end;
 position: relative;
 z-index: 1;
 padding-bottom: 56.25%; /* 21:9: padding-bottom: 42.857%, 16:9: padding-bottom: 56.25% 4:3: padding-bottom:75% */
 padding-top: 30px;
 overflow: hidden;
 background: #000000;
}

/*---------------------------------
 responsive full-width image
-----------------------------------*/

.basicheaderone {
 margin: 0;
 padding-bottom: 0.05em;
 background: none;
 text-align: center;
 font-family: "futura-pt-condensed", sans-serif;
 font-size: 13vw;
 font-style: italic;
 font-weight: 900;
 letter-spacing: -0.05em;
 text-transform: uppercase;
 display: block;
 line-height: 1.8;
 z-index: 1;
 position: relative;
}

.basicheaderone a {
 text-decoration: none !important;
}

.plusshadowfour {
 text-shadow: 0 0 10px cyan, 0 0 10px cyan, 0 0 10px cyan;
 -webkit-animation: 1s WhiteOrange infinite alternate linear;
 animation: 1s WhiteOrange infinite alternate linear;
}
@-webkit-keyframes WhiteOrange {
 0% { text-shadow: 0 0 8px white, 0 0 8px orange, 0 0 13px red; }
 100% { text-shadow: 0 0 8px white, 0 0 8px orange, 0 0 13px red; }
}
@keyframes WhiteOrange {
 0% { text-shadow: 0 0 8px white, 0 0 8px orange, 0 0 13px red; }
 100% { text-shadow: 0 0 8px white, 0 0 8px orange, 0 0 13px red; }
}

.pattern-overlay {
 position: absolute;
 top: 0;
 width: 100%;
 opacity: 0.3;
 bottom: 0;
 background-image: url(../images/overlays/vertical-stripe.png);
 z-index: 0;
}

#footer {
margin: 0 auto;
width: 100%;
background: #000000;
position: relative;
display: block;
bottom: 0;
}
.copyright {
 padding: 5px;
 text-decoration: none;
 font-size: 12px;
 font-weight: 100;
 font-family: sans-serif;
 color: #ffffff;
 text-align: center;
}