body {
  margin: 20px 0px;
  background: #2f2f2f;
  font-size: 18px;
  color: #bbbbbd;
}
.body {
  background: #262626;
  max-width: 1200px;
  width: 90%;
  margin: 40px auto;
  font-size: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 20px black;
  animation: load 2s ease-in 1;
}
@keyframes load {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: 2px 2px 20px black;
  }
  100% {
    box-shadow: 2px 2px 20px black;
  }
}
.head {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  margin-bottom: 20px;
  background: rgb(50, 48, 48);
  background: radial-gradient(
      circle,
      rgba(36, 34, 34, 0.493) 0%,
      rgb(31, 27, 26) 30%,
      rgba(61, 61, 61, 0.884) 78%
    ),
    url(../assets/img/pexels-charlotte-may-5825604.jpg) no-repeat;
  background-position: 50%;
  background-size: cover;
  padding: 10px;
}
.about {
  margin: auto;
  max-width: 1200px;
  width: 100%;
  display: flex;
  padding: 30px 35px;
  padding-bottom: 20px;
  box-sizing: border-box;
  border-bottom: 2px solid #211d1c;
  justify-content: space-between;
}

.about > div {
  width: 49%;
}
.about .infoTexts {
  padding: 10px 0px;
  line-height: 1.5em;
  box-sizing: border-box;
  font-size: 1.05em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infoTexts h3 {
  font-size: 2em;
  padding-bottom: 30px;
  margin-top: 0px;
  margin-bottom: 10px;
  width: fit-content;
  border-bottom: 2px solid gray;
}
.about .infoVid {
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 2px 2px 5px rgb(134, 134, 134); */
}
.infoVid img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottomRow {
  margin: auto;
  max-width: 1200px;
  width: 100%;

  padding: 30px 35px;
  padding-bottom: 20px;
  box-sizing: border-box;
  border-bottom: 2px solid #211d1c;
}

.faqs .faqText {
  font-size: 2em;
  padding-bottom: 10px;
  margin-top: 0px;
  margin-bottom: 30px;
  width: fit-content;
  border-bottom: 2px solid gray;
}
.faqs .question {
  box-sizing: border-box;
  border: 4px solid rgb(0, 0, 0);
  border-radius: 10px;
  cursor: pointer;
  background: #1f1b1a;
  box-shadow: 0px 0px 10px black, inset 1px 1px 10px #161515;
  display: flex;
  height: fit-content;
  flex-direction: column;
  justify-content: space-between;
}
.question h3 {
  height: 30%;
  position: relative;
  box-sizing: border-box;
  padding: 0px 10px;
}
.question h3::before {
  content: "+";
  color: rgb(158, 158, 158);
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 30px;
  transform: translateY(-50%);
}
.question.active h3::before {
  content: "-";
  font-size: 30px;
}
.question p {
  background: #000;
  box-sizing: content-box;
  margin: 0%;
  height: 0px;
  padding: 0px 10px;
  overflow: hidden;
  transition: height 0.2s ease-out;
  line-height: 27px;
  letter-spacing: 3px;
  font-size: 1.1em;
}
.question.active p {
  height: 85px;
}
footer {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin-top: 20px;
  margin: auto;
  padding: 30px 35px;
  box-sizing: border-box;
}

@media screen and (max-width: 425px) {
  body {
    margin: 0px;
  }
  .body {
    margin: 0px;
    border-radius: 0%;
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  head h2{
    font-size: .9em;
  }
  .about{
    flex-direction: column-reverse;
    padding: 20px;
    justify-content: space-between;
  }
  .about > div{
    width: 100%;
    height: 48%;
  }
  div h3{
    line-height: 35px;
  }
}