html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: var(--base-font-size);
  position: relative;
  background-color: #fff;
}

.app-container {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--primary-color);
  text-shadow: none;
}

::selection {
  background: var(--primary-color);
  color: var(--primary-color);
  text-shadow: none;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #00a3ff;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select {
    -webkit-appearance: none !important;
    line-height: 28px !important;
  }
}

.text-primary {
  color: #4dd6d7 !important;
}

.bg-gray {
  background: #f8f8f8;
}

a:focus {
  outline: 0;
}

button:focus {
  outline: 0 dotted;
  outline: 0 auto -webkit-focus-ring-color;
}

.overlay {
  position: relative;
}

.overlay:before {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
}

.primary-btn,
.secondary-btn {
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 8px 15px;
  position: relative;
  display: table;
  border-radius: 3px;
}

.primary-btn {
  background: var(--primary-color);
  color: #fff;
}

i .primary-btn:hover {
  background: var(--primary-color-dark);
  color: #fff;
}

.secondary-btn {
  background: var(--secondary-color);
  color: #fff;
}

.secondary-btn:hover {
  background: var(--secondary-color-dark);
  color: #fff;
}

.btn.focus,
.btn:focus,
a:focus,
input:focus {
  outline: 0;
  box-shadow: none !important;
}

.banner-btn {
  text-transform: capitalize;
  display: inline-block;
  transform: translateY(0);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: #fff !important;
  background-color: transparent;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #fff !important;
}

.sec-padding-60 {
  padding: 60px 0;
}

.sec-padding-100 {
  padding: 100px 0;
}

.sm-btn {
  font-size: 14px;
}

.md-btn {
  font-size: 16px;
}

.lg-btn {
  font-size: 18px;
}

.xl-btn {
  font-size: 20px;
}

.quicknav li a.btn.btn-primary,
.btn-info {
  color: #fff;
  background: #00a3ff;
}

.quicknav li a.btn.btn-primary:not(:disabled):not(.disabled).active,
.quicknav li a.btn.btn-primary:not(:disabled):not(.disabled):active,
.btn-info:hover {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}

.quicknav li a.btn.btn-primary.focus,
.quicknav li a.btn.btn-primary:hover,
.quicknav li a.btn.btn-primary:focus {
  color: #000;
  border-color: transparent;
  background: transparent;
  border: 1px solid #00a3ff;
  color: #00a3ff;
}

.btn-primary {
  background: #00a3ff;
  border: none;
}

.btn-wrap .btn {
  margin-right: 15px;
}

.btn.btn-white {
  background: #fff;
  color: #000;
}

.btn {
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.btn-secondary {
  background: transparent;
  color: #00a3ff;
  border: 1px solid #00a3ff;
}

.btn-secondary:hover {
  box-shadow: none;
  background: #00a3ff;
  color: #fff;
}

.btn-purple {
  background: #6557d6;
  color: #fff;
}

.btn-purple:hover {
  color: #fff;
  background: #4d3fc3;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.h3,
.h4,
.h5,
.h6,
h3,
h4,
h5,
h6 {
  padding-bottom: 10px;
  color: #202020;
  font-weight: 600;
}

.h1,
h1 {
  color: #1e1e1e;
}

.h2,
h2 {
  color: #1e1e1e;
}

.h3,
h3 {
  font-size: var(--font-size-h3);
}

.h4,
h4 {
  font-size: var(--font-size-h4);
}

.h5,
h5 {
  font-size: var(--font-size-h5);
}

.h6,
h6 {
  font-size: var(--font-size-h6);
}

p {
  font-weight: 500;
  line-height: 1.4;
  padding: 0 0 0;
  margin: 0;
  color: #959595;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-hover {
  transition: all 0.3s;
}

.shadow-hover:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card {
  border: 0;
}

.card .card-body {
  padding: 40px 25px;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
  text-decoration: none;
}

img {
  border: 0;
  outline: 0;
}

li,
ul {
  list-style-type: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

a {
  color: #4dd6d7;
  text-decoration: none;
}

a:hover {
  color: #4dd6d7;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: #f7f8fd !important;
}

.header-main {
  position: fixed;
  padding: 0;
  z-index: 999;
  width: 100%;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  top: 0;
}

.header-main.fixed {
  box-shadow: 0 5px 20px #00000012;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: fixed;
  background: #fff;
}

.header-main.fixed .main-menu > ul > li > a {
  text-transform: capitalize;
  color: #223235;
}

.header-main.fixed .logo {
  width: 100%;
}

.nav-area-full {
  padding: 20px;
  width: 100%;
  position: fixed;
  top: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: #000;
}

header.header-main.stickyyy .nav-area-full {
  padding: 10px 0;
  box-shadow: 0px 4px 10px 0px #00000021;
}

.scrolldown {
  padding-top: 60px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0px);
}

.scrolldown span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}

.scrolldown span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.logo {
  margin: 0;
  float: left;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.logo img {
  width: 220px;
}

.logo a {
  display: inline-block;
}
.logo a h3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #00a3ff;
  font-weight: 700;
  padding: 0;
  text-transform: uppercase;
  font-size: 30px;
}

.logo a h3 span {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.main-menu {
  display: inline-block;
}

.main-menu > ul {
  float: left;
  margin: 0;
}

.main-menu > ul > li {
  padding: 0;
  position: relative;
  display: inline-block;
}

.main-menu > ul > li:last-child {
  padding-right: 0;
}

.main-menu > ul > li:before {
  position: absolute;
  width: 1px;
  height: 12px;
  background: #71787e;
  left: 0;
  top: 30%;
}

.main-menu > ul > li:first-child:before {
  display: none;
}

.main-menu > ul > li > a {
  padding: 14px 6px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.header-main .has-submenu.progmenu {
  font-size: 16px;
  color: #171717;
  font-weight: 400;
  margin: 0;
  padding: 3px 0 4px;
}

header .main-menu ul li.hasmenu:hover .dropDown {
  height: auto;
  opacity: 1;
  padding-top: 25px;
}

header .dropDown > ul {
  width: 100%;
  background-color: #000;
  box-shadow: 0px 4px 10px 0px #00000021;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

header .dropDown {
  position: absolute;
  min-width: 250px;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  top: 30px;
  z-index: 9;
  height: 0;
  overflow: hidden;
  -moz-transition: height 1s ease;
  -webkit-transition: height 1s ease;
  -o-transition: height 1s ease;
  transition: height 1s ease;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header.header-main.stickyyy .main-menu ul li .dropDown {
  padding-top: 15px;
}

header .dropDown > ul > li {
  display: block;
}

header .dropDown > ul > li a .navicon.one {
  background-position: 5px -610px;
}

header .dropDown > ul > li a .navicon.two {
  background-position: -115px -610px;
}

header .dropDown > ul > li a .navicon.three {
  background-position: -235px -610px;
}

header .dropDown > ul > li a .navicon.four {
  background-position: -360px -610px;
}

header .dropDown > ul > li a .navicon.five {
  background-position: -480px -610px;
}

header .dropDown > ul > li a .navicon {
  background: url(../images/sprite.png);
  width: 120px;
  height: 90px;
  display: inline-block;
}

header .dropDown > ul > li > a {
  color: #333;
  display: flex;
  align-items: center;
  line-height: 1.2;
  font-size: 12px;
  color: #fff;
  padding: 14px 20px;
  border-bottom: 1px solid #f2f2f238;
}

header .dropDown > ul > li > a > i {
  font-size: 40px;
  margin-right: 14px;
}

header .dropDown > ul > li a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s;
  margin-right: 16px;
}

header .dropDown > ul > li a span.head {
  font-size: 16px;
  font-weight: 700;
  display: block;
  color: #2e2e2e;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header .dropDown > ul > li a span.discp {
  font-size: 12px;
}

header .dropDown > ul > li a:hover span.discp {
  color: #232323;
}

header .dropDown > ul > li a.link {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #2e2e2e;
}

header .dropDown > ul > li.last {
  padding: 5px 0 0;
}

.main-menu > ul > li.hasmenu span {
  font-size: 10px;
}

header .dropDown > ul > li a:hover {
  color: #000;
  background: #00a3ff;
  border-color: #00a3ff;
}

header .dropDown > ul > li:hover a span.head {
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: #4cd3d5;
}

header .dropDown > ul > li:hover a img {
  transition: transform 0.2s;
  transform: scale(1.1);
}

.main-menu > ul > li > a > i {
  font-size: 16px;
  padding-left: 3px;
}

.main-menu > ul > li.head-no > a {
  border-radius: 30px;
  padding: 16px 20px;
  font-size: 14px;
  background-color: #4cd3d5;
  color: #fff;
  font-weight: 700;
}

.main-menu > ul > li.head-no > a:hover {
  color: #4dd6d7;
}

.main-menu > ul > li.active > a,
.main-menu > ul > li > a.active,
.main-menu > ul > li > a:focus,
.main-menu > ul > li > a:active,
.main-menu > ul > li > a:hover {
  color: #00a3ff;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header .dropDown > ul > li > ul {
  padding-left: 70px;
  display: none;
}

header .dropDown > ul > li > ul li {
  margin-bottom: 6px;
}

header .dropDown > ul > li > ul li a {
  font-weight: 400;
}

header .dropDown > ul > li > ul li a:before {
  content: "_";
  position: relative;
  top: -6px;
  margin-right: 6px;
}

.dropdown {
  width: 270px;
  position: absolute;
  top: 160%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #cbd6e2;
  border-radius: 0.1875rem;
  box-shadow: 0 1px 24px rgba(45, 62, 80, 0.12);
  z-index: 95;
}

.main-menu > ul > li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  left: 18px;
}

.main-menu > ul > li:hover .progmenu .dropdown {
  left: 0;
}

.dropdown > ul {
  padding: 10px 0;
  list-style: none;
}

.dropdown > ul > li:before {
  display: none;
}

.dropdown > ul > li > a {
  color: #171717 !important;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 10px 8px 15px;
  display: block;
}

.dropdown > ul > li > a:hover {
  color: #000;
  background: 0 0;
}

.dropdown > ul > li > a:hover:before {
  display: none;
}

.double-drop {
  width: 400px !important;
}

.dropdown > ul > li > ul {
  display: none;
}

.dropdown > ul > li.level2:hover > ul {
  display: block;
}

.stickyheader {
  position: fixed;
  z-index: 9999;
  min-height: auto;
}

.stickyheader .logo img {
  width: 80px;
}

.stickyheader .logo {
  margin: 5px 0;
}

.stickyheader .navbar-inverse {
  margin: 10px 0 0 0;
}

.stickyheader .top-info-list ul {
  margin: 5px 0;
}

.sticky-container {
  padding: 0;
  margin: 0;
  position: fixed;
  right: -155px;
  top: 180px;
  width: 200px;
  display: none;
  z-index: 999;
}

.sticky li {
  border-radius: 5px;
  list-style-type: none;
  background-color: #333;
  color: #efefef;
  height: 45px;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.sticky li:hover {
  margin-left: -115px;
}

.sticky li img {
  float: left;
  border-radius: 5px 0 0 5px;
  margin: 0;
  margin-right: 10px;
}

.sticky li p {
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  line-height: 45px;
  color: #fff;
}

.sticky li a {
  border-radius: 5px;
  color: #fff;
}

.main-menu > ul > li.book-call {
  margin-top: 0;
}

.main-menu > ul > li.book-call a {
  position: relative;
  color: #4c4c4c;
  font-size: 16px;
  font-weight: 600;
}

.main-menu > ul > li.book-call a i {
  position: absolute;
  margin-right: 6px;
  padding-left: 0;
  font-size: 16px;
  left: 0;
}

/* sidebar */
.backdrop {
  background: #000000cc;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  display: none;
  top: 0;
  bottom: 0;
}

.backdrop .logo {
  width: 20%;
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%) scaleX(-1);
  opacity: 0;
  transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
}

.backdrop.rotate .logo {
  transform: translate(-50%, -50%) scaleX(1);
  opacity: 1;
}

.burger-click-region {
  position: absolute;
  left: 76px;
  top: 80px;
  width: 24px;
  height: 30px;
  z-index: 11;
  cursor: pointer;
}

/* .nav-area-full .burger-click-region {
    position: unset;
    display: inline-block;
    margin-right: 20px;
    display: none;
} */
.nav-area-full .burger-click-region {
  display: inline-block;
  margin-right: 0;
  margin-left: 10px;
  position: relative;
  top: 15px;
  left: 0;
  width: auto;
  height: auto;
  border: 1px solid #fff;
  padding: 1px 8px 7px;
  border-radius: 4px;
  background: #fff;
}

.nav-area-full .burger-click-region .burger-menu-piece {
  border-color: #000 !important;
}

.burger-menu-piece {
  display: block;
  position: relative;
  width: 24px;
  border-top: 2px solid #ffffff;
  transform-origin: 50% 50%;
  margin-top: 6px;
}

.sidebar-wrapper .sidebar {
  width: 50%;
  margin-top: 0;
  right: -50%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  background: #000000;
}

.sidebar-wrapper .sidebar .logo {
  position: absolute;
  top: 60px;
  width: 200px;
}

.sidebar-wrapper .sidemenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100vh;
}

.sidebar-wrapper .sidemenu .menu-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 80px 60px 0;
}

.sidebar-wrapper .sidemenu .menu-footer {
  padding: 0 0 80px 60px;
}

/* .sidebar-wrapper .sidemenu {
      height: 100%;
  } */
.sidebar-wrapper .sidebar li {
  list-style-type: none;
  font-size: 50px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  min-width: 100%;
}

.sidebar-wrapper .sidebar .sidetext {
  opacity: 1;
  color: #fff;
}

.sidebar .burger-click-region {
  top: 55px;
  left: 55px;
}

.menu-title {
  display: none;
  padding: 0 0 30px 0;
  color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  line-height: 100%;
}

.menu-nav {
  margin: -4px 0;
  height: 600px;
  overflow: auto;
}

.menu-nav-item {
  position: relative;
  display: block;
  padding: 6px 0;
  overflow: hidden;
}

.menu-nav-item a {
  display: inline-block;
  position: relative;
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 100%;
  top: 80px;
  transition: all 0.5s;
}

.menu-nav-item.dropdown-nav-item a.icon {
  position: relative;
  left: 20px;
}

.menu-nav-item.dropdown-nav-item a.icon i {
  font-size: 35px;
}

.menu-nav-item a:hover {
  color: #00a3ff;
}

.openside .menu-nav-item a {
  top: 0;
}

.menu-nav-item .inner-menu {
  display: none;
  padding: 12px 0;
}

.menu-nav-item .inner-menu li {
  text-align: left;
  font-size: inherit;
  margin-bottom: 12px;
}

.menu-nav-item .inner-menu li a {
  font-size: 30px;
  padding-left: 20px;
}

.menu-nav-item a em i {
  position: relative;
  top: 4px;
  font-size: 34px;
  margin-left: 10px;
}

.menu-nav-item a em {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0 0.01em 0 0;
  font-style: normal;
}

.menu-social {
  display: inline-block;
  margin: -6px 0;
}

.menu-social-item {
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.00464286em;
  text-transform: capitalize;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.menu-social-item:hover {
  color: #fff;
}

.menu-social-item em {
  display: block;
  position: relative;
  overflow: hidden;
  font-style: normal;
  transition: all 1s;
  top: 20px;
}

.openside .menu-social-item em {
  top: 0;
}

.menu-social-item em span {
  display: block;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: -50px;
  margin-top: 30px;
}

nav .breadcrumb a {
  color: #d8d8d8;
  font-size: 18px;
}

.breadcrumb-item.active {
  color: #fff;
  font-size: 18px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.bannvideo {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* display: none; */
}

.home-banner {
  position: relative;
}

/* .home-banner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2f32aa;
  z-index: 1;
} */

.home-banner .container {
  z-index: 1;
}

.banner {
  align-items: center;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100vh;
  padding: 200px 0 100px;
  position: relative;
  background-image: url(../images/contact.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background: #040915; */
}

.banner.inner-banner {
  height: 450px;
  margin-top: 80px;
  background-size: 97% 100%;
  background-position: right;
  background-repeat: no-repeat;
  background: transparent;
  padding: 40px 0;
}

.bannimg {
  position: absolute;
  object-fit: cover;
  object-position: top center;
  top: 0;
  left: 60px;
  border-bottom-left-radius: 40px;
  width: 100%;
  height: 100%;
}

.inner-banner .bannertext {
  text-align: left;
}

.bannrt {
  width: 100%;
}

.banner .bannertext .banner-heading {
  font-weight: 700;
  font-size: 54px;
  margin-bottom: 0;
  text-transform: capitalize;
  color: #fff;
}

.banner.inner-banner .bannertext .banner-heading {
  font-weight: 900;
  font-size: 80px;
  line-height: 0.9;
}

.banner .bannertext .banner-paragraph {
  color: #fff;
  font-size: 18px;
}

.bannertext .subheading {
  color: #fff;
  font-size: 20px;
}

.mtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mheading {
  text-transform: capitalize;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 14px;
}

.bordbot {
  position: relative;
  margin-bottom: 40px;
}

.bordbot::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 260px;
  background: linear-gradient(90deg, #4158d0, #fb51ef, #ffcc70);
  left: 0;
  bottom: -40px;
  transition: all 0.3s;
}

.mparagraph {
  font-size: 18px;
  color: #959595;
  line-height: 1.4;
  text-align: center;
}

.subheading {
  font-size: 20px;
  color: #00a3ff;
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}

ul.list {
  margin: 10px 0;
}

ul.list li {
  position: relative;
  color: #959595;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 25px;
}

ul.list li:before {
  content: "\e905";
  font-family: "icomoon";
  position: absolute;
  left: 0;
  color: #4dd6d7;
  top: 6px;
  font-size: 10px;
}

.center-heading {
  text-align: center;
}

.center-heading .subheading:after {
  content: "";
  width: 18px;
  height: 1px;
  background: #4dd6d7;
  position: absolute;
  right: 0;
  bottom: 7px;
}

.center-heading .subheading {
  padding-right: 22px;
  color: #171717;
}

.bannertext {
  position: relative;
  text-align: center;
}

.bannertext:after {
  content: "";
  background-image: url(../images/stars.svg);
  position: absolute;
  right: 0px;
  top: -40px;
  background-position: right;
  background-size: contain;
  height: 120px;
  width: 130px;
  background-repeat: no-repeat;
}

.bannertext a {
  font-size: 16px;
}

.process-sec {
  background: url("../images/half.webp");
  background-repeat: no-repeat;
  background-size: 70% 100%;
  padding: 60px 0;
}

.process-sec .subheading {
  color: #d9d9d9;
}

.process {
  margin-top: 50px;
}

.process ul {
  display: flex;
}

.process ul li {
  color: #ffffff;
  text-align: center;
  margin-right: 40px;
}

.process ul li i {
  font-size: 55px;
  margin-bottom: 10px;
  display: block;
}

.process ul li p {
  color: #fff;
}

.servlist {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 22px #00000029;
  border-radius: 0px 40px;
  padding: 34px;
}

.pkg-slider .slick-dots {
  text-align: center;
}

.servlist .nav-pills .nav-link {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s;
  border: none;
  background: transparent;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.servlist .nav-pills .nav-link:last-child {
  margin-bottom: 0;
}

.servlist .nav-pills .nav-link:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #4158d0, #fb51ef, #ffcc70);
  left: 0;
  top: 18px;
  transition: all 0.3s;
}

.servlist .nav-pills .nav-link.active,
.servlist .nav-pills .show > .nav-link {
  padding-left: 115px;
  color: inherit;
}

.servlist .nav-pills .nav-link.active:before,
.servlist .nav-pills .show > .nav-link:before {
  width: 100px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

.slick-prev {
  margin-left: -25px;
}

.slick-next {
  margin-left: 25px;
}

.form input[type="number"]::-webkit-inner-spin-button,
.form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quicknav {
  margin-bottom: 0;
  display: inline-block;
  text-align: right;
  padding-left: 10px;
  margin-top: -10px;
}

.quicknav li {
  display: inline-block;
  padding-left: 6px;
  vertical-align: middle;
}

.quicknav li a {
  color: #fff;
  font-size: 14px;
  display: block;
}

.quicknav li a.btn {
  color: #000;
  padding: 8px 14px;
}

.quicknav li a span {
  display: block;
  color: #00a3ff;
}

.quicknav li a img {
  position: relative;
  top: -3px;
}

.banner .bannertext .bannerlist li {
  position: relative;
  color: #fff;
  font-size: 18px;
  padding-left: 33px;
  padding-bottom: 5px;
  text-transform: capitalize;
}

.banner .bannertext .bannerlist li:before {
  color: #4cd3d5;
  content: "\e916";
  font-size: 18px;
  position: absolute;
  font-family: icomoon !important;
  left: 5px;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.accordion,
.accordion * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion {
  overflow: hidden;
  background: 0 0;
}

.quest-title {
  font-size: 16px;
  position: relative;
  width: 100%;
  display: inline-block;
  /* transition: all linear .15s; */
}

.quest-title:before {
  position: absolute;
  content: "\e908";
  right: 0;
  top: 0;
  font-family: icomoon !important;
}

.quest-title.active,
.quest-title:hover {
  color: #4cd3d5;
  content: "\e907";
}

.quest-title.active {
  font-size: 18px;
}

.quest-title.active:before {
  content: "\e907";
}

.quest-content {
  display: none;
  width: 100%;
  padding-top: 20px;
}

.accordion .quest-section {
  padding: 20px;
  background: #fff;
  border: 1px solid #d5d8dd;
  margin-bottom: 30px;
  border-radius: 6px;
}

.quest-content p a {
  color: #4cd3d5;
  text-decoration: underline;
}

.faq .accordwrap {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 60px 25px;
}

.form-control {
  padding: 12px 16px;
  color: #202020;
  border: 1px solid #d5d8dd;
  border-radius: 6px;
  box-shadow: 0px 0px 6px 0px #0000001f;
}

.form-control::placeholder {
  color: #9d9d9d;
}

.form-control:focus {
  color: #202020;
  border-color: rgb(51, 51, 51);
  outline: 0;
  box-shadow: none;
}

@media (max-width: 767px) {
  .nampoup {
    display: none;
  }
}

.ser-box {
  background: #f8f8f8;
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.ser-box:hover {
  box-shadow: 0px 3px 22px #00a3ff;
  background: #fff;
}

.ser-box img {
  height: 120px;
  margin-bottom: 20px;
}

.ser-box .title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  position: relative;
}

.ser-box .title:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 140px;
  background: linear-gradient(90deg, #4158d0, #fb51ef, #ffcc70);
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}

.ser-box ul {
  margin-bottom: 0;
}

.ser-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: baseline;
}

.ser-box ul li:last-child {
  margin-bottom: 0;
}

.ser-box ul li:before {
  content: ">";
  font-size: 10px;
  font-weight: 700;
  margin-right: 10px;
  position: relative;
  top: -3px;
}

.packages {
  background: #f8f8f8;
}

.packagewrap {
  position: relative;
}

.packagewrap .nav-pills {
  margin: 0 40px 40px;
  flex-wrap: unset;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  padding-bottom: 10px;
}

.packagewrap span.left,
.packagewrap span.right,
.packagewrap span.left2,
.packagewrap span.right2 {
  position: absolute;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0px;
  cursor: pointer;
  color: #000000;
  z-index: 999;
  font-size: 22px;
}

.packagewrap span.right,
.packagewrap span.right2 {
  right: 0;
  left: unset;
}

button.slick-arrow {
  position: absolute;
  left: 50%;
  color: #000;
  transform: translate(-50%, 30px);
}

.pkgnav.text-center .slick-track {
  margin: auto;
}

.pkgnav .slick-current button {
  font-weight: 700;
}

.pkgnav button {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.pkgnav button:before {
  font-size: 16px;
}

.slick-prev:before {
  content: "\e93d";
  font-family: "icomoon";
  color: #000;
}

.slick-next:before {
  content: "\e93e";
  font-family: "icomoon";
  color: #000;
}

.pkgnav {
  margin-bottom: 80px;
}

.scroller-btn.inactive {
  opacity: 0.3;
  pointer-events: none;
}

.packagewrap .nav-pills .nav-item {
  margin-right: 15px;
  white-space: nowrap;
}

.packagewrap .nav-pills .nav-item .nav-link {
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 16px;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

.packagewrap .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.packagewrap .nav-pills .nav-item .nav-link.active {
  color: inherit;
}

.packagewrap .nav-pills .nav-item .nav-link:after {
  content: "";
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #4158d0, #fb51ef, #ffcc70);
  left: 0;
  right: 30px;
  bottom: -6px;
  transition: all 0.3s;
  transform: scaleX(0);
  transform-origin: left;
}

.packagewrap .nav-pills .nav-item .nav-link.active:after,
.packagewrap .nav-pills .nav-item .nav-link:hover:after {
  transform: scaleX(1);
}

.packages .innerpkg {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.packages.bg-white .innerpkg {
  background-color: #f8f8f8;
}

.row.pkg-slider {
  justify-content: center;
}

.packages .innerpkg .pkghead {
  background: transparent;
  text-align: center;
  position: relative;
}

.packages .innerpkg .pkghead:before {
  content: "";
  clip-path: circle(70% at 50% 0%);
  text-align: center;
  position: absolute;
  left: -40px;
  right: -40px;
  top: -100px;
  height: 260px;
}

.packages .innerpkg .pkghead:before,
.packages .innerpkg .price,
.packages .innerpkg .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages .innerpkg .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: #6557d6;
}

.packages .innerpkg.professional .pkghead:before,
.packages .innerpkg.professional .price,
.packages
  .innerpkg.professional
  .mCSB_scrollTools
  .mCSB_dragger
  .mCSB_dragger_bar,
.packages
  .innerpkg.professional
  .mCSB_scrollTools
  .mCSB_dragger:hover
  .mCSB_dragger_bar,
.packages .innerpkg.professional .btn-purple {
  background: #4dd6d7;
}

.packages .innerpkg.professional .pkghead h6,
.packages .innerpkg.professional .price h2,
.packages .innerpkg.professional .btn-purple,
.packages .innerpkg.elite .price h2,
.packages .innerpkg.elite .pkghead h6,
.packages .innerpkg.elite .btn-purple,
.packages .innerpkg.silver .price h2,
.packages .innerpkg.silver .pkghead h6,
.packages .innerpkg.silver .btn-purple {
  color: #000;
}

.packages .innerpkg.business .pkghead:before,
.packages .innerpkg.business .price,
.packages .innerpkg.business .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages
  .innerpkg.business
  .mCSB_scrollTools
  .mCSB_dragger:hover
  .mCSB_dragger_bar,
.packages .innerpkg.business .btn-purple {
  background: #e66e6b;
}

.packages .innerpkg.elite .pkghead:before,
.packages .innerpkg.elite .price,
.packages .innerpkg.elite .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages
  .innerpkg.elite
  .mCSB_scrollTools
  .mCSB_dragger:hover
  .mCSB_dragger_bar,
.packages .innerpkg.elite .btn-purple {
  background: #6fe66b;
}

.packages .innerpkg.plus .pkghead:before,
.packages .innerpkg.plus .price,
.packages .innerpkg.plus .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages
  .innerpkg.plus
  .mCSB_scrollTools
  .mCSB_dragger:hover
  .mCSB_dragger_bar,
.packages .innerpkg.plus .btn-purple {
  background: #e62727;
}

.packages .innerpkg.pro .pkghead:before,
.packages .innerpkg.pro .price,
.packages .innerpkg.pro .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages .innerpkg.pro .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.packages .innerpkg.pro .btn-purple {
  background: #277ae6;
}

.packages .innerpkg.silver .pkghead:before,
.packages .innerpkg.silver .price,
.packages .innerpkg.silver .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages
  .innerpkg.silver
  .mCSB_scrollTools
  .mCSB_dragger:hover
  .mCSB_dragger_bar,
.packages .innerpkg.silver .btn-purple {
  background: #00ffde;
}

.packages .innerpkg.proplus .pkghead:before,
.packages .innerpkg.proplus .price,
.packages .innerpkg.proplus .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages
  .innerpkg.proplus
  .mCSB_scrollTools
  .mCSB_dragger:hover
  .mCSB_dragger_bar,
.packages .innerpkg.proplus .btn-purple {
  background: #e65d27;
}

.packages .innerpkg.gold .pkghead:before,
.packages .innerpkg.gold .price,
.packages .innerpkg.gold .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages
  .innerpkg.gold
  .mCSB_scrollTools
  .mCSB_dragger:hover
  .mCSB_dragger_bar,
.packages .innerpkg.gold .btn-purple {
  background: #9027e6;
}

.packages .innerpkg.goldplus .pkghead:before,
.packages .innerpkg.goldplus .price,
.packages .innerpkg.goldplus .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.packages
  .innerpkg.goldplus
  .mCSB_scrollTools
  .mCSB_dragger:hover
  .mCSB_dragger_bar,
.packages .innerpkg.goldplus .btn-purple {
  background: #ca1183;
}

.packages {
  background: #f8f8f8;
}

.packages .innerpkg .pkghead h6 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}

.packages .innerpkg .price {
  height: 140px;
  width: 140px;
  margin: 0 auto 30px;
  box-shadow: 0px 3px 16px #00000029;
  border-radius: 50%;
  border: 6px solid #fff;
  background: #6557d6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-direction: column;
}

.packages .innerpkg .price h2 {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
}

.packages .innerpkg .price h6 {
  font-size: 16px;
  padding: 0;
  color: #000000;
  text-decoration: line-through;
}

.packages .innerpkg .price h2 sub {
  font-size: 16px;
}

.packages .innerpkg .pkglist .lglist {
  height: 180px;
  overflow: auto;
  margin-bottom: 20px;
}

.packages .innerpkg .pkglist li {
  font-size: 16px;
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

.packages .innerpkg .pkglist li:before {
  content: "\e905";
  font-family: "icomoon";
  font-size: 6px;
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: 600;
}

.sperator-name {
  position: relative;
  border-top: 2px solid #f3f3f3;
  padding: 20px 0;
  text-align: center;
}

.sperator-name h4 {
  padding-bottom: 0;
  font-weight: 700;
  font-size: 20px;
}

.packages .innerpkg .pkglist .smlist {
  margin-bottom: 0;
  height: 85px;
  overflow: auto;
}

.contact-sec .mheading {
  font-size: 34px;
}

.custmpkg {
  background-color: #f8f8f8;
  border: dashed 1px #707070;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  align-items: center;
  display: flex;
}

.custmpkg img {
  width: 100px;
  margin: 0 auto 20px;
}

.custmpkg h4 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}

.custmpkg p {
  color: #000;
}

.combopkg {
  background: url(../images/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.combopkg .innerpkg {
  background: transparent;
  box-shadow: 0px 3px 6px #00000029;
  border: 2px solid #fff;
  font-size: 30px;
  color: #00a3ff;
  opacity: 1;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 30px;
}

.combopkg .innerpkg .pkghead .subheading {
  color: #fff;
  font-size: 18px;
}

.combopkg .innerpkg .pkghead h6 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.combopkg .innerpkg p {
  color: #fff;
  margin-bottom: 20px;
}

.combopkg .innerpkg h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.combopkg .innerpkg .pkglist ul {
  overflow: auto;
  height: 100px;
}

.combopkg .innerpkg .pkglist ul::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f514;
}

.combopkg .innerpkg .pkglist ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}

.combopkg .innerpkg .pkglist ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 14%);
  border-radius: 10px;
  background-color: #f5f5f538;
}

.combopkg .innerpkg .pkglist ul li {
  color: #fff;
  margin-bottom: 6px;
  position: relative;
  padding-left: 15px;
}

.combopkg .innerpkg .pkglist ul li:before {
  content: "\e90c";
  font-family: "icomoon";
  position: absolute;
  left: 0;
  font-size: 8px;
  top: 3px;
}

.combopkg .innerpkg .btn-secondary {
  box-shadow: inset 0px 0px 0px 2px #fff;
  color: #fff;
  margin-bottom: 15px;
}

.combopkg .innerpkg .btn-secondary:hover {
  background: #fff;
  color: #000;
}

.combopkg .innerpkg .btn + p {
  text-align: center;
}

.combopkg .innerpkg .contact {
  text-align: center;
}

.combopkg .innerpkg .contact a {
  display: inline-block;
  text-align: left;
  border-right: 1px solid #fff;
  padding: 0 36px;
  position: relative;
  color: #fff;
}

.combopkg .innerpkg .contact a span {
  display: block;
}

.combopkg .innerpkg .contact a:last-child {
  border: none;
  margin-left: 24px;
  padding-right: 0;
}

.combopkg .innerpkg .contact a:before {
  content: "\e90a";
  font-family: "icomoon";
  position: absolute;
  left: 0;
  font-size: 24px;
  top: 1px;
}

.combopkg .innerpkg .contact a:last-child:before {
  content: "\e90b";
}

.satisfaction .inner {
  border-radius: 22px;
  background: #fff;
  padding: 30px;
  transition: all 0.3s;
}

.satisfaction .inner i {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
  color: #054b9d;
}

.satisfaction .inner h4 {
  color: #00a3ff;
  font-size: 20px;
}

.satisfaction .inner p {
  color: #000;
}

.satisfaction .inner:hover {
  box-shadow: 0px 3px 22px #00000029;
}

.portfolio {
  background: #f8f8f8;
}

.portfolio .portfolio-item {
  margin-bottom: 0;
  padding: 10px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #959595;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li.filter-active,
.portfolio #portfolio-flters li:hover {
  color: #fff;
  background: #00a3ff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item.filter-logo:not(.filter-all),
.portfolio .portfolio-item.filter-logo.activelogo {
  padding: 0 !important;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 0;
  min-height: 170px;
}

.portfolio .portfolio-wrap img {
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.portfolio .portfolio-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
  backdrop-filter: blur(5px);
  mix-blend-mode: overlay;
  background: #0000005c;
}

.portfolio .portfolio-wrap:hover::before,
.portfolio .portfolio-wrap:hover::after {
  opacity: 1;
}

.portfolio .custom-height .portfolio-wrap:hover::before {
  mix-blend-mode: normal;
  background: transparent;
  backdrop-filter: unset;
}

.portfolio .custom-height .portfolio-wrap:hover::after {
  opacity: 0;
}

.portfolio .portfolio-wrap::after {
  content: "\e9cc";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: #fff;
  z-index: 11;
  opacity: 0;
  transition: all 0.3s;
}

.portfolio .portfolio-item .portfolio-wrap:hover {
  transform: scale(1.2);
  z-index: 9;
}

.portfolio .custom-height.portfolio-item .portfolio-wrap:hover {
  transform: none;
}

.custom-height .portfolio-wrap {
  height: 640px;
  overflow: hidden;
}

.custom-height .portfolio-wrap img {
  width: 100%;
  transition: 4s ease-in-out;
  height: auto;
}

.custom-height .portfolio-wrap:hover img {
  transform: translateY(calc(-100% + 640px));
}

.hompg .portfolio .portfolio-item {
  visibility: hidden;
  height: 0;
  padding: 0;
}

.hompg .portfolio .portfolio-item.filter-all {
  height: auto;
  padding: 10px;
  visibility: unset;
}

@media (max-width: 991px) {
  .custom-height .portfolio-wrap {
    height: 350px;
    margin-bottom: 30px;
    overflow: hidden;
  }

  .custom-height .portfolio-wrap img {
    width: 100%;
    transition: 4s ease-in-out;
  }

  .custom-height .portfolio-wrap:hover img {
    transform: translateY(calc(-100% + 350px));
  }
}

.testiwrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f8f8f8;
  padding: 60px;
  border-radius: 30px;
}

.testiwrap .slider {
  width: 50%;
}

.reviewname {
  width: 140px;
  height: 140px;
  background: #01009a;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 50%;
  border: 6px solid #fff;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translate(0px, -50%);
}

.testiwrap .slider.slider-for img {
  width: 100%;
  border-radius: 10px;
}

.testiwrap .slider.slider-for .slick-list {
  padding-right: 100px;
}

.reviewname h2 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}

.testiwrap .slider .title {
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.testiwrap .slider .title:before {
  content: "\ea2b";
  font-family: "icomoon";
  position: absolute;
  left: 3px;
  top: 3px;
  font-size: 55px;
  color: #01009a;
}

.testiwrap .slider .para {
  margin-bottom: 14px;
}

.testiwrap .slider .cname {
  position: relative;
  padding-left: 60px;
  font-size: 16px;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid #95959538;
  padding-bottom: 10px;
}

.testiwrap .slider .cname:before {
  content: "";
  position: absolute;
  left: 0;
  width: 48px;
  height: 2px;
  background: #000;
  bottom: 20px;
}

.stars i {
  color: #cccccc;
  font-size: 18px;
  margin-right: 6px;
}

.stars i.active {
  color: #00a3ff;
}

.slick-dots {
  text-align: left;
}

.slick-dots li button:before {
  background: #000000;
  width: 10px;
  height: 10px;
}

.slick-dots li {
  margin: 0 2px;
}

.orderplan .form-control {
  box-shadow: none;
  font-size: 14px;
}

.bottomform {
  background: url(../images/contact.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.bottomform .form-control,
.bottomform .custom-select {
  background-color: #000000c2;
  box-shadow: 0px 3px 6px #00000029;
  border: 2px solid #00a3ff;
  border-radius: 51px;
  opacity: 1;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 24px;
  color: #fff;
  font-weight: 400;
  height: auto;
}

.bottomform textarea.form-control {
  border-radius: 16px;
}

.custom-control-label {
  color: #fff;
  vertical-align: sub;
  font-size: 16px;
}

.custom-control {
  padding-left: 28px;
}

.custom-control-label::before {
  width: 20px;
  height: 20px;
  top: 2px;
  background: transparent;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 50%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #ffa600;
}

.custom-control-label::after {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #fff;
  top: 2px;
  border-radius: 50%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  border-color: #ffa600;
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: center;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}

.bottomform .btn {
  border-radius: 50px;
  background: #fff;
  box-shadow: 0px 3px 6px #00000029;
  padding: 16px 40px;
  margin-top: 50px;
  border: 1px solid transparent;
  color: #00a3ff;
}

.number-sec .process-sec {
  background-size: 97% 100%;
  margin-top: 60px;
  padding: 100px 0;
}

.number-sec .process-sec p {
  color: #fff;
  font-size: 18px;
}

.number-sec .process-sec .counter {
  margin-top: 60px;
}

.number-sec .process-sec .counter .inner {
  display: flex;
}

.number-sec .process-sec .counter .inner span {
  display: inline-block;
  margin-right: 0;
  border-right: 1px solid #fff;
  padding: 0 50px;
}

.number-sec .process-sec .counter .inner span h2 {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
}

.number-sec .process-sec .counter .inner span:first-child {
  padding-left: 0;
}

.number-sec .process-sec .counter .inner span:last-child {
  padding-right: 0;
  border: none;
}

.ideas-sec .imgs {
  text-align: center;
}

.ideas-sec .imgs img {
  width: 220px;
  margin: 10px 20px;
}

.our-services {
  overflow: hidden;
}

.indusimg {
  max-width: 100%;
  margin-bottom: -600px;
}

.sociallist li {
  display: inline-block;
}

ul.clist {
  margin-top: 30px;
}

ul.clist li a {
  color: #000;
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
}

ul.clist li a img {
  width: 32px;
  vertical-align: bottom;
  margin-right: 10px;
}

ul.clist li a {
  display: flex;
  align-items: flex-start;
}

ul.clist li a i {
  background: #00a3ff;
  border: 1px solid #00000000;
  border-radius: 6px;
  padding: 6px;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: sub;
}

.map-sec .container {
  position: relative;
}

.map-sec .cbox {
  background: #fff;
  border-radius: 22px;
  position: absolute;
  bottom: -20px;
  z-index: 1;
  width: 700px;
  height: 400px;
  right: 100px;
  padding: 40px;
}

.map-sec {
  position: relative;
}

.map-sec .cbox .mparagraph {
  text-align: left;
}

.process-list .title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  position: relative;
}

.process-list .title:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 140px;
  background: linear-gradient(90deg, #4158d0, #fb51ef, #ffcc70);
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}

.process-list .prolistimg {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0px);
  width: 260px;
  margin-top: 50px;
}

.process-list .prolist li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.process-list .prolist li:last-child {
  margin-bottom: 0;
}

.process-list .prolist li span {
  width: 450px;
  align-self: center;
}

.footer-main {
  padding: 60px 0 0;
  background-size: cover;
  background: #000;
}

.footer-main .links {
  margin-bottom: 30px;
}

.footer-main .links h4 {
  color: #00a3ff;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 20px;
  border-bottom: 2px solid #ffffff2e;
}

.footer-main .links li,
.footer-main .links li a {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 4px;
  display: flex;
  text-transform: uppercase;
}

.footer-main .links li a i {
  font-size: 16px;
  margin-top: 10px;
}

.footer-main .links li a:hover {
  color: #fff;
}

.services-links {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 60px;
  padding-bottom: 30px;
  display: none;
}

.footer p {
  font-size: 14px;
}

.footer-main .links li i,
.footer-main .links li a i {
  margin-right: 10px;
  color: #00a3ff;
}

/* .footer .logo img {
  width: 450px;
  margin-bottom: 40px;
} */

.footer .logo a h3 {
  display: flex;
  /* flex-direction: column; */
  justify-content: flex-start;
  align-items: flex-start;
  color: #00a3ff;
  font-weight: 700;
  padding: 0;
  text-transform: uppercase;
  font-size: 30px;
}

.logo a h3 span {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.footer .logo {
  float: none;
}

.copyright {
  padding: 14px 0;
  border-top: 1px solid #00a3ff;
  background: #000;
  color: #fff;
  font-size: 12px;
}

.copyright a {
  color: #fff;
}

.social a {
  margin-right: 10px;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  line-height: 1;
  height: 42px;
  width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #2795d4;
}

.social a:hover {
  background: #6d29bd;
  color: #fff;
}

.popup-modal .modal-body {
  padding: 40px;
  background: #000;
  border-radius: 10px;
}

.popup-modal .modal-body .bottomform {
  background: #000;
  padding: 0;
}

.popup-modal .modal-content .col-lg-10 {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.popup-modal .modal-content {
  border-radius: 10px;
  background: #000;
}

.popup-modal .modal-content .bottomform .btn {
  border-radius: 6px;
  background: #4dd6d7;
  box-shadow: 0px 3px 6px #00000029;
  padding: 10px 30px;
  margin-top: 20px;
}

.popup-modal .modal-content .mheading {
  font-size: 28px;
}

.popup-modal .modal-content .close {
  color: #fff;
  opacity: 1;
  text-shadow: none;
  margin-top: -26px;
  margin-right: -20px;
  position: relative;
}

.popup-modal .modal-content .form-control {
  border-radius: 6px;
  border-width: 1px;
  padding: 10px 20px;
}

.popup-modal .modal-content .cs-skin-elastic > span {
  border-radius: 6px;
  border-width: 1px;
  padding: 12px 20px;
}

.popup-modal .modal-content .cs-skin-elastic.cs-active .cs-options {
  border-radius: 6px;
  border-width: 1px;
  padding-top: 50px;
}

.satisfaction .inner i:before {
  color: #00a3ff;
}

.bottomform .btn:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-primary:hover {
  box-shadow: none;
  color: #00a3ff;
  background: transparent;
  border-color: #00a3ff;
}

.cs-skin-elastic > span {
  border: 2px solid #00a3ff;
}

.our-services .slick-dots {
  text-align: center;
}

.satisfaction .inner i {
  padding: 10px;
  background: #f2f2fa;
  border-radius: 10px;
  transition: 0.3s all;
}

.satisfaction .inner:hover i {
  background: #fffaf2;
}

.cs-skin-elastic.cs-active .cs-options {
  border: 1px solid #00a3ff;
}

.services-slider .slick-track {
  padding: 20px 0 0;
}

.cs-skin-elastic .cs-options span {
  color: #fff;
}

.btn-info {
  background: #fff;
  color: #00a3ff;
}

.banner.inner-banner {
  background-position: bottom right;
  background-repeat: no-repeat;
}

.footer-main .links li a:hover i {
  color: #fff;
}

.packages .innerpkg.corporate-pkg .price,
.packages .innerpkg.corporate-pkg .pkghead:before {
  background: #00ffde;
}

.packages .innerpkg.corporate-pkg .price h2,
.packages .innerpkg.corporate-pkg .pkghead h6 {
  color: #000;
}

.packages .innerpkg.enterprise-pkg .price,
.packages .innerpkg.enterprise-pkg .pkghead:before {
  background: #e66e6b;
}

.packages .innerpkg.enterprise-pkg .price h2,
.packages .innerpkg.enterprise-pkg .pkghead h6 {
  color: #fff;
}

.packages .innerpkg.emailtemplate-pkg .price,
.packages .innerpkg.emailtemplate-pkg .pkghead:before {
  background: #4dd6d7;
}

.packages .innerpkg.emailtemplate-pkg .price h2,
.packages .innerpkg.emailtemplate-pkg .pkghead h6 {
  color: #000;
}

.packages .innerpkg.landing-pkg .price,
.packages .innerpkg.landing-pkg .pkghead:before {
  background: #e62727;
}

.footer-social {
  display: flex;
  justify-content: center;
}

.footer-social i {
  font-size: 16px;
  color: #00a3ff;
  transition: 0.3s all;
}

.footer-social a {
  margin: 0 5px;
}

.footer-social path {
  fill: #00a3ff;
  transition: 0.3s all;
}

.footer-social a:hover path,
.footer-social a:hover i {
  fill: #fff;
  color: #fff;
}




/*privacy page*/

.privacy-info ul {
    padding: 16px 0 16px 14px;
}

.privacy-info ul li {
    font-size: 16px;
    list-style: disc;
}
