* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html,
body {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.btn-info {
  --fancy-button-gradient-0: #8d49fd;
  --fancy-button-gradient-50: #7f56f3;
  --fancy-button-gradient-100: #5691f3;
  --fancy-button-inner-shadow-top: rgba(233, 209, 255, 0.2);
  --fancy-button-inner-shadow-top-lg: rgba(9, 12, 60, 0.1);
  --fancy-button-inner-shadow-bottom: rgba(137, 222, 246, 0.3);
  --fancy-button-shine-top: #e9d1ff;
  --fancy-button-shine-bottom: #adfff9;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-shadow: 0px 0.5px 0.5px rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
  margin: 0;
  appearance: none;
  border: none;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  z-index: 1;
  border-radius: 50px;
  color: #fff;
  background-image: linear-gradient(
    to bottom,
    var(--fancy-button-gradient-0) 0%,
    var(--fancy-button-gradient-50) 50%,
    var(--fancy-button-gradient-100) 100%
  );
  box-shadow: 0px 4px 12px rgba(9, 12, 60, 0.15),
    0px 2px 8px rgba(9, 12, 60, 0.15),
    0px 1px 3px var(--fancy-button-inner-shadow-top-lg),
    inset 0px 1px 1px var(--fancy-button-inner-shadow-top),
    inset 0px -1px 3px var(--fancy-button-inner-shadow-bottom);
}

.btn-info:before,
.btn-info:after {
  content: "";
  position: absolute;
  border-radius: inherit;
  will-change: transform;
}

.btn-info:before {
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--fancy-button-shine-top);
  width: 96px;
  height: 6px;
  top: -3px;
  opacity: 0.6;
  filter: blur(6px);
  transition: opacity 0.25s;
}

.btn-info:after {
  inset: 0;
  background-size: cover;
  z-index: 2;
  opacity: 0.3;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.btn-info span {
  display: block;
  padding: 12px 24px;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  background-image: linear-gradient(
    to bottom,
    var(--fancy-button-shine-top),
    transparent 8px
  );
  background-position: 0 -6px;
  background-repeat: no-repeat;
  z-index: 1;
}

.btn-info span:before,
.btn-info span:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: var(--fancy-button-shine-bottom);
  transition: opacity 0.25s, transform 0.25s;
  will-change: transform;
}

.btn-info span:before {
  width: 92px;
  height: 8px;
  bottom: -4px;
  opacity: 0.75;
  filter: blur(6px);
}

.btn-info span:after {
  width: 112px;
  height: 1px;
  bottom: 0;
  opacity: 0.9;
  filter: blur(1px);
}

.btn-info:hover span:before {
  opacity: 0.8;
}

.btn-info:hover span:before {
  transform: translateX(-50%) scale(1.25);
}

.btn-info:hover span:after {
  opacity: 1;
}

.navbar {
  height: 80px;
  width: 70%;
  background-color: #fff;
  margin: 20px;
  border-radius: 50px;
  padding: 0.5rem; /* From https://css.glass */
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(8.5px);
  margin-left: 15rem;
  margin-right: 15rem;
}
.nav-link:hover,
.nav-link:focus {
  color: #ac8dff !important;
}
.navbar-brand {
  font-weight: 500;
  font-size: 25px;
}
.navbar-toggler {
  border: none;
  font-size: 1.25rem;
}
.navbar-toggler:focus,
.btn-close:focus {
  outline: none;
  box-shadow: none;
}
.nav-link {
  font-weight: 500;
  color: #fff;
}
.home-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.home-wrapper h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}
.solutons-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000 !important;
  text-align: center;
}
.card {
  border-radius: 70px;
  width: 100%;
  margin-bottom: 1.75rem;
  margin-top: 1.75rem;
}
.card img {
  border-radius: 70px;
}
.choose-wrapper {
  background-image: url("../images/why_choose_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
}
.h3_choose:before {
  content: "•";
  margin-right: 0.5rem;
  color: #795ff3;
}
.case-studies-wrapper {
  background-image: url("../images/case_study_gif.gif");
  background-size: 100% 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.card_case {
  position: relative;
}
.card_case .btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 20px;
}
.card_case img {
  border-radius: 30px;
}
.btn-transparent {
  color: #fff;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(8.5px);
  border: #ffffff67 1px solid;
  transition: all 0.2s ease-in-out;
}
.btn {
  padding: 15px 25px;
  border-radius: 50px;
  height: auto;
  width: auto;
}
.btn-transparent:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  scale: 1.07;
}
.review-wrapper {
  width: 100%;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: start;
  font-size: 18px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.swiper-slide img {
  display: block;
  -webkit-border-top-right-radius: 50px;
  -webkit-border-bottom-right-radius: 50px;
  -moz-border-radius-topright: 50px;
  -moz-border-radius-bottomright: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company {
  display: flex;
  margin-top: 2rem;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
.company img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.contact-wrapper {
  width: 100%;
  background-color: rgb(233, 247, 250);
  padding: 50px 0px;
}
.contact-wrapper h5 {
  background: #004dd3;
  background: linear-gradient(to right, #004dd3 0%, #a67fff 54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn_holder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 3rem;
}
.pill_faq {
  border-radius: 50px;
  background: #2a7b9b;
  background: linear-gradient(
    90deg,
    rgba(42, 123, 155, 1) 0%,
    rgba(87, 199, 133, 1) 50%,
    rgba(137, 83, 237, 1) 100%
  );
  width: 480px;
  height: 65px;
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 10px 15px;
  position: relative;
  gap: 1rem;
}
.accordion-item {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.accordion-button {
  font-size: 20px;
  font-weight: 450;
}
footer {
  -webkit-border-top-left-radius: 50px;
  -webkit-border-top-right-radius: 50px;
  -moz-border-radius-topleft: 50px;
  -moz-border-radius-topright: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding-top: 1.5rem;
  background-image: url("https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExanBidjM4b2FyYjZndThlNndudnhmNnRveGxrb2c0eHcxZm01azhzaCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/g0gAJDvoNJBSwx8wP0/giphy.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 1.5rem;
}
.list-unstyled li,
.txt-link {
  font-style: none;
  text-decoration: none;
  margin-bottom: 0.35rem;
  font-weight: 300;
  transition: all ease-in-out 0.3s;
}
.txt-link:hover
{
  background: #5da3ff;
  background: linear-gradient(to right, #5da3ff 0%, #b85cff 54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 0.5rem;
}
.email_sub {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-control,
.form-control:focus {
  background-color: #ffffff16;
  border: none;
  color: #fff;
  border-radius: 50px;
}
.btn-footer {
  padding: 5px;
}
.links-footer_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.links-footer_bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}
.links-footer_bottom a:hover {
  background: #5da3ff;
  background: linear-gradient(to right, #5da3ff 0%, #b85cff 54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}