body{
    font-family: Apex Sans, "Arial";

}

.logo{
	display: flex;
	float:left;
	width:50%;
}

.heading{
    /*border-bottom: 1px solid #636466;*/
	overflow:hidden;
    text-align: center;
    color:black;
    font-size:40px;
	padding-bottom: 40px;
	width:100%;
}
.faq-container{
display: flex;
justify-content: center;
flex-direction: column;
margin-bottom: 100px;
}
.hr-line{
  width: 60%;
  margin: auto;
  
}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    /* background-color: #eee; */
    color: black;
    cursor: pointer;
    padding: 30px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;
}
.faq-body{
    margin: auto;
    /* text-align: center; */
   width: 60%; 
   /*padding: auto;*/
   padding:inherit;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.faq-page:hover {
    /*background-color: #F9F9F9;*/
    color:#ec7700;
}
/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
   /* background-color: white;*/
    display: none;
    overflow: hidden;
        color: black;
}
.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2796";
    color:#ec7700;
    /* Unicode character for "minus" sign (-) */
}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

select::focus{
    background:orange;
}
/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #ec7700;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  border: .5px solid black;
}

/* Add a background color and some padding around the form */
.container {
color: black;
  /*background-color: #636466;*/
  border: 1px solid black;
  padding: 20px;
}


/*attempt*/
#footer {
    position: fixed;
    bottom: 0;
    z-index: 2;
    background-color: #636466;
    color: #fff;
    margin: 0 auto;
    padding-top: 5px;
    font-size: 10pt;
    text-align: center;
    /*min-height: 25px;*/
    line-height: 1.5;
    width: 100%;
}

#footer a:link, #footer a:visited, #footer a:hover, #footer a:active {
    color: #fff;
}

#footer-content{
	background-color: #636466;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    /*justify-content: center;
    align-items: baseline;*/
    align-content: center;
	width:100%;
	min-height: 25px;
}

.footer-item, .footer-item-end {
    float: left;
    border-right: 1px dotted #fff;
    padding: 0 20px;
    list-style: none;
}

#footer-item-img-1 { width:12px;}
#footer-item-img-2 { width:12px;}
#footer-item-img-3 { width:12px;}
.footer-item img { padding-left:2px; padding-right:2px;}

.footer-item-end { border-right: 0; }