.ltr-font {
  font-family: CircularStd;
  direction: ltr;
}

.navbar-collapse {
  justify-content: flex-end;
}

.footer-brand {
  text-align: right;
}

.bg-gradient-info {
  background-image: linear-gradient(-310deg, #7928ca 0%, #ff0080 100%);
}

.vertical-wave {
  float: left;
  margin-left: -0.5rem !important;
  margin-right: auto;
}

.blur-box {
  box-shadow: inset 0px 0px 2px #fefefed1;
  -webkit-backdrop-filter: saturate(200%) blur(30px);
  backdrop-filter: saturate(200%) blur(30px);
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.solutions h2 {
  font-size: 22px;
}
.solutions h5 {
  font-size: 16px;
}
.solutions p {
  font-size: 12px !important;
}
.solutions a:hover h5 {
  color: #7928ca;
}


/* Media Query for Mobile Devices */
/* Media Query for low resolution  Tablets, Ipads */
@media (max-width: 767px) {
  .dropdown-menu > div {
    display: block !important;
    margin-top: 10px;
  }
  .dropdown-item {
    color: #fff !important;
  }
  .dropdown-menu-animation {
    height: 250px !important;
    opacity: 1 !important;
  }
  .dropdown-menu:before {
    display: none;
  }
}

.ring {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: calc(50vh - 40px) auto 0;
}

.ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #7928ca;
  border-radius: 50%;
  animation: ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #7928ca transparent transparent transparent;
}

.ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes ring {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.customer-wrapper {
  width: 370px;
  margin-bottom: 30px;
  min-height: 100px;
  border: 1px solid #fff;
}


.customer-wrapper:hover {
  border-color: #ccc;
}

.customer-wrapper img {
  width: 150px;
  height: 75px;
  margin-left: 5px;
  margin-right: 5px;
}

.customer-driver {
  background-image: url('/assets/img/cutomer-line.png');
  width: 2px;
  height: 81px;
  margin-left: 10px;
}

.customer-wrapper h3 {
  font-size: 15px;
  color: #787878;
  margin-bottom: 12px;
  padding-top: 5px;
}

.customer-wrapper h4 {
  font-size: 13px;
  color: #b7b7b7;
  background-position: right center;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  padding-right: 20px;
  height: 16px;
  margin-bottom: 3px;
  font-weight: normal;
}

.customer-wrapper h4.internal {
  background-image: url('/assets/img/kardex-internal.svg');
}

.customer-wrapper h4.external {
  background-image: url('/assets/img/kardex-external.svg');
}

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