@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
html,
body {
  height: 100%;
}
body {
  font-family: "Roboto", sans-serif;
  color: #1d1d1d;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
}
a {
  color: #1d1d1d;
  text-decoration: none;
}
a:hover {
  color: #fedd2c;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section {
  padding: 100px 0px 0px 0px;
}
.mw-150 {
  max-width: 150px;
}
.p-r-0 {
  padding-right: 0;
}
.p-l-0 {
  padding-left: 0;
}
.m-t-m-15 {
  margin-top: -15px;
}
.m-r-15 {
  margin-right: 15px;
}
.m-t-15 {
  margin-top: 15px;
}
.m-b-15 {
  margin-bottom: 15px;
}
.m-t-30 {
  margin-top: 30px;
}
.m-b-30 {
  margin-bottom: 30px;
}
.m-b-50 {
  margin-bottom: 50px;
}
.fw-100 {
  font-weight: 100;
}
.btn-outline {
  color: #1d1d1d;
  border-color: #1d1d1d;
  font-weight: 500;
}
.btn-yellow {
  background-color: #fee005;
  border-color: #fee005;
  color: #1d1d1d;
  font-weight: 500;
}
.btn-yellow:hover,
.btn-outline:hover {
  background-color: #1d1d1d;
  border-color: #1d1d1d;
  color: #fee005;
  box-shadow: none !important;
}
.btn-yellow:active,
.btn-yellow:focus,
.btn-outline:active,
.btn-outline:focus {
  box-shadow: none !important;
}
.heading {
  font-size: 36px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 30px;
}
.sub-heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 15px;
}
ul.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.bullet-list li {
  font-size: 21px;
  line-height: normal;
  padding: 6px 0 6px 30px;
  margin-bottom: 6px;
  background: url(../images/bullet-pointer.svg) 0px 12px no-repeat;
  word-wrap: break-word;
}
#goTop {
  background-color: rgba(255, 255, 255, 0.2);
  border: solid 1px #ccc;
  color: #fff;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  text-align: center;
  padding-top: 8px;
  transition: all 0.5s;
  border-radius: 8px;
  display: none;
  z-index: 999;
}
#goTop:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
/* Header */
header {
  transition: all 0.5s;
  box-shadow: 0 0 5px rgb(0 0 0 / 11%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: fadeInDown 0.75s ease-in-out 4.5s both;
  -webkit-animation: fadeInDown 0.75s ease-in-out 4.5s both;
}
.navbar {
  padding-top: 0;
  padding-bottom: 0;
}
.bg-light {
  background-color: #fff !important;
}
.navbar-light .navbar-brand {
  width: 150px;
  margin-right: 0px;
}
.navbar-expand-lg .navbar-nav {
  margin: 0;
  margin-left: auto !important;
  margin-right: auto !important;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-left: 1.8rem;
  margin-right: 1.8rem;
  font-size: 17px;
  color: #1d1d1d;
  font-weight: 300;
  position: relative;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .show > .nav-link {
  color: #1d1d1d;
}
.navbar-nav li:hover .nav-link::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 30px);
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.navbar-nav li .nav-link::after {
  bottom: 0px;
  left: 0px;
  height: 2px;
  content: "";
  left: 15px;
  background: #fee005;
  width: 0;
  position: absolute;
}

/* Hero Banner */
.hero-banner {
  background: #070707;
  background-size: 100%;
  width: 100%;
  height: 100vh;
  height: 100%;
  position: relative;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  overflow: hidden;
}
.hero-banner-bg {
  background: url("../images/hero-bg.svg") center bottom no-repeat #070707;
  background-size: 100%;
  width: 100%;
  height: 100vh;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: fadeIn 1.5s ease-in-out 3.9s both;
  -webkit-animation: fadeIn 1.5s ease-in-out 3.9s both;
}
.intro-logo {
  position: absolute;
  max-width: 500px;
  margin-left: -250px;
  left: 50%;
  top: 35%;
  z-index: 99;
  opacity: 0;
  animation: introLogoAnimation 2s ease-in-out;
}
@-webkit-keyframes introLogoAnimation {
  0% {
    transform: scale(0, 0);
    opacity: 0;
  }
  75% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes introLogoAnimation {
  0% {
    transform: scale(0, 0);
    opacity: 0;
  }
  75% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.hero-banner h1 {
  color: #fff;
  font-size: 46px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  animation: fadeInUp 0.75s ease-in-out 3.5s both;
  -webkit-animation: fadeInUp 0.75s ease-in-out 3.5s both;
}
.hero-banner h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 100;
  text-align: center;
  line-height: normal;
  animation: fadeInDown 0.75s ease-in-out 3.2s both;
  -webkit-animation: fadeInDown 0.75s ease-in-out 3.2s both;
}
.hero-banner h1 b {
  color: #fedd2c;
  font-weight: 500;
}
.hero-banner figure {
  text-align: center;
}
.hero-banner figure img {
  max-width: 420px;
  margin: 0 auto;
}
.hero-banner .content {
  position: relative;
  z-index: 3;
}

.hero-banner .pro_img {
  animation: productAnimation 3s ease-in-out;
}
.move-down {
  position: absolute;
  width: 50px;
  text-align: center;
  left: 50%;
  bottom: 15px;
  z-index: 5;
  animation: moveAnimation 1s ease-out;
  animation-iteration-count: infinite;
  animation-delay: 6s;
  opacity: 0;
  margin-left: -25px;
}

@keyframes moveAnimation {
  0% {
    bottom: 15px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 5px;
    opacity: 0;
  }
}

@-webkit-keyframes productAnimation {
  0% {
    max-width: 100%;
    filter: blur(20px);
    opacity: 0;
  }
  50% {
    max-width: 100%;
    opacity: 1;
  }
  100% {
    max-width: 420px;
    filter: blur(0px);
  }
}
@keyframes productAnimation {
  0% {
    max-width: 100%;
    filter: blur(20px);
    opacity: 0;
  }
  50% {
    max-width: 100%;
    opacity: 1;
  }
  100% {
    max-width: 420px;
    filter: blur(0px);
  }
}

@keyframes productBgAnimation {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
    filter: blur(10px);
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@-webkit-keyframes productBgAnimation {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
    filter: blur(10px);
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
/* Innovating */
.innovating {
  background: #fffce8;
  border-radius: 20px;
  padding: 3.5rem 3.5rem;
}
.innovating .app-items {
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  padding: 15px 10px 10px 10px;
  border-radius: 4px;
  text-align: center;
  min-height: 188px;
  word-break: break-word;
}
.innovating .app-items h4 {
  font-size: 16px;
}

/* Architecture */
.architecture {
  background: #e6f6ff;
  border-radius: 20px;
  padding: 3.5rem 3.5rem;
}

/* Features */
.features {
  background: #f7f7f9;
  border-radius: 20px;
  padding: 3.5rem 3.5rem 1.6rem;
}
.dask_das {
  position: relative;
  z-index: 1;
}
.mobile_dash {
  position: absolute;
  z-index: 0;
  left: -114px;
  bottom: 92px;
  width: 260px;
}
.features.p-r-0 {
  padding-right: 0;
}

/* Start Capturing */
.start-capturing {
  position: relative;
  overflow: hidden;
  background: #fffce8;
  border-radius: 20px;
  padding: 3.5rem 3.5rem;
}
.start-capturing > div.row {
  position: relative;
  z-index: 5;
}
.start-capturing aside {
  width: 100%;
  display: flex;
  height: 100%;
  justify-content: right;
  align-items: center;
  position: relative;
  z-index: 2;
}

.start-capturing aside ul {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.start-capturing aside ul li {
  margin-bottom: 2.3rem;
  font-size: 1.4rem;
  color: #1d1d1f;
}
.start-capturing aside ul li img {
  padding-right: 0.8rem;
  width: 2.2rem;
}
.glow_box {
  display: block;
  position: absolute;
  bottom: -42%;
  right: -120px;
  z-index: 1;
  width: 800px;
  height: 100%;
}

/* Specifications */
.specifications {
  background: url(../images/bg_black.svg) top right no-repeat #000000;
  padding: 3.5rem 3.5rem;
  border-radius: 20px;
  background-size: contain;
  color: #fff;
}
.specifications ul.bullet-list li {
  color: #fff;
}

/* Pricing */
#pricing {
  background-color: #f5f5f7;
  padding-bottom: 50px;
}
.price-box {
  padding: 25px;
  background-color: #fff;
  border-radius: 8px;
  border: solid 1px #ccc;
  font-size: 21px;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  transition: all 0.5s;
}
.price-box h2 {
  font-weight: 500;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.price-box small {
  font-size: 16px;
}
.price-box .table td {
  border-bottom: none;
  padding: 1rem 0.5rem;
}
.price-box.active {
  transform: scale(1.1);
  transition: all 0.5s;
}

/* FAQ */
.accordion-item {
  border: 0;
}
.accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.accordion-item h2 {
  margin-bottom: 0;
}
.accordion-button {
  font-size: 18px;
  padding: 1rem;
  color: #1d1d1f;
  border: none;
  width: 100%;
  text-align: left;
  background-color: #fff;
  border-radius: 0px;
  cursor: pointer;
  position: relative;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  position: absolute;
  right: 15px;
  top: 15px;
}
.accordion-button:focus {
  border: none !important;
  outline: none !important;
}
.accordion-body {
  margin-bottom: 15px;
  padding: 1rem;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button:not(.collapsed) {
  color: #1d1d1d;
  background-color: #fff;
  box-shadow: none !important;
  font-weight: 500;
  border: none;
  width: 100%;
  text-align: left;
}
.accordion-button:focus {
  box-shadow: none !important;
}

/* Buy DTC */
#buy-dtc {
  background: #f5f5f7;
  padding: 6rem 0;
  text-align: center;
}

/* Footer */
footer {
  padding: 75px 0px 50px 0px;
  background: url(../images/anders-jilden-yb0Qs65aZmc-unsplash.png) no-repeat
    center 400px fixed;
  background-size: 100%;
}
footer h3 {
  font-size: 21px;
  font-weight: 500;
  margin: 20px 0 30px 0;
}
footer p {
  margin: 0 0 10px 0;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  margin-bottom: 15px;
}
footer ul li a,
footer a {
  color: #1d1d1d;
  text-decoration: none;
}
footer ul li a img {
  margin-right: 8px;
}
footer ul li a:hover,
footer a:hover {
  color: rgb(29 29 31 / 75%);
  text-decoration: none;
}
footer .copyright {
  padding-top: 15px;
  border-top: solid 1px #999;
}
.modal-header {
  background-color: #fedd2c;
}
.modal-title {
  color: #1d1d1d;
  font-weight: 500;
  font-size: 21px;
}
.form-control {
  border-radius: 2px;
  padding: 8px 15px;
}
.form-control:focus {
  box-shadow: none !important;
}
.contact-info-box {
  margin-bottom: 15px;
  position: relative;
  padding: 10px;
  padding-left: 50px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 20px 0 rgb(32 32 32 / 11%);
  box-shadow: 0 1px 20px 0 rgb(32 32 32 / 11%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-info-box svg {
  color: #fedd2c;
  position: absolute;
  left: 20px;
  top: 10px;
  max-width: 20px;
  max-height: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-info-box h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-info-box ul li {
  display: block;
  margin-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .innovating .app-items {
    min-height: 210px;
  }
  .mobile_dash {
    max-width: 200px;
    left: -100px;
    bottom: 80px;
  }
  footer {
    background: url(../images/anders-jilden-yb0Qs65aZmc-unsplash.png) no-repeat
      center 200px fixed;
    background-size: 100%;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0rem;
    margin-right: 0rem;
    padding-right: 0;
    padding-left: 0;
  }
  .navbar-toggler:focus {
    box-shadow: none !important;
  }
  .navbar-nav li .nav-link::after {
    left: 0;
  }
  .xs-mb-3 {
    margin-bottom: 1rem;
  }
  .specifications {
    background-position: bottom;
  }
  .start-capturing aside {
    justify-content: left;
    margin-top: 15px;
  }
  .price-box {
    margin-bottom: 15px;
  }
  .price-box.active {
    transform: scale(1);
  }
  .features .position-relative {
    min-height: 420px;
  }
  .dask_das {
    max-width: 480px;
    float: right;
  }
  .mobile_dash {
    max-width: 280px;
    left: 40px;
    bottom: -90px;
  }
  .specifications {
    background-size: cover;
  }
  .xs-m-t-30 {
    margin-top: 30px;
  }
  footer {
    background: url(../images/anders-jilden-yb0Qs65aZmc-unsplash.png) no-repeat
      center 200px fixed;
  }
  .hero-banner h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .innovating .app-items {
    min-height: 190px;
  }
  #pricing {
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0px 0px 0px;
  }
  .heading {
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .sub-heading {
    font-size: 21px;
    line-height: 24px;
  }
  .m-b-50 {
    margin-bottom: 15px;
  }

  .innovating,
  .architecture,
  .features,
  .start-capturing,
  .specifications {
    padding: 30px;
  }
  .features.p-r-0 {
    padding-right: 0.75rem;
  }
  .innovating .app-items {
    min-height: auto;
    margin-bottom: 15px;
    padding: 10px 5px;
  }
  .xs-m-t-30 {
    margin-top: 30px;
  }
  .p-r-0 {
    padding-right: 12px;
  }
  .p-l-0 {
    padding-left: 12px;
  }
  #pricing {
    padding-bottom: 30px;
  }

  .price-box {
    margin-bottom: 15px;
    padding: 10px;
  }
  .price-box.price-box.active {
    transform: scale(1);
  }
  .glow_box {
    left: 30%;
  }
  .start-capturing aside {
    justify-content: left;
  }
  .specifications {
    background: url(../images/bg_black.svg) bottom right no-repeat #000000;
  }
  ul.bullet-list li {
    line-height: normal;
    margin-bottom: 15px;
  }

  #buy-dtc {
    margin-top: 30px;
    padding: 30px 0;
  }
  footer {
    padding: 15px 0px;
    background-size: contain;
    background-position: bottom;
  }
  .xs-text-center {
    text-align: center !important;
  }

  .intro-logo {
    max-width: 250px !important;
    margin-left: -125px;
    padding: 0px !important;
  }

  @keyframes introLogoAnimation {
    0% {
      transform: scale(0, 0);
      opacity: 0;
    }
    75% {
      transform: scale(1, 1);
      opacity: 1;
    }
    100% {
      transform: scale(1.2, 1.2);
      opacity: 0;
    }
  }
  .m-b-30 {
    margin-bottom: 20px;
  }
  .hero-banner h1 {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
  }
  .m-r-15 {
    margin-right: 0px;
  }
  .xs-p-r-0 {
    padding-right: 0;
  }
  .features .position-relative {
    min-height: 320px;
  }
  .dask_das {
    max-width: 270px;
    float: right;
  }
  .mobile_dash {
    max-width: 160px;
    left: 0px;
    bottom: 36px;
  }
  .hero-banner h2 {
    font-size: 18px;
  }
  .btn-group-lg > .btn,
  .btn-lg {
    padding: 5px 8px;
    font-size: 18px;
  }
  footer h3 {
    font-size: 18px;
  }
  .hero-banner figure img{
    max-width: 100%;
  }
  @-webkit-keyframes productAnimation {
    0% {
      max-width: 0%;
      filter: blur(20px);
      opacity: 0;
    }
    100% {
      max-width: 100%;
      filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes productAnimation {
    0% {
      max-width: 0%;
      filter: blur(20px);
      opacity: 0;
    }
    100% {
      max-width: 100%;
      filter: blur(0px);
      opacity: 1;
    }
  }
}
