:root {
  /* Typography */
  --font-body--family: "Inter", sans-serif;
  --font-body--style: normal;
  --font-body--weight: 400;

  --font-heading--family: "Poppins", sans-serif;
  --font-heading--style: normal;
  --font-heading--weight: 600;

  --font-button--family: "Poppins", sans-serif;
  --font-button--style: normal;
  --font-button--weight: 600;

  /* h1-h6 */
  --font-h1--size: 60px;
  --font-h2--size: 48px;
  --font-h3--size: 36px;
  --font-h4--size: 24px;
  --font-h5--size: 20px;
  --font-h6--size: 16px;

  /* header nav */
  --font-nav-main: 16px;

  /* Colors */
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(28, 37, 57, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1);
  --color-foreground-subheading: rgba(93, 102, 111, 1);
  --color-background-subheading: rgba(255, 255, 255, 0.1);
  --color-border-subheading-bg: rgba(32, 40, 45, 0.1);
  --color-primary: rgba(28, 37, 57, 1);
  --color-primary-background: rgba(28, 37, 57, 1);
  --color-primary-hover: rgba(28, 37, 57, 1);
  --color-primary-background-hover: rgba(28, 37, 57, 1);
  --color-border: rgba(255, 255, 255, 0.2);
  --color-border-hover: rgba(93, 102, 111, 0.5);
  --color-shadow: rgba(0, 0, 0, 1);
  --color-overlay: rgba(28, 37, 57, 0.6);

  /* Buttons */
  --font-button-size: 16px;
  --font-button-size-mobile: 16px;
  --style-button-height: 56px;
  --style-button-height-mobile: 48px;
  --style-button-slim-height: 52px;
  --style-button-slim-height-mobile: 40px;
  --style-cta-underline-offset: 5px;
  --style-cta-underline-thickness: 1px;

  /* Colors - Primary Button */
  --color-primary-button-text: rgba(255, 255, 255, 1);
  --color-primary-button-background: rgba(32, 40, 45, 1);
  --color-primary-button-border: rgba(32, 40, 45, 1);
  --color-primary-button-icon: rgba(28, 37, 57, 1);
  --color-primary-button-icon-background: rgba(255, 255, 255, 1);

  --color-primary-button-hover-text: rgba(32, 40, 45, 1);
  --color-primary-button-hover-background: rgb(255, 255, 255, 1);
  --color-primary-button-hover-border: rgb(32, 40, 45, 1);
  --color-primary-button-hover-icon: rgba(255, 255, 255, 1);
  --color-primary-button-hover-icon-background: rgba(28, 37, 57, 1);

  /* Colors - Secondary Button */
  --color-secondary-button-text: rgba(32, 40, 45, 1);
  --color-secondary-button-background: rgba(255, 255, 255, 1);
  --color-secondary-button-border: rgba(255, 255, 255, 1);
  --color-secondary-button-icon: rgba(255, 255, 255, 1);
  --color-secondary-button-icon-background: rgba(32, 40, 45, 1);

  --color-secondary-button-hover-text: rgba(255, 255, 255, 1);
  --color-secondary-button-hover-background: rgba(32, 40, 45, 1);
  --color-secondary-button-hover-border: rgba(32, 40, 45, 1);
  --color-secondary-button-hover-icon: rgba(28, 37, 57, 1);
  --color-secondary-button-hover-icon-background: rgba(255, 255, 255, 1);

  /* Colors - Input */
  --color-input-background: rgba(255, 255, 255, 1);
  --color-input-text: rgba(93, 102, 111, 1);
  --color-input-border: rgba(93, 102, 111, 0.2);
  --color-input-hover-background: rgba(255, 255, 255, 1);
  --color-input-hover-text: rgba(93, 102, 111, 1);
  --color-input-hover-border: rgba(93, 102, 111, 0.2);

  /* Borders */
  --style-border-width-buttons-primary: 1px;
  --style-border-width-buttons-secondary: 1px;
  --style-border-radius-buttons-primary: 40px;
  --style-border-radius-buttons-secondary: 40px;

  --style-border-width-inputs: 1px;
  --style-border-radius-inputs: 8px;
  --style-border-width: 1px;

  /* Focus */
  --focus-outline-width: 1px;
  --focus-outline-offset: 3px;

  /* Pagination */
  --style-pagination-border-width: 1px;
  --pagination-item-foreground: rgba(28, 37, 57, 1);
  --pagination-item-background: rgba(242, 242, 242, 1);
  --pagination-item-border: rgba(242, 242, 242, 1);
  --pagination-item-active-foreground: rgba(255, 255, 255, 1);
  --pagination-item-active-background: rgba(28, 37, 57, 1);
  --pagination-item-active-border: rgba(28, 37, 57, 1);

  /* Swiper */
  --swiper-navigation-size: 14px;
  --swiper-navigation-color: rgba(28, 37, 57, 1);
  --swiper-navigation-background-color: rgba(242, 242, 242, 1);
  --swiper-navigation-hover-color: rgba(28, 37, 57, 1);
  --swiper-navigation-hover-background-color: transparent;
  --swiper-pagination-bullet-inactive-color: rgba(242, 242, 242);
  --swiper-pagination-color: rgba(28, 37, 57, 1);
  --swiper-pagination-bullet-inactive-opacity: 1;
}

@media (max-width: 767px) {
  :root {
    --font-h1--size: 48px;
    --font-h2--size: 40px;
    --font-h3--size: 28px;
    --font-h4--size: 20px;
    --font-h5--size: 18px;
    --swiper-navigation-size: 12px;
  }
}
html{
  scrollbar-width: none;
}
.header-grid {
  background: #000;
}
.fontItalic{font-style: italic;}
.header-logo img,
.footer-logo img {
  filter: invert(1) brightness(2);
}

.hero-banner {
  background: #17002f87;
}

.section-headings .heading {
  color: #e4e4e4;
}

.color-white {
  color: #fff;
}

.videoSection {
  height: 100vh;
  max-height: 100%;
  overflow: hidden;
}

.videoSection video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.posTopUp {
  position: absolute;
  top: 35%;
  max-width: 100%;
}

.widthLessCenter {
  width: 60%;
  text-align: center;
  margin: auto;
}

.overlay {
  background-color: #00000052;
  /* opacity: .6; */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
}

.footer-copyright {
  font-size: 0.8rem;
}

.bgBlackSect1 {
  background: #07000e;
  padding: 4rem 0;
}

.wt-pricing-bg-shape-1 {
  position: absolute;
  top: -25rem;
  left: 0;
  /* z-index: -1; */
  animation: spinAround-360deg 35s linear infinite;
}

@keyframes spinAround-360deg {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wt-pricing-bg-shape-2 {
  position: absolute;
  top: -10rem;
  left: -13rem;
  transform: scaleX(-1);
  /* z-index: -1; */
  height: 480px;
  width: 100%;
  object-fit: cover !important;
}

.pinkColor li {
  background: #0F001F;
  padding: 15px 14px;
  border-radius: 20px;
}

.pinkColor li svg {
  color: #E22EAB;
}

.pinkColor li svg circle {
  stroke: #E22EAB;
}

.our-services {
  background-image: url("../img/testimonial-bg-shape.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-list .accordion-li svg path,
.infinite-rotate path,
.choose-bottom-cards .card-icon-text svg path {
  fill: #E22EAB
}

.service-list .accordion-li .icon-plus-circle path {
  fill: transparent
}

.textJustify {
  text-align: justify;
}

.faq {
  background: #11041d;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.faq .quesrnImg {
  position: absolute;
  right: 0rem;
}

.faq .accordion-content-inner {
  background: #262626;
  text-align: left;
}

.faq .accordion-opener {
  background: #1b1b1b;
}

.setImgWIdthSe {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.faq .newFaqImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq .newFaqImg img {
  opacity: 0.2;
}

.faq .relatedIndex {
  z-index: 1;
  position: relative;
}

.page-banner-content .container-fluid .heading {
  position: relative;
}

.page-banner-content .container-fluid .heading::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #E22EAB;
  bottom: 3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.page-banner-content .container-fluid {
  margin-top: 5rem;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap textarea {
  background: #1b1b1b;
  border: none;
  color: #fff;
}

.contact-form-wrap .form-button button {
  background-color: #1b1b1b;
  border: none;
  color: #fff;
}

.section-contact-form .material-symbols-outlined {
  color: #E22EAB;
}

.section-contact-form .svg-wrapper {
  background: #20282d;
  border-radius: 8px;
}

.icon-quote svg path {
  fill: #6a034b;
}

/* Start Media Query------------ */
@media (min-width:320px) and (max-width: 370px) {
  .wt-pricing-bg-shape-1 {
    display: none;
  }
}

@media (min-width:320px) and (max-width: 767px) {
  .cmServiceCont{
    margin-bottom: 1rem;
  }
  .videoSection {
    height: 75vh !important;
  }

  .container-fluid.posTopUp {
    top: 25%;
  }

  .section-headings .heading {
    font-size: 1.5rem;
  }

  .widthLessCenter {
    width: 100%;
  }

  .wt-pricing-bg-shape-2 {
    display: none;
  }

  .image-text.bgBlackSect1 {
    padding: 1rem 0 3rem 0;
  }

  .wt-pricing-bg-shape-1 {
    top: 1rem;
    width: 60%;
    right: 0;
    margin: 0 auto;
  }

  .faq .quesrnImg {
    right: 0rem;
  }

  .faq .newFaqImg {
    left: unset;
    transform: unset;
  }
}

@media (min-width:767px) and (max-width: 999px) {
  .cmServiceCont{
    margin-bottom: 1rem;
    height: 20rem!important;
    object-fit: cover;
  }
  .wt-pricing-bg-shape-1 {
    top: 1rem;
    width: 60%;
    right: 0;
    margin: 0 auto;
  }

  .wt-pricing-bg-shape-2 {
    top: 19.7rem;
    left: -15rem;
    height: 18rem;
    object-fit: contain !important;
    display: none;
  }

  .widthLessCenter {
    width: 80%;
  }

  .container-fluid.posTopUp {
    top: 28%;
  }

  .list-unstyled.pinkColor {
    justify-content: end;
  }
}
@media (min-width:1800px) and (max-width: 2000px) {
  .container{max-width: 1700px;}
}
@media (min-width:1700px) and (max-width: 1799px) {
  .container{max-width: 1500px;}
}
.widthMaxFull{
  width: 100%;
  max-width: 100%!important;
}
.moreUnderline{
  cursor: pointer;
  text-decoration: underline;
  color: #E22EAB;
}
.aboutHedOverlay::before{
  content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: linear-gradient(1deg, transparent 5.46%, #010001 99.49%), linear-gradient(179deg, transparent 0.44%, #260224 119.12%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.footer-top{
    background-image: url("../img/globe.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}
.addNewAboutbg{
  background-image: url("../img/pricing-bg-shape1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#welcomeModal{
  background: #5353539e; pointer-events: none;
}
#welcomeModal .modal-content {
 background: #222222;
  border: 1px solid #5c5c5c;
  color: #fff;
  border-radius: 10px;
}
#welcomeModal .modal-header{
  text-align: left;
}
#welcomeModal .btn-primary{
  background: #E22EAB;
    border: none;
    border-radius: 50px;
    padding: 5px 10px 6px 10px;
}
#welcomeModal .btn-close{
  filter: invert(1) brightness(2);
    background-size: 12px;
}
#welcomeModal .modal-body{
  font-size: 0.9rem;
}
.serviceClsBg{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-service-details{
  background-color: #1f041e;
}
.underlineTextoff{
  text-underline-offset: 8px;
  text-decoration: underline;
}
.serviceBlogPg ol, .serviceBlogPg ul {
    padding-left: 1rem;
}
.serviceBlogPg .icon-24{
  color: #fff;
}
.outcomeServicebg{
  background: #2d2d2d;
  padding: 0.7rem 1rem;
  border-radius: 10px;
}
.cmServiceCont{
  height: 15rem;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}