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

:root {
  --orange-100: #f18637;
  --orange-200: #de741a;
  --black-100: #3c3c3b;
  --black-200: #000000;
  --white-200: #ffffff;
  --white-100: #f5f5f5;
  --gray-200: #d3d3d3;
  /*fONTS*/
  --font-family1: "Baloo 2", cursive;
  --font-family2: "Poppins", sans-serif;
}

body {
  background: var(--white-100);
  font-family: var(--font-family2);
  color: var(--black-100);
  overflow-x: hidden;
}

h1,
h2,
p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--black-100);
}

button {
  cursor: pointer;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1rem;
}

header {
  background: var(--white-200);
}

.who_weAre_image_background {
  background-image: url("../public/frameBackground.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.who-weAre_container {
  display: flex;
  justify-content: space-between;
  padding: 6.5rem 0;
}
@media screen and (max-width: 1045px) {
  .who-weAre_container {
    flex-direction: column;
  }
}

.who-weAre-text {
  flex: 2;
  margin-top: 50px;
}
@media screen and (max-width: 1045px) {
  .who-weAre-text {
    text-align: center;
    margin-top: 20px;
  }
}
.who-weAre-text .who-weAre-title,
.who-weAre-text .who-weAre-title-span {
  font-size: clamp(0.5rem, 1rem + 10vw, 5rem);
  font-weight: 800;
  font-family: var(--font-family1);
  line-height: 65px;
}
@media screen and (max-width: 920px) {
  .who-weAre-text .who-weAre-title,
.who-weAre-text .who-weAre-title-span {
    font-size: 6.5vw;
    line-height: 50px;
  }
}
@media screen and (max-width: 700px) {
  .who-weAre-text .who-weAre-title,
.who-weAre-text .who-weAre-title-span {
    font-size: 7vw;
    line-height: 35px;
  }
}
@media screen and (max-width: 500px) {
  .who-weAre-text .who-weAre-title,
.who-weAre-text .who-weAre-title-span {
    font-size: 8vw;
    line-height: 30px;
  }
}
.who-weAre-text .who-weAre-title-span {
  color: var(--orange-200);
}
.who-weAre-text .who-weAre-description {
  padding: 2rem 0 2rem 0;
  text-align: justify;
  width: 100%;
  font-weight: 400;
  color: var(--black-200);
}
@media screen and (max-width: 1045px) {
  .who-weAre-text .who-weAre-description {
    padding: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .who-weAre-text .who-weAre-description {
    font-size: 1.5vw;
    line-height: 25px;
  }
}
@media screen and (max-width: 920px) {
  .who-weAre-text .who-weAre-description {
    padding: 2rem;
    font-size: 1.8vw;
    line-height: 20px;
  }
}
@media screen and (max-width: 700px) {
  .who-weAre-text .who-weAre-description {
    padding: 2rem;
    font-size: 2.2vw;
    line-height: 20px;
  }
}
@media screen and (max-width: 500px) {
  .who-weAre-text .who-weAre-description {
    padding: 2rem;
    font-size: 3vw;
    line-height: 20px;
  }
}

.who-weAre_image_Container {
  flex: 2;
  margin-top: 50px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1045px) {
  .who-weAre_image_Container {
    justify-content: center;
  }
}
@media screen and (max-width: 920px) {
  .who-weAre_image_Container {
    margin-top: 10px;
  }
}
.who-weAre_image_Container .who-weAre-roadImage {
  max-width: 470px;
  height: 300px;
  width: 100%;
  border-radius: 37px;
}
@media screen and (max-width: 600px) {
  .who-weAre_image_Container .who-weAre-roadImage {
    max-width: 300px;
    width: 100%;
    height: 300px;
  }
}

.accordion-question-title {
  font-size: 2rem;
  color: var(--black-200);
  font-weight: 700;
  font-family: var(--font-family1);
}
@media screen and (max-width: 920px) {
  .accordion-question-title {
    text-align: center;
    font-size: 4vw;
  }
}
@media screen and (max-width: 500px) {
  .accordion-question-title {
    font-size: 1.3rem;
  }
}

.accordion-question-title-span {
  color: var(--orange-100);
}

.accordion-container {
  padding: 0;
  margin-bottom: 6rem;
}

.accordion .accordion-item {
  margin: 1rem 0;
  font-family: var(--font-family1);
  background: none;
  border: none;
}
.accordion button {
  position: relative;
  border: 2px solid var(--orange-200);
  border-radius: 57px;
  padding: 0.6rem 2rem;
  font-family: var(--font-family1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  text-align: left;
  width: 100%;
  font-size: 1.2rem;
  background: none;
  font-weight: 400;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 920px) {
  .accordion button {
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
  }
}
.accordion .bx-chevron-down {
  font-size: 2rem;
}

button[aria-expanded=true] {
  background: var(--orange-100);
  border: none;
  color: var(--white-200);
}
button[aria-expanded=true] .icon::after {
  width: 0;
}
button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 0.5s ease-in-out;
  will-change: opacity, max-height;
}
button[aria-expanded=true] .bx-chevron-down {
  transform: rotate(180deg);
}

.accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.accordion-content p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black-200);
  padding: 1rem 2rem;
}
@media screen and (max-width: 920px) {
  .accordion-content p {
    font-size: 0.9rem;
  }
}

.nextButton {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 9rem;
  border: none;
  background-color: var(--orange-200);
  color: var(--white-200);
  margin: 24px auto;
  border-radius: 57px;
  font-size: 1.2rem;
}
.nextButton:hover {
  filter: brightness(0.8);
}
@media screen and (max-width: 920px) {
  .nextButton {
    font-size: 0.9rem;
    padding: 0.6rem 5rem;
  }
}
@media screen and (max-width: 400px) {
  .nextButton {
    font-size: 0.7rem;
    padding: 0.5rem 3rem;
  }
}

.footer {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}/*# sourceMappingURL=quemSomos.css.map */