body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  line-height: 1.5;
  font-size: 16px;
  color: #22343d;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;

  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* header */

.header {
  margin-bottom: 25px;
}

.header-container,
.header-nav {
  display: flex;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.93;
  color: #173a56;
  padding: 22px 0;
  margin-right: 237px;
  gap: 16px;
}

.header-logo img {
  vertical-align: text-bottom;
  margin-right: 16px;
}

.header-ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #22343d;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  padding: 26px 0;
  transition-property: color, font-weight;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 20px;
  height: 2px;
  width: 100%;
  background-color: #02897a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease-in-out;
}
.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 50px;
  height: 2px;
  width: 100%;
  background-color: #02897a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms ease-in-out;
}

.nav-link:not(.active):hover::after,
.nav-link:not(.active):hover::before {
  transform: scaleX(1);
}

.nav-link.active {
  font-weight: 600;
}

.nav-link.active:hover {
  color: inherit;
}

.nav-link.active:hover::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link:focus {
  color: #02897a;
}

.header-button {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-left: auto;
}

.header-btn-list {
  padding: 19px 0;
}

.sign-in-btn {
  background-color: #fff;
  font-weight: 600;
  font-size: 16px;
  color: #173a56;
  border: 1px solid #bcd0e5;
  border-radius: 4px;
  width: 105px;
  height: 42px;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.sign-up-btn {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
  width: 113px;
  height: 42px;
  background-color: #02897a;
  border: none;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.sign-in-btn:hover,
.sign-in-btn:focus,
.promo-button:hover,
.promo-button:focus {
  background-color: #dfe0e2;
}

.sign-up-btn:hover,
.sign-up-btn:focus,
.hero-btn-1:hover,
.hero-btn-1:focus,
.feature-btn:hover,
.feature-btn:focus,
.staff-btn:hover,
.staff-btn:focus,
.price-btn-container:hover,
.price-btn-container:focus,
.footer-btn:hover,
.footer-btn:focus {
  background-color: #03a38c;
}

.sig-nup-btn:active,
.hero-btn-1:active,
.feature-btn:active,
.staff-btn:active,
.price-btn-container:active,
.footer-btn:active {
  background-color: #027367;
}

.burger-menu-btn {
  display: none;
}

/* HERO */

.hero {
  margin-bottom: 100px;
}

.hero-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.hero-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55556;
  width: 465px;
  height: 95px;
  margin-bottom: 45px;
}

.hero-container {
  display: flex;
  gap: 35px;
  align-items: center;
}

.hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 372px;
}

.hero-btn-1 {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background-color: #02897a;
  border-radius: 4px;
  min-width: 178px;
  height: 53px;
  border: none;
  cursor: pointer;
  transition-property: background-color, color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.hero-btn-text {
  position: relative;
}

.hero-btn-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 350ms ease-in-out;
}

.hero-btn-1:hover .hero-btn-text::after {
  transform: scaleX(1);
}

.hero-btn-2 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.btn-2-text {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  text-decoration-skip-ink: none;
  color: #02897a;
  transition-property: color, background-color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.btn-2-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #03a38c;
  transform: scaleX(0);
  transition: transform 350ms ease-in-out;
}

.hero-btn-2:hover .btn-2-text::after {
  transform: scaleX(1);
}

.btn-2-text:hover,
.btn-2-text:focus {
  color: #03a38c;
}

.hero-img {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

/* FEATURE */

.feature {
  margin-bottom: 100px;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-tittle {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}

.feature-list {
  display: flex;
  margin-bottom: 50px;
  gap: 30px;
}

.feature-list-item {
  width: calc((100% - 90px) / 4);
}

.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 19px;
  width: 54px;
  height: 54px;
  background-color: #02897a;
  margin-bottom: 26px;
}

.feature-list-item:nth-child(2) .feature-icon-wrapper {
  background-color: #4d8dff;
}

.feature-list-item:nth-child(3) .feature-icon-wrapper {
  background-color: #740a76;
}

.feature-list-item:nth-child(4) .feature-icon-wrapper {
  background-color: #f03e3d;
}

.feature-card-title {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 13px;
}

.feature-card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
}

.feature-btn {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
  width: 175px;
  height: 53px;
  background-color: #02897a;
  border: none;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
  position: relative;
}

.feature-btn::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: 16px;
  height: 2px;
  width: 105px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 350ms ease-in-out;
}

.feature-btn:not(.active):hover::after {
  transform: scaleX(1);
}

/* BUSIneSS */

.business-mgm {
  margin-bottom: 100px;
}
.business-p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.business-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 25px;
}

.business-container {
  display: flex;
  align-items: center;
  gap: 84px;
}

.business-text-group {
}

.business-sub-p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  width: 486px;
  margin-bottom: 30px;
}

.businnes-li-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 12px;
}

.business-list li:first-child {
  margin-bottom: 25px;
}

.businnes-li-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  width: 486px;
}

.benefits-img {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

/* SUPPORT */

.support {
  margin-bottom: 100px;
}

.support-container {
  display: flex;
  align-items: center;
  gap: 84px;
}

.support-text-group {
  width: 450px;
}

.support-article {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
}

.support-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 25px;
}

.support-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 30px;
}

.support-li-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  width: 386px;
}

.support-list-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.support-list-item:nth-child(1),
.support-list-item:nth-child(2) {
  margin-bottom: 25px;
}

.support-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2.92px solid #fff;
  border-radius: 14px;
  width: 35px;
  height: 35px;
}

.support-list-item:nth-child(1) > .support-img-wrapper {
  background-color: #f90;
}

.support-list-item:nth-child(2) > .support-img-wrapper {
  background-color: #f03e3d;
}

.support-list-item:nth-child(3) > .support-img-wrapper {
  background-color: #4d8dff;
}

.support-icon {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

/* COLOBORATIVE */

.collaborative {
  margin-bottom: 150px;
}

.collaborative-container {
  display: flex;
  gap: 84px;
  align-items: center;
}

.coloborative-article {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 13px;
}

.collaborative-text-group {
}

.collaborative-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 25px;
}

.collaborative-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  width: 486px;
  margin-bottom: 30px;
}

.collab-li-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.625;
  width: 486px;
  padding-bottom: 12px;
}

.collab-li-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  width: 486px;
}

.collaborative-list-item:first-child {
  margin-bottom: 25px;
}

/* STAFF */

.staff {
  margin-bottom: 100px;
}

.staff-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 916px;
  margin: 0 auto;
}

.staff-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 25px;
}

.staff-subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.63;
  text-align: center;
  width: 542px;
  margin-bottom: 40px;
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  column-gap: 90px;
  margin-bottom: 50px;
  max-width: 908px;
}

.staff-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 408px;
  width: calc((100% - 90px) / 2);
}

.staff-list-item:nth-child(2),
.staff-list-item:nth-child(3) {
  flex-direction: row-reverse;
}

.staff-list-item > img {
  border-radius: 100%;
}

.staff-commentary-container {
  box-shadow: 2px 2px 10px 0 rgba(23, 58, 86, 0.15);
  width: 281px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.staff-commentary {
  font-weight: 500;
  text-align: center;
  color: #2f281e;
  border-radius: 50px;
}

.staff-btn {
  border-radius: 4px;
  width: 216px;
  height: 53px;
  background-color: #02897a;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

/* NEWS */

.news {
  margin-bottom: 171px;
}

.news-title {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 25px;
}

.news-subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  width: 465px;
  margin-bottom: 40px;
}

.news-list {
  display: flex;
  gap: 30px;
}

.news-list-item {
  border: 1px solid #dedede;
  border-radius: 8px;
  width: calc((100% - 60px) / 3);
  transition-property: box-shadow;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.news-list-item img {
  box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px 8px 0 0;
}

.news-list-item:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.news-item-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  padding: 24px 0 12px 24px;
}

.news-item-text {
  font-weight: 700;
}

.news-item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.66667;
  padding: 0 27px 40px 27px;
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.news-item-title:hover {
  color: #02897a;
}

/* PRICE */

.price {
  margin-bottom: 100px;
}

.price-title {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 24px;
  text-align: center;
}

.price-text {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 40px;
  text-align: center;
}

.price-list {
  display: flex;
  gap: 72px;
}

.price-list-item {
  border-radius: 8px;
  width: calc((100% - 144px) / 3);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 32px 0;
  transition-property: background-color, color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.price-list-item:hover {
  background-color: #02897a;
  color: #fff;
}

.price-plan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.66667;
  margin-bottom: 8px;
}

.price-dscr {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  margin-bottom: 30px;
}

.tax-container {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  justify-content: center;
  margin-bottom: 16px;
}

.tax-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tax-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 76px;
  line-height: 1.31;
  letter-spacing: 0em;
  text-align: center;
  color: #02897a;
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.tax-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #02897a;
  padding-top: 24px;
  padding-bottom: 7px;
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.price-list-item:hover .tax-title,
.price-list-item:focus .tax-title,
.price-list-item:hover .tax-value,
.price-list-item:focus .tax-value {
  color: #fff;
}

.tax-per-month {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #afafaf;
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.price-list-item:hover .tax-per-month,
.price-list-item:focus .tax-per-month {
  color: #e0e0e0;
}

.price-include-list {
  margin-bottom: 30px;
}

.price-include {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.01em;
}

.price-include:nth-child(1),
.price-include:nth-child(2) {
  padding-bottom: 16px;
}

.price-btn-container {
  border-radius: 8px;
  width: 139px;
  height: 44px;
  border: none;
}

.price-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  background-color: #02897a;
  cursor: pointer;
  transition-property: background-color, color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.price-list-item:hover .price-btn,
.price-list-item:focus .price-btn {
  background-color: #fff;
  color: #02897a;
}

/* feedback */

.feedback {
  margin-bottom: 100px;
}

.feedback-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.78125;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 10px;
}

.feedback-subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  text-align: center;

  margin-bottom: 40px;
}

.feedback-list {
  display: flex;
  gap: 64px;
}

.feedback-list-item {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 28px 26px;
  width: calc((100% - 128px) / 3);
  transition-property: box-shadow;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.feedback-list-item:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.icon-feadback {
  margin-bottom: 16px;
}

.feedback-review {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: #737373;
  margin-bottom: 16px;
}

.reviewer-container {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.reviewer-container > img {
  border-radius: 100%;
}

.feedback-reviewer {
}

.feedback-author {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #02897a;
}

.author-prof {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  color: #252b42;
}

.feedback-list-item > img {
  margin-bottom: 16px;
}

/* PROMO */

.promo {
  margin-bottom: 100px;
}

.promo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #02897a;
  border-radius: 32px;
  max-width: 968px;
  margin: 0 auto;
}

.promo-left-container {
  padding: 49px 0 56px 51px;
}

.promo-text {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.514;
  color: #fff;
  width: 510px;
  margin-bottom: 46px;
}

.promo-button {
  background-color: #fff;
  border-radius: 8px;
  width: 150px;
  height: 50px;
  font-weight: 600;
  font-size: 20px;
  color: #02897a;
  border: none;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

/* FOOTER */

.footer {
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: center;
}

.footer-left {
  margin-right: 146px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.93;
  color: #173a56;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-social-list {
  display: flex;
  gap: 16px;
}

.footer-social-item {
  width: 40px;
  height: 40px;
}

.footer-social-link {
  height: 100%;
  background-color: #edfffc;
  border-radius: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-property: background-color, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.footer-social-link:hover {
  background-color: #aee9e1;
  transform: scale(1.02);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  max-width: 378px;
  width: 100%;
  margin-right: 83px;
}

.footer-nav-left,
.footer-nav-right {
  min-width: 130px;
}

.footer-nav-title,
.footer-right-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-nav-link {
  color: #22343d;
  line-height: 2.1875;
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.footer-nav-link:hover,
.footer-nav-link:focus {
  color: #02897a;
}

.footer-right {
  max-width: 325px;
}

.footer-right-title {
  max-width: 280px;
  margin-bottom: 30px;
}

.footer-input {
  width: 325px;
  height: 48px;
  border: 1px solid #bcd0e5;
  border-radius: 4px;
  padding: 10px 42px;
  outline: none;
}

.footer-input::placeholder {
  color: #02897a;
}

.footer-btn {
  background-color: #02897a;
  border-radius: 4px;
  width: 131px;
  height: 39px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.footer-made {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
}

.footer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-label {
  position: relative;
}

.footer-label-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* PRICING HTML */

.pricing-header {
  margin-bottom: 50px;
}

.pricing {
  margin-bottom: 150px;
}

.pricing-title {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 31px;
}

.pricing-subtitle {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.pricing-text {
  font-weight: 500;
  text-align: center;
  margin-bottom: 49px;
}

/* PRICING HTML - ENTERPRISE */

.enterprise {
  background: linear-gradient(180deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  margin-bottom: 294px;
}

.enterprise-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 53px;
  padding-bottom: 51px;
}

.enterprise-subtitle {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 26px;
}

.enterprise-title {
  font-size: 34px;
  margin-bottom: 21px;
}

.enterprise-text {
  font-size: 18px;
  margin-bottom: 39px;
}

.enterprise-btn-container {
  border-radius: 8px;
  width: 224px;
  height: 44px;
  background: #02897a;
  border: none;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.enterprise-btn-container:hover {
  background-color: #1bb6a4;
}

.enterprise-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

/* PRICING HTML - PRODUCT */

.product {
  margin-bottom: 6px;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-width: 1131px;
}

.product-title {
  font-size: 34px;
  margin-bottom: 56px;
}

.product-img {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.product-list {
  max-width: 543px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-left: auto;
}

.product-list-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 16px;
}

.product-list-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #f4f5f7;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.product-list-title {
  font-weight: 600;
  font-size: 24px;
}

.product-list-text {
  line-height: 1.75;
}

/* PRICING HTML -QUESTION */

.question {
  margin-bottom: 150px;
}

.question-container {
  max-width: 920px;
  margin: 0 auto;
}

.question-title {
  font-size: 34px;
  margin-bottom: 8px;
  text-align: center;
}

.question-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  text-align: center;
}

.question-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.question-list-item {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.question-list-item::after {
  content: '';
  position: absolute;
  border: 1px solid #e7e7e7;
  width: 100%;
  bottom: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-icon-minus {
  display: none;
}

.faq-question-title {
  font-weight: 500;
  font-size: 18px;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-5%);
  transition-property: transform, max-height, opacity;
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
}

.faq-answer-text {
  padding: 0 0 2px 0;
  transition-property: padding;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.faq-checkbox:checked ~ .faq-answer {
  transform: translateY(0);
  max-height: 300px;
  opacity: 1;
}

.faq-checkbox:checked ~ .faq-answer .faq-answer-text {
  padding-top: 14px;
}

.faq-checkbox:checked + .faq-question .faq-icon-plus {
  display: none;
}
.faq-checkbox:checked + .faq-question .faq-icon-minus {
  display: inline;
}

/* CUSTOMERS HTML - CLIENTS */

.customer-header {
  margin-bottom: 100px;
}

.clients {
  margin-bottom: 141px;
}

.customers-client-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.customers-client-title {
  font-size: 40px;
  margin-bottom: 50px;
}

.customers-client-list {
  display: flex;
  gap: 64px;
  align-items: center;
}

.customers-client-item {
  padding: 16px 0;
}

/* CUSTOMERS HTML - CHOOSE SECTION */

.choose {
  margin-bottom: 101px;
  background: #f5f5f5;
  padding-top: 24px;
  padding-bottom: 68px;
}

.choose-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 50px;
}

.choose-list {
  display: flex;
  gap: 30px;
}

.choose-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 10px;
  padding: 32px 0;
  width: calc((100% - 60px) / 3);
}

.choose-list-title {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.375;
}

.choose-list-subtitle {
  max-width: 275px;
  text-align: center;
  line-height: 1.6875;
  letter-spacing: 0.01em;
}

.choose-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 19px;
  background: #02897a;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 32px;
}

.choose-list-item:nth-child(2) > .choose-icon-wrapper {
  background: #4d8dff;
}
.choose-list-item:nth-child(3) > .choose-icon-wrapper {
  background: #f03e3d;
}

/* CUSTOMERS HTML - WORK SECTION */

.customers-work {
  margin-bottom: 115px;
}

.customers-work-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.customers-work-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 73px;
}

.customers-work-list {
  max-width: 1027px;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.customers-work-item {
  display: flex;
  gap: 89px;
  align-items: center;
}

.customers-work-item:nth-child(3) {
  margin-bottom: 78px;
}

.customers-work-img {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.work-text-container {
}

.work-item-step {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 16px;
}

.work-item-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}

.work-item-subtitle {
  line-height: 1.75;
}

.customers-work-btn {
  border-radius: 8px;
  width: 224px;
  height: 44px;
  background-color: #02897a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* CUSTOMERS HTML - JOIN SECTION */

.join {
  padding: 35px 0;
  background: linear-gradient(180deg, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
  margin-bottom: 150px;
}

.join-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.join-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 93px;
  max-width: 537px;
}

.join-list {
  min-width: 722px;
  display: flex;
  justify-content: space-between;
}

.join-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.join-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: 150px;
  height: 150px;
  background-color: #ffefef;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 27px;
}

.join-item:nth-child(2) .join-img-wrapper {
  background: #f2f6ff;
}

.join-item-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.16667;
  color: #000;
  margin-bottom: 16px;
}

.join-item-subtitle {
  font-size: 18px;
  line-height: 1.78;
  margin-bottom: 12px;
}

.join-item-product {
  font-weight: 500;
  line-height: 1.75;
  color: #000;
}

/* RESOURCES HTML */

.header-resources {
  margin-bottom: 76px;
}

.hero-resources {
  margin-bottom: 67px;
}

.hero-resources-container {
  display: flex;
  justify-content: space-between;
}

.hero-resources-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.49;
  letter-spacing: -0.03em;
  max-width: 380px;
  margin-bottom: 24px;
}

.hero-resources-subtitle {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.03em;
  max-width: 536px;
  margin-bottom: 24px;
}

.hero-resources-form {
  margin-bottom: 24px;
  width: 469px;
  height: 66px;
  position: relative;
}

.hero-resources-input {
  width: 100%;
  height: 100%;
  border: 1px solid #eaeaea;
  border-radius: 100px;
  padding: 0;
  padding-left: 27px;
  outline: none;
}

.hero-resources-input::placeholder {
  line-height: 1;
  letter-spacing: -0.03em;
  color: #22343d;
}

.hero-resources-btn {
  border-radius: 100px;
  width: 117px;
  height: 50px;
  background-color: #02897a;
  border: none;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 8px;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-resources-feedback {
  display: flex;
  align-items: center;
  gap: 9px;
}

.resources-feedback-title {
  font-size: 14px;
}

.resources-feedback-quantity {
  font-weight: 500;
  color: #02897a;
}

.latest-stories {
  margin-bottom: 100px;
}

.latest-stories-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.latest-stories-title {
  font-size: 34px;
  margin-bottom: 8px;
}

.latest-stories-subtitle {
  font-weight: 500;
  line-height: 1.63;
  margin-bottom: 32px;
}

.latest-stories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.latest-stories-item {
  border: 1px solid #dedede;
  border-radius: 8px;
  width: calc((100% - 64px) / 3);
  height: 359px;
  transition-property: box-shadow;
  transition-duration: 250ms;
  transition-timing-function: ease-in-out;
}

.latest-stories-item:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.latest-stories-reviewer {
  padding-top: 22px;
  padding-left: 24px;
}

.stories-reviewer {
  line-height: 1.75;
  margin-bottom: 12px;
}

.stories-reviewer-name {
  font-weight: 700;
}

.stories-reviewer-title {
  font-size: 24px;
  line-height: 1.67;
}

.more-stories-link {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 26px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  color: #22343d;
}

.stories-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.contacts {
  margin-bottom: 100px;
}

.contacts-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts-title {
  font-size: 34px;
  line-height: 1.68;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 17px;
}

.contacts-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.01em;
  text-align: center;
  color: #374754;
  margin-bottom: 55px;
}

.contacts-social-list {
  display: flex;
  gap: 22px;
  margin-bottom: 55px;
}

.contacts-social-item {
  width: 50px;
  height: 50px;
}

.contacts-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #edfffc;
}

.contacts-map {
  margin-bottom: 50px;
  border-radius: 20px;
}

.contacts-form {
  width: 868px;
  height: 670px;
  padding: 52px 50px;
  border: 1px solid #ddd;
  border-radius: 20px;
}

.contacts-form-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.375;
  text-align: center;
  margin-bottom: 45px;
}

.contacts-form-input {
  border: 1px solid #e8e8e8;
  border-radius: 39px;
  padding: 19px 20px;
  width: 100%;
  height: 54px;
  outline: transparent;
  background-color: #f5f5f5;
  margin-bottom: 45px;
  font-size: 15px;
  color: #22343d;
}

.contacts-form-input::placeholder {
  font-size: 15px;
  line-height: 1.067;
  letter-spacing: 0.01em;
  color: #22343d;
}

.contacts-form-textarea {
  border: 1px solid #e8e8e8;
  padding: 23px 20px;
  width: 100%;
  height: 193px;
  outline: transparent;
  background-color: #f5f5f5;
  resize: none;
  margin-bottom: 45px;
  font-size: 15px;
  color: #22343d;
}

.contacts-form-textarea::placeholder {
  font-size: 15px;
  line-height: 1.067;
  letter-spacing: 0.01em;
  color: #22343d;
}

.contacts-form-btn {
  border-radius: 35px;
  min-width: 145px;
  height: 52px;
  background-color: #02897a;
  border: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
}
