html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

body {
  background-color: #f2f2f2;
}

.mandatory {
  color: red;
}

.header__container,
.container {
  margin: 0 auto;
  max-width: 60rem;
}

.container {
  padding: 3em 3em;
}

.header__container {
  padding: 1em 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  background-color: #0b743c;
  color: #fff;
}

.header__logo {
  color: inherit;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
}
.header__logo span {
  font-weight: 400;
  opacity: 0.6;
}
.header__logo:active, .header__logo:focus {
  opacity: 0.7;
}

.header__rapid-logo {
  height: 4em;
}

.header__rapid-link:active, .header__rapid-link:focus {
  opacity: 0.6;
}

.main-nav {
  display: flex;
  flex-direction: column;
  gap: 2em;
  background-color: #fff;
  border-radius: 5px;
  padding: 4em;
}

.main-nav__link {
  background-color: #fff;
  border: 2px solid #0b743c;
  display: block;
  color: #0b743c;
  padding: 0.9em 2.8em 0.9em 1.3em;
  border-radius: 0.4em;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.3rem;
  position: relative;
  transition: 200ms ease-in-out;
}
.main-nav__link::after {
  content: "";
  position: absolute;
  background-color: #0b743c;
  -webkit-mask-image: url("../images/cta-arrow.svg");
          mask-image: url("../images/cta-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 1.1em;
  height: 1.1em;
  right: 1.3em;
  top: calc(50% - 0.55em);
  transition: 140ms ease-in-out;
}
.main-nav__link:hover, .main-nav__link:focus {
  background-color: #0f9b50;
  border-color: #0f9b50;
  color: #fff;
}
.main-nav__link:hover::after, .main-nav__link:focus::after {
  transform: translateX(0.2em);
  background: #fff;
}
.main-nav__link:active {
  border-color: #06a550;
  color: #fff;
  background-color: #06a550;
}

.main-nav__link--adviced {
  background-color: #0b743c;
  border: none;
  color: #fff;
}
.main-nav__link--adviced::after {
  background: #fff;
}

.nav-section__container {
  display: grid;
  place-items: center;
}

.footer__credits {
  text-align: center;
  font-size: 1.2rem;
}

.footer__author {
  opacity: 0.6;
}

.footer__author-link {
  font-weight: 600;
  text-decoration: none;
  color: #000;
}
.footer__author-link:hover, .footer__author-link:focus {
  text-decoration: underline;
}

.footer__info {
  margin-bottom: 0.6em;
}

.create-form__heading {
  font-size: 2.4rem;
  margin-bottom: 0.2em;
}
.create-form__heading span {
  color: #0b743c;
}

.create-form__subheading {
  font-size: 1.8rem;
  margin-bottom: 0.2em;
}

.create-form__go-preview {
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 1em;
  display: flow-root;
}
.create-form__go-preview:hover, .create-form__go-preview:focus {
  text-decoration: none;
}

.create-form__label,
.create-form__input {
  display: inline-block;
  width: 100%;
}

.create-form__label {
  font-size: 1.4rem;
  margin-bottom: 0.4em;
}

.create-form__input {
  border: none;
  padding: 1em;
  font-size: 1.4rem;
  border-radius: 5px;
}

.create-form__input--text {
  height: 16em;
  resize: none;
}

.create-form__counter {
  font-size: 1.2rem;
  padding-top: 0.4em;
}

.create-form__wrap {
  margin-bottom: 1.4em;
}

.create-form__submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

.button,
.step-btn {
  background-color: #14d26c;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  padding: 0.9em 1.3em;
  border-radius: 0.4em;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.3rem;
  transition: 200ms ease-in-out;
  cursor: pointer;
}
.button:hover, .button:focus,
.step-btn:hover,
.step-btn:focus {
  background-color: #0f9b50;
}
.button:active,
.step-btn:active {
  background-color: #059448;
}

.secondary_heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.preview__img {
  width: 100%;
  margin-bottom: 1.6em;
}

.input__error {
  outline: 2px solid red;
}

.multi-card {
  display: none;
}

.active {
  display: block;
}

.step-btn__wrap {
  display: flex;
  gap: 1.4em;
  margin-top: 1.4em;
}

.step-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

.download-btns {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
}/*# sourceMappingURL=main.css.map */