html{scroll-behavior:smooth}

.faq-container{
display: flex;
justify-content: center;
flex-direction: column;

}
.hr-line{
  width: 100%;
  margin: auto;
}
/* Style the buttons that are used to open and close the faq-question body */
.faq-question {
    /* background-color: #eee; */
    color: #444;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;

}
.faq-answer{
    margin: auto;
    /* text-align: center; */
	width: 90%; 
	padding: auto;
	background-color: white;
	display: none;
	overflow: hidden;
}


/* 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-question:hover {
    background-color: #F9F9F9;
}

.faq-question:after {
    content: '\2795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 10px;
}

.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

.platformTitleBox {
	font-size: 21px;
	margin: 0;
	padding: 0;
}

.iosBox {
	background-color: #E9E9E9;
	border-radius: 15px 15px 0px 0px;
	padding: 20px 20px 5px 20px;
	margin-top: 20px;
}

.androidBox {
	background-color: #E7FFDE;
	border-radius: 0px 0px 15px 15px;
	padding: 20px 20px 5px 20px;
	margin-bottom: 20px;
}