/* ----------------------------------------------------------------
	Canvas: Landing
-----------------------------------------------------------------*/
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-bg: #fff;
  --bs-body-color: #212529;
  --themecolor: #7453f0;
  --secondary-color: #7453f0;
  --themecolorrgba: 236, 99, 103;
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: 1.5;
  color: #555;
  font-family: "Lato", sans-serif;
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
  text-decoration: none;
}
.content-wrap {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.mx-auto {
  float: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
.center {
  text-align: center !important;
}
.bottommargin {
  margin-bottom: 3rem !important;
}
.topmargin {
  margin-top: 3rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.si-youtube:hover,
.si-colored.si-youtube {
  background-color: #c4302b !important;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
img,
svg {
  vertical-align: middle;
}
.flex-row {
  flex-direction: row !important;
}
.d-flex {
  display: flex !important;
}
#wrapper {
  position: relative;
  float: none;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.stretched #wrapper {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

.dark,
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  color: #eee;
}
.col {
  flex: 1 0 0%;
}
a {
  color: var(--themecolor);
  text-decoration: none;
}
a img {
  border: none;
}
.me-0 {
  margin-right: 0 !important;
}
.border-0 {
  border: 0 !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 30px 0;
  font-family: "Poppins", sans-serif;
}
h2 {
  font-size: 30px;
}
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
[class*="col-"]:not([class*="sticky-"]):not([class*="position-"]) {
  position: relative;
}
.fw-bold {
  font-weight: 700 !important;
}
.font-primary {
  font-family: "Poppins", sans-serif;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
h4,
.h4 {
  font-size: calc(1.275rem + 0.3vw);
}
h6,
.h6 {
  font-size: 1rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.heading-block h2 {
  font-size: 52px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
}
.text-center {
  text-align: center !important;
}
.center .heading-block::after,
.text-center .heading-block::after,
.heading-block.center::after,
.heading-block.text-center::after {
  margin: 30px auto 0;
}
.heading-block::after {
  content: "";
  display: block;
  margin-top: 30px;
  width: 40px;
  border-top: 2px solid #444;
}
.fw-normal {
  font-weight: 400 !important;
}
.button,
.btn,
.flex-prev,
.flex-next {
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.rounded-3 {
  border-radius: 0.3rem !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.topmargin {
  margin-top: 3rem !important;
}
.justify-content-center {
  justify-content: center;
}
.section {
  position: relative;
  width: 100%;
  margin: 60px 0;
  padding: 60px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}
.w-100 {
  width: 100%;
}
/* Header css :: BEGIN */
#header {
  position: relative;
  background-color: var(--themecolor);
  border-bottom: 1px solid #f5f5f5;
}
.header-row {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#header-wrap {
  position: relative;
  /* background-color: #fff; */
  width: 100%;
}
#logo {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  margin-right: auto;
  max-height: 100%;
}
.border-end-0 {
  border-right: 0 !important;
}
#logo a {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
}
#logo a.standard-logo {
  display: -ms-flexbox;
  display: flex;
}
#logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: 60px !important;
}
#logo a.retina-logo {
  display: none;
}
#primary-menu-trigger,
#page-menu-trigger {
  display: -ms-flex;
  display: flex;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  cursor: pointer;
  font-size: 0.875rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  justify-content: center;
  align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.svg-trigger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.svg-trigger path {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #333;
  stroke-width: 5;
  stroke-linecap: round;
}
.svg-trigger path:nth-child(1) {
  stroke-dasharray: 40 160;
}
.svg-trigger path:nth-child(2) {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.svg-trigger path:nth-child(3) {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.primary-menu {
  display: -ms-flexbox;
  display: flex;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}
.menu-container {
  display: none;
  list-style: none;
  margin: 0;
  width: 100%;
}
.menu-item {
  position: relative;
}
.dark #header-wrap:not(.not-dark) .menu-container > .menu-item > .menu-link,
.dark #primary-menu:not(.not-dark) .sub-menu-container .menu-item > .menu-link {
  color: #fff;
}
.menu-link {
  display: block;
  line-height: 22px;
  padding: 14px 5px;
  color: #444;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: none;
  font-family: "Poppins", sans-serif;
}
.header-wrap-clone {
  display: none;
}
/* Header css :: END */

/*Banner section css :: BEGIN */
.slider-element {
  z-index: 1;
  height: 700px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.flex-column {
  flex-direction: column !important;
}
.slider-inner {
  position: absolute;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vertical-middle {
  z-index: 3;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 100%;
  justify-content: center;
  flex-flow: column;
}
.slider-element .container,
.slider-element .container-fluid {
  position: relative;
  height: 100%;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.lead a {
  color: unset;
}
.ls0 {
  letter-spacing: 0px !important;
}

.nott {
  text-transform: none !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.ls1 {
  letter-spacing: 1px !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.bg-color,
.bg-color #header-wrap,
.h-bg-color:hover,
.process-steps li.active a,
.process-steps li.ui-tabs-active a,
.sidenav > .ui-tabs-active > a,
.sidenav > .ui-tabs-active > a:hover,
.owl-carousel .owl-nav [class*="owl-"]:hover,
.widget-filter-links li.active-filter span,
.page-item.active .page-link,
.page-link:hover,
.page-link:focus {
  background-color: #7453f0 !important;
}
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5);
}
.text-muted {
  color: #9bb0bf;
  --bs-text-opacity: 1;
}
.text-uppercase {
  text-transform: uppercase;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
small,
.small {
  font-size: 0.875em;
  font-family: "Lato", sans-serif;
}
.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.slide-imgs .card-img {
  position: relative;
  max-width: 500px;
  transition: opacity 0.65s cubic-bezier(0.2, 0.7, 0.3, 1);
  z-index: 1;
}
.section-clients {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 45px 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.section-clients img {
  width: 150px;
}
/*Banner section css :: END */

/* Feature section css :: BEGIN */
.feature-list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-list .fbox {
  flex: 0 0 20%;
}
.feature-boxes {
  border: 1px solid var(--themecolor);
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  min-height: 160px;
  position: relative;
  background-color: transparent;
}
.feature-list .first-feature .feature-boxes:before {
  content: "";
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--secondary-color);
  border-left: 4px solid var(--secondary-color);
  position: absolute;
  border-radius: 5px 0 0 0;
  top: -1px;
  left: 0;
}
.feature-list .last-feature .feature-boxes:after {
  content: "";
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--secondary-color);
  border-right: 4px solid var(--secondary-color);
  position: absolute;
  border-radius: 0 0 5px 0;
  bottom: 0;
  right: -1px;
}
.feature-icon {
  margin-bottom: 10px;
}
.feature-icon svg {
  width: 50px;
  height: 50px;
}
.box-title {
  font-size: 16px;
  font-weight: 600;
  min-height: 45px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--themecolor);
}
.clear {
  clear: both;
  display: block;
  font-size: 0px;
  height: 0px;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}
.section-features {
  padding: 120px;
}
/* Feature section css :: END */

/* Gallery section css :: BEGIN  */
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  width: 8px;
  height: 8px;
  margin: 30px 4px 0 4px;
  opacity: 0.5;
  border: none;
  border-radius: 50%;
  background-color: var(--themecolor);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot:hover {
  opacity: 1;
}
.owl-item img {
  width: 100%;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.owl-item.active.center img {
  transform: scale(0.95);
}

.owl-carousel .owl-dots .owl-dot {
  opacity: 0.3;
  margin-top: 40px;
  width: 20px;
  height: 5px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.owl-carousel .owl-dots .owl-dot.active {
  width: 50px;
}
.owl-carousel {
  display: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
  width: 100%;
  touch-action: manipulation;
  overflow: hidden;
  margin-top: 50px;
  --owl-nav-sizes: 36px;
  --owl-dots-gutters: 4px;
  --owl-dots-sizes: 8px;
  /* --owl-nav-bg: var(--themecolor, #1abc9c); */
  --owl-nav-margin: calc(var(--owl-nav-sizes) / -2);
  --owl-nav-with-dots: calc(
    var(--owl-nav-margin) - calc(calc(30px + var(--owl-dots-sizes)) / 2)
  );
}
.owl-stage-outer {
  padding: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel.appScreens .owl-stage-outer {
  overflow: visible;
}
.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.appScreens .owl-item img {
  width: 100%;
  margin: 0 auto 0;
  transform-style: preserve-3d;
  display: block;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.owl-stage-outer .owl-stage-outer-bg {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19.7%;
  height: 100%;
  -webkit-background-size: contain;
  background-size: contain;
  /* background-image: url("images/section/device.png"); */
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 3px solid #aeacac;
  border-radius: 7px;
}
.owl-stage-outer .owl-stage-outer-bg:before {
  content: "";
  width: 100.3%;
  height: 100%;
  border: 5px solid #000;
  position: absolute;
  border-radius: 2px;
}
.owl-carousel.with-carousel-dots .owl-nav [class*="owl-"] {
  margin-top: var(--owl-nav-with-dots);
}
.owl-carousel.with-carousel-dots .owl-nav [class*="owl-"] {
  margin-top: -38px;
}
.slider-element .owl-nav [class*="owl-"],
.owl-carousel-full .owl-nav [class*="owl-"] {
  margin-top: -30px;
  left: 0 !important;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #eee;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 28px;
  border-radius: 0 3px 3px 0;
}
.owl-carousel-full .with-carousel-dots .owl-nav [class*="owl-"] {
  margin-top: -50px;
}
.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -36px;
}
.slider-element .owl-nav .owl-next,
.owl-carousel-full .owl-nav .owl-next {
  left: auto !important;
  right: 0 !important;
  border-radius: 3px 0 0 3px;
}
.owl-carousel:hover .owl-nav [class*="owl-"] {
  opacity: 1;
  left: -18px;
}
.owl-carousel:hover .owl-nav .owl-next {
  left: auto;
  right: -18px;
}
.owl-carousel .owl-nav [class*="owl-"]:hover {
  background-color: #1abc9c !important;
  color: #fff !important;
  text-decoration: none;
}
.slider-arrow-left,
.slider-arrow-right,
.flex-prev,
.flex-next,
.slider-arrow-top-sm,
.slider-arrow-bottom-sm {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  top: 50%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0 3px 3px 0;
  transform: translateY(-50%);
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.slider-arrow-right,
.slider-element .owl-next,
.flex-next {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Pricing section css :: BEGIN */
.parallax {
  background-color: transparent;
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
  overflow: hidden;
  will-change: auto;
}
.m-0 {
  margin: 0 !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.device-video-wrap::before,
.dotted-bg::before {
  content: "";
  position: absolute;
  display: block;
  top: 40%;
  left: 35%;
  width: 110%;
  height: 120%;
  background-size: 12px 12px;
  background-position: center;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(#7453f0 14%, transparent 14%);
  -webkit-mask-image: radial-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 75%);
  mask-image: radial-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 75%);
  z-index: 0;
}
.dotted-bg::before {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.2) 14%,
    transparent 14%
  );
}
.bottommargin-sm {
  margin-bottom: 2rem !important;
}
.pricing-table .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 20px;
  padding: 25px 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: -1px -1px;
  background-size: 102% 160px;
  border-color: rgba(255, 255, 255, 0.3);
}
.pricing-table .card h2 {
  font-size: 48px;
}
.pricing-table .card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6 !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
}
.toggle-wrap {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.toggle {
  display: block;
  position: relative;
  margin: 0 0 20px 0;
  padding: 18px 30px;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s ease;
}
.toggle:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.dark .toggle-header,
.dark .accordion-header {
  color: #eee;
}
.toggle-header,
.accordion-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
  cursor: pointer;
  color: #444;
  font-size: 1rem;
  font-weight: 700;
}

.toggle-icon,
.accordion-icon {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 0 5px;
  text-align: center;
}

.toggle-icon i,
.toggle-icon span {
  width: 1rem;
}

.toggle-title,
.accordion-title {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding: 0 5px;
}

.toggle:not(.toggle-active) > .toggle-header .toggle-open,
.toggle-active > .toggle-header .toggle-closed {
  display: none;
}

.toggle-active > .toggle-header .toggle-open {
  display: inline-block;
}

.toggle-content,
.accordion-content {
  display: none;
  position: relative;
  padding: 0.75rem 0;
}
.toggle:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.toggle:last-child {
  border-bottom: 0;
}
.toggle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
/* Pricing section css :: END*/

/* Experinece section css :: BEGIN */
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}
h2 > span:not(.nocolor):not(.badge) {
  color: var(--themecolor);
}
.feature-box:first-child {
  margin-top: 0;
}
.feature-box {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.fbox-plain .fbox-icon {
  border: none !important;
}
.fbox-icon {
  width: 5.5rem;
  height: 4rem;
  padding: 0 0.75rem;
}
.fbox-icon a,
.fbox-icon i,
.fbox-icon img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
}
.feature-box.fbox-plain .fbox-icon i {
  font-size: 36px;
  line-height: 1;
}
.h-text-primary:hover,
a.h-text-primary:hover {
  color: #007bff !important;
}
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.fbox-content {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
  padding: 0 0.75rem;
}
.fbox-content h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #333;
}
.fbox-content p {
  margin-top: 0.5rem;
  margin-bottom: 0px;
  color: #999;
}
.line,
.double-line {
  clear: both;
  position: relative;
  width: 100%;
  margin: 4rem 0;
  border-top: 1px solid #eee;
}
.line.line-sm {
  margin: 2rem 0;
}
.align-items-end {
  align-items: flex-end !important;
}
.device-video-wrap {
  position: relative;
  width: 100%;
  /* margin-bottom: 40px; */
}
.device-video-wrap > * {
  position: relative;
  z-index: 1;
}
.device-video-wrap img {
  position: relative;
  margin: 0 auto;
  max-width: 1024px;
}
.device-video-wrap video {
  position: absolute;
  top: 50px;
  left: 35%;
  max-width: 45%;
  z-index: 1;
  transform: translate(-50%);
}
/* Experinece section css :: END */

/* Testimonial section css :: BEGIN */
.testimonial {
  position: relative;
  padding: 20px;
  margin-bottom: 120px;
}
.testimonial.testimonial-full[data-animation="fade"] .flexslider {
  overflow: visible !important;
}
.slider-wrap,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
}
.align-items-center {
  align-items: center !important;
}
.gap-3 {
  gap: 1rem !important;
}
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.testimonial-full .testi-content {
  text-align: center;
  font-size: 18px;
}
#content .container {
  position: relative;
}
.testimonial .testi-content p {
  font-size: 28px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5 !important;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  margin-bottom: 30px;
}
.testi-meta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
.dark .flex-prev,
.dark .flex-next {
  background-color: #fff !important;
}
.flex-prev,
.flex-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.flex-next i,
.flex-prev i {
  font-size: 24px;
  height: 45px;
  line-height: 45px;
  color: #111;
  text-shadow: none;
}
.flex-next i {
  margin-left: 3px;
}
.flex-prev i {
  margin-left: -1px;
}
/* Testimonial section css :: END */

/* Contact section css :: BEGIN */
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.p-5 {
  padding: 3rem !important;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
label {
  display: inline-block;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  font-family: inherit;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}
textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea {
  resize: vertical;
}
.d-none {
  display: none !important;
}
/* Contact section css :: END */

/* Blog section css :: BEGIN */
.entry-title.title-xs h2,
.entry-title.title-xs h3 {
  font-size: 1rem !important;
  letter-spacing: 0;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-image img {
  width: 100%;
}
.entry-title h2 a,
.entry-title h3 a,
.entry-title h4 a {
  color: #333;
}
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
/* Blog section css :: END */

/* Footer section css :: BEGIN */
#copyrights {
  padding: 40px 0;
  background-color: #ddd;
  font-size: 0.875rem;
  line-height: 1.8;
}
/* .col-mb-30 {
  margin-bottom: 30px;
} */
#copyrights a:first-child {
  margin-left: 0;
}
.social-icon.si-small {
  float: none;
  display: inline-block;
  border: 1px solid #aaa;
  border-radius: 3px;
  overflow: hidden;
  margin: 4px 11px 7px 0;
  text-align: center !important;
  color: #fff;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 30%);
  cursor: pointer;
  font-style: normal;
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
  line-height: 30px !important;
}
.si-facebook:hover,
.si-colored.si-facebook {
  background-color: #3b5998 !important;
}
.si-colored.social-icon {
  border-color: transparent;
}
.si-colored {
  border-color: transparent !important;
}
body:not(.device-touch) .i-rounded,
body:not(.device-touch) .i-plain,
body:not(.device-touch) .i-circled,
body:not(.device-touch) .i-bordered,
body:not(.device-touch) .social-icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.si-instagram:hover,
.si-colored.si-instagram {
  background-color: #8a3ab9 !important;
}
.si-linkedin:hover,
.si-colored.si-linkedin {
  background-color: #0e76a8 !important;
}
.social-icon i {
  display: block;
  position: relative;
}
.si-colored i {
  color: #fff;
}
.social-icon.si-small:hover i:first-child {
  margin-top: -30px;
}
.social-icon:hover i:first-child {
  margin-top: -38px;
}
#gotoTop {
  display: none;
  z-index: 599;
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
  line-height: 36px;
  text-align: center;
  color: #fff;
  top: auto;
  left: auto;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
  border-radius: 2px;
}

body:not(.device-touch) #gotoTop {
  transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
}

.stretched #gotoTop {
  bottom: 30px;
}

#gotoTop:hover {
  background-color: #1abc9c;
}
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}
/* Footer section css :: END */

/* Media Query :: BEGIN */
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns.grid-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .card-columns > * {
    display: inline-block;
    width: 100%;
  }
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .icon-credit {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .align-items-lg-center {
    align-items: center !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  #header.transparent-header.full-header #header-wrap {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }

  #header.transparent-header,
  #header.transparent-header:not(.sticky-header) #header-wrap {
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 299;
  }

  #top-bar + #header:not(.sticky-header) #header-wrap,
  #slider + #header:not(.sticky-header) #header-wrap,
  .floating-header:not(.sticky-header) #header-wrap,
  div + #header-wrap,
  .no-sticky #header-wrap,
  [data-sticky-offset]:not([data-sticky-offset="full"]):not(.sticky-header)
    #header-wrap,
  body:not(.stretched) #header:not(.sticky-header) #header-wrap {
    position: absolute;
  }
  #header-wrap {
    position: fixed;
    height: auto;
    z-index: 299;
    box-shadow: 0 0 0 rgb(0 0 0 / 10%);
    transition: height 0.2s ease 0s, background-color 0.3s ease 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: left, top, transform;
  }
  .stretched .full-header #header-wrap > .container {
    width: 100%;
    max-width: none;
    padding: 0 30px;
  }
  .header-row {
    position: initial;
  }
  .full-header #logo {
    padding-right: 30px;
    border-right: 1px solid #eee;
  }
  #header.transparent-header.full-header #logo {
    border-right-color: rgba(0, 0, 0, 0.1);
  }
  #primary-menu-trigger,
  #page-menu-trigger {
    display: none;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
  }
  .primary-menu {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .menu-container:not(.mobile-primary-menu) {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
  }
  .full-header .primary-menu .menu-container {
    padding-right: 0.5rem;
    margin-right: 0.5rem;
    border-right: 1px solid #eee;
  }
  .transparent-header.full-header .primary-menu .menu-container {
    border-right-color: rgba(0, 0, 0, 0.1);
  }
  .menu-link {
    padding: 39px 15px;
    -webkit-transition: margin 0.4s ease, padding 0.4s ease;
    -o-transition: margin 0.4s ease, padding 0.4s ease;
    transition: margin 0.4s ease, padding 0.4s ease;
  }
  .header-wrap-clone {
    display: block;
    height: calc(100px + 1px);
  }
  #header + .include-header {
    margin-top: calc(-100px - 2px);
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
  }
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}
@media (min-width: 1200px) {
  body:not(.stretched) #wrapper {
    max-width: 1200px;
  }
  h1,
  .h1 {
    font-size: 2.5rem;
  }
  .display-6 {
    font-size: 2.5rem;
  }
  .display-4 {
    font-size: 3.5rem;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  h4,
  .h4 {
    font-size: 1.5rem;
  }
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
}
@media (min-width: 1440px) {
  body:not(.stretched) #wrapper {
    max-width: 1440px;
  }
}
@media (max-width: 991.98px) {
  .testimonial .testi-content p {
    font-size: 14px;
  }
  .feature-list .fbox {
    flex: 1 0 18%;
  }
  .device-video-wrap video {
    left: 22.8%;
    max-width: 30%;
  }
  .vertical-middle {
    justify-content: start;
    padding: 50px 0;
  }
  .display-4 {
    font-size: 30px;
  }
  #logo img {
    width: 150px;
    height: 30px !important;
  }
  .slider-element {
    height: 100%;
  }
  .sec-img {
    background-size: 100% !important;
    background-repeat: no-repeat !important;
  }
  .slide {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  #logo img {
    width: 100px;
    height: 30px !important;
  }
  .heading-block h2 {
    font-size: 26px !important;
  }
  .lead {
    font-size: 18px;
  }
  .display-4 {
    font-size: 30px;
  }
  .display-6 {
    font-size: 26px;
  }
  .testimonial svg {
    width: 30px;
    height: 30px;
  }
  .section-features {
    padding: 30px;
  }
  .feature-list .fbox {
    flex: 1 0 45%;
  }
  .icon-credit {
    font-size: 26px;
  }
  .device-video-wrap video {
    left: 45%;
    max-width: 60%;
  }
  .section-clients {
    position: relative;
    bottom: auto;
  }
  .card-body.p-5 {
    padding: 1.5rem !important;
  }
  #copyrights {
    padding: 15px 0 0;
  }
  .fbox-icon {
    width: 3rem;
  }
  .section.m-0.bg-color {
    padding: 0 !important;
  }
  .flex-prev,
  .flex-next {
    width: 30px;
    height: 30px;
  }
  .flex-next i,
  .flex-prev i {
    line-height: 30px;
  }
  .form-control-lg {
    font-size: 16px;
  }
  h2 {
    font-size: 26px;
  }
}
/* Media Query :: END */
