body {
  background-color: #222131;
  font-family: 'Space Grotesk', sans-serif;
  color: #e1e1e7;
  font-size: 18px;
  line-height: 1.667em;
}

a {
  -webkit-transition: color 350ms ease, -webkit-transform 350ms ease;
  transition: color 350ms ease, -webkit-transform 350ms ease;
}

a:hover {
  color: #c5c0ff;
}

h1 {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 60px;
  line-height: 1.133em;
  font-weight: 700;
}

h2 {
  margin-top: 0px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 42px;
  line-height: 1.19em;
  font-weight: 700;
}

h3 {
  margin-top: 0px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 26px;
  line-height: 1.3em;
  font-weight: 700;
}

h4 {
  margin-top: 0px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 22px;
  line-height: 1.227em;
  font-weight: 700;
}

.container-default {
  max-width: 1244px;
  padding: 0 24px;
}

header {
  padding: 15px 0;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #222131;
}

.header-nav ul li {
  margin-right: 32px;
  z-index: 10;
}

.heading {
  color: #fff;
  font-size: 42px;
  line-height: 1.19em;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, sans-serif;
}

/* Order book animation */

div.site-container-wrapper {
  display: flex;
  flex: 1;
  border-radius: 20px;
  background-color: #39394b;
  padding: 0.5rem;
}

div.site-container-wrapper .site-container .svg-wrapper {
  position: absolute;
}

div.site-container-wrapper .site-container {
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #0a0a23;
}

div.site-container-wrapper .level-container-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}

div.site-container-wrapper .level-container {
  width: 100%;
  height: 100%;
}

div.site-container-wrapper .level {
  width: 150px;
  height: auto;
  left: 20px;
}

div.site-container-wrapper .chart-container {
  margin-top: auto;
  width: 70%;
  height: 90%;
}

div.site-container-wrapper .chart {
  background-color: transparent;
  border-radius: 20px;
  padding: 5px;
}

div.site-container-wrapper .tower-container {
  z-index: 100;
  top: 10px;
}

div.site-container-wrapper .tower {
  width: 190px;
}

div.site-container-wrapper .price-text {
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
  margin-top: 4px;
  font-size: 25px;
}

@media (max-width: 991px) {
  div.site-container-wrapper .chart-container {
    width: 80%;
  }
}

@media (max-width: 767px) {
  div.site-container-wrapper .chart-container {
    width: 70%;
  }
}

@media (max-width: 425px) {
  div.site-container-wrapper .chart-container {
    width: 60%;
  }
}


/* Revolving Logo */
span.align-center {
  position: absolute;
  top: 90px;
  left: 95px;
}

@keyframes rotating {
  0% {
      -moz-transform: -moz-perspective(1000px) rotateY(360deg) rotateX(15deg);
      transform: perspective(1000px) rotateY(360deg) rotateX(15deg);
  }

  100% {
      -moz-transform: -moz-perspective(1000px) rotateY(0deg) rotateX(15deg);
      transform: perspective(1000px) rotateY(0deg) rotateX(15deg);
  }
}

span.word {
  font-family: 'Minecart LCD', monospaced;
  color: rgb(220, 217, 255, .8);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transform-origin: center;
  animation: 20s rotating linear infinite;
  display: block;
}

span.char {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.0);
  font-size: 1.5em;
  border: none;
  transform: rotateY(calc(var(--char-index) * 20deg)) translateZ(80px);
}

/* Logo animation */

.btn-primary {
  border-radius: 8px;
  background-color: #6254ff;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #4a3fcc;
  opacity: 1;
}

.btn-secondary {
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 8px;
  background-color: transparent;
}

.btn-secondary:hover {
  border-color: #4a3fcc;
  background-color: #6254ff;
}

.button-custom {
  padding: 20px 50px;
  line-height: 20px;
  text-align: center;
  -webkit-transition: border-color 350ms ease, background-color 350ms ease, -webkit-transform 350ms ease;
  transition: border-color 350ms ease, background-color 350ms ease, -webkit-transform 350ms ease;
}

.button-custom:hover {
  color: #fff;
}

.login-btn {
  margin-right: 24px;
}

.header-buttons-wrapper .button-custom {
  padding: 16px 34px;
  font-size: 16px;
  line-height: 18px;
  display: inline-flex;
}

.section:first-of-type {
  opacity: 1;
}

.utility-section {
  /* !important overrides min-height in .section */
  min-height: calc(100vh - 100px) !important;
}

.section {
  padding-bottom: 100px;
  overflow: hidden;
  opacity: 0;
  transition: ease 2s;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.buttons-wrapper a:first-child {
  margin-right: 28px;
}

.one-button-wrapper {
  margin-top: 30px;
  text-align: center;
}

.one-button-wrapper a {
  display: inline-flex;
}

.buttons-wrapper a {
  display: inline-flex;
}

.card {
  overflow: hidden;
  border-radius: 20px;
  background-color: #39394b;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #767887;
}

.container-medium {
  max-width: 628px;
  margin-bottom: 50px;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown:hover i {
  transform: rotate(180deg);
  transition: ease 0.2s;
}

.dropdown:hover .dropdown-list {
  display: block;
}

.dropdown-opened i {
  transform: rotate(180deg);
  transition: ease 0.2s;
}

.dropdown-list {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 35px;
}

.dropdown-list ul {
  padding: 20px;
  background: #39394b;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 9px 15px 0 rgb(0 0 0 / 25%);
}

.dropdown-list li:hover {
  -webkit-transform: translate(6px, 0px);
  -ms-transform: translate(6px, 0px);
  transform: translate(6px, 0px);
}

.dropdown-list li {
  transition: ease 0.2s;
}

.dropdown-list li:hover a {
  color: #6254ff;
}

ul.list-disc,
ol.list-decimal {
  padding-left: 40px;
}

ul.list-disc li,
ol.list-decimal li {
  margin-bottom: 15px;
}

/*Mobile menu Start*/

.btn-menu {
  z-index: 999;
  overflow: hidden;
  width: 52px;
  height: 52px;
  min-width: 52px;
  padding: 0px;
  border-radius: 1000px;
  background-color: #6254ff;
  -webkit-transition: background-color 350ms ease;
  transition: background-color 350ms ease;
  color: #fff;
  font-size: 30px;
  margin-left: 24px;
  position: relative;
}

.menu-button-wrapper {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 12px;
  padding-left: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-button-icon {
  display: flex;
  width: 100%;
  height: 20px;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  justify-content: space-between;
}

.menu-line-top {
  max-height: 2px;
  min-height: 2px;
  padding: 0px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  background-color: #fff;
  transition: ease 0.5s;
}

.menu-opened .menu-line-top {
  transform: translate3d(0px, 9px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(38deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.menu-opened .menu-line-middle {
  opacity: 0;
}

.menu-opened .menu-line-bottom {
  transform: translate3d(0px, -9px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(138deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.menu-line-middle, .menu-line-bottom {
  max-height: 2px;
  min-height: 2px;
  padding: 0px;
  background-color: #fff;
  transition: ease 0.5s;
}

.nav-item-hidden {
  display: none;
}

@media screen and (min-width: 991px) {
  .btn-menu {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  nav.header-nav {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 100vh;
    width: 100%;
    background: #222131;
    padding-top: 80px;
  }
  .header-nav ul {
    flex-direction: column;
    padding: 0 20px;
  }
  .header-nav ul li {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .nav-item-hidden {
    display: block;
    margin-top: 10vh;
  }
  .header-nav .dropdown-list {
    position: relative;
    background: unset;
    top: unset;
    left: unset;
    padding: 0;
    margin-top: 10px;
  }
  .header-nav .dropdown-list ul {
    background: unset;
    box-shadow: unset;
  }
  .header-logo {
    z-index: 5;
  }
  .header-expanded {
    min-height: 100vh;
    overflow-y: auto;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .header-buttons-wrapper {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav-item-hidden a {
    display: block;
    width: 100%;
  }
}

@media (max-width: 479px) {
  h2 {
    font-size: 29px;
  }
}

/*Mobile menu END*/

.pt-section {
  padding-top: 120px;
}

@media (max-width: 1199px) {
  .header-nav ul li {
    margin-right: 22px;
  }
}

@media screen and (max-width: 991px) {
  .pt-section {
    padding-top: 100px;
  }
  .section {
    padding-bottom: 160px;
  }
  .utility-section {
    min-height: calc(100vh - 160px) !important;
  }
  .container-default {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 16px;
    font-size: 42px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 35px;
  }
  .buttons-wrapper a {
    display: block;
  }
  .buttons-wrapper a:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .container-default {
    padding: 0 16px;
  }
  .pt-section {
    padding-top: 100px;
  }
  .section {
    padding-bottom: 100px;
  }
  .utility-section {
    min-height: calc(100vh - 100px) !important;
  }
}



/*HOME HERO SECTION*/

.home-hero {
  padding-top: 100px;
  position: relative;
}

.home-hero-left {
  width:     560px;
  min-width: 300px;
  max-width: 620px;
  margin-right: 20px;
}

.home-hero-right {
  display:   flex;
  width:     560px;
  height:    460px;
  max-width: 75%;
  min-width: 300px;
  border-radius: 18px;
  box-shadow: 0 70px 78px 0 rgb(10 10 12 / 39%);
}

.home-hero .buttons-wrapper {
  margin: 42px 0 60px;
}

.home-hero-companies img {
  max-width: 180px;
}

.to-section {
  width: 100%;
  bottom: 10px;
  left: 0;
  text-align: center;
}

.home-hero .level-container {
  z-index: 3;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .home-hero-left {
    max-width: 30%;
  }
  .home-hero-left h1 {
    font-size: 48px;
  }
  .home-hero .buttons-wrapper {
    margin-bottom: 0;
  }
  .home-hero .buttons-wrapper a {
    margin-bottom: 10px;
  }
  .home-hero div.site-container-wrapper, .home-hero .site-container {
    max-width: 100%;
  }
  .home-hero .container-default .flex.w-full {
    justify-content: flex-start;
  }
  .home-hero-right {
    margin-left: 15px;
    transform: scale(0.95);
  }
}

@media (max-width: 991px) {
  .home-hero .container-default {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-hero .container-default .flex.w-full {
    flex-direction: column;
  }
  .home-hero-left {
    min-width: unset;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .home-hero-right {
    min-width: unset;
    width: 100%;
    margin-right: 0;
    max-width: 100%;
    margin-top: 60px;
  }
  .home-hero-right .site-container-wrapper {
    margin: 0 auto;
  }
  .home-hero-companies .flex {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .home-hero-companies .flex a:not(:last-child) {
    margin-bottom: 20px;
  }
  .home-hero-right {
    overflow-x: hidden;
    overflow-y: hidden;
  }
}

@media (max-width: 580px) {
  .home-hero-left .buttons-wrapper a {
    width: 100%;
    margin: 0;
    text-align: center;
    margin-top: 10px;
    display: block;
  }
}

/* WHY LEMAX */
.why-icon {
  color: #6254ff;
}

/* ABOUT US */

.about-body {
  margin-top: 30px;
}

.about-icon {
  color: #6254ff;
}

.split-50 {
  width: 50%;
}

.about-left ul li {
  display: flex;
  align-items: center;
}

.about-right ul li i {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}


@media (max-width: 991px) {
  .split-content {
    flex-direction: column;
  }
  .split-50 {
    width: 100%;
  }
  .split-50:first-child {
    margin-bottom: 20px;
  }
}

/* DEMO */

.demo {
  overflow: unset;
}

.demo-body {
  padding-top: 40px;
}

.demo-card {
  padding: 30px 30px;
}

.demo-left {
  position: sticky;
  top: 80px;
}
.demo-left img {
  margin: 0 auto;
  border-radius: 20px;
}

.demo .input-wrapper input:not(.button-custom):not(.regular-checkbox) {
  height: 40px;
}

.demo .input-wrapper label {
  margin-bottom: 5px;
}

.demo-form {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-row-gap: 10px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.demo .one-button-wrapper {
  margin-top: 10px;
}

.demo-right {
  width: 45%;
  margin: 0 auto;
}

.radio-wrapper input {
  margin-right: 10px;
}

.radio-wrapper label {
  margin-bottom: 0;
}

.input-wrapper .btn-primary {
  border-radius: 8px;
  background-color: #6254ff;
  border-color: #6254ff;
}

.input-wrapper .btn-primary:hover {
  border-color: #4a3fcc;;
  background-color: #4a3fcc;;
}

@media (max-width: 991px) {
  .demo-left {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
  .demo-left img {
    margin: 0 auto;
  }
  .demo-right {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .demo-card {
    padding: 40px 20px;
  }
}

/* FAQ */

.faq p.faq-item {
  padding: 0 0 0 20px;
  margin: 0;
}

.faq .list-disc,
.faq .faq-item {
  max-height: 0;
  transition: max-height .3s;
  visibility: hidden;
}

.faq .faq-expanded h3 span {
  color: #c5c0ff;
  transition: ease 0.2s;
}

.faq h3 i {
  transition: ease 0.2s;
  background-color: #6254ff;
  padding: 5px 10px 5px 12px;
  border-radius: 8px;
}

.faq .faq-expanded h3 i {
  transform: rotate(90deg);
  background-color: #4a3fcc;;
}

.faq .faq-expanded ul,
.faq .faq-expanded p {
  max-height: 1500px;
  margin-top: 20px;
  visibility: visible;
}

.faq h3 {
  margin: 0;
  font-size: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq h3 span {
  max-width: 90%;
}

.faq .card {
  margin-bottom: 20px;
  padding: 39px 37px 44px 44px;
  border-radius: 24px;
  width: 97%;
  cursor: pointer;
}

.faq .card:hover span {
  color: #c5c0ff;
}

.faq .card:hover i {
  background-color: #4a3fcc;
}

.faq-body {
  display: flex;
  justify-content: space-between;

}

@media (max-width: 991px) {
  .faq .card {
    width: 100%;
    padding: 28px 20px 30px;
    border-radius: 10px;
  }
  .faq h3 span {
    max-width: 85%;
  }
}



/* FEATURES */

.feature-card {
  padding: 40px 24px;
  border-radius: 24px;
  text-align: center;
}

.features-body {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin-bottom: 48px;
}

.feature-content {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .features-body {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .features-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

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

  .feature-card img {
    margin: unset;
  }

  .features .buttons-wrapper {
    text-align: left;
  }
}

/* ADVANTAGES */

.advantages {
  padding-top: 180px;
  overflow: unset;
}

.advantages-head {
  max-width: 780px;
  text-align: center;
  margin-bottom: 120px;
}

.advantages-left {
  max-width: 441px;
  margin-right: 40px;
  display: grid;
  grid-row-gap: 80px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.advantages-right  {
  max-width: 56%;
  border-radius: 28px;
  box-shadow: 0 110px 122px 0 rgb(10 10 12 / 39%);
  position: sticky;
  top: 20px;
}

.advantage-wrapper img {
  margin-bottom: 22px;
}

@media (max-width: 991px) {
  .advantages {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .advantages-left {
    grid-row-gap: 40px;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .advantages-right {
    max-width: 100%;
  }
  .advantages-body {
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .advantages {
    padding-top: 100px;
  }
}


/* READY BLOCK */

.ready h2 {
  max-width: 42%;
}

.ready-wrapper {
  padding: 108px 70px;
}

@media (max-width: 991px) {
  .ready-wrapper {
    flex-direction: column;
    padding: 100px 60px;
  }

  .ready h2 {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .ready-wrapper {
    padding: 80px 15px;
  }
}

@media (max-width: 479px) {
  .buttons-wrapper {
    width: 100%;
  }
}

/* INTEGRATIONS */

.integration-card {
  height: 100%;
  padding: 36px 32px 46px;
  border-radius: 24px;
  color: #e1e1e7;
  text-decoration: none;
}

.integration-top {
  display: flex;
  margin-bottom: 7px;
}

.integration-image {
  width: 88px;
  height: 88px;
  min-width: 88px;
  margin-right: 22px;
  margin-bottom: 10px;
  border-radius: 24px;
  overflow: hidden;
}

.badge {
  padding: 12px 20px;
  border-radius: 8px;
  background-color: #6254ff;
  color: #fff;
  font-size: 14px;
  line-height: 1.143em;
  font-weight: 700;
}

.integration-name h3 {
  margin-bottom: 11px;
}

.card-more {
  display: block;
  color: #fff;
  line-height: 1.111em;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 32px;
}

.integrations-body {
  display: -ms-grid;
  display: grid;
  margin-bottom: 66px;
  grid-auto-columns: 1fr;
  grid-column-gap: 29px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

@media (max-width: 991px) {
  .integrations-body {
    margin-bottom: 60px;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* TEAMS */

.tabs-left {
  max-width: 470px;
  margin-right: 40px;
}

.tabs-right {
  max-width: 659px;
}

.tab-link {
  padding: 16px 0px 16px 24px;
  border-left: 4px solid transparent;
  opacity: 0.5;
  color: #fff;
}

.tab-link-active {
  opacity: 1;
  border-left-color: #6254ff;
}

.tab-link:hover {
  opacity: 1;
  color: #fff;
}

.tab-content {
  display: none;
  border-radius: 24px;
  /*box-shadow: 0 94px 104px 0 rgb(10 10 12 / 39%);*/
}

.tab-content img {
  border-radius: 24px;
}

.tab-active.tab-content {
  display: block;
}










/* BLOG */

.blog {
  padding-top: 180px;
}

.blog-top {
  margin-bottom: 40px;
}

.blog-top-left {
  max-width: 481px;
}

.article-featured-content {
  padding: 35px 42px 35px 46px;
  max-width: 540px;
}

.article-featured .badge {
  margin-right: 20px;
}

img.author-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  margin-right: 15px;
  border-radius: 1000px;
}

.blog-middle {
  margin-bottom: 45px;
}

.article-featured-description {
  margin-bottom: 20px;
}

.article-author-name {
  color: #fff;
  font-size: 20px;
  line-height: 1.1em;
  font-weight: 700;
}

.blog-middle .article-featured-image {
  max-width: 653px;
}
.blog-middle .article-featured-image img, .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}


.blog-bottom {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 28px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.article-content {
  padding: 32px 20px 33px;
}

.article-author {
  margin-right: 10px;
}

.article-info {
  padding: 29px 20px 24px;
  border-top: 1px solid #767887;
}

@media (max-width: 991px) {
  .blog {
    padding-top: 160px;
  }
  .blog-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-top .button-custom {
    margin-top: 40px;
  }
  .blog-bottom {
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .article {
    flex-direction: row;
  }
  .article-image {
    max-width: 40%;
  }
  .article-content-wrapper {
    max-width: 60%;
  }
  .article-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .article-featured {
    flex-direction: column;
  }
  .blog-middle .article-featured-content, .blog-middle .article-featured-image {
    max-width: 100%;
  }
  .article {
    flex-direction: column;
  }
  .article-image {
    max-width: 100%;
  }
  .article-content-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 479px) {
  .blog {
    padding-top: 100px;
  }
}

/* READY GREY FULLL WIDTH */

.ready-full {
  padding-top: 68px;
  padding-bottom: 68px;
  background-color: #39394b;
}

.ready-full-left {
  max-width: 415px;
}

.ready-full-left h2 {
  margin-bottom: 40px;
}

.ready-full-right {
  max-width: 67%;
  margin-right: -160px;
  border-radius: 28px;
  box-shadow: 0 9px 15px 0 rgb(0 0 0 / 25%);
}

@media (max-width: 991px) {
  .ready-full-wrapper {
    flex-direction: column;
  }
  .ready-full-left {
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .ready-full-right {
    max-width: 100%;
    margin: 0;
  }
}

/* FOOTER */

footer {
  padding: 40px 0;
}

.footer-bottom {
  border-top: 1px solid #767887;
  padding-top: 20px;
}



/* UTILITY PAGES */

.utility-title {
  padding-top: 40px;
}

.utility-content {
  max-width: 635px;
  padding: 0px 24px 24px 24px;
}

.utility-card {
  padding: 72px 61px;
  border-radius: 24px;
  text-align: center;
}

.utility-card h1 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.118em;
}

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

.utility-form {
  padding-top: 25px;
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

/*CUSTOM CHECKBOX*/

.utility-checkbox-wrapper {
  margin-top: 15px;
  position: relative;
  display: flex;
  align-items: top;
  text-align: justify;
}

.custom-checkbox {
  display: inline-block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 0px;
  margin-right: 10px;
  margin-left: 0px;
  border: 1px solid #e1e1e7;
  border-radius: 5px;
  -webkit-transition: border-color 350ms ease, background-color 350ms ease;
  transition: border-color 350ms ease, background-color 350ms ease;
  cursor: pointer;
}

.custom-checkbox:hover {
  border-color: #6254ff;
}

/*
.utility-checkbox-wrapper label {
  margin-bottom: 0;
}

.utility-checkbox-wrapper input {
  opacity: 0;
  height: 0;
  position: absolute;
  z-index: -1;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}

input[type=checkbox]:checked ~ .custom-checkbox {
  border-color: #6254ff;
  background-color: #6254ff;
  background-image: url(../images/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
}
*/

input[type=checkbox],
.regular-checkbox {
  height:       20px;
  margin-top:    0px;
  margin-right: 10px;
}

input:invalid {
  border-color: red;
}

/* INPUT FIELDS */

.radio-wrapper,
.input-wrapper   label,
.utility-content label,
.utility-form    label
{
  display: block;
  margin-bottom: 2px;
  color: #fff;
  line-height: 1.111em;
  font-weight: 700;
}

.input-wrapper   input:not(.regular-checkbox):not(.button-custom),
.utility-content input:not(.regular-checkbox):not(.button-custom),
.utility-form    input:not(.regular-checkbox):not(.button-custom)
{
  height: 65px;
  width: 100%;
  margin-bottom: 0px;
  padding-right: 21px;
  padding-left: 21px;
  border-style: solid;
  border-width: 1px;
  border-color: #767887;
  border-radius: 12px;
  background-color: #39394b;
  -webkit-transition: border-color 350ms ease, color 350ms ease;
  transition: border-color 350ms ease, color 350ms ease;
  color: #fff;
  font-size: 18px;
  outline: none;
}

.input-wrapper input:hover, .input-wrapper input:focus {
  border-color: #eff0f6;
}

.utility-page-footer {
  padding: 31px 0;
  border-top: 1px solid #39394b;
  text-align: center;
}

.utility-left {
  max-width: 40%;
  margin-right: 40px;
  text-align: left;
}

.utility-right {
  max-width: 60%;
  text-align: left;
}

.utility-right p, .utility-right ol {
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .utility-split-content {
    flex-direction: column;
  }
  .utility-left {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
    max-width: unset;
  }

  .utility-right {
    width: 100%;
    max-width: unset;
  }
}

@media (max-width: 767px) {
  .utility-content {
    padding: 20px 0;
  }
  .utility-card {
    padding: 42px 20px;
    border-radius: 10px;
  }
}


@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* DASHBOARD */

.dashboard-wrapper {
  width: 100%;
}

.dashboard-card {
  padding: 20px;
  margin-bottom: 20px;
}

.dashboard-split-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.dashboard-left {
  width: 60%;
  flex-basis: 60%;
  margin-right: 20px;
}

.dashboard-left canvas {
  height: 175px !important;
}

.dashboard-left .split-50 canvas {
  width: auto !important;
}

.dashboard-right {
  width: 40%;
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.dashboard-right .divider, .dashboard-right .dashboard-right-bottom {
  margin-top: auto;
}

.stats .stats-digits {
  font-size: 35px;
}

.stats-growth {
  font-size: 14px;
}

.stats-up {
  color: #6254ff;
}

.stats-down {
  color: #888;
}

/* Mobile devices
@media only screen and (pointer: coarse) {
  #logo-circle {
    display: none;
  }
}
*/

/* Other screen sizes */

@media (max-width: 991px) {
  .dashboard-split-content {
    flex-direction: column;
  }
  .dashboard-left, .dashboard-right {
    width: 100%;
  }
  .dashboard-right .divider, .dashboard-right .dashboard-right-bottom {
    margin-top: 50px;
  }
}

@media (max-width: 599px) {
  .stats {
    flex-wrap: wrap;
  }
  .stats-entity {
    width: 50%;
  }
  .stats-digits {
    font-size: 30px;
  }
}


/* Overview */

.overview-wrapper {
  display: none;
}


/* 404 */

.error-wrapper {
  position: relative;
  max-width: 340px;
}

.error-title {
  position: absolute;
  top: -60%;
  left: -65%;
  color: hsla(0, 0%, 100%, 0.05);
  font-size: 433px;
  line-height: 1.025em;
  font-weight: 700;
  z-index: -1;
}

.error-content h1 {
  margin-bottom: 10px;
  font-size: 42px;
  line-height: 1.19em;
}

.error-content p {
  color: #abadbf;
  font-size: 27px;
  line-height: 1.333em;
}

@media (max-width: 991px) {
  .error-title {
    font-size: 300px;
    top: -22%;
    left: -33%;
  }
}

/*401*/

.protected-img {
  border-radius: 100%;
  background: #6254ff;
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

/* CONTACT */

.contact .input-wrapper input:not(.button-custom):not(.regular-checkbox) {
  height: 40px;
  border-radius: 8px;
}

.contact .input-wrapper label {
  margin-bottom: 5px;
}

.contact-card {
  padding: 20px 30px;
}

.contact-left {
  padding-right: 3%;
}

.contact-form {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-row-gap: 10px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.text-area {
  max-height: 180px;
  max-width: 100%;
  min-height: 130px;
  min-width: 100%;
  margin-bottom: 0px;
  padding: 18px 21px;
  border-style: solid;
  border-width: 1px;
  border-color: #767887;
  border-radius: 12px;
  background-color: #39394b;
  -webkit-transition: border-color 350ms ease, color 350ms ease;
  transition: border-color 350ms ease, color 350ms ease;
  color: #fff;
  font-size: 18px;
}

/* Image of people */
div .img-circle {
  display: block;
  width: 150px;
  height: 150px;
  margin: 1em auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-border-radius: 99em;
  -moz-border-radius: 99em;
  border-radius: 99em;
  border: 5px solid rgb(84, 69, 255, .6);
  box-shadow: 0 5px 5px rgb(0 0 0 / 30%);
}

/* Modal box */
.modal {
  overflow-x: hidden;
  overflow-y: auto;
  z-index:    10;
  border-radius: 20px;
  background-color: #39394b;
  box-shadow: 0 9px 15px 0 rgb(0 0 0 / 25%);
}
