@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Raleway);
/* CSS Document */
.faq-header{
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
  color: black;
}
.faq-content {
  width: 80%;
  margin: 0 auto;
  color: black;
}
.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}
.panel-title {
  font-size: 24px;
  width: 80%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}
.panel-content {
  font-size: 20px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
  color: black;
}
.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
  color: black;
  z-index: 1;
}
.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  color: black;
}
.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.panel {
  display: none;
}
/*your map pop up starts here   */
#header_pop_up{
  color: black;
  width: 80%;
  background-color: #ccc; 
  border-radius: 2%;
  margin: 0px auto; 
} 
.pop_up_text_box{
  padding: 20px;
}
.faq_popup {
  position: absolute;
  padding: 2rem 0px;
  visibility: hidden;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*overflow: hidden;*/
  opacity: 0;
  display: none;
}
.faq_popup:target{
    visibility: visible;
    opacity: 1;
    display: flex;
}
.faq_popup .faq_popup_content{
    background-color: rgba(255, 255, 255, .973); 
    box-shadow: 0px 4px 40px -5px #555555ad;
    padding: 4rem;
    border-radius: 1rem;
    width: 50rem;
    margin: 0px auto;
    position: relative;
}
.faq_popup .faq_popup_content img{
  width: 100%;
  border-radius: 1rem;
}
.faq_popup .faq_popup_content .close{
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgb(88, 88, 88) ;
  text-decoration: none;
  font-size: 3rem;
  font-weight: 700;
  transition: all .35;
}
.faq_popup .faq_popup_content .close:hover{
  color: #33d9b2;
}
.faq_popup .content--text{
  margin-top: 2rem;
  text-align: center;
}
.faq_popup .faq_popup_content h4 {
font-size: 3em;
  font-weight: 400;
  padding-top: 20px;
}
p.sub_text {
  font-size: 2em;
  font-weight: 400;
}
.act_btn{
  text-align: center;
}
.act_btn a:link, .act_btn a:visited{
  text-decoration: none;
  font-size: .8rem;  
  font-weight: 400;
  color: rgb(255, 255, 255);
  padding: .2rem 1rem;
  background-color: #695a84;
  text-transform: uppercase;
  border-radius: .2rem;
  border: thin black;
}
    /*faq pop up at 825 px  */
@media screen and (max-width: 850px) {
.faq_popup .faq_popup_content {
  width: 30rem;
 }
  }
@media screen and (max-width: 620px) {
    .faq_popup .faq_popup_content {
    width: 20rem;
  }
  .faq-header {
  font-size: 2em;
  padding: 20px;
}
}
@media screen and (max-width: 400px) {
.faq_popup .faq_popup_content {
  padding: 1rem;
  width: 15rem;

}
}