.Landing {
  margin: 0px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.Landing__header {
  padding: 36px 90px 42px 90px;
}
.Landing__header__row {
  flex-wrap: wrap;
}
.Landing__header__row > * {
  margin: 10px;
}
.Landing__logo-small {
  object-fit: contain;
  max-width: 50;
  max-height: 50px;
}
.Landing__voluntariadoempresa {
  display: inline;
  font-family: Nunito;
  font-size: 2.5vw;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}
.Landing__voluntariadoempresa-blue {
  display: inline;
  font-family: Nunito;
  font-size: 2.5vw;
  font-weight: bold;
  color: #002c77;
  text-transform: uppercase;
  margin: 0;
  text-decoration: none;
}
.Landing__cover {
  background-image: linear-gradient(to top, rgba(0, 75, 142, 0.7), rgba(0, 75, 142, 0)), url('images/cover.jpg');
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding: 4vw 6vw 4vw 6vw;
  justify-content: space-between;
  height: calc(100vh - 67px);
}
.Landing__row-spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Landing__row-spaceAround {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.Landing__row-center {
  display: flex;
  justify-content: center;
}
.Landing__row-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Landing__login-button {
  width: 170px;
  height: 50px;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;
}
.Landing__login-button-blue {
  width: 170px;
  height: 50px;
  border-radius: 6px;
  background-color: #004b8e;
  cursor: pointer;
}
.Landing__claim {
  font-size: 5vw;
  font-weight: 300;
  text-align: center;
  color: #ffffff;
  margin: 0px;
  width: 80vw;
  max-width: 890px;
}
.Landing__claim-sub {
  font-size: 1.5vw;
  line-height: 1.38;
  text-align: center;
  color: #ffffff;
  margin: 47px 0 0 0;
  width: 56vw;
  max-width: 619px;
}
.Landing__scroll-down {
  display: flex;
  flex-direction: column;
}
.Landing__scroll-down span {
  font-size: 17px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 15px;
}
.Landing__collaborators {
  padding: 4vw 0 4vw 0;
  width: 100%;
  background-color: #fff;
}
.Landing__collaborators-title {
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  margin-bottom: 70px;
}
.Landing__slider {
  background: #fff;
  height: 100px;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 42px;
}
.Landing__slider-slide {
  margin: 0 20px;
}
.Landing__orgs {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 10vw;
  align-items: center;
}
.Landing__orgs img {
  object-fit: contain;
  max-height: 150px;
}
.Landing__info {
  width: 100%;
  background-color: #fff;
  padding: 4vw 0 4vw 0;
}
.Landing__info-title {
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  margin-bottom: 68px;
}
.Landing__info-section {
  border-radius: 12px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px rgba(123, 137, 137, 0.1);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 48px 24px 48px;
}
.Landing__info-section img {
  margin-bottom: 36px;
}
.Landing__info-section-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.05;
  text-align: center;
  color: #000000;
  margin-top: 36px;
  margin-bottom: 12px;
}
.Landing__info-section-subtitle {
  opacity: 0.5;
  font-size: 15px;
  line-height: 1.47;
  text-align: center;
  color: #000000;
  margin: 0px;
}
.Landing__row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 14vw;
  column-gap: 36px;
  row-gap: 36px;
}
.Landing__how {
  width: 100%;
  background-color: #fff;
  padding: 4vw 0 4vw 0;
}
.Landing__how-title {
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  margin-bottom: 68px;
}
.Landing__how-steps {
  padding: 0 18vw;
}
.Landing__how-steps-step {
  width: 100%;
  display: flex;
  margin: 0px;
  overflow: hidden;
  padding-bottom: 24px;
}
.Landing__how-steps-step-number {
  width: 76px;
  height: 76px;
  background-color: rgba(0, 75, 142, 0.07);
  border-radius: 50%;
  font-size: 41px;
  font-weight: bold;
  text-align: center;
  color: #004b8e;
  margin: 0 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.Landing__how-steps-step-number:after {
  content: '';
  height: 9999px;
  width: 0px;
  position: absolute;
  top: 76px;
  border: 1px dashed #004b8e;
}
.Landing__how-steps-step-text {
  width: calc(100% - 76px);
  font-size: 1.5vw;
  line-height: 1.67;
  color: #000000;
  margin: 0px;
  display: flex;
  align-items: center;
}
.Landing__how-steps-step:last-child .Landing__how-steps-step-number:after {
  display: none;
}
.Landing__reviews {
  padding: 4vw 0 4vw 0;
  background-color: #004b8e;
}
.Landing__reviews-title {
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}
.Landing__reviews-section {
  padding: 0 10vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  column-gap: 24px;
  row-gap: 24px;
}
.Landing__reviews-review {
  display: flex;
  flex-direction: column;
}
.Landing__reviews-review-text {
  border-radius: 12px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px rgba(123, 137, 137, 0.1);
  background-color: #ffffff;
  padding: 18px 36px;
  margin-bottom: 12px;
}
.Landing__reviews-review-text p {
  font-size: 19px;
  font-style: italic;
  line-height: 1.53;
  text-align: center;
  color: #2c2c2c;
}
.Landing__reviews-review-who {
  display: flex;
}
.Landing__reviews-review-who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 13px;
}
.Landing__reviews-review-name {
  font-size: 19px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
.Landing__reviews-review-position {
  opacity: 0.8;
  font-size: 19px;
  color: #ffffff;
}
.Landing__reviews-review-stars {
  width: 105px;
  margin-top: 5px;
}
.Landing__app {
  flex: 1;
}
.Landing__app h2 {
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  margin-bottom: 70px;
}
.Landing__app__badge {
  box-sizing: border-box;
  max-width: 100vw;
  margin: 10px;
}
.Landing__app__badge img {
  max-width: min(350px, 100vw);
}
.Landing__app__badge__container {
  flex-wrap: wrap;
}
.Landing__faq {
  padding: 4vw 0 4vw 0;
  background-color: #fff;
}
.Landing__faq-title {
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  margin-bottom: 60px;
}
.Landing__faq-subtitle {
  font-size: 21px;
  font-weight: 500;
  color: #000000;
  margin: 42px 0 18px 0;
}
.Landing__faq-questions {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
  padding: 0 12vw;
}
.Landing__faq-question {
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px rgba(123, 137, 137, 0.1);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 0 18px 0 24px;
  font-size: 17px;
  font-weight: 500;
  color: #273941;
  margin-bottom: 6px;
  overflow: hidden;
}
.Landing__faq-question-header {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.Landing__faq-question-header img {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.Landing__faq-question-body {
  height: 0px;
  padding-right: 15px;
  margin-bottom: 0px;
  transition: all 0.5s ease;
}
.Landing__faq-question-body p,
.Landing__faq-question-body li {
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.47;
  letter-spacing: normal;
  color: #273941;
}
.Landing__faq-question-open .Landing__faq-question-body {
  height: auto;
  margin-bottom: 20px;
}
.Landing__faq-question-open .Landing__faq-question-header img {
  transform: rotate(180deg);
}
.Landing__faq-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  cursor: pointer;
  text-decoration: none;
}
.Landing__faq-more span {
  margin-right: 8px;
  font-size: 17px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.2px;
  text-align: right;
  color: #273941;
}
.Footer {
  margin: 0 6vw;
  border-top: 1px solid rgba(154, 154, 162, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 54px;
  padding-bottom: 56px;
  align-items: center;
}
.Footer__logo {
  flex: 1;
  margin: 20px;
  display: flex;
  flex-direction: column;
  object-fit: contain;
  max-width: 200px;
  max-height: 80px;
}
.Footer__powered-by-aplanet {
  align-self: flex-end;
}
.Footer__powered-by-aplanet img {
  display: inline block;
}
.Footer__powered-by-aplanet span {
  font-size: 11px;
  color: #7b8989;
}
.Footer__info {
  flex: 1;
  margin: 20px;
  display: flex;
  flex-direction: column;
}
.Footer__info-mail {
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #004b8e;
  margin-bottom: 12px;
}
.Footer__info-copyright {
  opacity: 0.5;
  font-size: 15px;
  color: #000000;
}
@media only screen and (max-width: 900px) {
  .Landing__row-grid {
    grid-template-columns: 1fr;
  }
  .Landing__claim {
    font-size: 7vw;
  }
  .Landing__claim-sub {
    font-size: 2.5vw;
  }
  .Landing__how-steps-step-text {
    font-size: 2.5vw;
  }
}
