* {
  margin: 0;
  padding: 0;
  font-family: 'Nunito Sans', sans-serif;
}

body {
  background-color: #F3F5F7;
}

.logo {
  width: 100%;
  max-width: 108px;
  display: block;
  margin: 25px auto;
}
.hero {
  width: 100%;
  display: block;
}
.hero-desk {
  display: none;
}
@media (min-width: 768px) {
  .logo {
    width: 100%;
    max-width: 253px;
    display: block;
    margin: 82px auto 0 154px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .hero {
    display: none;
  }
  .hero-desk {
    display: block;
    width: 100%;
    max-width: 739px;
    margin: 0 auto;
  }
}

.oi {
  font-family: 'Nunito Sans', sans-serif;
}

.benefits-container {
  background-color: #00467D;
  display: flex;
  flex-direction: column;
  padding: 56px 0 0;
  align-items: center;
}
.benefits__logo {
  width: 40px;
}
.benefits__text {
  color: #FFFFFF;
  font-weight: 400;
  text-align: center;
  margin-top: 8px;
  font-size: 20px;
  max-width: 765px;
  padding: 0 16px;
}
/* @media (min-width: 1200px) {
  .benefits__text {
    max-width: 786px;
  }
} */

@media (min-width: 1200px) {
  .benefits-holder {
    display: flex;
    max-width: 1072px;
    margin: 56px auto 99px;
    gap: 65px;
  }
}
.benefits {
  display: flex;
  gap: 16px;
  flex-direction: column;
  padding: 56px 16px;
}
@media (min-width: 1200px) {
  .benefits {
    min-width: 487px;
    justify-content: center;
  }
}
.benefits__item {
  background-color: #FFFFFF;
  padding: 4px 16px;
  display: flex;
  gap: 8px;
  border-radius: 26px;
  align-items: center;
}
.benefits__item__img {
  width: 40px;
}
.benefits__item__title {
  color: #00467D;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.benefits__img {
  width: 100%;
  display: block;
}
@media (min-width: 1200px) {
  .benefits__img__holder {
    padding-left: 97px;
  }
  .benefits__img {
    min-width: 487px;
  }
}

.faq {
  padding: 24px 16px 56px;
}
.faq__question {
  padding: 32px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #00467D;
  position: relative;
  border-bottom: 1px solid #00467D;
  cursor: pointer;
}
.faq__answer {
  height: 0;
  overflow: hidden;
}
.faq__answer--opened {
  height: fit-content;
}
.faq__answer__text {
  margin-top: -50%;
  transition: 0.4s ease;
  font-weight: 400;
  padding-top: 20px;
}
.faq__answer--opened .faq__answer__text {
  margin-top: 0;
}
.arrow {
  position: absolute;
  width: 8px;
  top: 40px;
  right: 0;
  transition: all 0.2s ease;
}
.faq__answer--opened .arrow {
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .faq {
    max-width: 832px;
    margin: 0 auto;
  }
}

.footer {
  background-color: #006CB7;
}
.footer__divider {
  background: linear-gradient(90deg, #8FC73E 0%, #00467D 100%);
  height: 8px;
}
.footer__content {
  padding: 60px 80px 75px;
  display: flex;
  justify-content: space-between;
}
.footer__logos {
  display: block;
  width: 358px;
  height: 44.98px;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__social span {
  color: #FFFFFF;
  font-size: 10px;
}
.footer__social__items {
  display: flex;
  gap: 14.16px;
}
.footer__social__item {
  display: block;
}
.footer__social__item img {
  width: 33.35px;
  height: 33.35px;
  cursor: pointer;
  display: block;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 60px 16px 75px;
  }
  .footer__logos {
    width: 100%;
    max-width: 358px;
  }
}