@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  font-variant-ligatures: none;
}

::-moz-selection {
  background-color: #6DEE87;
  color: #111111;
  -webkit-text-fill-color: #111111;
}

::selection {
  background-color: #6DEE87;
  color: #111111;
  -webkit-text-fill-color: #111111;
}

html, body {
  background-color: #FFFFFF;
  width: 100%;
  overflow-x: hidden;
}

.row {
  margin: 0 100px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  max-width: 100dvw;
}
.row .col-1 {
  grid-column: span 1;
}
.row .col-2 {
  grid-column: span 2;
}
.row .col-3 {
  grid-column: span 3;
}
.row .col-4 {
  grid-column: span 4;
}
.row .col-5 {
  grid-column: span 5;
}
.row .col-6 {
  grid-column: span 6;
}
.row .col-7 {
  grid-column: span 7;
}
.row .col-8 {
  grid-column: span 8;
}
.row .col-9 {
  grid-column: span 9;
}
.row .col-10 {
  grid-column: span 10;
}
.row .col-11 {
  grid-column: span 11;
}
.row .col-12 {
  grid-column: span 12;
}
.row .col-gap {
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
}
.row .col-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.row-full {
  margin-left: 0 !important;
  margin-right: 0;
}
.row-header {
  height: 100%;
  align-items: center;
}
.row-center {
  align-items: center;
}
.row-blocks {
  transform: translateY(-40px);
  padding-bottom: 60px;
}
.row-space {
  padding-top: 100px;
  padding-bottom: 100px;
}
.row-space-mobile {
  margin-bottom: 0;
}

.header {
  width: 100dvw;
  height: 100dvh;
  background-color: transparent;
  background-image: url("../images/header-background.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 85px;
  grid-gap: 40px;
}

.header-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}

.header-title {
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 4rem;
  color: #040404;
}

.header-highlight {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #6DEE87;
}

.header-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #B1B1B1;
  margin-top: -15px;
}

.header-form {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 1px solid #dddddd;
  padding: 10px;
  border-radius: 18px;
}

.header-input {
  width: 100%;
  flex: 1;
  height: 45px;
  font-size: 1rem;
  font-weight: 500;
  background-color: transparent;
  border: none;
  color: #040404;
  padding: 0 20px;
}
.header-input::-moz-placeholder {
  opacity: 0.7;
  font-weight: 500;
  color: #040404;
}
.header-input::placeholder {
  opacity: 0.7;
  color: #040404;
}

.header-image {
  width: 65%;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.header-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
}

.header-feature {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.header-feature-icon {
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
    color: white;
}

.header-feature-content {
    display: flex;
    flex-direction: column;
}

.header-feature-title {
    font-weight: 500;
    font-size: 0.9rem;
    color: #111111;
}

.header-feature-subtitle {
    font-weight: 500;
    font-size: 0.9rem;
    font-size: 0.7rem;
    color: #bfbfbf;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 100px 0 100px;
}
.navbar-light .navbar-link {
  color: #040404;
}
.navbar-dark {
    background-color: #111111;
}
.navbar-full {
  padding: 50px 100px;
}

.navbar-container {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}

.navbar-logo {
  height: 40px;
}

.navbar-link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.navbar-links {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}

.navbar-divider {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(243, 243, 243, 0.1);
}

.button {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  text-decoration: none;
  color: #FFFFFF;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: 5px solid transparent;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  align-self: flex-start;
  grid-gap: 10px;
  pointer-events: all;
}
.button:hover {
  background-position: 100% 0%;
  filter: brightness(1.05);
}

.button:active {
  filter: brightness(0.95);
}
.button:focus {
  outline-color: rgba(109, 238, 135, 0.3);
}
.button-light {
  background: white;
  color: #040404;
  border: none;
}
.button-light:hover {
  opacity: 0.9;
}
.button-light:active {
  opacity: 0.8;
}
.button-light:focus {
  outline-color: rgba(255, 255, 255, 0.2);
}
.button-ghost {
  background: transparent;
  color: #040404;
  border: 1px solid #dddddd;
}
.button-ghost:hover {
  border-color: rgba(4, 4, 4, 0.5);
  background: transparent;
}
.button-ghost:active {
  border-color: #040404;
  background: transparent;
}
.button-ghost:focus {
  outline-color: rgba(4, 4, 4, 0.05);
}
.button-ghost-light {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.button-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}
.button-ghost-light:active {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}
.button-ghost-light:focus {
  outline-color: rgba(255, 255, 255, 0.05);
}
.button-square {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  padding: 0;
}
.button-wide {
  width: 100%;
}
.button-waiting {
  pointer-events: none;
}
.button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
}

.block {
  width: 100%;
  height: 400px;
  background-color: #111111;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}
.block-bottom {
  justify-content: flex-end;
}

.block-logo {
  width: 70px;
}

.block-content {
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
}

.block-tag {
  color: #B1B1B1;
  position: relative;
  display: flex;
  grid-gap: 10px;
  font-size: 1.1rem;
  align-items: center;
  font-weight: 500;
}
.block-tag::before {
  content: "";
  width: 15px;
  height: 1px;
  border-radius: 50px;
  background-color: #B1B1B1;
}

.block-title {
  font-weight: 600;
  color: #FFFFFF;
  font-size: 2.3rem;
}
.block-title-small {
  font-size: 2rem;
}

.block-image {
  width: 100%;
  height: 400px;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
     pointer-events: none;
}

.section-tag {
  color: #B1B1B1;
  position: relative;
  display: flex;
  grid-gap: 10px;
  font-size: 1.1rem;
  align-items: center;
  fon-weight: 500;
}
.section-tag::before {
  content: "";
  width: 15px;
  height: 1px;
  border-radius: 50px;
  background-color: #B1B1B1;
}
.section-tag-light {
  color: #B1B1B1;
}
.section-tag-light::before {
  background-color: rgba(243, 243, 243, 0.3);
}

.section-title {
  color: #040404;
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 3rem;
}
.section-title-center {
  text-align: center;
}
.section-title-big {
  font-size: 3rem;
  line-height: 3.5rem;
}
.section-title-light {
  color: #FFFFFF;
}
.section-title-white {
  color: white;
}
.section-title .section-title-highlight {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #6DEE87;
}

.section-text {
  font-size: 1rem;
  font-weight: 500;
  color: #B1B1B1;
}

.section-text-light {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.section-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/0.75;
  border-radius: 18px;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  margin-top: 40px;
  grid-gap: 40px;
}

.feature {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
  position: relative;
}
.feature:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(4, 4, 4, 0.1);
  display: block;
  position: absolute;
  right: -15px;
}

.feature-title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #040404;
}

.feature-text {
  color: #B1B1B1;
  font-size: 0.9rem;
  font-weight: 500;
}

.faq {
  background-color: #111111;
  border-radius: 18px;
  padding: 50px 50px 50px 50px;
}

.faq-item {
  background-color: transparent;
  color: #FFFFFF;
  cursor: pointer;
  min-height: 50px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-align: left;
}
.faq-item-active .faq-item-icon {
  transform: rotate(180deg);
  color: #FFFFFF;
}

.faq-item-icon {
  color: rgba(243, 243, 243, 0.3);
  transition: all 0.2s ease;
}

.faq-panel {
  padding: 0 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  border: none;
}
.faq-panel-active {
  background-color: transparent;
}
.faq-panel:not(:last-child) {
  border-bottom: 1px solid rgba(243, 243, 243, 0.1);
}

.faq-panel-content {
  padding: 0px 0 20px 0;
}

.faq-panel-text {
  color: #5e5e5e;
  font-size: 0.9rem;
}

.card {
  width: 100%;
  aspect-ratio: 1/0.75;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(4, 4, 4, 0.1);
}

.card:hover .card-number {
    background-position: 100% 0%;
    filter: brightness(1.05);
}

.card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.card-content {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
}

.card-title {
  font-weight: 600;
  font-size: 1.3rem;
}

.card-text {
  color: #B1B1B1;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  margin: -50px 0 50px 0;
}

.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 15px;
}

.footer-logo {
  width: 100px;
}

.footer-title {
  color: #040404;
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

.footer-link {
  text-decoration: none;
  color: rgba(4, 4, 4, 0.4);
  transition: all 0.2s ease;
  cursor: pointer;
  align-self: flex-start;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-copyright {
  color: #B1B1B1;
  font-size: 0.8rem;
  font-weight: 500;
}
.footer-copyright .footer-disclaimer {
  font-size: 0.6rem;
}

.post-header {
    position: relative;
    padding: 50px 0 100px 0;
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 0;
    overflow: visible;
}
.post-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #6DEE87 0%, #5FC62F 100%);
    z-index: -1;
}

.post-image {
    width: 100%;
    aspect-ratio: 1/0.5;
    object-fit: cover;
    border-radius: 15px;
    transform: translateY(-50px);
    background-color: #FFFFFF;
    pointer-events: none;
}
.post-content {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.post-content p,
.post-content p.post-text,
.post-content p.page-text {
  color: #A2A2A2;
  font-weight: 400;
  font-size: 0.9rem;
}
.post-content p-center,
.post-content p.post-text-center,
.post-content p.page-text-center {
  text-align: center;
}
.post-content img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1/0.5;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #FFFFFF;
  pointer-events: none;
}

.post-content strong,
.post-content b {
    font-weight: 600;
    background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #6DEE87;
}

.post-content ul {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    list-style: none;
}

.post-content li {
    color: rgba(4, 4, 4, 0.6);
    font-size: 0.9rem;
}

.post-content ul li::before {
  content: "•";
  display: inline-block;
  padding-right: 5px;
    color: #6DEE87;
}



.post-content h1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #040404;
  margin-top: 30px;
}
.post-content a:not(.button) {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #6DEE87;
  text-decoration-color: #6DEE87;
  text-decoration-thickness: 2px;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.post-content-space {
  padding-top: 130px;
  padding-bottom: 150px;
}

.post-summary {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(4, 4, 4, 0.1);
  border-radius: 18px;
}

.post-summary-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #040404;
  padding-bottom: 15px;
}

.post-summary-link {
  color: rgba(4, 4, 4, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 10px;
}
.post-summary-link:hover {
  color: #040404;
}

.modal {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0);
  overflow-x: auto;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.modal::backdrop {
  overflow: hidden;
}
.modal-text {
  color: #B1B1B1;
  font-weight: 500;
  font-size: 0.9rem;
}
.modal-text-center {
    text-align: center;
}
.modal-text a {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #6DEE87;
  transition: all 0.2s ease;
  text-decoration-color: #6DEE87;
  text-decoration-thickness: 1px;
}
.modal-text-small {
  font-size: 0.8rem;
}
.modal-open {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: auto;
}
.modal-open .modal-container {
  transform: translateY(0);
}
.modal-center {
  align-items: center;
  justify-content: center;
}
.modal-small .modal-container {
  width: 30vw;
}

.modal-container {
  background-color: white;
  width: 50vw;
  margin: 30px auto;
  padding: 0;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s ease;
  transform: translateY(30px);
}

body:has(.modal-open) {
  overflow: hidden;
}

.modal-close {
  font-size: 2rem;
  font-weight: 200;
  color: #B1B1B1;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #dddddd;
}
.modal-head .modal-close {
  position: relative;
  top: auto;
  right: auto;
}

.modal-head-content {
  display: flex;
  flex-direction: column;
}

.modal-head-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #040404;
}

.modal-head-subtitle {
  font-size: 0.8rem;
  color: #B1B1B1;
  font-weight: 500;
}

.modal-body {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}

.modal-footer {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  border-top: 1px solid #dddddd;
  justify-content: space-between;
  grid-gap: 10px;
}

.modal-divider {
  border: none;
  border-top: 1px solid #dddddd;
  margin: 10px -25px 10px -25px;
}

.modal-content-title {
  color: #040404;
  font-weight: 600;
  font-size: 1.5rem;
}
.modal-content-title-center {
  text-align: center;
}

.modal-content-text {
  color: #B1B1B1;
  font-size: 0.9rem;
  font-weight: 500;
}
.modal-content-text-center {
  text-align: center;
}
.modal-content-text-title {
  color: #040404;
  font-size: 1.5rem;
  font-weight: 400;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
}

.modal-input-container {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
}

.modal-label {
  font-size: 0.75rem;
  cursor: pointer;
  align-self: flex-start;
  color: #042C34;
  font-weight: 600;
  transition: all 0.2s ease;
}
.modal-label-error {
  color: #ff2727;
}

.modal-input {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #dddddd;
  padding: 0 15px;
  font-size: 0.8rem;
  color: #040404;
  transition: all 0.2s ease;
  font-weight: 500;
}
.modal-input:hover, .modal-input:focus {
  border-color: #042C34;
}
.modal-input::-moz-placeholder {
  opacity: 1;
  color: #B1B1B1;
  font-weight: 500;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.modal-input::placeholder {
  opacity: 1;
  color: #B1B1B1;
  font-weight: 500;
  transition: all 0.2s ease;
}

textarea.modal-input {
  height: 100px;
  resize: none;
  padding: 10px;
}

.modal-input-error {
  color: #ff2727;
  border-color: #ff2727;
}
.modal-input-error::-moz-placeholder {
  color: #ff2727;
}
.modal-input-error::placeholder {
  color: #ff2727;
}
.modal-input-error:hover {
  border-color: #ff2727;
}

select.modal-input {
  background-color: transparent;
  cursor: pointer;
  background: none;
  color: #B1B1B1;
}
select.modal-input.modal-input-error {
  color: #ff2727;
}

.modal-radio-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.modal-radio-label {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background-color: transparent;
  border: 1px solid #dddddd;
  text-decoration: none;
  color: #B1B1B1;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: 5px solid transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 400;
}
.modal-radio-label:hover {
  border-color: rgba(4, 4, 4, 0.5);
  background-color: transparent;
}
.modal-radio-label:active {
  border-color: #040404;
  background-color: transparent;
}
.modal-radio-label:focus {
  outline-color: rgba(4, 4, 4, 0.05);
}
.modal-radio-label-error {
  border-color: #ff2727;
  color: #ff2727;
}

.modal-radio-input {
  display: none;
  opacity: 0;
}
.modal-radio-input:checked + .modal-radio-label {
  background-color: #111111;
  border: 1px solid #111111;
  color: #FFFFFF;
}
.modal-radio-input:checked + .modal-radio-label:hover {
  background-color: rgba(4, 4, 4, 0.9);
}
.modal-radio-input:checked + .modal-radio-label:active {
  background-color: rgba(4, 4, 4, 0.8);
}
.modal-radio-input:checked + .modal-radio-label:focus {
  outline-color: rgba(4, 4, 4, 0.1);
}
.modal-radio-input-error + .modal-radio-label {
  border-color: #ff2727 !important;
  color: #ff2727 !important;
}

.modal-form-progress {
  display: flex;
  margin-top: 30px;
  grid-gap: 60px;
}

.modal-form-progress-item {
  width: 25px;
  min-width: 25px;
  max-width: 25px;
  height: 25px;
  min-height: 25px;
  max-height: 25px;
  background-color: rgba(4, 4, 4, 0.1);
  color: rgba(4, 4, 4, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}
.modal-form-progress-item-active {
  background: #6DEE87;
  color: #FFFFFF;
}
.modal-form-progress-item:not(:last-child)::after {
  content: "";
  width: 60px;
  height: 1.5px;
  background-color: rgba(4, 4, 4, 0.1);
  position: absolute;
  right: 0;
  transform: translateX(60px);
}
.modal-form-progress-item-filled::after {
  background: #6DEE87 !important;
}

.modal-disclaimer {
  font-size: 0.9rem;
  color: #B1B1B1;
}
.modal-disclaimer a {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #6DEE87;
  text-decoration: none;
}

.modal-box-table, .modal-box-td {
  border: none;
}

.modal-box-tr:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.modal-box-td {
  padding: 10px 0;
  width: 50%;
  max-width: 50%;
  vertical-align: top;
}

.modal-box-label {
  font-weight: 500;
}

.modal-box-text {
  font-weight: 500;
  font-size: 0.8rem;
  color: #B1B1B1;
}
.modal-box-text-center {
  text-align: center;
}
.modal-box-text a {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #6DEE87;
  text-decoration-color: #6DEE87;
  text-decoration-thickness: 1.5px;
  transition: all 0.2s ease;
}
.modal-box-text a:hover {
  opacity: 0.8;
}

.modal-box-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
  margin-bottom: 10px;
}

.post-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
}

.post-card-image {
  width: 100%;
  aspect-ratio: 1/0.5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.post-card-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #dddddd;
  border-top: none;
  border-radius: 0 0 18px 18px;
  grid-gap: 5px;
}

.post-card-title {
  color: #040404;
  font-size: 1.3rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-card-text {
  color: #B1B1B1;
  font-size: 0.9rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.toast {
  width: 30vw;
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  position: fixed;
  bottom: 20px;
  right: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(150%) translateX(-50%);
  transition: all 0.2s ease;
}
.toast-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
}
.toast .toast-icon::after {
  font-style: normal;
  content: "\e9ca";
  font-family: "iconsax" !important;
}
.toast[toast-type=default] {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
}
.toast[toast-type=default] .toast-icon::after {
  font-style: normal;
  content: "\e9ca";
  font-family: "iconsax" !important;
}
.toast[toast-type=error] {
  background: #FF2727;
}
.toast[toast-type=error] .toast-icon::after {
  font-style: normal;
  content: "\e932";
  font-family: "iconsax" !important;
}
.toast[toast-type=success] {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
}
.toast[toast-type=success] .toast-icon::after {
  font-style: normal;
  content: "\e95d";
  font-family: "iconsax" !important;
}
.toast[toast-type=alert] {
  background: #FF9512;
}
.toast[toast-type=alert] .toast-icon::after {
  font-style: normal;
  content: "\eaca";
  font-family: "iconsax" !important;
}

.toast-icon {
  height: 45px;
  width: 45px;
  padding-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
}

.toast-close {
  position: absolute;
  align-self: flex-end;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}
.toast-close:hover {
  color: #FFFFFF;
}

.toast-title {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 400;
}

.toast-text {
  font-size: 0.9rem;
  color: #FFFFFF;
}

.whatsapp-link {
    width: auto;
height: 65px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9;
  align-self: flex-end;
  border-radius: 15px;
  overflow: auto;
  text-decoration: none;
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  transition: all .2s ease;
  opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.whatsapp-link.whatsapp-link-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.whatsapp-link:hover .whatsapp-button {
  background-position: 100% 0%;
  filter: brightness(1.05);
}
.whatsapp-link:active .whatsapp-button {
  filter: brightness(0.95);
}

.whatsapp-button {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 10px;
  grid-gap: 10px;
  transition: all 0.2s ease;
}

.whatsapp-icon {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  height: 45px;
  min-height: 45px;
  max-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-icon i {
  font-size: 2rem;
  color: #FFFFFF;
}

.whatsapp-content {
  display: flex;
  flex-direction: column;
}

.whatsapp-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.1rem;
}

.whatsapp-text {
  font-size: 0.8rem;
  color: #FFFFFF;
  font-weight: 500;
}

.steps {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
  grid-gap: 15px;
}
.step:not(:last-child) {
  height: 100px;
  min-height: 100px;
}
.step:not(:last-child) .step-icon {
  position: relative;
}
.step:not(:last-child) .step-icon::before {
  content: "";
  position: absolute;
  height: 115px;
  width: 1px;
  background-color: #dddddd;
  bottom: -115px;
}

.step-icon {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  height: 45px;
  min-height: 45px;
  max-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  position: relative;
}
.step-icon::after {
  content: "\e95d";
  font-family: "iconsax" !important;
  position: absolute;
  color: #FFFFFF;
  font-size: 1.3rem;
}
.step-icon-success {
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
}
.step-icon-success::after {
  content: "\e95d";
}
.step-icon-warning {
  background: #ffaa00;
}
.step-icon-warning::after {
  content: "\e9ca";
}
.step-icon-danger {
  background: #ff2727;
}
.step-icon-danger::after {
  content: "\ea75";
}

.step-info {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #040404;
}

.step-text {
  font-size: 0.8rem;
  color: #B1B1B1;
  margin-top: -10px;
  font-weight: 500;
}

.step-date {
  font-size: 0.75rem;
  color: #B1B1B1;
  font-weight: 500;
}

.step-button {
  align-self: flex-start;
  color: #FFFFFF;
  text-decoration: none;
  background: linear-gradient(45deg, #6DEE87 0%, #5FC62F 100%);
  font-size: 0.75rem;
  padding: 7px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  outline: 4px solid transparent;
  font-weight: 600;
}
.step-button:hover {
  background-position: 100% 0%;
  filter: brightness(1.05);
}
.step-button:active {
  filter: brightness(0.95);
}
.step-button:focus {
  outline-color: rgba(109, 238, 135, 0.3);
}

@media only screen and (max-width: 750px) {
  .row {
    margin: 0 30px;
    grid-template-columns: 1fr !important;
  }
  .row [class*=col-] {
    grid-column: 1;
  }
  .row-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .row-space-mobile {
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .hidden-mobile {
    display: none !important;
  }
  .modal {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .modal-container {
    margin: 30px auto;
    width: calc(100vw - 60px) !important;
  }
  .modal-footer {
    flex-direction: column;
  }
  .header {
    width: 100%;
    height: 100vh;
    background-size: auto 50%;
  }
  .header-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .header-text {
    font-size: 1.1rem;
  }
  .header-form {
    width: 100%;
    flex-direction: column;
    grid-gap: 10px;
    padding: 0 10px 10px 10px;
  }
  .header-input {
    min-height: 55px;
    height: 55px;
    padding: 0 20px;
    border-radius: 8px 8px 0 0;
    width: calc(100% + 20px);
    border-bottom: 1px solid #ddd;
  }
  .navbar {
    padding: 50px 30px 0 30px;
  }
  .navbar-full {
    padding: 50px 30px;
  }
  .navbar-light .navbar-link {
    color: #FFFFFF !important;
  }
  .navbar-links {
    position: fixed;
    width: calc(100% - 62.5px);
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    background-color: #111111;
    z-index: 9;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  .navbar-links .navbar-link {
    font-size: 1.2rem;
  }
  .navbar-background {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(4, 4, 4, 0.6);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 8;
  }
  .navbar-open .navbar-links {
    transform: translateX(0);
  }
  .navbar-open .navbar-background {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .button-responsive {
    width: 100%;
  }
  .button-group {
    flex-direction: column;
  }
  .block-title {
    font-size: 1.5rem;
  }
  .block-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .section-title {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .feature:not(:last-child)::after {
    width: 100%;
    height: 1px;
    bottom: -20px;
    left: 0;
    right: auto;
  }
  .faq {
    padding: 40px;
  }
  .faq-item {
    min-height: 80px;
  }
  .card {
    width: 100%;
    grid-gap: 30px;
    aspect-ratio: auto;
  }
  .footer {
    flex-direction: column-reverse;
    grid-gap: 40px;
    padding: 0 30px;
    margin-top: -30px;
  }
  .modal-radio-container {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
  .modal-content-title {
    font-size: 1.3rem;
  }
  .modal-content-text {
    font-size: 0.9rem;
  }
  .toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100vw - 40px);
    transform: translateY(150%) translateX(0);
  }
  .toast-visible {
    transform: translateY(0) translateX(0);
  }
  .post-image {
    aspect-ratio: 1/0.7;
  }
  .whatsapp-link {
    border-radius: 18px;
  }
  .whatsapp-button {
    padding: 10px;
  }
  .whatsapp-content {
    display: none;
  }
}
@media only screen and (min-width: 750px) {
  .hidden-desktop {
    display: none !important;
  }
  .col-1.col-middle {
    grid-column: 6/span 1;
  }
  .col-2.col-middle {
    grid-column: 6/span 2;
  }
  .col-3.col-middle {
    grid-column: 5/span 3;
  }
  .col-4.col-middle {
    grid-column: 5/span 4;
  }
  .col-5.col-middle {
    grid-column: 4/span 5;
  }
  .col-6.col-middle {
    grid-column: 4/span 6;
  }
  .col-7.col-middle {
    grid-column: 3/span 7;
  }
  .col-8.col-middle {
    grid-column: 3/span 8;
  }
  .col-9.col-middle {
    grid-column: 2/span 9;
  }
  .col-10.col-middle {
    grid-column: 2/span 10;
  }
  .col-11.col-middle {
    grid-column: 1/span 11;
  }
  .col-12.col-middle {
    grid-column: 1/span 12;
  }
  .navbar-light .navbar-link-logo::after {
    opacity: 1;
    background-color: #f1f1f1;
  }
  .navbar-links {
    display: flex;
    align-items: center;
    grid-gap: 20px;
  }
  .navbar-links:hover .navbar-link:not(:hover) {
    opacity: 0.3;
  }
  .navbar-link-logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 90px;
  }
  .navbar-link-logo::after {
    content: "";
    position: absolute;
    right: -50px;
    width: 1px;
    height: 110%;
    background-color: #FFFFFF;
    display: block;
    opacity: 0.15;
  }
  .navbar-background {
    display: none;
    pointer-events: none;
  }
}