#content{
  height: 100%;
  gap: 3.75rem;
  padding: 3.75rem 1.5rem;
  border: 1px solid #D4DAF0;
  border-radius: .5rem;
 
}
h1{
  font-size: 40px;
  text-align: center;
  line-height: 130%;
  color: #222B3F;
  font-weight: 600;
}
.subtitle{
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #6B748B;
  text-align: center;
  display: block;
}
.faq_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 50px;
}
.faq_entry {
  display: flex;
  flex-direction: column;
  max-width: 65.9375rem;
  border-bottom: 1px solid #D4DAF0;
  width: 100%;
}
.faq_entry-header {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1.5rem 0;
  cursor: pointer;
  user-select: none;
}
.faq_entry-title {
  font-size: 1.5rem;
  line-height: 150%;
  display: flex;
  color: #222B3F;
  font-weight: 600;
}

.faq_entry-button--hide {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: rotate(-90deg);
  
}
.faq_entry-button--shown {
  display: flex;
  transition-property: transform;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.07, .74, .56, .89);
  transform: rotate(0deg);
}
.faq_entry-header button{
  cursor: pointer;
  background: transparent;
  border: 0;
}
.imgslaid {
  margin-top: 40px;
  display: inline-block;
  margin-left: 15px;
}
.imgslaid img{max-width: 100%;height:auto;}

.topimg{margin-bottom: 40px;}
.topimg img{max-width: 100%;height:auto;}

@media (max-width:1198px) {
  #content-wrapper{
   
    width: 100%;
  }
}
@media (max-width:992px) {
  #content-wrapper{padding: 20px;
    border: 0px solid #D4DAF0;}
  .faq_entry-title {font-size: 18px;}
  h1{font-size: 34px;}
  .faq_container{margin-top: 30px;}
}