
.container{
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: start;
}

/* ==================================================== */	

#sec6{
	background-image: url(../img/background/faq.webp);
	background-position: center;
	background-size: cover;
	height: 100vh;
	display: flex;
	align-items: center;
  animation: fadein 2s ease forwards;
}

.sec6_inner{
	width: 100%;
  text-align: center;
}

.sec6_inner h1{
	letter-spacing: 0;
	font-weight: 600;
  font-size: 32px;
	text-shadow: 1px 1px 2px white, 0 0 1em white, 0 0 0.2em white;
  margin-bottom: 20px;
}

.Plex_p{
  position: absolute;
  color: rgb(68, 31, 94); 
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  
 
}

/* ==================================================== */	

#FAQ{
	width: 70%;
	padding-top: 170px;
  position: relative;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.panel {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
}

.panel-header {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}

.panel-header:hover {
  background: #f8f9fa;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.panel-header.active .icon {
  transform: rotate(45deg);
}

.panel-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.panel-body {
  padding: 20px;
  border-top: 1px solid #eee;
}

.fq_txt{
  color: red;
}

@media screen and (max-width: 1921px){
  .panel{
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 1537px){
  .scrollify{
    height: auto;
  }

  .sec6_inner{
    width: 64%;
    margin: 0 auto;
  }
  #FAQ{
    height: 100%;
    padding-top: 100px;
    margin-bottom: 90px;
  }
  .Plex_p{
    top:35px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (orientation: landscape) and (max-width: 933px){
  .sec6_inner{
    width: 64%;
    margin: 0 auto;
  }
  #FAQ{
    height: 100%;
    padding-top: 100px;
    margin-bottom: 90px;
  }
  .Plex_p{
    top:35px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 480px){
  #FAQ{
    width: 85%;
    padding-top: 70px;
    margin-bottom: 70px;
  }

  .panel-header{
    padding: 10px 10px;
  }

  .Plex_p{
    top:22px;
  }
}