.container {
  max-width: 83rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 992px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}

.grid-4-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}

.grid-5-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}

@media screen and (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-4,
.grid-4-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-5-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.row {
  display: flex;
  gap: 1.5rem;
}

.row-md {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .row-md {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 992px) {
  .col-md-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
}

.col-auto {
  flex: auto;
  max-width: 100%;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.row-lg {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media (min-width: 1200px) {
  .row-lg {
    align-items: center;
  }
}

.col-12 {
  flex: 0 0 100%;
}

@media (min-width: 1200px) {
  .col-lg-5 {
    padding-right: 1rem;
    flex: 0 0 calc(40% - 1.5rem);
  }
}

@media (min-width: 1200px) {
  .col-lg-7 {
    flex: 0 0 calc(60% - 1.5rem);
  }
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
a:focus-visible {
  outline-color: #111;
  outline-offset: 2px;
  outline-style: groove;
  outline-width: 1.8px;
}

.last-updated {
  margin-top: 2.5rem;
  color: #7d7d7d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Red Hat Display", sans-serif;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1,
h2 {
  line-height: 1.2;
}

h3 {
  line-height: 1.3;
}

.h1 {
  font-size: 2.5rem;
}
@media (min-width: 992px) {
  .h1 {
    font-size: 3.8rem;
  }
}

.h2, .blockquote__text {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .h2, .blockquote__text {
    font-size: 2.5rem;
  }
}

.h3 {
  font-size: 1.5rem;
}

.h4 {
  font-size: 1.125rem;
}

.h5 {
  font-size: 1rem;
}

.h6 {
  font-size: 0.875rem;
}

.h1-landing {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .h1-landing {
    font-size: 4.2rem;
  }
}

.h3-special {
  color: #7d7d7d;
  font-weight: bold;
  font-size: 1rem;
}

.link {
  border-bottom: 0.1rem solid transparent;
  color: #111;
}
@media (hover: none) {
  .link:not(.link__withIcon) {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .link:not(.link__withIcon):active {
    border-color: #ffbe00;
  }
}
@media (hover: hover) {
  .link:not(.link__withIcon):hover {
    border-color: #ffbe00;
  }
}
.link__label {
  border-bottom: 0.1rem solid transparent;
  transition: border 0.2s;
}
.link--border {
  border-color: currentColor;
}
.link--noBorder {
  border: 0 none;
}
.link--withIcon {
  align-items: center;
  border: 0 none;
  display: inline-flex;
  gap: 0.25rem;
}
@media (hover: none) {
  .link--withIcon {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .link--withIcon:active .link__label {
    border-color: #ffbe00;
  }
}
@media (hover: hover) {
  .link--withIcon:hover .link__label {
    border-color: #ffbe00;
  }
}

.text-lg {
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .text-lg {
    font-size: 1.5rem;
  }
}

.text-md, .card-plan__body .card-plan__description, .card-plan__description {
  font-size: 1.125rem;
}

.text-small {
  font-size: 0.875rem;
}

.ulist,
.olist {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
  -webkit-padding-start: 2rem;
          padding-inline-start: 2rem;
}
.ulist > li + li,
.olist > li + li {
  margin-top: 0.5rem;
}

table.table {
  max-width: 100%;
  border-collapse: collapse;
  border: 1px solid #d2d2d2;
  border-spacing: 0;
}
table.table th,
table.table td {
  font-weight: normal;
  border: 1px solid #d2d2d2;
  padding: 0.25rem 0.5rem;
}
table.table th {
  background-color: #e2e2e2;
  text-align: left;
}
table.table td {
  vertical-align: top;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.button {
  align-items: center;
  border-radius: 0.375rem;
  border: 0.095rem solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-family: "Red Hat Text", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  height: 3.5rem;
  justify-content: center;
  letter-spacing: 0.01rem;
  min-width: 10rem;
  padding: 0.5rem 2rem;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
@media (max-width: calc(576px - 1px)) {
  .button {
    width: 100%;
  }
}
.button--primary {
  background-color: #ffbe00;
  border-color: #ffbe00;
  color: #111;
}
@media (hover: none) {
  .button--primary {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .button--primary:active {
    background: rgba(251, 187, 0, 0.8);
  }
}
@media (hover: hover) {
  .button--primary:hover {
    background: rgba(251, 187, 0, 0.8);
  }
}
.button--secondary {
  background-color: #111;
  border-color: #111;
  color: white;
}
@media (hover: none) {
  .button--secondary {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .button--secondary:active {
    background-color: #323232;
  }
}
@media (hover: hover) {
  .button--secondary:hover {
    background-color: #323232;
  }
}
.button--tertiary {
  background-color: white;
  border-color: #111;
  color: #111;
}
@media (hover: none) {
  .button--tertiary {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .button--tertiary:active {
    background-color: #111;
    color: white;
  }
}
@media (hover: hover) {
  .button--tertiary:hover {
    background-color: #111;
    color: white;
  }
}
.button--small {
  font-size: 1rem;
  height: 3rem;
  min-width: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.button--block {
  width: 100%;
}

@media (min-width: 992px) {
  .section {
    padding: 7.5rem 0;
  }
}
@media (max-width: calc(992px - 1px)) {
  .section {
    padding: 5rem 0;
  }
}
.section--light {
  background-color: #f9f8f2;
}
.section--top {
  padding-bottom: 1rem;
}
@media (max-width: calc(576px - 1px)) {
  .section--top {
    padding-top: 3.5rem;
    padding-bottom: 0;
    margin-bottom: -0.5rem;
  }
}
@media (min-width: 992px) {
  .section--small {
    padding: 5rem 0;
  }
}
.section--bottom {
  padding-top: 0;
}
@media (max-width: calc(576px - 1px)) {
  .section--form {
    padding-top: 3.5rem;
  }
}
.section__title-container {
  margin-bottom: 3rem;
  text-align: center;
}
.section__title-container .h2, .section__title-container .blockquote__text {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .section__title-container {
    margin-bottom: 3.5rem;
  }
}

.content + .content {
  margin-top: 5rem;
}
.content h2 {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .content h2 {
    margin-bottom: 2rem;
  }
}
.content > * + h2 {
  margin-top: 2rem;
}
.content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.content li {
  font-size: 1.125rem;
}
.content > *:last-child {
  margin-bottom: 0;
}

.image,
.video {
  max-width: 100%;
  height: auto;
}
.image--max,
.video--max {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.media {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 2px 8px 30px 0px #efeff3;
  min-height: 12rem;
  padding: 1.5rem;
}
@media (min-width: 576px) {
  .media {
    min-height: 27rem;
  }
}
.media--secondary {
  box-shadow: 2px 8px 30px 0px #f3f1e3;
}
.media--h100 {
  align-items: center;
  display: flex;
  height: 100%;
}
.media video,
.media img {
  border-radius: inherit;
}
@media (max-width: calc(576px - 1px)) {
  .media {
    border-radius: 0.375rem;
    padding: 0.5rem;
  }
}

.point {
  display: flex;
  gap: 0.75rem;
}
.point + .point {
  margin-top: 2rem;
}
.point__icon {
  color: #ffbe00;
  font-weight: 600;
}
@media (min-width: 992px) {
  .point--large .point__icon {
    font-size: 1.7rem;
  }
}

@media (max-width: calc(992px - 1px)) {
  .point__icon {
    padding-top: 0.15rem;
  }
}
@media (min-width: 992px) {
  .point--large .point__icon {
    padding-top: 0.25rem;
  }
}

.card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 2px 8px 30px 0px #efeff3;
  padding: 1.5rem;
}
@media (min-width: 992px) {
  .card {
    padding: 2rem;
  }
}

.intro {
  text-align: center;
}
.intro__title {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .intro__description {
    max-width: 57rem;
    margin-right: auto;
    margin-left: auto;
  }
}
.intro__link {
  margin-top: 3rem;
}

.button-block {
  margin-top: 5rem;
  text-align: center;
}
@media (max-width: calc(576px - 1px)) {
  .button-block {
    margin-top: 3rem;
  }
}

.contact-form {
  max-width: 40rem;
  margin: 0 auto;
}
.contact-form__text {
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}
.contact-form .h2, .contact-form .blockquote__text, .contact-form__text {
  text-align: center;
}
@media (min-width: 992px) {
  .contact-form__container {
    border: 0.09rem solid #efeff3;
    border-radius: 0.375rem;
    box-shadow: 2px 8px 30px 0px #efeff3;
    padding: 2rem;
  }
}

.form__field__container {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Red Hat Display", sans-serif;
  font-size: 1rem;
}

.form__input,
.form__textarea {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: transparent;
  border: 0.09rem solid #d2d2d2;
  border-radius: 0.375rem;
  color: #111;
  font-family: "Red Hat Text", sans-serif;
  font-size: 1rem;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #111;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #7d7d7d;
}
.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  color: #7d7d7d;
}
.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  color: #7d7d7d;
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: #7d7d7d;
}
.form__input:focus:invalid,
.form__textarea:focus:invalid {
  border-color: #eb4d4d;
}

.form__input {
  height: 3.125rem;
}

.form__textarea {
  height: 9rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  resize: none;
}
.form__textarea::-moz-placeholder {
  color: #7d7d7d;
}
.form__textarea:-ms-input-placeholder {
  color: #7d7d7d;
}
.form__textarea::-ms-input-placeholder {
  color: #7d7d7d;
}
.form__textarea::placeholder {
  color: #7d7d7d;
}

.amoforms_iframe {
  margin: 0 !important;
  height: 368px !important;
}

.form__submit {
  margin-top: 3rem;
}

.success {
  display: none;
}
.success__icon {
  color: #05c38b;
  display: inline-block;
  font-size: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: top;
}
.success__text {
  font-size: 1rem;
  margin-left: 2.25rem;
}
.success__button {
  margin-left: 2.25rem;
  margin-top: 2rem;
}

.navbar {
  align-items: center;
  background-color: white;
  display: flex;
  height: 3.75rem;
  justify-content: space-between;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .navbar {
    height: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.navbar__logo {
  display: inline-block;
  height: 2rem;
}
@media (max-width: calc(992px - 1px)) {
  .navbar__collapse {
    background: white;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    left: 100%;
    overflow-x: hidden;
    padding: 2rem 1.5rem;
    position: fixed;
    top: 3.75rem;
    transition: all 0.3s;
    width: 100%;
    z-index: 1500;
  }
  .navbar__collapse.show {
    left: 0;
  }
  .navbar__collapse .button {
    margin-top: 1.5rem;
  }
}
.navbar__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .navbar__list {
    align-items: center;
    flex-direction: row;
    gap: 2rem;
  }
}
.navbar__link {
  border-bottom: 0.125rem solid transparent;
  color: #111;
  font-family: "Red Hat Text", sans-serif;
  font-weight: 600;
  padding-bottom: 0.1rem;
  transition: border 0.2s;
}
@media (hover: none) {
  .navbar__link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .navbar__link:active {
    border-color: #ffbe00;
  }
}
@media (hover: hover) {
  .navbar__link:hover {
    border-color: #ffbe00;
  }
}
.selected .navbar__link {
  border-color: #ffbe00;
}

@media (max-width: calc(992px - 1px)) {
  .navbar__link {
    font-size: 1.125rem;
  }
}
.navbar__toggler {
  background: transparent;
  border: 0 none;
  display: flex;
  height: 22px;
  padding: 0;
  width: 24px;
}
@media (min-width: 992px) {
  .navbar__toggler {
    display: none;
  }
}
.navbar__toggler-icon {
  background-color: #111;
  display: block;
  height: 3px;
  transition: transform 0.2s ease;
  width: 100%;
}
.navbar__toggler-icon:before, .navbar__toggler-icon:after {
  background-color: #111;
  display: block;
  height: 3px;
  transition: transform 0.2s ease;
  width: 100%;
  position: relative;
  content: "";
}
.navbar__toggler-icon:before {
  top: calc(3px * 3);
}
.navbar__toggler-icon:after {
  top: calc(3px * 5);
}
.show .navbar__toggler-icon {
  transform: translateY(9px) rotate(45deg);
}
.show .navbar__toggler-icon:before {
  content: none;
}
.show .navbar__toggler-icon:after {
  transform: translateY(-15px) rotate(-90deg);
}

.navbar__contact {
  border-top: 0.09rem solid #d2d2d2;
  margin-top: 2rem;
  padding-top: 1rem;
}
.navbar__contact-text {
  color: #7d7d7d;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
.navbar__contact-link {
  color: #111;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
}
@media (min-width: 992px) {
  .navbar__contact {
    display: none;
  }
}

.footer {
  background-color: #111;
  color: #e2e2e2;
}
.footer__top {
  border-top: 0.09rem solid #7d7d7d;
  padding: 3rem 0;
}
.footer__description {
  margin-top: 1.1rem;
}
@media (min-width: 992px) {
  .footer__description {
    max-width: 90%;
  }
}
.footer__links {
  padding-top: 0.5rem;
}
.footer__links h4 {
  margin-bottom: 1.5rem;
  color: white;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu--h {
  flex-direction: row;
}
.footer__menu-link {
  border-bottom: 0.09rem solid transparent;
  color: #e2e2e2;
}
@media (hover: none) {
  .footer__menu-link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .footer__menu-link:active {
    border-color: currentColor;
    color: white;
  }
}
@media (hover: hover) {
  .footer__menu-link:hover {
    border-color: currentColor;
    color: white;
  }
}
.selected .footer__menu-link {
  border-color: currentColor;
  color: white;
}

.footer__menu-link:focus-visible {
  outline-color: white;
  outline-offset: 2px;
  outline-style: groove;
  outline-width: 1.8px;
}
.footer__bottom {
  padding: 1.5rem 0;
  border-top: 0.09rem solid #7d7d7d;
}
@media (max-width: calc(992px - 1px)) {
  .footer__bottom {
    flex-direction: column-reverse;
  }
}

.contact {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
}
.contact + .contact {
  margin-top: 1rem;
}
.contact__icon {
  min-width: 1.1rem;
  margin-top: 0.25rem;
  margin-left: -0.1rem;
  font-size: 1.1rem;
  text-align: center;
}
.contact__icon-youtube {
  font-size: 1.25rem;
  margin-top: 0.15rem;
}
.contact__text {
  display: inline-block;
  border-bottom: 0.09rem solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

a.contact {
  color: #e2e2e2;
}
@media (hover: none) {
  a.contact {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  a.contact:active {
    color: white;
  }
  a.contact:active .contact__text {
    border-color: currentColor;
  }
}
@media (hover: hover) {
  a.contact:hover {
    color: white;
  }
  a.contact:hover .contact__text {
    border-color: currentColor;
  }
}
a.contact:focus-visible {
  outline-color: white;
  outline-offset: 2px;
  outline-style: groove;
  outline-width: 1.8px;
}

.cta-block {
  background-color: #ffbe00;
  border-radius: 1rem;
  padding: 5rem 1.5rem;
  text-align: center;
}
@media (max-width: calc(576px - 1px)) {
  .cta-block {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .cta-block__description {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.cta-block__link {
  margin-top: 3rem;
}

.blockquote__icon {
  display: inline-block;
  height: 4.5rem;
  margin-top: -0.5rem;
  width: 4.5rem;
}
.blockquote__text {
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  margin: 1rem 0;
}
@media (min-width: 992px) {
  .blockquote__text {
    line-height: 1.3;
    padding: 0 1.5rem;
  }
}
@media (max-width: calc(992px - 1px)) {
  .blockquote__text {
    font-size: 1.5rem;
  }
}
.blockquote__author {
  color: #7d7d7d;
  margin-top: 3.5rem;
  text-transform: uppercase;
}
@media (max-width: calc(992px - 1px)) {
  .blockquote__author {
    margin-top: 2rem;
  }
}

.customers-logos {
  grid-gap: 0.5rem;
  margin-top: 3.5rem;
}
.customers-logos img {
  display: block;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  margin: auto;
  max-width: 85%;
  opacity: 0.7;
}
.customers-logos img.logo-ucraft {
  max-width: 70%;
  padding-top: 1rem;
}
@media (min-width: 992px) {
  .customers-logos img.logo-ucraft {
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .grid-features p {
    padding-right: 7%;
  }
}

.section-video__iframe {
  box-shadow: 2px 8px 30px 0px #efeff3;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .section-video__iframe {
    border: 0.09rem solid #efeff3;
    border-radius: 1rem;
    margin-bottom: 5rem;
  }
}

.overview-iframe {
  display: block;
  width: 100%;
  height: 50vw;
}
@media (min-width: 1200px) {
  .overview-iframe {
    height: 44.4rem;
  }
}

@media screen and (min-width: 768px) {
  .section-hero__counter {
    text-align: center;
  }
  .section-hero__counter .counter__value {
    font-family: "Red Hat Display", sans-serif;
    font-size: 3.8rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
}
.round-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
  margin-top: -0.1rem;
  background: #111;
  border-radius: 50%;
  font-size: 1rem;
  color: white;
}

.card-plan {
  box-shadow: 2px 8px 30px 0px #f3f1e3;
  overflow: hidden;
  padding: 0;
  text-align: center;
}
.card-plan__header {
  align-items: center;
  background-color: #ffbe00;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem 2rem;
}
.card-plan__header h3 {
  margin-bottom: 0;
}
.card-plan__icon {
  font-size: 2.8rem;
}
.card-plan__body {
  padding: 2rem;
}
.card-plan__body > * + * {
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .card-plan__description {
    padding: 0 5%;
  }
}
.card-plan__seats {
  color: #7d7d7d;
}

.card-plan__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-plan__body > * + * {
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .card-plan__body .card-plan__description {
    padding: 0 5%;
  }
}
.card-plan__body .card-plan__seats {
  color: #7d7d7d;
}

.card-plan__price {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffbe00;
  line-height: 1.45;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  background: rgba(255, 190, 0, 0.05);
  border: 1px solid rgba(255, 190, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.card-plan__price > p {
  margin: 0 0 0.5rem 0;
}
.card-plan__price > p:last-child {
  margin-bottom: 0;
}
.card-plan__price strong {
  display: inline;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
}
.card-plan__price span {
  display: inline;
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  margin-left: 0.25rem;
}
.card-plan__price span:first-child {
  font-size: 1rem;
  margin-right: 0.25rem;
}

.card-plan__options {
  margin-top: 0.5rem !important;
  font-size: 0.95rem;
  color: #7d7d7d;
  opacity: 0.7;
  text-align: center;
}

.post img {
  max-width: 100%;
  height: auto;
}
.post__image {
  aspect-ratio: 16/9;
  display: block;
  margin-bottom: 1.5rem;
  position: relative;
}
.post__image img {
  border-radius: 1rem;
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.post__description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.post__author {
  align-items: center;
  color: #111;
  display: flex;
  font-size: 0.875rem;
  gap: 0.5rem;
}
.post__author-avatar {
  border-radius: 50%;
  display: block;
  height: 2.125rem;
  overflow: hidden;
  position: relative;
  width: 2.125rem;
}
.post__author-avatar img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.post__date {
  color: #7d7d7d;
  display: block;
}

.step__number {
  color: #7d7d7d;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .step__description {
    max-width: 70%;
  }
}
.step__important {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-left: 1.5rem;
  position: relative;
}
.step__important:before {
  background-color: #fb7000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 2px;
}
@media (min-width: 576px) {
  .step__important {
    max-width: 70%;
  }
}
.step__row {
  flex-direction: column-reverse;
  margin: 5rem 0;
}
@media (min-width: 1200px) {
  .step__row {
    flex-direction: row;
  }
}
@media (max-width: calc(992px - 1px)) {
  .step__row {
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
}
.step__link {
  font-weight: 600;
  font-size: 1.125rem;
}
.step__link .material-symbols-outlined {
  transition: transform 0.2s;
  transform: translateX(0);
}
@media (hover: none) {
  .step__link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .step__link:active .material-symbols-outlined {
    transform: translateX(12%);
  }
}
@media (hover: hover) {
  .step__link:hover .material-symbols-outlined {
    transform: translateX(12%);
  }
}

.card-benefit {
  text-align: center;
}
.card-benefit__icon {
  color: #ffbe00;
  font-size: 3.5rem;
  display: block;
  margin: -0.25rem 0 1.5rem -0.4rem;
}
.card-benefit h3 {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.fw-b {
  font-weight: 600;
}

.fw-sb {
  font-weight: 500;
}

.divider {
  background-color: #73fbd3;
  height: 0.375rem;
}

.text-special, .h3-special {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.required {
  color: #eb4d4d;
}

@media (max-width: calc(992px - 1px)) {
  .desktop {
    display: none;
  }
}

@media (min-width: 992px) {
  .mobile {
    display: none;
  }
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mt-6 {
  margin-top: 2.5rem;
}

.mb-6 {
  margin-bottom: 2.5rem;
}

.mt-7 {
  margin-top: 3rem;
}

.mb-7 {
  margin-bottom: 3rem;
}

.mt-8 {
  margin-top: 3.5rem;
}

.mb-8 {
  margin-bottom: 3.5rem;
}

.mt-9 {
  margin-top: 5rem;
}

.mb-9 {
  margin-bottom: 5rem;
}

.mt-10 {
  margin-top: 7.5rem;
}

.mb-10 {
  margin-bottom: 7.5rem;
}

@media (max-width: calc(992px - 1px)) {
  .mb-10 {
    margin-bottom: 5rem;
  }
}

@media (max-width: calc(992px - 1px)) {
  .mt-10 {
    margin-top: 5rem;
  }
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Red Hat Text", sans-serif;
  font-size: 1rem;
  color: #111;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.show {
  overflow: hidden;
}

video {
  /* override other styles to make responsive */
  width: 100% !important;
  height: auto !important;
}

address {
  font-style: normal;
}

button:focus-visible {
  outline-color: #111;
  outline-offset: 2px;
  outline-style: groove;
  outline-width: 1.8px;
}