html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 1.5em;
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #000;
}

.fixed-contact-button {
  position: fixed;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  bottom: calc(50% - 1.5em);
  right: 0;
  background-color: #284DFE;
  color: white;
  text-decoration: none;
  border-radius: 2em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 3em;
  width: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: auto;
  max-width: 2em;
  -webkit-transition: max-width 0.5s;
  transition: max-width 0.5s;
  white-space: nowrap;
  cursor: pointer;
  z-index: 10;
  padding: 0.25em 1em;
}

.fixed-contact-button:hover {
  max-width: 100%;
}

.fixed-contact-button svg {
  fill: #fff;
  min-width: 2em;
  margin-right: 1.25em;
}

a {
  text-decoration: none;
}

p {
  font-size: 0.938rem;
}

h5 {
  font-size: 1.063rem;
}

h4 {
  font-size: 1.125rem;
  font-weight: 500;
}

h3 {
  font-size: 2rem;
}

h2 {
  font-size: 2.375rem;
}

h1 {
  font-size: 3.625rem;
  font-weight: 300;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5em;
}

header a {
  color: #fff;
  font-size: 0.938rem;
}

header a:hover {
  text-decoration: underline;
}

header svg {
  margin-left: 1em;
}

header img {
  height: 2.5em;
}

.hero-slider {
  height: calc(100vh - 1.5em);
  padding: 0 1.5em;
  position: relative;
  background-image: url("/img/slider/slider-3.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: 1s;
  transition: 1s;
}

.hero-slider .wrapper {
  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;
  height: 100%;
}

.hero-slider .hero-content {
  width: 50%;
  color: #fff;
}

.hero-slider .hero-content h1 {
  margin: 0.5em 0 0 0;
  line-height: 1.25em;
}

.hero-slider .hero-content h1 .bold {
  font-weight: 400;
}

.hero-slider .hero-content p {
  margin-top: 2em;
  width: 70%;
}

.hero-slider-controllers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5em;
}

.hero-slider-controllers .arrow-right,
.hero-slider-controllers .arrow-left {
  margin-right: 0.75em;
  display: inline-block;
  border-radius: 50%;
  background-color: #284DFE;
  padding: 0.75em 0.75em;
  width: 0.75em;
  height: 0.75em;
  cursor: pointer;
}

.hero-slider-controllers .timer {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 0.1em;
}

.hero-slider-controllers .timer-fill {
  background-color: #fff;
  width: 50%;
  height: 100%;
  -webkit-transition: .1s;
  transition: .1s;
}

.hero-slider-controllers .caption-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-slider-controllers .slide-caption {
  margin: 0;
  margin: 0 2.25em 0 1.5em;
  font-size: 12px;
  color: white;
  white-space: nowrap;
}

.hero-slider-controllers .slide-caption svg {
  width: 0.75em;
  height: 0.75em;
  margin-left: 1.5em;
}

.fade-transition {
  -webkit-animation: fadeImage 1s ease-in-out;
          animation: fadeImage 1s ease-in-out;
}

@-webkit-keyframes fadeImage {
  0% {
    opacity: 25;
  }
  100% {
    opacity: 100;
  }
}

@keyframes fadeImage {
  0% {
    opacity: 25;
  }
  100% {
    opacity: 100;
  }
}

.products-showcase {
  padding: 6em 1.5em;
  position: relative;
  background-color: #fff;
}

.products-showcase .background-logo {
  width: 35em;
  position: absolute;
  z-index: 0;
}

.products-showcase .background-logo path {
  fill: transparent;
  stroke-width: 30;
  stroke: #e4e4e4;
  stroke-dasharray: 36653;
  stroke-dashoffset: 36653;
  -webkit-animation: neovo-line 10s linear infinite;
          animation: neovo-line 10s linear infinite;
}

@-webkit-keyframes neovo-line {
  0% {
    stroke-dashoffset: 36653;
  }
  25% {
    stroke-dashoffset: 0;
  }
  75% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 36653;
  }
}

@keyframes neovo-line {
  0% {
    stroke-dashoffset: 36653;
  }
  25% {
    stroke-dashoffset: 0;
  }
  75% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 36653;
  }
}

.products-showcase .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.products-showcase .tagline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 1;
}

.products-showcase .tagline h2 {
  margin-top: 0;
  margin-bottom: 1em;
}

.products-showcase .tagline p {
  padding-right: 10em;
  font-size: 1rem;
}

.products-showcase .products-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 1;
}

.products-showcase .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}

.products-showcase .product:hover .product-number svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #284DFE;
}

.products-showcase .product h4 {
  margin-top: 0;
  margin-bottom: 0.5em;
  text-decoration: underline;
}

.products-showcase .product ul > li {
  font-size: 0.938rem;
}

.products-showcase .product-number {
  display: inline-block;
  color: #fff;
  margin-right: 1.5em;
}

.products-showcase .product-number svg path {
  fill: #d2d2d2;
}

.feature-bar {
  padding: 8em 0;
  width: 100%;
  position: relative;
  background-color: #e4e4e4;
}

.feature-bar .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature-bar .feature-content {
  width: 60%;
  padding-left: 1.5em;
}

.feature-bar .feature-box:last-of-type {
  margin-bottom: 2em;
}

.feature-bar .feature-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feature-bar .feature-box p {
  width: 60%;
  margin-top: 0;
  color: #000 !important;
  font-weight: bold;
}

.feature-bar .feature-box svg {
  max-height: 3em;
  margin-right: 2em;
  display: block;
}

.feature-bar .feature-image {
  width: 40%;
  height: auto;
}

.feature-bar .feature-background {
  left: 60%;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url("/img/feature-img.jpg");
}

.feature-bar .feature-icon {
  width: 8em;
  height: 8em;
  position: absolute;
  border-radius: 50%;
  left: calc(60% - 4em);
  top: calc(50% - 4em);
  background-color: #fff;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feature-bar .feature-icon svg {
  width: 5em;
  height: 5em;
}

.feature-bar .feature-content {
  padding-right: 15em;
}

.feature-bar .feature-content h3 {
  margin-top: 0;
}

.feature-bar .feature-content p {
  margin-bottom: 0;
  font-size: 0.938rem;
  color: #000;
  line-height: 1.75em;
}

.feature-bar .feature-content p.tagline {
  font-size: 1rem;
  color: #323232;
}

.usecase {
  background-color: #0b0b0b;
  padding: 5em 0;
}

.usecase h4 {
  margin-top: 0;
  color: #fff;
}

.usecase h3 {
  margin: 0.5em 0 0.5em 0;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.usecase .usecase-category:nth-child(1) {
  margin-top: 0;
}

.usecase .usecase-category {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(23rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
  margin-top: 8em;
}

.usecase .usecase-category.single .usecase-box {
  grid-column: span 2;
}

.usecase .usecase-box {
  padding: 2em 2em 2em 2em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 3em;
  border-left: 1px solid #3b3b3b;
  margin-bottom: 2em;
}

.usecase .usecase-box:hover {
  background-color: #284DFE;
}

.usecase .usecase-box:hover svg {
  fill: #fff;
}

.usecase .usecase-box:hover p {
  color: #fff;
}

.usecase .usecase-box p {
  padding-right: 1em;
  color: #707070;
}

.usecase .usecase-box svg {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  fill: #fff;
  width: 4em;
  height: 4em;
  margin-bottom: 2em;
}

.usecase .usecase-box:nth-child(3),
.usecase .usecase-box:nth-child(5) {
  border-left: 1px solid #3b3b3b;
}

.usecase .usecase-box:nth-child(3),
.usecase .usecase-box:nth-child(5) {
  padding-left: 2em;
}

.usecase .usecase-title {
  grid-row: span 4;
  grid-column: span 1;
}

.usecase .usecase-title p {
  font-size: 1rem;
  padding-right: 7em;
  color: #707070;
}

.usecase .usecase-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.usecase .circle {
  border-radius: 50%;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #3b3b3b;
}

.usecase .circle-active {
  background-color: #284DFE;
  border-color: #284DFE;
}

.usecase .hline {
  border-top: 1px solid #3b3b3b;
  width: 5em;
}

.usecase .animate-fill {
  -webkit-animation: animate-fill-logo 4s ease forwards;
          animation: animate-fill-logo 4s ease forwards;
}

.usecase .logo-reveal {
  max-width: 25em;
  margin-top: 2em;
}

.usecase .logo-reveal .animate-line {
  -webkit-animation: animate-lines-logo 2s ease forwards;
          animation: animate-lines-logo 2s ease forwards;
}

.usecase .logo-reveal path {
  stroke: #fff;
  stroke-width: 0.025em;
}

.usecase .logo-reveal path:nth-child(1) {
  stroke-dasharray: 127;
  stroke-dashoffset: 127;
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}

.usecase .logo-reveal path:nth-child(2) {
  stroke-dasharray: 127;
  stroke-dashoffset: 127;
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}

.usecase .logo-reveal path:nth-child(3) {
  stroke-dasharray: 98;
  stroke-dashoffset: 98;
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}

.usecase .logo-reveal path:nth-child(4) {
  stroke-dasharray: 122;
  stroke-dashoffset: 122;
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}

.usecase .logo-reveal path:nth-child(5) {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
}

.usecase .logo-reveal path:nth-child(6) {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}

.usecase .logo-reveal path:nth-child(7) {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
}

@-webkit-keyframes animate-lines-logo {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-lines-logo {
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-fill-logo {
  0% {
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes animate-fill-logo {
  0% {
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

.contact {
  /* BUTTONS */
  /* FORM VALIDATION */
}

.contact .wrapper {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact .left-container {
  padding: 4em 3em;
}

.contact .contact-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5em;
}

.contact .contact-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-info-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: url("/img/contact-img.jpg");
  background-repeat: no-repeat;
  background-position: 45% 10%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 0 2em;
}

.contact .contact-info-container img {
  width: 15em;
  margin: 2em 0;
}

.contact .contact-info-container .contact-info {
  margin: 1em 0;
  color: #fff;
}

.contact .contact-info-container .contact-info p {
  margin: 0.25em 0;
}

.contact .contact-info-container .contact-info p a {
  color: #fff;
}


.contact .contact-info-container .contact-info span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact .left-container {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.contact h3 {
  margin: 0;
  color: #284DFE;
  letter-spacing: 0.05em;
}

.contact .contact-card .row:first-child {
  margin-top: 0;
}

.contact .contact-card .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5em;
}

.contact .column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact .contact-form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  margin: 0 2.5em 0 0;
  position: relative;
}

.contact .contact-card form label {
  display: block;
  font-size: 0.75rem;
  margin: 0 0 0.75em 0.45em;
  font-weight: bold;
  color: #323232;
}

.contact .contact-card form input,
.contact .contact-card form textarea {
  background: none;
  border: none;
  border-bottom: 2px solid #d2d2d2;
  width: 100%;
  font-size: 1rem;
  padding: 0.5em 0 0.5em 0.25em;
  color: #000;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.contact .input-focus {
  display: block;
  width: 0%;
  position: absolute;
  border-bottom: 2px solid #284DFE;
  bottom: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.contact .textarea-focus {
  bottom: 7px !important;
}

.contact .contact-card form input:focus,
.contact .contact-card form textarea:focus {
  outline: none;
}

.contact .contact-card form input:focus ~ .input-focus,
.contact .contact-card form textarea:focus ~ .textarea-focus {
  outline: none;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  width: 100%;
}

.contact .contact-card .row ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}

.contact .contact-card .row ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
  margin: 0em 0em 0em 0;
  justify-items: center;
}

.contact .contact-card form input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.contact .radio-container {
  display: block;
  position: relative;
  padding-left: 2.5em;
  cursor: pointer;
  font-size: 1.375rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.contact .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.2em;
  width: 1.2em;
  border: 2px solid #284DFE;
  border-radius: 50%;
}

.contact .radio-container:hover input ~ .checkmark {
  background-color: #284DFE;
}

.contact .radio-container input:checked ~ .checkmark {
  background-color: #284DFE;
  border-color: #284DFE;
}

.contact .radio-container input:checked ~ .checkmark:after {
  display: block;
}

.contact .radio-label {
  display: inline-block;
  text-transform: none;
  font-weight: 500;
}

.contact .radio-label:hover {
  text-decoration: underline;
}

.contact .contact-source {
  margin: 0.5em 0;
  position: relative;
  font-weight: bold;
  font-size: 0.938rem;
}

.contact .contact-form-control textarea {
  resize: none;
}

.contact #optional-control {
  display: none;
}

.contact .form-buttons {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin: 2em 2em 0 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .form-buttons .form-response {
  margin-right: 20px;
}

.contact .form-submit {
  -webkit-filter: blur(1px);
          filter: blur(1px);
  opacity: .1;
}

.contact .btn, .contact input[type="submit"] {
  cursor: pointer;
  display: inline-block;
  background: #284DFE;
  border: none;
  padding: 1em 2em;
  text-align: center;
  color: #fff;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  font-size: 0.938rem;
  font-weight: bold;
}

.contact .btn:hover, .contact input[type="submit"]:hover {
  background: #4f6dff;
}

.contact .validate-form-message {
  position: absolute;
  font-size: 0.75em;
  color: red;
  font-weight: 500;
  bottom: 0.8em;
  right: 0;
}

.contact .validate-form-message i {
  color: seagreen;
}

.contact .validate-input-success {
  border-color: seagreen !important;
}

.contact .validate-input-error {
  border-color: red !important;
  background-color: lightcoral;
}

.contact .contact-card #form-spinner {
  font-size: 1.125rem;
  display: none;
}

@media only screen and (min-width: 1440px) {
  .wrapper {
    max-width: 1440px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1168px) {
  .hero-slider .hero-content {
    width: 100%;
  }
  .usecase {
    text-align: center;
  }
  .usecase h3 {
    margin-bottom: 0;
  }
  .usecase .usecase-category {
    margin-top: 4em;
  }
  .usecase .usecase-category .usecase-box {
    text-align: center;
    border-left: none;
    border-bottom: 1px solid #3b3b3b;
    border-top: 1px solid #3b3b3b;
  }
  .usecase .usecase-title {
    grid-row: span 1;
    grid-column: span 2;
    margin-bottom: 3em;
    text-align: center;
  }
  .usecase .usecase-title p {
    padding: 0 0em 1em 0em;
  }
  .usecase .usecase-progress {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .usecase-category .usecase-box {
    grid-column: span 1;
  }
  .feature-bar .feature-content {
    width: 100%;
    text-align: center;
    padding: 0 2em;
  }
  .feature-bar .feature-content .feature-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature-bar .feature-content .feature-box svg {
    margin: 0 0 1em 0;
  }
  .feature-bar .feature-image {
    display: none;
  }
  .products-showcase {
    text-align: center;
  }
  .products-showcase .background-logo {
    display: none;
  }
  .products-showcase .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products-showcase .wrapper .products-container {
    margin-top: 5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .products-showcase .wrapper .products-container .product {
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products-showcase .wrapper .products-container .product .product-number {
    margin: 0;
  }
  .products-showcase .wrapper .products-container .product .product-content {
    padding: 1em 1em;
  }
  .products-showcase .wrapper .tagline p {
    padding-right: 0;
    margin: 0;
  }
}

@media only screen and (max-width: 992px) {
  .contact .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .wrapper .left-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .contact .wrapper .contact-card .form-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
  }
  .contact .wrapper .contact-card .form-buttons button {
    width: 100%;
  }
  .contact .wrapper .contact-info-container {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .contact .wrapper .contact-info-container img {
    width: 15em;
  }
}

@media only screen and (max-width: 768px) {
  .hero-slider .slide-caption {
    display: none;
  }
  .contact .contact-form-container {
    margin-top: 1.5em;
  }
  .contact .contact-card .contact-source {
    margin-top: 2em;
  }
  .contact .contact-card .contact-form-control {
    margin-top: 2em;
  }
  .contact .contact-card .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
  .contact .contact-card .row ul li {
    width: 50%;
  }
  .usecase .usecase-category .usecase-box {
    grid-column: span 2;
  }
  .products-showcase .wrapper .products-container .product {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  #fixed-contact-button {
    display: none;
  }
  header svg {
    display: none;
  }
  .contact .contact-card .row ul li {
    width: 100%;
  }
  .hero-slider .arrow-left,
  .hero-slider .arrow-right {
    background: none;
    padding: 0;
  }
}
/*# sourceMappingURL=main.css.map */