@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');


.faq {
  padding: 20px ;
  width: 70%;
  min-width:450px;
  margin: auto;
  position: relative;
  height: auto;
}

.faq-container {
  width: 100%;
  /* height: 100%; */

}

.faq-label {
  cursor: pointer;
  width: 100%;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;

border-radius: 19px;
background: #d0edf0;
box-shadow:  5px 5px 10px #b7d1d3,
             -5px -5px 10px #e9ffff;
}

.faq-label-text {
  color: #365A5E;

}

.faq-label-icon {
  padding: 2px 3px;
  background: #d0edf0;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.material-icons {
  color: #365A5E;
  transition: 0.3s ease;
}

.faq-answer {
  transition: 0.3s ease;
  margin-top: 15px;
  height: 0;
  border-radius: 6px;
  color: rgba(127, 121, 121, 1);
  overflow: hidden;

}

.faq-answer-content {
  padding: 10px 0 10px 15px;
  

}

.active {

  background: #FFFFFF;
  /* border: 1px solid #C7C4C4; */
  
  height: auto;
  margin-bottom: 25px;

}
.rotate{
  transform: rotate(180deg)
}
.global-label{
  color:#365A5E;
  width:100%;
  height:35px;
  border-bottom: solid 2px #C4C1C1;
  margin-bottom: 35px;
}
.global-label-text{
  font-size:18px;
  font-weight:700;
  color:#365A5E;
}
.score{
  display:none;
  color:#00ff2a;
  padding:15px;
  width:45px;
  height:25px;
  margin: 45px auto;
  text-align:center;
  padding: 5px;
  justify-content:center;
  align-items:center;
  border-radius:5px;
  background:white;
}
.about-me{
  border-radius:5px;
  width:300px;
  margin:auto;
  color:white;
  text-align:center;
  background:#ffff;
  padding:7px 18px;
}

@media (max-width:768px){
  .faq-container{
    width: 85%;
  }
}