@import url("https://fonts.googleapis.com/css?family=Montserrat");

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #34495e;
  color: #fff;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
h1 {
  text-align: center;
  margin: 2rem 0;
  font-size: 2.5rem;
}

.faqwrapper {
  display: flex;
  justify-content: space-evenly;
  width: 80vw;
  margin: auto;
}
.faqwrapper-2 {
  padding: 0px 20px;
}

.faq {
  width: 90vw;
  max-width: 1000px;
  margin-left: 50px;
  margin-bottom: 50px;
}
.faq-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.faq-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.faq-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.faq-item-header.active::after {
  content: "\2212";
}
.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.faq-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

.il img {
  margin-left: 60px;
  margin-top: 100px;
  height: 80%;
  width: 70%;
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .faqwrapper {
    flex-direction: column;
  }
  .faq {
    width: 70vw;
    max-width: 1000px;
    margin: auto;
  }
}
