@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Lexend-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 100;
  src: url("../../fonts/Lexend-Thin.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/Lexend-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/Lexend-Light.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 200;
  src: url("../../fonts/Lexend-ExtraLight.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/Lexend-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/Lexend-SemiBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  font-style: italic;
  font-weight: 800;
  src: url("../../fonts/Lexend-ExtraBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/Lexend-Black.woff2") format("woff2");
  font-display: swap;
}
* {
  font-family: Lexend, sans-serif;
}

:root {
  --primary-rgb: 0, 123, 255;
  --color-text: $gray;
  --color-bg-accent: $white;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 5);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

body {
  width: 100%;
  font-size: 1.2rem;
  background-color: white;
  scroll-behavior: smooth !important;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #e8e8e8;
  border-radius: 6px;
}
body::-webkit-scrollbar-thumb {
  background: #6455ed;
  border-radius: 6px;
}

.ps__rail-y {
  z-index: 999;
}

.main-container {
  width: 80%;
  margin: auto;
  padding: 2rem 0;
}

#spark-loader,
#spark-ajax-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  top: 0;
}
#spark-loader img,
#spark-ajax-loader img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 150px;
}

#spark-ajax-loader {
  display: none;
  background: rgba(0, 0, 0, 0.5882352941) !important;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.validation-error-msg {
  color: red;
  font-size: 12px;
  float: right;
  margin: 0px 2px;
  padding: 3px;
}

.row {
  margin-right: 0 !important;
}

.content {
  text-transform: initial !important;
  font-size: 18px;
  font-weight: lighter;
}

.top-strip {
  background-color: #3f1590;
  width: 100%;
  right: 0;
  text-align: center;
  color: rgb(255, 255, 255);
  z-index: 999;
  padding: 0.6rem 10rem;
  font-size: 0.8rem;
}
.top-strip img {
  width: 20px;
}
.top-strip a {
  color: white;
}

.section-title {
  position: relative;
  font-size: 46px;
  font-weight: 600;
  text-align: center;
  margin: auto;
  margin-top: 67px;
  margin-bottom: 57px;
  background: linear-gradient(to right, #160cea, #08e5ff, #160cea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  width: -moz-fit-content;
  width: fit-content;
}
.section-title h1,
.section-title p {
  font-size: 46px;
}
.section-title:hover {
  animation: titleGradient 3s linear forwards;
}
@keyframes titleGradient {
  0% {
    background-position: 200% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.section-title:not(.no-underline)::after {
  content: "";
  position: absolute;
  height: 3.5px;
  width: 50%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -6px;
  background: linear-gradient(to right, rgba(22, 12, 234, 0) 0%, #160cea 25%, #08e5ff 75%, rgba(22, 12, 234, 0) 100%);
  background-size: 100% auto;
  border-radius: 60px;
}

.page-description {
  margin: 10px auto;
  text-align: center;
}
.page-description p {
  width: 80%;
  margin: auto;
}

.know-more {
  direction: ltr;
  font-size: 17px;
  font-weight: bold;
  margin-top: 0.5rem;
}
.know-more img {
  width: 18px;
}
.know-more .link {
  color: #160cea;
}

.services-list {
  gap: 2rem;
}

.services-grid .services-box,
.services-list .services-box {
  border-radius: 30px;
  height: auto;
  align-items: stretch;
  padding: 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.services-grid .services-box .service-icon,
.services-list .services-box .service-icon {
  width: 50px;
}
.services-grid .services-box > div,
.services-list .services-box > div {
  width: 100%;
}
.services-grid .services-box .service-header > *,
.services-list .services-box .service-header > * {
  font-size: 40px;
}
.services-grid .services-box p,
.services-list .services-box p {
  margin-bottom: 0;
}

.other-service-list .services-box,
.services-list .services-box,
.services-grid .services-box {
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(200deg, #160cea, #08e5ff, #d000ff) border-box;
  background-size: 200% auto;
}
.other-service-list .services-box:hover,
.services-list .services-box:hover,
.services-grid .services-box:hover {
  animation: borderGradient 3s linear forwards;
}
@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.services-grid .services-box {
  height: 100%;
}
.services-grid .service-icon {
  margin-bottom: 1rem;
}
.services-grid .col {
  margin: 1rem 0;
}

.other-service-list {
  gap: 0;
}
.other-service-list .services-box {
  gap: 2rem;
  height: 100%;
}
.other-service-list .services-box img {
  width: auto;
  height: 100px;
  max-width: 100%;
}
.other-service-list .services-box h2 {
  color: black;
  display: flex;
  flex: 1;
  align-items: center;
}

.vendor-service-grid .service-icon {
  width: 65px !important;
}

.why-list .service-header > * {
  font-size: 30px !important;
}

.btn-group-toggle,
.btn-group-toggle .btn {
  border-radius: 25px !important;
}

#get-a-quote {
  width: 400px;
}

/*
* Common Design
*/
#g-recaptcha > div {
  margin: auto;
}

.tech-container {
  margin: auto;
  margin-top: 40px;
}
.tech-container .technology-title {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.tech-container .technology-title p {
  margin: 0;
}
.tech-container .technology-list {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-top: 20px;
  margin-bottom: 84px;
  flex-direction: column;
}
.tech-container .technology-list .technology-details,
.tech-container .technology-list .technology-image {
  display: inline-block;
  vertical-align: middle;
}
.tech-container .technology-list .technology-image {
  text-align: center;
  padding: 0;
  width: 150px;
}
.tech-container .technology-list .technology-image img {
  max-width: 100%;
  transition: 0.3s;
  width: 47%;
  filter: grayscale(100%);
}
.tech-container .technology-list .technology-details {
  flex: 1;
}
.tech-container .technology-list .technology-details h5 {
  transition: 0.3s;
  font-weight: 600;
  color: #017cc2;
}
.tech-container .technology-list .technology-details p {
  margin-bottom: 0;
}
.tech-container .technology-list > div:not(:nth-child(1)) {
  margin-top: 5px;
}
.tech-container .technology-list .tech-box {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  transition: all 0.5s;
  padding: 18px 10px;
  border: 3px solid transparent;
  border-radius: 20px;
  align-items: center;
  box-shadow: 2px 2px 21px -7px rgba(33, 33, 33, 0.2);
}
.tech-container .technology-list .tech-box:hover {
  background: linear-gradient(white, white) padding-box, linear-gradient(200deg, #160cea, #00fcff, #d33ceb) border-box;
  background-size: 200% auto;
  cursor: pointer;
}
.tech-container .technology-list .tech-box:hover.laravel h5 {
  color: rgb(255, 45, 32);
}
.tech-container .technology-list .tech-box:hover.angular h5 {
  color: rgb(226, 50, 55);
}
.tech-container .technology-list .tech-box:hover.bootstrap h5 {
  color: rgb(134, 18, 251);
}
.tech-container .technology-list .tech-box:hover.tailwindcss h5 {
  color: rgb(56, 189, 248);
}
.tech-container .technology-list .tech-box:hover.php h5 {
  color: rgb(119, 123, 179);
}
.tech-container .technology-list .tech-box:hover.html h5 {
  color: rgb(228, 77, 38);
}
.tech-container .technology-list .tech-box:hover.javascript h5 {
  color: rgb(214, 186, 50);
}
.tech-container .technology-list .tech-box:hover.jquery h5 {
  color: rgb(46, 100, 179);
}
.tech-container .technology-list .tech-box:hover.android h5 {
  color: rgb(61, 220, 132);
}
.tech-container .technology-list .tech-box:hover.ios h5 {
  color: rgb(155, 155, 155);
}
.tech-container .technology-list .tech-box:hover.flutter h5 {
  color: rgb(94, 200, 248);
}
.tech-container .technology-list .tech-box:hover img {
  filter: grayscale(0);
}

@keyframes background-size-300 {
  from {
    background-size: 0%;
  }
  to {
    background-size: 300%;
  }
}
.type-box,
.testimonial-box {
  align-items: center;
  gap: 1.5rem;
  color: black;
  text-align: left;
  height: auto;
  padding: 2rem 2rem;
  border: 3px solid transparent;
  border-radius: 30px;
  background: linear-gradient(white, white) padding-box, linear-gradient(200deg, #160cea, #08e5ff, #d000ff) border-box;
  background-size: 200% auto;
}
.type-box.carousel-item.active, .type-box.carousel-item-next, .type-box.carousel-item-prev,
.testimonial-box.carousel-item.active,
.testimonial-box.carousel-item-next,
.testimonial-box.carousel-item-prev {
  display: flex !important;
}
.type-box:not(.carousel-item),
.testimonial-box:not(.carousel-item) {
  display: flex;
  margin: 1rem 0.5rem;
}
.type-box:hover,
.testimonial-box:hover {
  animation: borderGradient 3s linear infinite;
}
@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.type-box .types-title,
.testimonial-box .types-title {
  font-size: 28px;
  font-weight: bolder;
  line-height: 2.5rem;
}
.type-box .types-title img,
.testimonial-box .types-title img {
  width: 150px;
}
.type-box .types-content,
.testimonial-box .types-content {
  text-align: left;
  letter-spacing: 0.5px;
}

.type-box .types-title {
  flex: 0 0 300px;
}

.addon-container {
  width: 90%;
}
.addon-container .addon-category {
  white-space: nowrap;
}

.addon-list {
  display: flex;
  gap: 2rem;
}
.addon-list .addon-card {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(200deg, #160cea, #08e5ff, #d000ff) border-box;
  background-size: 200% auto;
  transition: all 0.5s;
  padding: 1.4rem;
}
.addon-list .addon-card:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.addon-list .addon-card .addon-content {
  display: flex;
  gap: 1rem;
  padding: 0 1.4rem;
  padding-right: 0;
  flex: 1;
}
.addon-list .addon-card .addon-title {
  font-size: 1.3rem;
  font-weight: 500;
}
.addon-list .addon-card .addon-img img {
  width: 200px;
  min-width: 200px;
  max-width: 100%;
  border-radius: 18px;
}
.addon-list .addon-card .addon-img .badge {
  top: 15px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.addon-list .addon-card .addon-subtitle {
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
.addon-list .addon-card .addon-short-description {
  font-size: 1rem;
  margin-top: 0.5rem;
}
.addon-list .addon-card .addon-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 300px;
}
.addon-list .addon-card .addon-actions .addon-price {
  font-size: 1.3rem !important;
}
.addon-list .addon-card .addon-actions .addon-price span {
  font-size: 1rem;
  color: red;
  text-decoration: line-through;
}
.addon-list .addon-card .addon-actions p {
  margin-bottom: 0;
}
.addon-list .addon-card .addon-actions .addon-offer {
  font-size: 1rem;
}
.addon-list .addon-card .quantity-wrapper p,
.addon-list .addon-card .quantity-wrapper span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}
.addon-list .addon-card .quantity-wrapper .btn {
  border-radius: 8px;
  padding: 1px 6px;
  font-size: 0.9rem;
  color: black;
}
.addon-list .addon-card .quantity-wrapper .btn:hover {
  color: white;
}
.addon-list .addon-card .property-items {
  display: flex;
  align-items: start;
  gap: 1rem;
  font-size: 0.9rem;
}
.addon-list .addon-card .property-items ul {
  padding-left: 0;
  margin-bottom: 0;
}
.addon-list .addon-card .property-items p {
  margin-bottom: 0.6rem;
  white-space: nowrap;
  padding: 0.2rem 0;
}
.addon-list .addon-card .property-items > ul li {
  display: inline-block;
  background-color: rgb(232, 232, 232);
  padding: 0.2rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.cart-box {
  position: sticky;
  min-width: 400px;
  padding: 1rem 2rem 2rem;
  border-radius: 30px;
  height: -moz-fit-content;
  height: fit-content;
}
.cart-box .empty-text {
  font-size: 1rem;
}
.cart-box .cart-item {
  display: flex;
  justify-content: space-between;
}
.cart-box .cart-item .cart-price {
  font-size: 1rem;
  white-space: nowrap;
}
.cart-box .cart-item .cart-item-title {
  line-height: 21px;
  font-size: 1.1rem;
  font-weight: 500;
}
.cart-box .cart-item tr {
  vertical-align: top;
}
.cart-box .cart-item tr td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cart-box .cart-item tr:not(:last-child) td {
  border-bottom: 1px dashed #cccccc;
}

.addon-details-modal {
  min-width: 60%;
  max-width: 900px !important;
}
.addon-details-modal .modal-body {
  max-height: 75vh;
  overflow: auto;
}
.addon-details-modal .modal-body h1,
.addon-details-modal .modal-body h2,
.addon-details-modal .modal-body h3,
.addon-details-modal .modal-body h4,
.addon-details-modal .modal-body h5,
.addon-details-modal .modal-body h6,
.addon-details-modal .modal-body p {
  font-size: revert !important;
  font-weight: revert !important;
}
.addon-details-modal .addon-details-header {
  gap: 1rem;
}
.addon-details-modal .addon-details-header .addon-img img {
  width: 200px;
  min-width: 200px;
  max-width: 100%;
  border-radius: 18px;
}
.addon-details-modal .addon-details-header .addon-img .badge {
  top: 15px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.addon-details-modal .addon-details-header .addon-price {
  font-size: 1.3rem !important;
}
.addon-details-modal .addon-details-header .addon-price span {
  font-size: 1rem;
  color: red;
  text-decoration: line-through;
}

.addon-get-quote-modal {
  max-width: 460px !important;
}

.scroll-btn {
  background: rgb(246, 246, 246);
  top: 0;
  bottom: 0;
  height: 100%;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
}
.scroll-btn.left {
  left: 0;
}
.scroll-btn.right {
  right: 0;
}
.scroll-btn img {
  width: 14px;
}

.addon-filters {
  border-radius: 20px;
}
.addon-filters ul {
  display: flex;
  padding-left: 0;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.addon-filters li {
  list-style: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  cursor: pointer;
}
.addon-filters li.active {
  background: linear-gradient(200deg, #160cea, #08e5ff, #d000ff) border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  border: 3px solid transparent;
}
.addon-filters li.active::after {
  content: "";
  width: 100%;
  display: block;
  height: 2px;
  background: linear-gradient(to right, #160cea, #08e5ff, #160cea);
  background-size: 200% auto;
  transition: width 0.8s;
  -moz-transition: width 0.8s;
  -webkit-transition: width 0.8s;
  -moz-transition: width 0.8s;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.3rem 0.8rem;
  margin-left: -1px;
  line-height: 1.25;
  border: none;
  color: #210ce7;
  border-radius: 10px;
}

.page-item:not(:first-child) .page-link, .page-item:not(:last-child) .page-link {
  margin: 2px;
}

.page-item.active .page-link {
  color: #ffffff;
  background-image: linear-gradient(286deg, #160cea, #d33ceb);
}

.jumbotron {
  background: #4e0c98;
  color: white;
}
.jumbotron h1 {
  font-size: 46px;
}
.jumbotron p {
  color: #c0c0c0;
}

.nav-tabs {
  border: none;
  position: relative;
}

.modal-body {
  font-size: 1.1rem;
}

.tab-content {
  padding: 1.3rem 1rem;
}

.cursor-pointer {
  cursor: pointer;
}

.quote {
  gap: 3rem;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.quote .quote-img {
  width: 800px;
}
.quote #get-a-quote,
.quote #lets-partnership {
  width: 800px !important;
}

.faq-item {
  width: 100%;
  margin: 7px 0px;
  border-bottom: #e0e0e0 1px solid;
}

.faq-item .faq-label {
  position: relative;
  width: 100%;
  padding: 18px 26px 18px 0px;
  cursor: pointer;
  font-size: 20px;
  color: #000000;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  font-weight: 500;
}

.faq-item .faq-label i {
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
}

.faq-item .faq-label i:before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 18px;
  height: 2px;
  background-color: #000000;
}

.faq-item .faq-label i:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 2px;
  height: 18px;
  background-color: #000000;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}

.faq-item.faq-item-show .faq-label i:after {
  opacity: 0;
}

.faq-cont {
  transition: 0.3s all;
  overflow: hidden;
  height: 0px;
}

.faq-item.faq-item-show .faq-cont {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: auto;
  height: auto;
}

.faq-cont p {
  margin: 0px 0 20px 0;
}

.faq-cont p:last-child {
  margin-bottom: 0px;
}

textarea {
  resize: none;
  scroll-behavior: auto;
}

/* Marquee */
.wrapper {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  max-height: 85vh;
  justify-content: center;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));
          mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));
}
.marquee .tech {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
  width: 240px;
  height: 240px;
}
@media only screen and (max-width: 720px) {
  .marquee .tech {
    width: 200px !important;
    height: 200px !important;
  }
}
.marquee img {
  max-width: 100%;
  width: 80%;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  padding: calc(var(--gap) / 2);
  animation: scroll-x var(--duration) linear infinite;
}

.stop-animation {
  animation-play-state: paused;
}

.marquee--vertical {
  --mask-direction: to bottom;
  flex-direction: column;
}
.marquee--vertical .marquee__group {
  flex-direction: column;
  animation: scroll-y var(--duration) linear infinite;
  gap: calc(var(--gap) / 2);
}
.marquee--vertical img {
  max-width: 100%;
  width: 80%;
}
.marquee--vertical .tech {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
  width: 250px;
  height: 250px;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}
@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* Sections Design */
/* Navbar */
#header-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header-container > div {
  height: 100%;
  position: absolute;
  background-size: cover !important;
  width: 100%;
}

.spark-header {
  position: relative;
}
.spark-header .nav-background {
  background: linear-gradient(169deg, rgba(25, 0, 248, 0.6784313725), transparent), linear-gradient(181deg, #1d05f5, transparent), url(../images/abstract_digital_wave.webp);
}
.spark-header > div {
  height: 100%;
  position: absolute;
  background-size: cover !important;
  background-position: 100% 60% !important;
  width: 100%;
}

.nav-img {
  width: -webkit-fill-available;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.nav-img h3 {
  font-size: 45px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: capitalize;
  color: white;
  text-align: center;
}

.navbar {
  z-index: 998;
  width: 100%;
  transition: 0.8s ease-in-out;
  outline: none;
  padding: 0.5rem 10rem !important;
  background: white;
  position: sticky;
  top: 0;
}
.navbar ul {
  position: relative;
}
.navbar ul li a {
  color: black;
  font-size: 14px;
  padding: 1rem !important;
  white-space: nowrap;
}

.dropdown-item {
  color: black !important;
  transition: all 0.2s;
}

.dropdown-menu {
  border: 0px solid white !important;
  border-radius: 0px !important;
  box-shadow: 1px 0px 1px white !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
  margin-top: 0px !important;
}

.dropdown-item:hover,
.navlink:hover {
  background: linear-gradient(to right, #160cea, #08e5ff, #160cea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
}
.dropdown-item:hover a,
.navlink:hover a {
  color: white !important;
}

.navlink {
  display: inline-block;
}
.navlink::after {
  content: "";
  width: 0;
  display: block;
  height: 2px;
  background: linear-gradient(to right, #160cea, #08e5ff, #160cea);
  background-size: 200% auto;
  transition: width 0.8s;
  -moz-transition: width 0.8s;
  -webkit-transition: width 0.8s;
  -moz-transition: width 0.8s;
}
.navlink:hover::after {
  width: 100%;
}

.navlink.active {
  background: linear-gradient(to right, #160cea, #08e5ff, #160cea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
}

.logo {
  width: 110px;
  position: relative;
}

.logo-lg-container {
  margin-top: 2%;
  margin-left: 10%;
  display: inline-block;
  width: 25%;
}

.logo-sm-container {
  margin-top: 1.5%;
  margin-left: 15%;
  width: 10%;
}

.navbar-nav-background {
  background-color: transparent;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-toggler img {
  width: 30px;
}

/* Footer */
.heart {
  fill: red;
  position: relative;
  top: 0px;
  width: 16px;
  margin-left: 4px;
  margin-right: 4px;
  animation: pulse 1s ease infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.footer {
  color: rgb(182, 182, 182);
  background: linear-gradient(158deg, #2c2386, #5f00a1);
  padding-top: 3rem !important;
  padding: 2rem 5rem;
  font-size: 17px;
  margin-top: 2%;
}
.footer .privacy-links {
  font-size: 15px;
  margin: auto;
}
.footer .social-media-links img {
  width: 20px;
}
.footer .country-icon {
  width: 20px;
  vertical-align: middle;
}
.footer .mark-logo {
  width: 25px;
}
.footer .country-text {
  color: transparent;
  background: linear-gradient(100deg, #fc8610, #FFFFFF, #138808, #FFFFFF, #fc8610);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: tirangaAnimation 3s linear infinite;
}
@keyframes tirangaAnimation {
  0% {
    background-position: 200% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.footer .row {
  margin: auto;
  margin-right: auto !important;
}
.footer ul {
  padding: 1px;
  margin: auto;
}
.footer ul li {
  list-style: none;
  padding: 4px 0px;
}
.footer ul li i {
  width: 20px;
}
.footer ul li a {
  color: rgb(182, 182, 182);
  font-size: 17px;
  padding: 0.5px;
  text-decoration: none;
}
.footer ul li a:hover {
  color: white;
}
.footer .logo {
  margin-bottom: 1rem;
  width: 150px;
}
.footer img {
  max-width: 100%;
  vertical-align: bottom;
}
.footer .quick-links {
  padding-left: 35px;
}
.footer .form-control {
  padding-left: 5px;
}

.footer-contact-list li {
  white-space: nowrap;
}

.footer-title {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}

.copyright {
  padding: 5px;
}
.copyright hr {
  border-color: #6b6b6b;
  margin: 1rem 0 !important;
}
.copyright div {
  font-size: 16px;
}

/* Title & Subtitles */
.title {
  padding: 1rem;
  font-size: 40px;
  font-weight: bold !important;
  color: #042a3b;
  text-align: center;
  text-transform: uppercase;
}

/* Button */
.btn-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #160cea;
  background-image: linear-gradient(200deg, #160cea, #d33ceb);
  padding: 1rem 1.5rem;
  margin-right: 13px;
  border-radius: 4px;
  border: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.btn-all:hover {
  text-decoration: none;
}
.btn-all:disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
}
.btn-all:focus {
  outline: none;
}
.btn-all::before, .btn-all::after {
  content: "";
  background: #fff;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-all::before {
  height: 155px;
  width: 50px;
  opacity: 0;
  left: -50%;
}
.btn-all::after {
  height: 20rem;
  width: 8rem;
  left: -100%;
  opacity: 0;
}
.btn-all:not(:disabled):hover::before {
  left: 120%;
  opacity: 0.5;
}
.btn-all:not(:disabled):hover::after {
  left: 200%;
  opacity: 0.6;
}
.btn-all:not(:disabled):hover, .btn-all:not(:disabled):active {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}
.btn-all span {
  z-index: 20;
}

.btn-all-outline {
  color: #210ce7;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(200deg, #160cea, #08e5ff, #d000ff) border-box;
  background-size: 200% auto;
}
.btn-all-outline:hover {
  color: #210ce7 !important;
}

/* Common */
.nav-tabs.nav {
  flex-wrap: nowrap;
}

.nav-tabs-fill .nav-item {
  font-size: 1rem !important;
}
.nav-tabs-fill .nav-link {
  border: 0;
  border-radius: 30px;
  padding: 11px 25px;
}
.nav-tabs-fill .nav-link.active {
  border: 3px solid transparent;
  background: linear-gradient(200deg, #160cea, #d33ceb) padding-box, linear-gradient(200deg, #160cea, #d33ceb) border-box;
  background-size: 200% auto;
  color: white;
}

.nav-tabs-outline {
  margin-bottom: -2px;
  border: none !important;
  border-bottom: 2px solid rgba(229, 229, 229, 0.8509803922) !important;
}
.nav-tabs-outline .nav-item:has(.nav-link.active) {
  border-bottom: 3px solid #7200da;
  background: none;
}
.nav-tabs-outline .nav-item:has(.nav-link.active) .nav-link {
  color: #7200da;
  font-weight: 600;
}
.nav-tabs-outline .nav-item {
  background-size: 200% auto;
  margin-bottom: 0 !important;
}
.nav-tabs-outline .nav-link {
  border: none;
  padding: 0.8rem 1.5rem;
  color: gray;
}
.nav-tabs-outline .nav-link:hover {
  border-color: transparent;
}

.text-white {
  color: #ffffff;
}

.text-gray-900 {
  color: #111827;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-50 {
  color: #1f2937;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.pt-6 {
  padding-top: 4rem;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

/* Services */
.web-design-grid .services-box {
  text-align: center;
  align-items: center;
}
.web-design-grid .service-icon {
  width: 100px !important;
}

#work-tab-content .work-box {
  cursor: pointer;
  border: none;
  height: 100%;
  overflow: hidden;
  background-color: black;
}
#work-tab-content .work-box .work-details {
  z-index: 9;
  padding: 0 1rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /*100%*/
  height: 100%;
  transition: 0.5s;
  transform-origin: left;
  transform: perspective(2000px) rotateY(-90deg);
}
#work-tab-content .work-box .work-details .center {
  font-family: "Segoe UI" !important;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  color: white;
  transform: translateY(-50%);
}
#work-tab-content .work-box .work-details .center a {
  color: white;
  display: block;
}
#work-tab-content .work-box .work-details a {
  font-size: 16px;
}
#work-tab-content .work-box .work-details p {
  padding: 0 1rem;
}
#work-tab-content .work-box .card-bg {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
  transition: 0.2s;
}
#work-tab-content .work-box:hover .work-details {
  transform: perspective(2000px) rotateY(0deg);
}
#work-tab-content .work-box:hover .card-bg {
  opacity: 0.5;
  transition: 0.2s;
}
#work-tab-content .work-box .card-title {
  color: black;
  text-align: center;
  font-size: 23px;
  font-family: "Segoe UI" !important;
}
#work-tab-content .work-box .card-subtitle {
  text-align: center;
  color: gray;
  font-weight: 500;
  margin-bottom: 13px;
}
#work-tab-content .work-box .work-image {
  text-align: center;
  vertical-align: middle;
  flex-grow: 1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  overflow: hidden;
}
#work-tab-content .work-box .work-image img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#work-tab-content .nav-tabs {
  border-bottom: none;
}
#work-tab-content .nav-item {
  margin: 30px 0;
}

#Appllications-tab {
  font-size: 120%;
}

#Websites-tab {
  font-size: 120%;
}

.work-row .col-md-4 {
  height: 295px;
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 40px;
}

#checkout .cart-preview {
  width: 390px;
}
#checkout .cart-preview .cart-item {
  font-size: 1rem;
  line-height: 1.3rem;
}
#checkout .cart-preview .cart-item td,
#checkout .cart-preview .cart-item th {
  padding: 0.5rem 1rem;
}

.pg-list {
  gap: 0 1rem;
}

.plans-section {
  width: 90% !important;
}
.plans-section .tab-content {
  padding: 0;
}
.plans-section .plan-list {
  display: flex;
  gap: 1rem;
}
.plans-section .plan-content {
  width: 24rem;
}
.plans-section .plan-content .recommended-strip {
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
  top: -40px;
  width: 100%;
  left: 0;
  background: linear-gradient(200deg, #160cea, #d33ceb);
  background-size: 200% auto;
}
.plans-section .maintenance-technology-list .list {
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.technology-filter {
  width: 300px;
}

.service .service-name {
  font-size: 17px;
}
.service i {
  display: inline !important;
  width: 20px;
}

.btn-group-toggle .active {
  background-color: #160cea !important;
  color: white !important;
}
.btn-group-toggle .btn:focus,
.btn-group-toggle .btn.focus {
  box-shadow: none !important;
}

.gateway-box {
  gap: 1rem;
}
.gateway-box img {
  width: 26px;
}

.policy_content section h3 {
  margin-top: 31px;
}
.policy_content section h5 {
  line-height: 1.5 !important;
  margin-bottom: 0.5rem !important;
  text-align: left;
  margin-top: 2.7rem;
}
.policy_content section h1 {
  margin-top: 12px;
  padding-bottom: 8.5px;
}

.policy-content-box {
  padding: 1.5rem;
  font-size: 14px !important;
  color: #042a3b;
  text-align: center;
  margin-top: 0.7rem;
  padding-bottom: 15px !important;
}
.policy-content-box h1 {
  margin-top: 12px;
  padding-bottom: 8.5px;
}
.policy-content-box img {
  margin: 1rem 0rem;
  width: 125px;
}
.policy-content-box a {
  width: -moz-max-content;
  width: max-content;
}

/* Mobile */
/* Mobile View */
@media only screen and (min-width: 1500px) {
  .process-flow .ps__rail-x {
    display: none !important;
  }
}
@media only screen and (max-width: 1500px) {
  .navbar {
    padding: 0.5rem 3rem !important;
    left: 0;
  }
  .navbar a {
    font-size: 14px !important;
  }
  .top-strip {
    padding: 0.5rem 3rem !important;
  }
}
@media only screen and (max-width: 1200px) {
  .navbar .navbar-nav .dropdown-menu {
    text-align: center !important;
  }
  .navbar .dropdown {
    text-align: center !important;
  }
  .navbar .dropdown .has-dropdown {
    position: relative;
  }
  .navbar .dropdown .has-dropdown:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -3px;
    width: 0 !important;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #494949;
  }
  .navbar .dropdown.show .has-dropdown:after {
    transform: rotate(180deg);
  }
  .navbar ul {
    right: 0;
    background: white;
  }
  .navbar ul li a {
    color: black;
    font-size: 15px;
    font-weight: 600;
  }
  .addon-list {
    flex-direction: column;
    gap: 0;
  }
  .cart-item {
    width: 100%;
  }
}
@media only screen and (max-width: 970px) {
  .services-list {
    flex-direction: column;
  }
  .plan-list {
    flex-direction: column;
    gap: 2rem !important;
  }
  .plan-list .plan-content {
    width: 100% !important;
  }
  .plan-list .toggle-btn {
    display: block !important;
    font-weight: 500;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 1rem;
    background: white;
  }
  .plan-list .plan-content .card.plan-collapse .plan-features {
    transition: 0.2s;
    height: 36rem !important;
    overflow: hidden;
  }
  .plan-list .plan-content .card.plan-collapse .toggle-btn {
    position: absolute;
    box-shadow: 0px -20px 20px 9px #ffffff;
  }
  .footer {
    padding: 2rem;
  }
}
@media only screen and (max-width: 720px) {
  h3,
  h1,
  p {
    width: 100% !important;
  }
  h3,
  h1 {
    line-height: normal !important;
  }
  body {
    font-size: 1rem !important;
  }
  section {
    margin: 5%;
  }
  .page-description {
    width: 100%;
  }
  .title h1 {
    font-size: 28px;
  }
  .sub-title h4 {
    font-size: 18px;
  }
  .btn-all {
    margin-bottom: 1rem;
  }
  .details {
    font-size: 18px;
  }
  .footer {
    text-align: center;
  }
  .footer .footer-item {
    margin-bottom: 0.5rem;
  }
  .footer .copyright > div.d-flex {
    gap: 1.5rem;
  }
  .box {
    margin: 1.5%;
    padding: 1.5%;
    min-height: 2.5rem;
    min-width: 100%;
    max-height: 2.5rem;
    max-width: 100%;
    font-size: 18px;
  }
  .navbar {
    padding: 1rem 1.2rem !important;
    left: 0;
  }
  .nav-tabs .nav-link {
    white-space: nowrap;
  }
  .logo {
    box-shadow: 0px 0px 0px;
    left: 0;
  }
  .type-box,
  .testimonial-box {
    padding-top: 30px;
    flex-direction: column;
    gap: 0rem;
  }
  .type-box .types-title,
  .type-box .types-content,
  .testimonial-box .types-title,
  .testimonial-box .types-content {
    text-align: center;
    line-height: normal;
  }
  .type-box .types-title,
  .testimonial-box .types-title {
    flex: auto;
    margin-bottom: 10px;
  }
  .main-container {
    width: 90%;
  }
  .section-title,
  .jumbotron h1 {
    line-height: normal;
  }
  .section-title,
  .section-title > *,
  .jumbotron h1,
  .jumbotron h1 > * {
    font-size: 35px !important;
  }
  .know-more {
    float: right;
  }
  .tech-container .technology-list .technology-image img {
    width: 100px !important;
  }
  .tech-container .technology-list .technology-details,
  .tech-container .technology-list .technology-image {
    width: 100% !important;
  }
  .tech-container .technology-list .technology-details h5,
  .tech-container .technology-list .technology-image h5 {
    text-align: center;
    margin: 15px;
    font-size: 25px;
  }
  .tech-container .technology-list .row .col-md-6:not(:nth-child(1)) {
    margin-top: 60px;
  }
  .tech-container .technology-list > div:not(:nth-child(1)) {
    margin-top: 34px;
  }
  .tech-container .technology-list {
    margin-left: 0 !important;
    margin: auto !important;
    display: block !important;
    flex-direction: column;
  }
  .tech-container .technology-list .technology-image,
  .tech-container .technology-list .technology-details {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }
  .tech-container .tech-box {
    flex-direction: column;
  }
  .plans-filter {
    flex-direction: column;
    gap: 1.5rem;
  }
  .top-strip {
    padding: 1rem 1.2rem !important;
  }
  .top-strip .mail,
  .top-strip .client-portal {
    display: none;
  }
  #get-a-quote {
    width: 90%;
  }
  .quote {
    padding: 1.3rem;
  }
  .quote #lets-partnership {
    width: 100% !important;
  }
  .quote .quote-img {
    display: none;
  }
  .technology-group {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .technology-group .technology-filter {
    width: 100%;
  }
  .plan-price {
    font-size: 2rem !important;
  }
  #checkout .cart-preview {
    width: 100% !important;
  }
  #work-tab-content .nav-item {
    margin: 10px 0;
  }
  #spark-loader img {
    width: 50%;
  }
  .services-list:not(.other-service-list) .services-box,
  .services-grid:not(.other-service-list) .services-box {
    padding: 1rem !important;
    align-items: center;
  }
  .services-list:not(.other-service-list) .services-box .service-header, .services-list:not(.other-service-list) .services-box .service-header > *,
  .services-grid:not(.other-service-list) .services-box .service-header,
  .services-grid:not(.other-service-list) .services-box .service-header > * {
    font-size: 34px;
    text-align: center !important;
  }
  .services-list:not(.other-service-list) .services-box .service-header > *,
  .services-list:not(.other-service-list) .services-box .know-more,
  .services-grid:not(.other-service-list) .services-box .service-header > *,
  .services-grid:not(.other-service-list) .services-box .know-more {
    text-align: center !important;
  }
  .services-list:not(.other-service-list) .services-box .service-icon,
  .services-grid:not(.other-service-list) .services-box .service-icon {
    margin: auto;
  }
  .other-service-list .services-box img {
    height: 70px;
  }
  .other-service-list .services-box h4 {
    font-size: 1.2rem;
  }
  .services-box {
    text-align: center;
  }
  .addon-card,
  .property-items,
  .addon-content {
    flex-direction: column;
    text-align: center;
  }
  .addon-card ul,
  .property-items ul,
  .addon-content ul {
    text-align: center;
  }
  .addon-card .addon-img img,
  .property-items .addon-img img,
  .addon-content .addon-img img {
    width: 100%;
  }
  .addon-card .addon-actions,
  .property-items .addon-actions,
  .addon-content .addon-actions {
    min-width: 100% !important;
  }
  .addon-card .addon-actions .btn-all,
  .property-items .addon-actions .btn-all,
  .addon-content .addon-actions .btn-all {
    width: 100% !important;
  }
  .addon-content {
    padding-left: 0 !important;
  }
  .cart-box {
    width: 100%;
    min-width: auto;
  }
  .property-items ul li {
    display: block;
    margin-bottom: 1rem;
  }
  .property-items p {
    margin-bottom: 0;
  }
  .addon-description {
    padding-top: 1rem;
  }
  .addon-details-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .faq-item .faq-label {
    font-size: 18px;
  }
}
@media only screen and (max-width: 420px) {
  .header-box {
    height: 250px;
    padding: 10px;
  }
  .type-box {
    padding-left: 30px;
    padding-right: 30px;
  }
  #brand-container {
    width: 75% !important;
  }
  #brand-container .logo {
    left: 8px;
  }
  .nav-img h3 {
    font-size: 34px;
  }
  .footer {
    text-align: center;
    padding: 3rem 1rem;
  }
  .tech-container {
    width: 88%;
  }
  .tech-container .technology-title {
    font-size: 21px;
  }
}
@media screen and (max-width: 420px) and (min-width: 340px) {
  #request-a-quote .btn {
    margin: auto;
  }
  #request-a-quote h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
