@import url(https://fonts.googleapis.com/css?family=Quicksand:300,400,700);

.accordion {
  /* -webkit-box-shadow: 0px 13px 23px -13px rgba(0,0,0,0.5); */
   width: 100%;
   background-color: transparent;
   margin: auto;
   margin-top: 35px;
   display: flex;
}
.accordion .fd{
	flex: 1 1 auto;
}

.title {
  height: 30px;
/*  width: 400px; */
  /* background-color: rgba(0,0,0, .4); */
  color: #ffffff;
 /* text-transform: uppercase; */
  letter-spacing: 1px;
  font-size: 24px;
  position: relative;
  padding: 10px;
  z-index: 2000;
  border-radius: 4px;
  margin-top: 2px;
  transition: all .2s ease-in;
  margin: 0px auto;
  text-align: center;
}

.title-text {
	font-family: 'Geometr415 Blk BT';
}

.title:hover {
  cursor: pointer;
  background-color: rgba(0,0,0, .5);
}

.title:active {
  background-color: rgba(0, 0, 0, .55);
}

.foot_content {
  height: 30px;
 /* width: 420px; */
  background-color: transparent;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  text-align: center;
  /* position: relative; */
  z-index: 1000;
  margin-top: -30px;
  text-align: left;
  transition: all 200ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
}

.content-open {
  margin-top: 0px;
  height: 85%;
  background-color: rgba(0,0,0, 0.3);
  transition: all 350ms cubic-bezier(0.080, 1.090, 0.320, 1.275);
}

.content-text {
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  transition: all .2s ease-in;
}

.content-text-open {
  visibility: visible;
  opacity: 1;
  transition: all .8s ease-in;
}

.fa-angle-down {
  font-size: 20px;
  color: rgba(255,255,255, .5);
  transition: all .6s cubic-bezier(0.080, 1.090, 0.320, 1.275);
}

.fa-rotate-180 {
  color: rgba(255,255,255, 1);
}

.arrow-wrapper {
	display: initial;
	margin-left: 10px;
}

@media screen and (max-width:640px){

.title {
    height: 20px;
    font-size: 14px;
}

 }