/* 
@media (max-width: 1439px) {
.questions {
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
} */
 .questions {
  margin-top: 50px;
 }
.questions-item {
border-bottom: 1px solid #00000024;
padding: 10px 10px 10px 15px;
 }
.questions-item:not(:first-child) { 
    margin-top: 10px; 
}
.questions-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;

font-weight: 500;
font-size: 20px;
line-height: 1.2;
color: var(--accent-color);


}
.questions-icon { 
    width: 14px;
    height: 7px; 
    flex-shrink: 0; 
}
.questions-answer {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
  /* padding: 20px 20px 20px 0; */
}
.questions-answer p {
  margin: 0;
font-weight: 500;
font-size: 16px;
color: #000000CC; 
padding-top: 20px;
}
.questions-answer-list-wrap {
list-style: disc;
    padding-left: 20px; 
    margin-top: 12px;
}
.questions-answer-list-wrap li{
  margin: 0;
font-weight: 500;
font-size: 16px;
color: #000000CC; 
}

@media (min-width: 1024px) {
 .questions-block {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; */
  }
.questions-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
}

@media (min-width: 1440px) {
.questions-question {
    font-size: 26px;
}
.questions-answer p {
    font-size: 20px;
    padding-top: 35px;
}
.questions-answer-list-wrap li{
font-size: 20px;
}
.questions-answer-list-wrap {
    padding-left: 22px;
}

}
@media (min-width: 1920px) {



}
