@charset "UTF-8";
@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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
}

::-moz-selection {
  background-color: #00b0ff;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
}

::selection {
  background-color: #00b0ff;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
}

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

.row {
  margin: 0 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 15px;
}

.row .col-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-full {
  margin-left: 0 !important;
  margin-right: 0;
}

.row-header {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row-space {
  padding-top: 100px;
  padding-bottom: 100px;
}

.row-space-mid {
  padding-top: 50px;
  padding-bottom: 50px;
}

.row-space-mobile {
  margin-bottom: 0;
}

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
}

.modal::-webkit-backdrop {
    overflow: hidden;
}

.modal::backdrop {
    overflow: hidden;
}

.modal.modal-open {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: auto;
}

.modal.modal-open .modal-container {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.modal-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-small .modal-container {
    width: 30vw;
}

.modal-right .modal-container {
    margin-right: 30px;
    -webkit-transform: translateY(0) translateX(30px);
    transform: translateY(0) translateX(30px);
}

.modal-left .modal-container {
    margin-left: 30px;
    -webkit-transform: translateY(0) translateX(-30px);
    transform: translateY(0) translateX(-30px);
}

.modal-container {
    background-color: white;
    width: 45vw;
    margin: 30px auto;
    padding: 0;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

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

.modal-close {
    font-size: 1.6rem;
    font-weight: 200;
    color: #c9c9c9;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -10px;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
}

.modal-close:hover {
    color: #777777;
}

.modal-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 30px 0 30px;
}

.modal-head-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.modal-head-space {
    padding: 50px 30px 25px 30px;
}

.modal-head-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.modal-body {
    width: 100%;
    padding: 30px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 20px;
}

.modal-body-wide {
    padding: 30px 15px !important;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 35px 30px 35px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 10px;
}

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

.tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 10px;
}

.tag {
    font-size: 0.8rem;
    font-weight: 500;
    color: #040404;
    padding: 3px 10px;
    border-radius: 15px;
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    -ms-flex-item-align: start;
    align-self: flex-start;
    text-decoration: none;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    outline: 4px solid rgba(4, 4, 4, 0);
}

.tag-button {
    cursor: pointer;
}

.tag-button:hover {
    border-color: #777777;
}

.tag-button:active {
    border-color: #040404;
}

.tag-button:focus {
    outline: 4px solid rgba(4, 4, 4, 0.08);
}

.tag-blue {
    color: #FFFFFF;
    background-color: #00b0ff;
    border-color: #00b0ff;
}

.tag-blue.tag-button:hover, .tag-blue.tag-button:active {
    border-color: #00b0ff;
}

.tag-blue.tag-button:focus {
    outline: 4px solid rgba(0, 176, 255, 0.15);
}

.tag-black {
    color: #FFFFFF;
    background-color: #040404;
    border-color: #040404;
}

.tag-black.tag-button:hover, .tag-black.tag-button:active {
    border-color: #040404;
}

.tag-black.tag-button:focus {
    outline: 4px solid rgba(4, 4, 4, 0.15);
}

.tag-green {
    color: #FFFFFF;
    background-color: #00CB33;
    border-color: #00CB33;
}

.tag-green.tag-button:hover, .tag-green.tag-button:active {
    border-color: #00CB33;
}

.tag-green.tag-button:focus {
    outline: 4px solid rgba(0, 203, 51, 0.15);
}

.tag-orange {
    color: #FFFFFF;
    background-color: #FF6112;
    border-color: #FF6112;
}

.tag-orange.tag-button:hover, .tag-orange.tag-button:active {
    border-color: #FF6112;
}

.tag-orange.tag-button:focus {
    outline: 4px solid rgba(255, 97, 18, 0.15);
}

.tag-yellow {
    color: #FFFFFF;
    background-color: #FF9512;
    border-color: #FF9512;
}

.tag-yellow.tag-button:hover, .tag-yellow.tag-button:active {
    border-color: #FF9512;
}

.tag-yellow.tag-button:focus {
    outline: 4px solid rgba(255, 149, 18, 0.15);
}

.tag-red {
    color: #FFFFFF;
    background-color: #FF3232;
    border-color: #FF3232;
}

.tag-red.tag-button:hover, .tag-red.tag-button:active {
    border-color: #FF3232;
}

.tag-red.tag-button:focus {
    outline: 4px solid rgba(255, 50, 50, 0.15);
}

.tag-disabled {
    color: #777777;
}

.header {
  width: 100dvw;
  height: auto;
  background-color: transparent;
  background-image: url("../images/header-background.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 30px;
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

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

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

.header-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 15px;
}

.header-feature-icon {
  font-size: 1.5rem;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFFFFF;
  color: #00b0ff;
}

.header-feature-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 100px 0 100px;
}

.navbar-full {
  padding: 50px 100px;
}

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

.navbar-logo {
  height: 25px;
}

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

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

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

.button {
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0 15px;
  background: url("../images/background.png") no-repeat center center;
  background-size: cover;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  outline: 4px solid rgba(0, 176, 255, 0);
  text-decoration: none;
  grid-gap: 7px;
  text-align: center;
}

.button i {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: -1px;
}

.button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.button:active {
  -webkit-filter: brightness(1.15);
          filter: brightness(1.15);
}

.button:focus {
  outline: 4px solid rgba(0, 176, 255, 0.2);
}

.button-left {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.button-right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.button-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.button-wide {
  width: 100%;
}

.button-light {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  color: #040404;
}

.button-light i {
  color: #040404;
}

.button-light:hover {
  border-color: #B1B1B1;
}

.button-light:active {
  border-color: #040404;
}

.button-light:focus {
  outline: 4px solid rgba(4, 4, 4, 0.1);
}

.button-black {
  background: #040404;
  color: #FFFFFF;
}

.button-black:focus {
  outline: 4px solid rgba(4, 4, 4, 0.2);
}

.button-black:hover {
  opacity: 0.9;
}

.button-black:active {
  opacity: 0.8;
}

.button-black i {
  color: #FFFFFF;
}

.button-white {
  background: #FFFFFF;
  color: #040404;
}

.button-white:focus {
  outline: 4px solid rgba(255, 255, 255, 0.2);
}

.button-white:hover {
  opacity: 0.9;
}

.button-white:active {
  opacity: 0.8;
}

.button-white i {
  color: #040404;
}

.button-round {
  min-width: 40px;
  max-width: 40px;
  width: 40px;
  min-height: 40px;
  max-height: 40px;
  height: 40px;
  padding: 0;
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  width: 100%;
}

.button-group-space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.button-group-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block {
  width: 100%;
  height: 400px;
  background-color: #111111;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px;
}

.block-bottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.block-logo {
  width: 150px;
}

.block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 15px;
}

.block-tag {
  color: #B1B1B1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 10px;
  font-size: 1.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}

.block-title {
  font-weight: 500;
  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;
}

.block-featured-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-animation: featured-image 1s ease-in;
          animation: featured-image 1s ease-in;
}

@-webkit-keyframes featured-image {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes featured-image {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.section-tag {
  color: #B1B1B1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 10px;
  font-size: 1.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}

.section-tag-light {
  color: #B1B1B1;
}

.section-tag-light::before {
  background-color: rgba(243, 243, 243, 0.3);
}

.section-title {
  color: #040404;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3rem;
}

.section-title-mid {
  font-size: 2rem !important;
  line-height: 2.5rem !important;
}

.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: #FFFFFF;
}

.section-title .section-title-highlight {
  color: #00b0ff;
}

.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;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

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

.feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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;
}

.faq-item {
  background-color: transparent;
  color: #FFFFFF;
  cursor: pointer;
  min-height: 50px;
  border: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: left;
}

.faq-item-active .faq-item-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #FFFFFF;
}

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

.faq-panel {
  padding: 0 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  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: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.faq-panel-text a {
  color: white;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.2);
          text-decoration-color: rgba(255, 255, 255, 0.2);
  text-decoration-thickness: 1.5px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.faq-panel-text a:hover {
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.5);
          text-decoration-color: rgba(255, 255, 255, 0.5);
}

.faq-panel-text a:active {
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
}

.card {
  width: 100%;
  grid-gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(4, 4, 4, 0.1);
  position: relative;
}

.card:not(.card-last)::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 1px;
  background-color: rgba(4, 4, 4, 0.1);
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  bottom: 50%;
}

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

.card-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: #00b0ff;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 5px;
}

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

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

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

.footer-full {
  margin-top: 50px;
}

.footer-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 15px;
}

.footer-logo {
  width: 150px;
}

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

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 10px;
}

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

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

.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-color: #00b0ff;
  z-index: -1;
}

.post-image {
  width: 100%;
  aspect-ratio: 1/0.5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  background-color: #FFFFFF;
  pointer-events: none;
}

.post-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 15px;
}

.post-content p,
.post-content p.post-text,
.post-content p.page-text {
  color: #6d6d6d;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.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: 500;
  color: #00b0ff;
}

.post-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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 li::before {
  content: "•";
  display: inline-block;
  padding-right: 5px;
  color: #00b0ff;
}

.post-content h1 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #040404;
  margin-top: 30px;
}

.post-content a:not(.button) {
  color: #00b0ff;
  -webkit-text-decoration-color: rgba(0, 176, 255, 0.3);
          text-decoration-color: rgba(0, 176, 255, 0.3);
  text-decoration-thickness: 1.5px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
}

.post-content a:not(.button):hover {
  -webkit-text-decoration-color: rgba(0, 176, 255, 0.5);
          text-decoration-color: rgba(0, 176, 255, 0.5);
}

.post-content a:not(.button):active {
  -webkit-text-decoration-color: #00b0ff;
          text-decoration-color: #00b0ff;
}

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

.post-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: 500;
  color: #040404;
  padding-bottom: 15px;
}

.post-summary-link {
  color: rgba(4, 4, 4, 0.5);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 10px;
}

.post-summary-link:hover {
  color: #040404;
}

.post-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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;
}

.checkout-section-container {
  width: 100%;
  aspect-ratio: 1/0.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../images/background.png") no-repeat center center;
  background-size: cover;
  padding: 100px;
  margin: 0;
  border-radius: 20px;
}

.checkout-section {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9;
}

.checkout-range {
  margin: 30px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 7px;
  border-radius: 10px;
  background: rgba(234, 234, 234, 0.7);
  outline: none;
  -webkit-transition: .2s;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.checkout-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00b0ff;
  cursor: pointer;
  border: 3px solid #FFFFFF;
}

.checkout-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #00b0ff;
  cursor: pointer;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
}

input.checkout-range[type="range"]::-moz-range-progress {
  background-color: #00b0ff;
  border: none;
  height: 7px;
  border-radius: 10px 0 0 10px;
}

input.checkout-range[type="range"]::-moz-range-track {
  background: rgba(234, 234, 234, 0.7);
  border: none;
  height: 7px;
  border-radius: 0 10px 10px 0;
}

input.checkout-range[type="range"]::-ms-fill-lower {
  background-color: #00b0ff;
  border: none;
  height: 7px;
  border-radius: 10px 0 0 10px;
}

input.checkout-range[type="range"]::-ms-fill-upper {
  background: rgba(234, 234, 234, 0.7);
  border: none;
  height: 7px;
  border-radius: 0 10px 10px 0;
}

.checkout-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.checkout-amonut {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 3px;
}

.checkout-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.checkout-number {
  font-size: 2rem;
}

.checkout-title {
  font-size: 1rem;
  font-weight: 500;
}

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

.checkout-title-right,
.checkout-subtitle-right {
  text-align: right;
}

.toast {
  width: 30vw;
  position: fixed;
  bottom: 20px;
  right: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  border-radius: 100px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(150%) translateX(-50%);
          transform: translateY(150%) translateX(-50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.toast-title {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
}

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

.toast-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) translateX(-50%);
          transform: translateY(0) translateX(-50%);
}

.toast-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 3px;
}

.toast-content p {
  line-height: 1rem;
}

.toast[toast-type=default] {
  background: url(../images/background.png) no-repeat center center;
  background-size: cover;
}

.toast[toast-type=default] .toast-icon::after {
  font-style: normal;
  content: "\e9ca";
  font-family: "iconsax" !important;
}

.toast[toast-type=error] {
  background: #FF3232;
}

.toast[toast-type=error] .toast-icon::after {
  font-style: normal;
  content: "\e932";
  font-family: "iconsax" !important;
}

.toast[toast-type=success] {
  background: #00CB33;
}

.toast[toast-type=success] .toast-icon::after {
  font-style: normal;
  content: "\e95d";
  font-family: "iconsax" !important;
}

.toast[toast-type=alert] {
  background: #FF6112;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
}

.toast-icon .toast-icon::after {
  font-style: normal;
  content: "\e9ca";
  font-family: "iconsax" !important;
}

.toast-close {
  position: absolute;
  -ms-flex-item-align: end;
      align-self: flex-end;
  right: 15px;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  align-self: center;
}

.toast-close i {
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.toast-close:hover i {
  color: rgba(255, 255, 255, 0.6);
}

.toast-close:active i {
  color: rgba(255, 255, 255, 1);
}

.mobile-header-image {
    width: 100%;
}

@media only screen and (max-width: 750px) {
  .row {
    margin: 0 30px;
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  .row [class*="col-"] {
    -ms-grid-column: 1;
    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;
  }
  .tags {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
  }
  .tag {
      align-self: flex-start;
  }
    .modal:not(.modal-middle-full) {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .modal-container {
        margin: 20px auto;
        width: calc(100vw - 30px) !important;
    }
    .modal-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
  .header {
    width: 100%;
    min-height: 100vh;
    background-size: auto 50%;
  }
  .header-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .header-content {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .header-text {
    font-size: 1.1rem;
  }
  .header-form {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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 #dddddd;
  }
  .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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 40px;
    background-color: #FFFFFF;
    z-index: 9;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.3s ease;
    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;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 8;
  }
  .navbar-open .navbar-links {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .navbar-open .navbar-background {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .button-responsive {
    width: 100%;
  }
  .button-group:not(.button-group-forced) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .features .feature:not(:last-child)::after {
    width: 100%;
    height: 1px;
    bottom: -20px;
    left: 0;
    right: auto;
  }
  .faq {
    padding: 50px 10px 50px 30px;
    width: calc(100% + 60px);
    -webkit-transform: translateX(-30px) !important;
            transform: translateX(-30px) !important;
    border-radius: 0;
  }
  .faq-item {
    min-height: 80px;
  }
  .card {
    width: 100%;
    grid-gap: 30px;
    aspect-ratio: auto;
  }
  .card:not(.card-last)::after {
    height: 31px;
    width: 1px;
    right: auto;
    bottom: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    left: 50%;
  }
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    grid-gap: 40px;
    padding: 0 30px;
    margin-top: -30px;
  }
  .footer-full {
    margin-top: 50px;
  }
  .post-image {
    aspect-ratio: 1/0.7;
  }
  .checkout-section-container {
    aspect-ratio: auto;
    height: auto;
    padding: 0;
    background: transparent;
  }
  .checkout {
    border: 1px solid #EAEAEA;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .toast {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: calc(100vw - 30px);
    -webkit-transform: translateY(150%) translateX(0);
            transform: translateY(150%) translateX(0);
  }
  .toast-visible {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
}

@media only screen and (min-width: 750px) {
  .hidden-desktop {
    display: none !important;
  }
  .col-1.col-middle {
    -ms-grid-column: 6;
    -ms-grid-column-span: 1;
    grid-column: 6/span 1;
  }
  .col-2.col-middle {
    -ms-grid-column: 6;
    -ms-grid-column-span: 2;
    grid-column: 6/span 2;
  }
  .col-3.col-middle {
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    grid-column: 5/span 3;
  }
  .col-4.col-middle {
    -ms-grid-column: 5;
    -ms-grid-column-span: 4;
    grid-column: 5/span 4;
  }
  .col-5.col-middle {
    -ms-grid-column: 4;
    -ms-grid-column-span: 5;
    grid-column: 4/span 5;
  }
  .col-6.col-middle {
    -ms-grid-column: 4;
    -ms-grid-column-span: 6;
    grid-column: 4/span 6;
  }
  .col-7.col-middle {
    -ms-grid-column: 3;
    -ms-grid-column-span: 7;
    grid-column: 3/span 7;
  }
  .col-8.col-middle {
    -ms-grid-column: 3;
    -ms-grid-column-span: 8;
    grid-column: 3/span 8;
  }
  .col-9.col-middle {
    -ms-grid-column: 2;
    -ms-grid-column-span: 9;
    grid-column: 2/span 9;
  }
  .col-10.col-middle {
    -ms-grid-column: 2;
    -ms-grid-column-span: 10;
    grid-column: 2/span 10;
  }
  .col-11.col-middle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 11;
    grid-column: 1/span 11;
  }
  .col-12.col-middle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/span 12;
  }
  .navbar-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 20px;
  }
  .navbar-links:hover .navbar-link:not(:hover) {
    opacity: 0.3;
  }
  .navbar-link-logo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 90px;
  }
  .navbar-link-logo::after {
    content: "";
    position: absolute;
    right: -50px;
    width: 1px;
    height: 110%;
    background-color: rgba(4, 4, 4, 0.3);
    display: block;
    opacity: 0.15;
  }
  .navbar-background {
    display: none;
    pointer-events: none;
  }
}