@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  border-radius: 16px;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.btn svg {
  margin-right: 12px;
}

.filled {
  background-color: #a3f69c;
  cursor: pointer;
}

.filled:hover {
  background-color: #96e58f;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3),
    0px 6px 10px 4px rgba(0, 0, 0, 0.15);
}

.contained {
  background-color: #d6e8ce;
  cursor: pointer;
  transition: all ease-in 0.1s;
}

.contained:hover {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3),
    0px 6px 10px 4px rgba(0, 0, 0, 0.15);
}

.outlined {
  background-color: transparent;
  border: 1px solid #72796f;
  color: #1b6d24;
  border-radius: 100px;
  cursor: pointer;
  min-height: auto;
}

.outlined:hover {
  background-color: rgba(27, 109, 36, 0.08);
}

.content-container {
  max-width: 1208px;
  margin: 0 auto;
  padding: 48px 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.subtitle {
  font-size: 45px;
  line-height: 1.15;
  font-weight: 500;

  @media screen and (max-width: 576px) {
    font-size: 30px;
  }
}

/* ------ title ------ */

.title-block {
  background-color: #f3f4ee;
  border-radius: 32px;
  margin: 16px auto;
  padding: 64px 0 0 0;
}

.title-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  padding: 0 32px;

  @media screen and (max-width: 1200px) {
    flex-direction: column;
    gap: 0;
  }
}

.title-content {
  max-width: 690px;
  display: flex;
  flex-direction: column;
}

.title-text {
  font-size: 57px;
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 16px;

  @media screen and (max-width: 576px) {
    font-size: 36px;
  }
}

.description-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.title-img {
  width: 100%;
  max-width: 690px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background-image: url('/img_main.png');
  background-size: cover;

  @media screen and (max-width: 1200px) {
    height: 450px;
    max-width: none;
  }
}

.actions {
  display: flex;
  gap: 24px;
  margin: 24px 0 84px 0;

  @media screen and (max-width: 1200px) {
    margin: 24px 0 48px 0;
  }

  @media screen and (max-width: 600px) {
    flex-direction: column;

    >a,
    button {
      width: 100%;
    }
  }

  a {
    text-decoration: none;
  }
}

/* ----- title end ------ */

/* ----- description ----- */

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 768px;
  padding: 0 24px;

  @media screen and (max-width: 992px) {
    max-width: none;
  }
}

.group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 36px;
  margin-top: 36px;

  @media screen and (max-width: 992px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media screen and (max-width: 600px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.advantage {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #c2c9bd;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icon-wrapper img {
  width: 56px;
  height: 56px;
}

.advantage-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 8px;
}

.advantage-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #424940;
  margin-bottom: 8px;
}

/* ----- description end ----- */

/* ----- card block ----- */

.card-group {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;

  @media screen and (max-width: 992px) {
    flex-wrap: wrap;
  }
}

.card-group>div {
  flex: 1 1 auto;
}

.card {
  background-color: #f3f4ee;
  padding: 16px;
  border-radius: 16px;
  width: 33%;

  @media screen and (max-width: 576px) {
    width: 100%;
  }
}

.card button {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-image {
  width: 100%;
  height: 164px;
  padding: 0 24px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}

.card1 {
  background-image: url(../images/cat_1.png);
}

.card2 {
  background-image: url(../images/cat_2.png);
}

.card3 {
  background-image: url(../images/cat_3.png);
}

.card4 {
  background-image: url(../images/cat_4.png);
}

.card-content {
  margin-bottom: 24px;
}

.card-content svg {
  width: 12px;
  height: 9px;
  margin: 0 6px;
}

.card-content-item {
  display: flex;
  align-items: center;
}

.card-title {
  font-size: 14;
  line-height: 1.4;
  font-weight: 500;
}

.badge {
  border-radius: 100px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.blue {
  background-color: #bcebf0;
}

.green {
  background-color: #a3f69c;
}

.period {
  font-size: 22px;
  line-height: 1.27;
  font-weight: 400;
  margin-bottom: 16px;
}

/* ----- card block end ----- */

/* ---- questions block ----- */

.questions-inner {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  margin: 24px 0 36px 0;

  @media screen and (max-width: 992px) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.helper-block {
  border: 1px solid #c2c9bd;
  border-radius: 16px;
  padding: 16px 24px;
  max-width: 312px;

  @media screen and (max-width: 992px) {
    max-width: none;
  }
}

.helper-block a {
  color: #38656a;
  text-decoration: none;
}

.helper-block a:hover {
  color: #1b6d24;
}

.helper-block svg {
  margin-bottom: 16px;
}

.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px -24px 0 -24px;
}

.accordion__arrow {
  position: relative;
  top: 4px;
}

.accordion-body {
  font-size: 16;
  line-height: 1.5;
  font-weight: 400;
  color: #424940;
}

.accordion__item {
  width: 100%;
  background-color: #f9faf3;
  border-radius: 16px;
  padding: 16px 24px;
}

.accordion__item .accordion__title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
  width: 100%;
}

.accordion__content {
  margin-top: 8px;
}

.accordion__item .accordion-title:hover {
  transition: all 0.5s ease-out;
}

.accordion__item .accordion-title .accordion__arrow {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  text-align: center;
  margin-right: 5px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.accordion__item .accordion__rotate {
  transform: rotate(180deg);
}

.accordion__item .accordion__content {
  display: none;
}

.accordion__item .accordion__arrow-item {
  width: 12px;
}

/* ---- questions block end ----- */

/* ---- badge in title---- */

.badge-title {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 8px;
  border: 1px solid #C2C9BD;
  border-radius: 100px;
  width: max-content;
  margin-bottom: 16px;
}

.badge-text {
  color: #1b6d24;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42;
}

/* ---- badge end ---- */

/* ---- behefit group ---- */

.benefit-wrapper {
  padding: 0 24px;
}

.benefit-group {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.benefit-left-text {
  margin-right: -24px;

  @media screen and (max-width: 992px) {
    margin: 0 auto;
  }
}

.benefit-right-text {
  margin-left: -24px;

  @media screen and (max-width: 992px) {
    margin: 0 auto;
  }
}

.benefit-right-text .benefit {
  @media screen and (max-width: 992px) {
    flex-direction: column-reverse;
  }
}

.benefit {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: center;

  @media screen and (max-width: 992px) {
    flex-direction: column;
  }

  @media screen and (max-width: 576px) {
    gap: 24px;
  }
}

.benefit-content {
  width: calc(100% - 324px - 36px);
  max-width: 768px;

  @media screen and (max-width: 992px) {
    width: 100%;
    max-width: none;
  }
}

.benefit-title {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.benefit-text {
  display: flex;
    line-height: 1.5;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}

.benefit-text p {
  font-size: 16px;
    line-height: 1.5;
  letter-spacing: 0.5px;
}

.benefit-img {
  max-width: 420px;
  width: 100%;

  @media screen and (max-width: 992px) {
    align-self: center;
  }

  @media screen and (max-width: 576px) {
    max-width: none;
  }
}

.benefit-img img {
  width: 100%;
}

/* ---- behefit group end ---- */

/* ---- quick start block ---- */

.quick-start {
  margin: 32px 0 112px 0;
  background-color: #52634F;
  background-image: url(../images/banner-back.png);
  background-size: contain;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}

.quick-start-title {
  color: #fff;
  text-align: center;
}

.quick-start-description {
  margin: 24px 0 36px 0;
  color: #fff;
  text-align: center;
}

.quick-start .actions {
  margin: 0;
}

/* ---- quick start block end ---- */

.animation {
  width: 100%;
}


/* ----- header ----- */

.header-wrapper {
    border-bottom: 1px solid #c2c9bd;
}

.styled-header {
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;

@media screen and (max-width: 576px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    height: 100%;
    padding: 16px 0;
}
}

.login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #1b6d24;
}

.login-link svg {
    margin-right: 0;
}

/* ----- header end ----- */

/* ----- nav ------ */

.nav-container {
    display: flex;

@media screen and (max-width: 576px) {
    flex-direction: column;
    gap: 24px;
}
}

.nav-container svg {
    margin-right: 24px;
}

.nav-group {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    align-items: center;
}

.nav-group a {
    margin: 0;
    transition: all ease-in 0.1s;
}

.nav-group a:hover {
    color: #1b6d24;
}

/* ----- nav end ------ */

/* ----- auth ----- */

.auth-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.styled-auth-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all ease-in-out 0.1s;
    overflow: hidden;
}

.styled-auth-icon img {
    width: 200%;
    position: relative;
    top: 6px;
}

/* ----- auth end ----- */

/* ----- menu ----- */

.menu {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: #eeeee8;
    padding: 8px 0;
    width: 200px;
    border-radius: 4px;
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.15),
    0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 44px;

@media screen and (max-width: 576px) {
    left: 0;
}
}

.menu-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: all ease 0.1s;
}

.menu-item:hover {
    background-color: rgba(26, 28, 25, 0.08);
}

/* ----- menu end ----- */

/* ----- auth data ----- */

.auth-data {
    border-radius: 4px;
    background-color: #2F312D;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    position: absolute;
    right: 48px;
    top: 10px;
    opacity: 0;
    transition: all 0.3s ease;

@media screen and (max-width: 576px) {
    display: none;
}
}

/* ----- auth data end ----- */
