.header {
  position: relative;
  overflow: hidden;
}
.header-wrapper {
  padding-top: 40px;
  display: flex;
  align-items: center;
}
.header-logo {
  position: relative;
  width: 82px;
  height: 82px;
  z-index: 9;
}
.header-nav {
  margin-left: 40px;
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 37px;
}
.header-nav__list a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 153%;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.header-nav__list a:hover {
  color: var(--accent-color);
}
.header-nav__btn {
  display: none;
}

.hero-wrapper {
  width: 100%;
  position: relative;
  padding-top: 92px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.hero-wrapper::after, .hero-wrapper::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-wrapper::after {
  width: 426px;
  height: 406px;
  top: 0;
  right: 0;
  background-image: url("../images/hero.png");
  z-index: -1;
}
.hero-wrapper::before {
  width: 148px;
  height: 148px;
  top: 80px;
  right: 350px;
  transform: rotate(16deg);
  background-image: url("../images/green-bag.png");
}
.hero-title {
  max-width: 576px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 48px;
  line-height: 117%;
  color: var(--text-color);
}
.hero p {
  margin-top: 34px;
  max-width: 420px;
}
.hero-btn {
  margin-top: 50px;
}

.about {
  position: relative;
  padding-top: 100px;
}
.about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.about-title {
  display: flex;
  align-items: center;
  gap: 30px;
}
.about-decor {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  background: var(--accent-color);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.about-info {
  position: relative;
  margin-top: 60px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px 100px;
}
.about-info::after {
  position: absolute;
  content: "";
  width: 144px;
  height: 138px;
  left: 13vw;
  bottom: -60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/dollar-basket.png");
}
.about-info__item {
  max-width: 400px;
}

.task {
  padding-top: 40px;
}
.task-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}
.task-list {
  width: 100%;
  max-width: 790px;
  display: flex;
  align-items: start;
  gap: 14px;
}
.task-list__item {
  flex: 1;
  padding: 20px 12px;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 4px 65px 0 rgba(0, 0, 0, 0.12);
  background: var(--light-color);
  border-radius: 15px;
}
.task-list__item h3 {
  height: 38px;
  display: flex;
  align-items: start;
  gap: 4px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 19px;
  line-height: 111%;
  color: var(--accent-color);
}
.task-list__item h3 img {
  width: 36px;
  height: 36px;
}
.task-list__item ol {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.task-list__item ol li {
  padding-left: 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  color: var(--text-color);
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("../images/done-icon.svg");
}

.expectations {
  padding-top: 60px;
}
.expectations-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.expectations-list {
  width: 100%;
  max-width: 672px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.expectations-list__item {
  width: 100%;
  height: 96px;
  padding-left: 84px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-color);
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 24px center;
  background-image: url("../images/done-2-icon.svg");
}

.request {
  padding-top: 70px;
  padding-bottom: 100px;
}
.request-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.request h2 {
  max-width: 820px;
}
.request p {
  text-align: center;
}
.request-form {
  width: 100%;
  max-width: 442px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.request-form input {
  height: 61px;
  padding: 18px;
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  background: var(--light-color);
}
.request-form__btn {
  width: 100%;
}

.footer {
  overflow: hidden;
  padding-bottom: 40px;
}
.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 154px;
}
.footer-information {
  max-width: 320px;
  display: flex;
  flex-direction: column;
}
.footer-information h3 {
  margin-bottom: 6px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: #333;
}
.footer-information a {
  padding-top: 11px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #323030;
  transition: color 0.3s ease;
}
.footer-information a:hover {
  color: var(--accent-color);
}

.thanks-container {
  height: 100vh;
  max-width: 1072px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.thanks-logo {
  margin-top: 40px;
}
.thanks-wrapper {
  margin-top: 40px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.thanks-wrapper::after, .thanks-wrapper::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.thanks-wrapper::after {
  width: 425px;
  height: 406px;
  top: 0;
  right: 84px;
  right: 0;
  background-image: url("../images/hero.png");
  z-index: -1;
}
.thanks-wrapper::before {
  width: 146px;
  height: 146px;
  top: 80px;
  right: 350px;
  transform: rotate(16deg);
  background-image: url("../images/green-bag.png");
}
.thanks-title {
  margin-top: 90px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 48px;
  line-height: 117%;
  color: var(--text-color);
}
.thanks .text {
  max-width: 366px;
  margin-top: 10px;
}
.thanks-btn {
  margin-top: 22px;
}/*# sourceMappingURL=style.css.map */