:root {
  --primary-color: #4c3bcf;
  --primary-dark-color: #311dc9;
  --secondary-color: #3dc2ec;
  --text-color: #475467;
  --gray-color: #f9fafb;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-Black.ttf") format("ttf");
}
/* change the public style */
body,
* {
  font-family: "Inter", sans-serif !important;
}
body {
  overflow-x: hidden;
}
.btn-primary {
  background-color: var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--primary-dark-color);
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color);
  color: white;
}
.bg-primary-dark {
  background-color: var(--primary-dark-color);
  color: white;
}
.bg-primary:hover {
  background-color: var(--primary-dark-color);
  color: white;
}
.bg-gray {
  background-color: var(--gray-color);
}
.text-small {
  font-size: 15px;
}
/* ....................................... */

/* ------------add style to home page------------ */
.digi-hero {
  background-color: #e8faff;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary-color) !important;
  transition: all 0.3s ease-out;
}
.swiper-button-prev:hover svg,
.swiper-button-next:hover svg {
  fill: white;
}
.advai-logo img {
  width: 107px;
}
@media (max-width: 992px) {
  .digi-how-works-right .dig-how-steps ul li {
    transform: translateX(0) !important;
    width: 100% !important;
  }
}
.social-btns .btn,
.social-btns .btn:before,
.social-btns .btn svg {
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-btns .btn:before {
  top: 100%;
  left: -110%;
}
.social-btns .btn svg {
  transform: scale(0.9);
}
.social-btns .btn:hover svg {
  transform: scale(1.1);
}
.social-btns .btn.facebook svg {
  fill: #3b5998;
}
.social-btns .btn.facebook:before {
  background-color: #3b5998;
}
.social-btns .btn.linkedin svg {
  fill: #0073af;
}
.social-btns .btn.linkedin:before {
  background-color: #0073af;
}
.social-btns .btn:hover svg {
  fill: #fff;
}

.social-btns .btn {
  background-color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 0.3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
  opacity: 0.99;
}
.social-btns .btn:before {
  content: "";
  width: 155%;
  height: 155%;
  position: absolute;
  transform: rotate(45deg);
}
.social-btns .btn:hover:before {
  top: -10%;
  left: -26%;
}
.swiper-wrapper {
  align-items: center;
}
.single-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
/* ..................................................... */
