#gototop {
    position: fixed;
    bottom: 100px;
    right: 10px;
    background: rgba(73, 122, 255, .8) url(../img/up.png) center top no-repeat;
    width: 30px;
    height: 30px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#gototop i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 6px;
    top: -3px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#gototop:hover {
    background-color: #555;
}
.main{
    margin-bottom:100px;
}
.faq-heading{
    border-bottom: #777;

	  text-decoration: underline;
  text-decoration-color: red;

  width: 600;
  text-align: center;
  padding: 80px 0 50px 0;
  margin: 0 auto;
}
.faq-container{
display: flex;
justify-content: center;
flex-direction: column;

}
.hr-line{
  width: 600;
  margin: auto;
}
/* Style the buttons that are used to open and close the faq-page body */
h2 {
    /* background-color: #eee; */
    color: #444;
    cursor: pointer;
    padding: 30px 20px;
    width: 600;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;

}
.faq-body{
    margin: auto;
    /* text-align: center; */
   width: 600; 
   padding: auto;
   
}


/* 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,
h2:hover {
    background-color: #F9F9F9;
}

/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

h2:after {
    content: "+";
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "-";
}