*,
*::before,
*::after{
  margin:0;
  padding: 0;
  box-sizing: inherit;
}

html {
	  background-color: #000000;

  font-size: 10px;
  box-sizing: border-box;
}

/*Section used for centering process*/
section {

  width: 100%;
  height: 120vh;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
	margin: 100px auto;
	z-index: 100;
}
.parent-services{
	width: 100%;
	
}
.container{

  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
 
  .landing{
	position: relative;
	width: 100%;
	height: 50vh;
background-image: url("../image/Rona/rona/labi1-header.jpg");
	/*    background-attachment:fixed;*/
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	
	
}
.landing::after{
		content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 102%;
	background-image: linear-gradient(180deg, transparent 0 30%, rgba(0,0,0,0.90) 98% 100%);
}
 
.accordion-item{
			direction: rtl;
  background-color: #000000;
  border-radius: .4rem;
}

.accordion-item hr{
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.accordion-link{
  font-size: 1.6rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  background-color: #000000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.accordion-link h3{
  font-weight:500;
  font-size: 20px;
	margin:  0 10px ;
}

.accordion-link i{
  color: #e7d5ff;
  padding: .5rem;
	margin: 10px;
	
  
}
 
.accordion-link ul{
  display:flex;
  align-items: flex-end;
  list-style-type: none;
  margin-left: 25px;
}

.accordion-link li{
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 1px 5px;
}

.accordion-link div{
  display: flex;
}

.accordion-link .ion-md-arrow-down{
  display: none;
}

.answer{
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: #000;
  transition: max-height 650ms;
}



.answer p{
  color: #fff;
  font-size: 15px;
  padding: 2rem;
  
}

.accordion-item:target .answer{
  max-height: 20rem;
}

.accordion-item:target .accordion-link .ion-md-arrow-forward{
  display: none
}

.accordion-item:target .accordion-link .ion-md-arrow-down{
  display: block;
}

/*.fix-footer{
	width: 100%;
	position: fixed;
	bottom: -400px;
}*/
@media (max-width: 900px) {
	
	.landing{
		height: 70vh;
	}
 .accordion-link h3{
  font-weight:500;
  font-size: 12px;
	margin:  0 10px ;
}
	.accordion-link li{
  font-size: 8px;
 
}
	.answer p{
		  font-size: 10px;
	}
	

}