/* ------------------------- Osmo [https://osmo.supply/] ------------------------- */
/* ------------------------- Variables ------------------------------------------- */
:root {
  --color-light: var(--color-neutral-200);
  --color-dark: var(--color-neutral-800);
  --color-primary: #ed1e79;
  --color-neutral-100: #603c7a;
  --color-neutral-200: #efeeec;
  --color-neutral-300: #e3e1de;
  --color-neutral-400: #cbc8c5;
  --color-neutral-500: #818180;
  --color-neutral-600: #2c2c2c;
  --color-neutral-700: #1f1f1f;
  --color-neutral-800: #131313;
  --color-neutral-900: #000000;
  --color-white: var(--color-neutral-100);
  --color-black: var(--color-neutral-900);
  --color-error: var(--color-primary);
  --color-success: #0ba954;
  --cubic-default: cubic-bezier(0.65, 0.05, 0, 1);
  --duration-default: 0.735s;
  --animation-default: var(--duration-default) var(--cubic-default);
  --gap: 2em;
  --section-padding: calc(3.5em + (var(--gap) * 2));
  --container-padding: 2em;
  --header-height: calc(1.5em + (var(--gap) * 2));
  --footer-height: calc(2.785em + (var(--gap) * 2));
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --container-padding: 1.5em;
  }
}
/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --container-padding: 1em;
  }
}
/* Mobile Portrait */
/* ------------------------- Scaling System by Osmo [https://osmo.supply/] -------------------------  */
/* Desktop */
:root {
  --size-unit: 16;
  /* body font-size in design - no px */
  --size-container-ideal: 1440;
  /* screen-size in design - no px */
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min),
      100vw,
      var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 834;
    /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}
/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 390;
    /* screen-size in design - no px */
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}
/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 390;
    /* screen-size in design - no px */
    --size-container-min: 320px;
    --size-container-max: 479px;
  }
}
/* ------------------------- Hide Scrollbar -------------------------------------------------- */
body ::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Chrome, Safari, Opera */
body {
  -ms-overflow-style: none;
}

/* IE & Edge */
html {
  scrollbar-width: none;
}

/* Firefox */
/* ------------------------- Reset -------------------------------------------------- */
*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  scroll-behavior: initial;
}

html,
body {
  -webkit-font-smoothing: antialiased;
}

svg {
  max-width: none;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

a {
  color: inherit;
}

/* Selection */
::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
  text-shadow: none;
}
::selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
  text-shadow: none;
}

@font-face {
  font-family: "PP Neue Corp Tight";
  src: url("https://cdn.prod.website-files.com/673af51dea86ab95d124c3ee/673b0f5784f7060c0ac05534_PPNeueCorp-TightUltrabold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.custom-navbar {
  position: relative;
  z-index: 1111;
}
.custom-navbar .main-logo {
  width: 250px;
  position: relative;
  z-index: 1111 !important;
}
@media (max-width: 576px) {
  .custom-navbar .main-logo {
    width: 150px;
  }
}
.custom-navbar .osmo-ui {
  z-index: 0;
  pointer-events: none;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
}
.custom-navbar .nav-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}
.custom-navbar .nav-logo-row {
  pointer-events: auto;
  justify-content: space-between;
  align-items: center;
  width: 13em;
  display: flex;
}
.custom-navbar .nav-logo__wordmark {
  width: 4em;
}
.custom-navbar .nav-logo__icon {
  width: 1.5em;
  height: 1.5em;
}
.custom-navbar .container {
  z-index: 1;
  max-width: var(--size-container);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.custom-navbar .container.is--full {
  max-width: 100%;
}
.custom-navbar .nav-row__right {
  grid-column-gap: 0.625rem;
  grid-row-gap: 0.625rem;
  pointer-events: auto;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}
.custom-navbar .header {
  z-index: 110;
  position: fixed;
  inset: 0% 0% auto;
  background: radial-gradient(circle at top left, #ca789c 0%, #1b1464 80%);
  padding: 24px;
}
@media (max-width: 576px) {
  .custom-navbar .header {
    padding: 12px 4px;
  }
}
.custom-navbar .website-link {
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.custom-navbar .website-link.is--alt {
  grid-column-gap: 0.25em;
  grid-row-gap: 0.25em;
  justify-content: flex-start;
  align-items: center;
  height: 1.5em;
  display: flex;
}
.custom-navbar .inline-link__p {
  margin-bottom: 0;
}
.custom-navbar p {
  margin: 0px;
}
.custom-navbar .cloneable {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  --menu-padding: 2em;
}
.custom-navbar .nav {
  z-index: 100;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: fixed;
  inset: 0%;
}
.custom-navbar .overlay {
  z-index: 0;
  cursor: pointer;
  background-color: rgba(19, 19, 19, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}
.custom-navbar .menu {
  padding-bottom: var(--menu-padding);
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  padding-top: calc(3 * var(--menu-padding));
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 35em;
  height: 100%;
  margin-left: auto;
  position: relative;
  overflow: auto;
}
.custom-navbar .menu-bg {
  z-index: 0;
  position: absolute;
  inset: 0%;
  top: 40px;
}
.custom-navbar .menu-inner {
  z-index: 1;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
  position: relative;
  overflow: auto;
  opacity: 0;
}
.custom-navbar .bg-panel {
  z-index: 0;
  border-top-left-radius: 1.25em;
  border-bottom-left-radius: 1.25em;
  position: absolute;
  inset: 0%;
  background: radial-gradient(circle at top left, #ca789c 0%, #1b1464 80%);
}
.custom-navbar .bg-panel.first {
  background-color: var(--color-primary);
}
.custom-navbar .bg-panel.second {
  background-color: var(--color-neutral-100);
}
.custom-navbar .menu-list {
  flex-flow: column;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}
.custom-navbar .menu-list-item {
  position: relative;
  overflow: hidden;
  margin: 8px 0.25rem;
}
.custom-navbar .menu-link-heading {
  text-shadow: 0px 1em 0px var(--color-neutral-200);
  color: #ffffff;
}
.custom-navbar .menu-link {
  padding-left: var(--menu-padding);
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  width: 100%;
  text-decoration: none;
  display: flex;
  margin-left: 8px;
  padding: 8px;
}
@media (max-width: 767px) {
  .custom-navbar .menu-link {
    padding: 5px;
  }
}
.custom-navbar .menu-link-heading {
  z-index: 1;
  text-transform: uppercase;
  font-family: PP Neue Corp Tight, Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 0.75;
  transition: transform 0.55s cubic-bezier(0.65, 0.05, 0, 1);
  position: relative;
}
.custom-navbar .eyebrow {
  z-index: 1;
  color: var(--color-primary);
  text-transform: uppercase;
  font-family: RM Mono, Arial, sans-serif;
  font-weight: 400;
  position: relative;
}
.custom-navbar .menu-link-bg {
  z-index: 0;
  background-color: #ed1e79;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.65, 0.05, 0, 1);
  position: absolute;
  inset: 0%;
  transform: scale3d(1, 0, 1);
}
.custom-navbar .menu-details {
  padding-left: var(--menu-padding);
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.custom-navbar .p-small {
  font-size: 0.875em;
  font-family: Arial, Helvetica;
}
.custom-navbar .socials-row {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: row;
  display: flex;
}
.custom-navbar .p-large {
  font-family: Arial, Helvetica;
}
.custom-navbar .text-link {
  text-decoration: none;
  position: relative;
}
.custom-navbar .menu-button {
  grid-column-gap: 0.625em;
  grid-row-gap: 0.625em;
  background-color: rgba(0, 0, 0, 0);
  justify-content: flex-end;
  align-items: center;
  display: flex;
  border: none;
}
.custom-navbar .menu-button-icon {
  width: 1em;
  height: 1em;
}
.custom-navbar .menu-button-text {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  height: 26px;
  display: flex;
  overflow: hidden;
}
.custom-navbar .icon-wrap {
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0, 1);
}
@media (hover: hover) {
  .custom-navbar {
    /* Menu toggle button*/
    /* Menu Large Links */
    /* Menu Smaller Links */
  }
  .custom-navbar .menu-button:hover .icon-wrap {
    transform: rotate(90deg);
  }
  .custom-navbar .menu-link:hover .menu-link-heading {
    transform: translate(0px, -1em);
    transition-delay: 0.1s;
  }
}
@media (hover: hover) and (min-width: 280px) and (max-width: 576px) {
  .custom-navbar .menu-link:hover .menu-link-heading {
    transform: translate(0px, 0);
  }
}
@media (hover: hover) {
  .custom-navbar .menu-link:hover .menu-link-bg {
    transform: scale(1, 1);
  }
  .custom-navbar .text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    transform-origin: right center;
    transform: scale(0, 1);
    transition: transform 0.4s var(--cubic-default);
  }
  .custom-navbar .text-link:hover::after {
    transform-origin: left center;
    transform: scale(1, 1);
  }
}
.custom-navbar .osmo-icon-svg {
  width: 8em;
}
@media screen and (max-width: 767px) {
  .custom-navbar .cloneable {
    --menu-padding: 1em;
  }
  .custom-navbar .nav-logo-row {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    width: auto;
  }
  .custom-navbar .nav-row__right {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }
  .custom-navbar .cloneable-title {
    pointer-events: none;
    width: calc(100% - 5.25em);
    padding-left: 1em;
    position: absolute;
    overflow: hidden;
  }
  .custom-navbar .cloneable-title__nr,
  .custom-navbar .cloneable-title__h1 {
    font-size: 0.875em;
  }
  .custom-navbar .clone-in-webflow {
    justify-content: flex-end;
    width: 100%;
    margin-right: 0;
    padding-left: 0.75em;
  }
  .custom-navbar .clone-in-webflow__p {
    display: none;
  }
  .custom-navbar .cloneable-title__gradient,
  .custom-navbar .osmo-ui__bg {
    display: block;
  }
  .custom-navbar .menu {
    padding-top: calc(6 * var(--menu-padding));
    width: 100%;
  }
  .custom-navbar .bg-panel {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .custom-navbar .menu-list-item {
    height: 2rem;
    margin: 10px 0;
  }
  .custom-navbar .menu-link-heading {
    font-size: 2rem !important;
  }
  .custom-navbar .socials-row {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }
}
@media screen and (max-width: 479px) {
  .custom-navbar .menu {
    padding-top: calc(7 * var(--menu-padding));
    padding-bottom: calc(2 * var(--menu-padding));
  }
}

.home-full-image {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.meet-your-it-solutions .list li {
  padding-left: 50px;
  position: relative;
  margin: 0 0 20px;
  min-height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.meet-your-it-solutions .list li:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../images/svg/iconArrowRight.svg) no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  display: block;
}
.meet-your-it-solutions .box {
  padding: 25px;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .meet-your-it-solutions .box {
    padding: 25px 8px;
  }
}
.meet-your-it-solutions .half-images-height img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.meet-your-it-solutions .about-img2 img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.your-it-faq .about-top-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.your-it-faq .single-card-div {
  background: linear-gradient(135deg, #141240 0%, #662d91 50%, #ed1e79 100%);
  padding: 24px;
  border-radius: 12px;
}
@media (max-width: 576px) {
  .your-it-faq .single-card-div {
    padding: 24px 2px;
  }
}
.your-it-faq .single-card-div .single-card-image {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.your-it-faq .about-top-section-box {
  background: linear-gradient(135deg, #141240 0%, #662d91 50%, #ed1e79 100%);
  padding: 24px;
}
.your-it-faq .project-thumb {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.your-it-faq .project-thumb img {
  height: 100%;
}

.configuration-managemnet-page .configuration-managemnet-li li {
  margin: 12px 0 !important;
  list-style: circle !important;
}
.configuration-managemnet-page .portfolio-fixed .left {
  position: relative;
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .configuration-managemnet-page .portfolio-fixed .left {
    position: relative;
    height: auto;
  }
}
.configuration-managemnet-page .portfolio-fixed .img {
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  opacity: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.configuration-managemnet-page .portfolio-fixed .img:first-of-type {
  opacity: 1;
  z-index: 1;
}
.configuration-managemnet-page .portfolio-fixed .img:nth-of-type(2) {
  z-index: 2;
}
.configuration-managemnet-page .portfolio-fixed .img:nth-of-type(3) {
  z-index: 3;
}
.configuration-managemnet-page .portfolio-fixed .img:nth-of-type(4) {
  z-index: 4;
}
.configuration-managemnet-page .portfolio-fixed .img:nth-of-type(5) {
  z-index: 5;
}
.configuration-managemnet-page .portfolio-fixed .img.current {
  opacity: 1;
}
.configuration-managemnet-page .portfolio-fixed .right {
  padding: 250px 100px;
  overflow: hidden;
}
.configuration-managemnet-page .portfolio-fixed .cont {
  margin-bottom: 250px;
  opacity: 0.1;
  transition: all 0.4s;
}
.configuration-managemnet-page .portfolio-fixed .cont:last-of-type {
  margin-bottom: 0;
}
.configuration-managemnet-page .portfolio-fixed .cont.active {
  opacity: 1;
}
.configuration-managemnet-page .portfolio-fixed .cont .img-hiden {
  display: none;
}
.configuration-managemnet-page .portfolio-fixed .current.cont {
  opacity: 1;
}
.configuration-managemnet-page .portfolio-fixed .right {
  padding: 0 15px 15px;
}
.configuration-managemnet-page .portfolio-fixed .cont {
  opacity: 1 !important;
  margin-bottom: 80px;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .configuration-managemnet-page .portfolio-fixed .cont {
    padding: 0 4px;
  }
}
.configuration-managemnet-page .portfolio-fixed .cont .img-hiden {
  display: block;
  margin-bottom: 30px;
}

.it-consulting-page .it-consulting-image {
  height: 100%;
}
.it-consulting-page .it-consulting-image img {
  height: 300px;
  width: 100%;
  border-radius: 12px;
}
.it-consulting-page .it-contulting-supporting-image img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.it-consulting-page .blog-title {
  line-height: 1.4;
  font-weight: 400 !important;
  color: #e6e6e6 !important;
}

.contact-cards .card {
  background: linear-gradient(135deg, #141240 0%, #662d91 50%, #ed1e79 100%);
  padding: 12px 24px;
  border-radius: 12px;
  margin: 12px;
}

.c-list {
  position: relative;
}
.c-list li {
  padding-left: 50px;
  position: relative;
  margin: 0 0 20px;
  min-height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 576px) {
  .c-list li {
    padding-left: 34px;
  }
}
.c-list li:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../images/iconArrow.svg) no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  display: block;
}
@media (max-width: 576px) {
  .c-list li:before {
    width: 24px;
    height: 24px;
  }
}

.banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  overflow: hidden;
  font-weight: 700;
}
.banner .container {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.banner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 20, 100, 0.7803921569);
  z-index: -1;
}

.mtc-70 {
  margin-top: 70px;
}

.new-box {
  border-radius: 24px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  flex-direction: column;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-decoration: none;
  text-align: center;
  background-image: url(../new-images/it-consulting/img5.jpg) !important;
  position: relative;
  z-index: 11;
}
@media (max-width: 576px) {
  .new-box {
    padding: 30px 8px;
  }
}
.new-box .new-box-content {
  position: relative;
  z-index: 11111;
  width: 80%;
  margin: auto;
}
@media (max-width: 1200px) {
  .new-box .new-box-content {
    width: 100%;
  }
}

.new-box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 38, 94, 0.7294117647);
  z-index: 0;
}

.legal-page {
  margin: 0 0 0 0;
}
.legal-page h4 {
  margin-bottom: 12px !important;
}
.legal-page .terms-single-box {
  margin-top: 44px !important;
}
.legal-page .document-container {
  padding: 30px;
}
@media (max-width: 576px) {
  .legal-page .document-container {
    padding: 8px;
  }
}
.legal-page .document-container a {
  color: #c6769b;
  text-decoration: underline;
}
.legal-page .document-container h1 {
  color: #ffffff;
  border-bottom: 2px solid #c6769b;
  padding-bottom: 10px;
  text-align: center;
}
.legal-page .document-container h3 {
  color: #ff7fba;
  margin: 30px 0 12px 0 !important;
  border-left: 4px solid #ff7fba;
  padding-left: 10px !important;
  font-size: 24px !important;
}
.legal-page .document-container .section {
  margin-bottom: 30px !important;
}
.legal-page .document-container .subsection {
  margin-left: 15px;
  margin-bottom: 20px;
}
.legal-page .document-container ul,
.legal-page .document-container ol {
  padding-left: 32px !important;
}
.legal-page .document-container li {
  margin-bottom: 2px !important;
  line-height: 1.8;
  color: #c9c9c9;
  list-style-type: disc;
}
.legal-page .document-container .highlight-box {
  background-color: #f8f9fa;
  border-left: 4px solid #3498db;
  padding: 15px;
  margin: 15px 0;
}
.legal-page .document-container .contact-info {
  background-color: #e8f4fc;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}
.legal-page .document-container .note {
  font-style: italic;
  color: #7f8c8d;
  margin: 10px 0;
}
.legal-page .document-container .brand-list {
  font-weight: bold;
  background-color: #ffffcc;
  padding: 10px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 18px !important;
}
.legal-page .document-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}
.legal-page .document-container table,
.legal-page .document-container th,
.legal-page .document-container td {
  border: 1px solid #ddd;
}
.legal-page .document-container th,
.legal-page .document-container td {
  padding: 10px;
  text-align: left;
}
.legal-page .document-container ul {
  margin-top: 18px;
}
.legal-page .document-container p {
  margin-top: 12px;
}
.legal-page .document-container ul {
  list-style-type: disc !important;
}
.legal-page .document-container strong {
  color: #fff;
}

.thankyou-parent {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .thankyou-parent .top-svg {
    width: 60px;
  }
}

.title-border::after {
  border-bottom: 2px solid #cdcdcd;
  content: "";
  display: block;
  padding-top: 5px;
  width: 80px;
}

.shape-img1 {
  width: 100px;
}

textarea.form-control {
  min-height: calc(1.5em + 1.75rem + 2) !important;
}

.c-btn {
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.5s ease;
  color: #000 !important;
}
.c-btn:hover {
  letter-spacing: 3px;
  background-color: hsl(313.43, 80%, 48%);
  color: hsl(0, 0%, 100%) !important;
  box-shadow: rgb(185, 97, 142) 0px 7px 29px 0px;
}
.c-btn:active {
  letter-spacing: 3px;
  background-color: hsl(313.43, 80%, 48%);
  color: hsl(0, 0%, 100%) !important;
  box-shadow: rgb(185, 97, 142) 0px 7px 29px 0px;
  transform: translateY(10px);
  transition: 100ms;
}

.counter-divider {
  position: relative;
}
.counter-divider::after {
  content: "";
  position: absolute;
  left: -70px;
  top: 0;
  height: 100%;
  width: 1px;
  border: 1px solid #c6769b;
}
@media (max-width: 1200px) {
  .counter-divider::after {
    border: none !important;
  }
}

.counter-card_text {
  width: 80%;
}
@media (max-width: 767px) {
  .counter-card_text {
    width: 100%;
  }
}

.shape-mockup-wrap {
  position: relative;
}

.portfolio-area-1 .portfolio-wrap {
  position: relative;
  display: block;
}
.portfolio-area-1 .portfolio-wrap .left-image {
  height: 400px;
}
.portfolio-area-1 .portfolio-wrap .right-image {
  height: 400px;
}
.portfolio-area-1 .portfolio-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.mt-lg-140 {
  margin-top: 140px;
}

.contact-left-side .contact-cards .card {
  margin-top: 50px;
  min-height: 130px;
}

.top-features-item {
  padding: 36px 16px;
  background: #303069;
  border-radius: 20px;
  height: 100%;
}
.top-features-item .info h4 {
  font-size: 20px;
  margin-top: 12px;
}

.shape2-position {
  position: absolute;
  top: 0;
  right: 0;
}

.shadow-section2:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1px;
  background-size: contain;
  background-position: center center;
  display: block;
  top: 116px;
  right: 0;
  z-index: 0;
  animation: spin-clockwise 10s linear infinite;
  filter: blur(0.5);
  box-shadow: 0px 0px 124px 104px #f57c8d;
  border-radius: 59%;
  opacity: 0.2;
}

.svg-position2 {
  position: absolute;
  top: 10%;
  right: 0;
  transform: rotate(180deg);
  animation: moveUpDown2 2s ease-in-out infinite;
}

@keyframes moveUpDown2 {
  0%, 100% {
    transform: rotate(180deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(20px);
  }
}
.h-400 {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .h-400 {
    height: 300px;
  }
}

.h-600 {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .h-600 {
    height: 400px;
  }
}
@media (min-width: 280px) and (max-width: 575px) {
  .h-600 {
    height: 300px;
  }
}

.banner-video-parent {
  margin-top: 76px;
}
@media (max-width: 767px) {
  .banner-video-parent {
    margin-top: 60px;
  }
}
.banner-video-parent .services-video-bg {
  position: relative;
}
.banner-video-parent .breadcrumb__title {
  font-size: 30px;
}
.banner-video-parent .video-parent {
  position: relative;
  height: 400px;
}
.banner-video-parent .video-parent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.8196078431);
  opacity: 0.8;
  z-index: 1;
}
.banner-video-parent .services-bg-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.banner-video-parent .services-bg-content h2 {
  color: #fff;
  font-weight: 700 !important;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .banner-video-parent .services-bg-content h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .banner-video-parent .services-bg-content {
    width: 100%;
  }
  .banner-video-parent .services-bg-content h2 {
    text-align: center;
  }
}
.banner-video-parent .services-video-bg .video-parent video {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.banner-video-parent .service-video-bg .video-parent .image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.object-position-1 {
  -o-object-position: 50% 33%;
     object-position: 50% 33%;
}

.white-space {
  white-space: nowrap;
}

.it-consulting-services .c-list li {
  margin: 0 0 10px !important;
}

.wheel-wrapper {
  background-color: #50257c !important;
  width: 500px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}

.spin-check-captcha-button {
  color: #fff !important;
}

.contactList {
  margin-top: 16px;
}

.cookie-cookies-display .cookie-category .choose {
  min-width: 30px;
}

.wheel-wrapper {
  border-radius: 12px;
}

.config-image {
  height: 100%;
}
@media (max-width: 576px) {
  .config-image {
    height: 300px !important;
    width: 100%;
  }
}

.service-mobile {
  border-radius: 14px;
  padding: 30px;
  z-index: 1;
}
@media (max-width: 576px) {
  .service-mobile {
    padding: 20px;
  }
}
.service-mobile p {
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}

.service-title-mobile {
  font-size: 24px !important;
}/*# sourceMappingURL=custom.css.map */