.rail-main-wrapper {
display: none;
}
.blah-test{
background: #fff;
}

/*LANDING PAGE ACCORDION STYLING*/
@white:#FFFFFF;
@grayLighter : #eee;
@black : #000;

#wrapper {
	min-height: 0;
	display: inline-block;
	position: relative;
	left: 50%;
	margin-top: 50px;
	transform: translate(-50%, 0);
	background-color: #f5f5f5;
	padding: 30px;
	@media ( max-width:550px ) {
		box-sizing: border-box;
		transform: translate(0, 0);
		max-width: 100%;
		min-height: 100%;
		margin: 0;
		left: 0;
	}
}

h1.accord, h2.accord {
  color: @black;
}

h1.accord {
	margin: 10% auto 0;
	text-transform: uppercase;
	font-size: 36px;
	line-height: 42px;
	letter-spacing: 3px;
	font-weight: 100;
	text-align: center;
	display: table;
	padding: 10px 0;
	border-bottom: 2px solid #000;
}
h2.accord {
  font-size: 26px;
  line-height: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  background-color: #FFFFFF;
	border:1px solid #ededed;
  margin: 0;
  cursor: pointer;
	font-weight: bold;
	padding: 20px;
}
p.accord {
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  transition:all 500ms ease;
}

.accord_nest {
	position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  transition:all 500ms ease;
	background-color: white;
    max-width: 80%;
    margin: 0 auto;
    border: 1px solid #ededed;
padding: 0 10px;
}

p, li.accord i:before, li.accord i:after {
  transition: all 0.25s ease-in-out;
}

ul.accord {
  list-style: none;
  padding: 0;
  margin: 0;
width: 80%;
margin: 0 auto;
	text-align: center;
}

li.accord {
		position: relative;
		padding: 0;
		margin: 0;
		padding: 20px;
		background-color: #fdfcfc;
	margin-bottom: 10px;
}

	li.accord i{
		position: absolute;
		transform: translate(-6px, 0);
		margin-top: 25px;
		left: 50px;
}

	li.accord i:before, li.accord i:after {
		content: "";
		position: absolute;
		background-color: black;
		width: 3px;
		height: 16px;
	}

li.accord i:before {
  transform: translate(2px, 0) rotate(45deg);
}

li.accord i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
		
ul.accord li.accord input[type=checkbox] {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	left: 0;
}
			
input[type=checkbox]:checked ~ p {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
	margin: 0;
}

input[type=checkbox]:checked ~ .accord_nest {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
}

input[type=checkbox]:checked ~ ul {
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
margin: 0;
}

input[type=checkbox]:checked ~ div {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
}

input[type=checkbox]:checked ~ ol {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
}

input[type=checkbox]:checked ~ h3 {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
}

input[type=checkbox]:checked ~ h4 {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
}

ul.accord li.accord input[type=checkbox]:checked ~ i:before {
	margin-top: 9px;
	height: 9px;
	transform: translate(2px, 0) rotate(45deg);
}

ul.accord li.accord input[type=checkbox]:checked ~ i:after {
	margin-top: 9px;
	height: 9px;
	transform: translate(-2px, 0) rotate(-45deg);
}
	

ul li.accord:nth-of-type(1) {
	border-top:none;
  animation-delay: 0.5s;
}

ul li.accord:nth-of-type(2) {
  animation-delay: 0.75s;
}

ul li.accord:nth-of-type(3) {
  animation-delay: 1s;
}

ul li.accord:last-of-type {
}

li.accord {
  animation: bounceInUp 1s ease both;
}


@-webkit-keyframes bounceInUp { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(2000px); 
    } 
    60% { 
        opacity: 1; 
        -webkit-transform: translateY(-30px); 
    } 
    80% { 
        -webkit-transform: translateY(10px); 
    } 
    100% { 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes bounceInUp { 
    0% { 
        opacity: 0; 
        transform: translateY(2000px); 
    } 
    60% { 
        opacity: 1; 
        transform: translateY(-30px); 
    } 
    80% { 
        transform: translateY(10px); 
    } 
    100% { 
        transform: translateY(0); 
    } 
}

@media screen and (max-width:47.938em) {
	#wrapper {
		padding: 30px 10px;
}
	ul.accord {
		width: 100%;
}

	.accord_nest {
		max-width: 100%;
}

li.accord i {
left:40px;
} }

/* LANDING PAGE FOOTER QUESTIONS STYLING */

#wrapper-questions {
	min-height: 0;
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	background-color: #transparent;
	@media ( max-width:550px ) {
		box-sizing: border-box;
		transform: translate(0, 0);
		max-width: 100%;
		min-height: 100%;
		margin: 0;
		left: 0;
	}
}

h2.accord-questions {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  background-color: transparent;
	border-bottom:1px solid #ffffff;
  margin: 0;
  cursor: pointer;
	font-weight: bold;
	padding: 20px;
}

p, li.accord-questions i:before, li.accord-questions i:after {
  transition: all 0.25s ease-in-out;
}

ul.accord-questions {
  list-style: none;
  padding: 0;
  margin: 0;
width: 100%;
margin: 0 auto;
	text-align: left;
}

li.accord-questions {
		position: relative;
		padding: 0;
		margin: 0;
		padding: 20px;
		background-color: transparent;
	margin-bottom: 10px;
}

	li.accord-questions i{
		position: absolute;
		transform: translate(-6px, 0);
		margin-top: 20px;
		right: 40px;
}

	li.accord-questions i:before, li.accord-questions i:after {
		content: "";
		position: absolute;
		background-color: white;
		width: 3px;
		height: 16px;
	}

li.accord-questions i:before {
  transform: translate(2px, 0) rotate(45deg);
}

li.accord-questions i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
		
ul.accord-questions li.accord-questions input[type=checkbox] {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	left: 0;
}

ul.accord-questions li.accord-questions input[type=checkbox]:checked ~ i:before {
	margin-top: 9px;
	height: 9px;
	transform: translate(2px, 0) rotate(45deg);
}

ul.accord-questions li.accord-questions input[type=checkbox]:checked ~ i:after {
	margin-top: 9px;
	height: 9px;
	transform: translate(-2px, 0) rotate(-45deg);
}
	

ul li.accord-questions:nth-of-type(1) {
	border-top:none;
  animation-delay: 0.5s;
}

ul li.accord-questions:nth-of-type(2) {
  animation-delay: 0.75s;
}

ul li.accord-questions:nth-of-type(3) {
  animation-delay: 1s;
}

ul li.accord-questions:last-of-type {
}

li.accord-questions {
  animation: bounceInUp 1s ease both;
}

