@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');


body {
  letter-spacing: -2%;
  font-family: 'Inter' !important;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter/Inter18pt-Regular.eot');
  src: url('./fonts/Inter/Inter18pt-Regular.eot') format('embedded-opentype'),
    url('./fonts/Inter/Inter18pt-Regular.woff2') format('woff2'),
    url('./fonts/Inter/Inter18pt-Regular.woff') format('woff'),
    url('./fonts/Inter/Inter_18pt-Regular.ttf') format('truetype'),
    url('./fonts/Inter/Inter18pt-Regular.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora/Lora-Regular.ttf') format('truetype');
  src: url('../fonts/lora/Lora-Regular.eot');
  src: url('../fonts/lora/Lora-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/lora/Lora-Regular.woff2') format('woff2'),
    url('../fonts/lora/Lora-Regular.woff') format('woff'),
    url('../fonts/lora/Lora-Regular.svg#Lora-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LoraItalic';
  src: url('../fonts/lora/Lora-Italic.eot');
  src: url('../fonts/lora/Lora-Italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/lora/Lora-Italic.woff2') format('woff2'),
    url('../fonts/lora/Lora-Italic.woff') format('woff'),
    url('../fonts/lora/Lora-Italic.ttf') format('truetype'),
    url('../fonts/lora/Lora-Italic.svg#Lora-Italic') format('svg');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* Tailwind utility classes for custom fonts */

.font-lora {
  font-family: 'Lora', serif;
}

.font-lora-italic {
  font-family: 'LoraItalic';
}

.font-inter {
  font-family: 'Inter';
}


@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(-30%);
  }

  100% {
    transform: translateX(0%);
  }
}

.animate-marquee {
  animation: marquee 10s linear infinite;
}


/* carousel custon css starts here */

body {
  font-family: 'Helvetica Neue';
}

.wrapper {
  /* background: linear-gradient(60deg, #420285, #08bdbd); */
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 50px;
}


.carousel__item {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  padding: 0 12px;
  margin: 25px 0;
  opacity: 0;
  border-radius: 20px;
  border: 1px solid #FFF3F6;
  box-shadow: 0px 2px 7px -4px #0664D0;
  /* filter: drop-shadow(0 2px 2px #555); */
  will-change: transform, opacity;
  -webkit-animation: carousel-animate-vertical 27s linear infinite;
  animation: carousel-animate-vertical 27s linear infinite;
}

/* .carousel__item:last-child {
  margin-bottom: 0;
} */

.carousel__item:nth-child(1) {
  -webkit-animation-delay: calc(3s * -1);
  animation-delay: calc(3s * -1);
}

.carousel__item:nth-child(2) {
  -webkit-animation-delay: calc(3s * 0);
  animation-delay: calc(3s * 0);
}

.carousel__item:nth-child(3) {
  -webkit-animation-delay: calc(3s * 1);
  animation-delay: calc(3s * 1);
}

.carousel__item:nth-child(4) {
  -webkit-animation-delay: calc(3s * 2);
  animation-delay: calc(3s * 2);
}

.carousel__item:nth-child(5) {
  -webkit-animation-delay: calc(3s * 3);
  animation-delay: calc(3s * 3);
}

.carousel__item:nth-child(6) {
  -webkit-animation-delay: calc(3s * 4);
  animation-delay: calc(3s * 4);
}

.carousel__item:nth-child(7) {
  -webkit-animation-delay: calc(3s * 5);
  animation-delay: calc(3s * 5);
}

.carousel__item:nth-child(8) {
  -webkit-animation-delay: calc(3s * 6);
  animation-delay: calc(3s * 6);
}

.carousel__item:last-child {
  -webkit-animation-delay: calc(-3s * 2);
  animation-delay: calc(-3s * 2);
}

.carousel__item-head {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  /* padding: 14px; */
  position: relative;
  /* margin-right: -100px; */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}

.carousel__item-body {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  margin: 10px 0;
  padding: 10px 15px 10px 15px;
}


/* .flex {
  display: flex !important;
} */

.carousel__item.active+div {
  box-shadow: 0px 2px 7px -4px #F9748F;
}


.carousel__item .icon-pink {
  display: none;
}

.carousel__item .icon-blue {
  display: inline;
}

.carousel__item.active+div .icon-pink {
  display: inline;
}

.carousel__item.active+div .icon-blue {
  display: none;
}


@media (max-width: 768px) {

  .wrapper {
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 0px;
  }

  .carousel__item {
    padding: 0 8px;
    /* flex-direction: column; */
    display: flex;
  }

  .carousel__item-head {
    margin-right: 0;
    margin-bottom: 0px;
    font-size: 36px;
    position: absolute;
    left: 6%;
  }

  .carousel__item-body {
    padding: 0px 10px 10px 75px;
  }

  .carousel__item-body .title {
    font-size: 14px;
  }
}

@-webkit-keyframes carousel-animate-vertical {
  0% {
    transform: translateY(100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }

  3%,
  11.1111111111% {
    transform: translateY(100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }

  14.1111111111%,
  22.2222222222% {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  25.2222222222%,
  33.3333333333% {
    transform: translateY(-100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }

  36.3333333333% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: visible;
  }

  100% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes carousel-animate-vertical {
  0% {
    transform: translateY(100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }

  3%,
  11.1111111111% {
    transform: translateY(100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }

  14.1111111111%,
  22.2222222222% {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  25.2222222222%,
  33.3333333333% {
    transform: translateY(-100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }

  36.3333333333% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: visible;
  }

  100% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }
}



/* Images carousel css starts here */

.image-swiper-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* height: 100vh; */
  font-family: "Roboto", sans-serif;
  transition: 0.25s;
  /* No direct CSS alternative for @include dark */
}

.image-swiper-section .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}

.image-swiper-section .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  /* min-width: 600px;
  max-width: 900px; */
  width: 100%;
  height: 300px;
}

/* Media queries manually converted from SCSS @for */
@media screen and (max-width: 718px) {
  .options {
    min-width: 520px;
  }

  .options .option:nth-child(5) {
    display: none;
  }
}

@media screen and (max-width: 638px) {
  .options {
    min-width: 440px;
  }

  .options .option:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 558px) {
  .options {
    min-width: 360px;
  }

  .options .option:nth-child(3) {
    display: none;
  }
}

@media screen and (max-width: 478px) {
  .options {
    min-width: 280px;
  }

  .options .option:nth-child(2) {
    display: none;
  }
}

/* IMAGES CAROUSEL CSS STARTS HERE */

.options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #e6e9ed));
  /* background-size: auto 120%; */
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option.active {
  flex-grow: 10000;
  transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 40px;
  /* background-size: auto 100%; */
}

.options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.options .option.active .label {
  bottom: 20px;
  left: 20px;
}

.options .option.active .label .info>div {
  left: 0px;
  opacity: 1;
}

/* .option:active {
   transform: scale(0.9);
} */

.options .option:not(.active) {
  flex-grow: 1;
  border-radius: 30px;
}

.options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
}

.options .option:not(.active) .label .info>div {
  left: 20px;
  opacity: 0;
}


.options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}


.options .option .label .info>div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

.options .option .label .info .sub {
  transition-delay: 0.2s;
}



/* CSS For mobile image sliders  */


@media only screen and (max-width: 768px) {

  .expanding-flex-cards>.expanding-flex-cards-item {
    height: 25vh !important;
    width: 180px !important;
    position: relative;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 15px;
    margin-top: 24px;
    margin-bottom: 50px;
    padding: 20px 10px;
    transition: all .3s ease;
  }
}

/* nav.active-navbar {
  padding-bottom: 48px;
} */




/* CSS FOR IMAGE SLIDER */


.expanding-flex-cards img {
  width: 600px;
}

/*
* Styles
*/
.expanding-flex-cards {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  justify-content: center;
}

.expanding-flex-cards>.expanding-flex-cards-item {
  height: 335px;
  width: 180px;
  position: relative;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 15px;
  margin-top: 24px;
  margin-bottom: 50px;
  padding: 20px 10px;
  transition: all .3s ease;
}

.expanding-flex-cards>.expanding-flex-cards-item.active {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
  width: 500px;
}

.expanding-flex-cards>.expanding-flex-cards-item:not(.active) {
  cursor: pointer;
}

.expanding-flex-cards>.expanding-flex-cards-item>img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.expanding-flex-cards>.expanding-flex-cards-item>.expanding-flex-cards-item-footer {
  bottom: 20px;
  z-index: 1;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  transition: all .3s ease;
  left: 0;
}

.expanding-flex-cards>.expanding-flex-cards-item:not(.active)>.expanding-flex-cards-item-footer {
  bottom: 12px;
  left: calc(50% - 15px);
  max-height: calc(25%);
  overflow: hidden;
}

.expanding-flex-cards>.expanding-flex-cards-item>.expanding-flex-cards-item-footer>.expanding-flex-cards-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #464444;
  border-radius: 50% 50%;
  font-size: 16px;
  font-weight: bolder;
  box-shadow: 0px 1px 5px #00000021;
  transition: all .3s ease;
}

.expanding-flex-cards>.expanding-flex-cards-item>.expanding-flex-cards-item-footer>.expanding-flex-cards-title {
  padding: 0px 10px;
  text-shadow: 0px 1px 3px #1616168f;
  display: none;
  transition: all .3s ease;
}

.expanding-flex-cards>.expanding-flex-cards-item.active>.expanding-flex-cards-item-footer>.expanding-flex-cards-title {
  display: block;
  padding: 0px 35px 10px;
  text-shadow: 0px 1px 3px #1616168f;
}

.expanding-flex-cards>.expanding-flex-cards-item>.expanding-flex-cards-item-body {
  display: none;
  width: 100%;
  padding: 15px 25px;
  overflow: auto;
  align-items: center;
}

.expanding-flex-cards>.expanding-flex-cards-item>.expanding-flex-cards-item-body p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #000000;
  background: #FFFFFF;
  padding: 8px 18px;
  border-radius: 36px;
}

.expanding-flex-cards>.expanding-flex-cards-item>.expanding-flex-cards-item-body .expanding-flex-cards-icon {
  color: #000000;
  background-color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 18px;
}


.expanding-flex-cards>.expanding-flex-cards-item.active>.expanding-flex-cards-item-body {
  display: flex;
  transform: scale(0);
  animation: expanding-flex-cards-item-body-reveal .8s ease forwards;
}

@keyframes expanding-flex-cards-item-body-reveal {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}



/* hover layer css */

.hover-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 54px);
  grid-auto-rows: 54px;
  pointer-events: none;
  /* So that hover doesn't block page interaction */
}

.hover-layer div {
  pointer-events: auto;
}

.box {
  width: 54px;
  height: 54px;
  box-sizing: border-box;
  border: 1px solid rgba(249, 116, 143, 1);
  transition: border 0.3s ease;
  opacity: 8%;
}

.box:hover {
  border: 0.5px solid red;
  opacity: 1;
}


@media only screen and (max-width: 768px) {
  .hover-layer {
    height: 575px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 1150px) and (max-width: 1480px) {
  .pink-bg-img .image-div .mobile-img {
    height: auto;
    width: 200px;
  }

  .heading-ta {
    position: absolute;
    top: 7%;
    left: 40%;
  }

}

@media (min-width: 250px) and (max-width: 400px) {
  .very-small-device {
    font-size: 12px !important;
  }
}


/* CSS for slider for mobile  */

#slider::-webkit-scrollbar {
  display: none;
}

#slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.arrow-next svg {
  cursor: pointer;
  margin: 10px;
}

.arrow-next {
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 0 0 0 24px;
}



/* Media query for how it is works section */

@media (min-width: 1024px) and (max-width: 1500px) {
  .step1 {
    justify-content: center;
    margin-top: 230px;
    width: 80%;
  }

  .step2 {
    justify-content: center;
    margin-top: 105px;
    margin-left: 63px;
  }

  .step3 {
    justify-content: center;
    margin-top: 25px;
    margin-left: 125px;
  }

  .step4 {
    margin-top: 120px;
  }
}

/* 
@media (min-width: 1300px) and (max-width: 1500px) {
  .step1 {
    justify-content: end;
    margin-bottom: 30px;
  }

  .step2 {
    justify-content: end;
    margin-bottom: 105px;
    margin-left: 90px;
  }

  .step3 {
    justify-content: center;
    margin-top: 110px;
    margin-left: 145px;
  }

  .step4 {
    margin-top: 87px;
  }
} */



@media (min-width: 1500px) {
  .step1 {
    justify-content: center;
    margin-top: 240px;
  }

  .step2 {
    justify-content: center;
    margin-top: 90px;
    margin-left: 90px;
  }

  .step3 {
    justify-content: center;
    margin-top: 10px;
    margin-left: 145px;
  }

  .step4 {
    margin-top: 87px;
  }

  ;
}

/* 
@media (min-width: 1600px) and (max-width: 1900px) {
  .step1 {
    justify-content: end;
    margin-bottom: 120px;
  }

  .step2 {
    justify-content: center;
    margin-top: 270px;
    margin-left: 82px;
  }

  .step3 {
    justify-content: center;
    margin-top: 180px;
    margin-left: 144px;
  }

  .step4 {
    justify-content: center;
    margin-bottom: 160px;
  }
} */


/* 
@media (min-width: 1900px) and (max-width: 2200px) {
  .step1 {
    justify-content: end;
    margin-bottom: 200px;
  }

  .step2 {
    justify-content: center;
    margin-top: 270px;
    margin-left: 82px;
  }

  .step3 {
    justify-content: center;
    margin-top: 180px;
    margin-left: 144px;
  }

  .step4 {
    justify-content: center;
    margin-bottom: 160px;
  }
} */
/* 
@media (min-width: 2200px) {
  .step1 {
    justify-content: end;
    margin-bottom: 200px;
  }

  .step2 {
    justify-content: center;
    margin-top: 270px;
    margin-left: 82px;
  }

  .step3 {
    justify-content: center;
    margin-top: 180px;
    margin-left: 144px;
  }

  .step4 {
    justify-content: center;
    margin-bottom: 160px;
  }
} */


/* Normal cutom css */

.bg-image-tool-authenticity {
  background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/t-a-lines-image.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.bg-image-tool-authenticity-card {
  background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/bg-lining-img.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.mailto {
  color: blue !important;
}

hr.dashed {
  border-top: 2px dashed #C0D4FC;
}


.inputshadow {
  box-shadow: 0px 6px 30px -18px #292932;
}

.btnshadow {
  box-shadow: 0px 6px 9px -4px #292932;
}


/* .margin-left-t-i {
  margin-left: 180px;
  margin-top: 40px;
} */

.padding-apple-mobile {
  padding: 10px 10px 80px 10px;
}

.how-it-work-bg-image {
  background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/content.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* height: 100%; */
}

.heading-bg-img {
  background-repeat: no-repeat;
  background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/ta-header.svg);
  padding-top: 80px;
  position: relative;
  background-size: 100%;
}

.heading-ta {
  position: absolute;
  top: 9%;
  left: 41%;
}

.gradient-blueish {
  background: radial-gradient(73.04% 91.03% at 50% -20.16%, #3275F5 0%, rgba(80, 137, 246, 0.66) 14.67%, rgba(255, 255, 255, 0.4) 100%);
}

.relative {
  position: relative;
}

.apple-google-play-btns img {
  border-radius: 8px;
}

.heading-wrapper {
  background-image: url('https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/heading-template.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 40px 0;
  position: relative;
}

.heading-text {
  font-family: 'Lora', serif;
  font-weight: normal;
  font-size: 1rem;
  color: #191E25;
  position: relative;
  z-index: 1;
}

.navbar-bg-gradient {
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.31) 99%);
}

.blue-gradient-dotted::before {
  background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/dot.png);
  background-repeat: repeat;
  opacity: 0.4;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.blue-gradient-dotted {
  background: #173E91;
  background: linear-gradient(90deg, rgba(23, 62, 145, 1) 43%, rgba(36, 94, 222, 1) 83%);
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {

  .blue-gradient-image::after {
    content: "";
    background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/Ellipse-after.png);
    width: 285px;
    height: 159px;
    position: absolute;
    right: -119px;
    transform: rotateY(60deg);
    bottom: -55px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
  }

  .blue-gradient-image::before {
    content: "";
    background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/Ellipse-before.png);
    width: 285px;
    height: 159px;
    position: absolute;
    left: -112px;
    transform: rotateY(50deg);
    top: -60px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
  }
}

@media only screen and (min-width: 768px) {

  .blue-gradient-image::before {
    content: "";
    background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/Ellipse-before.png);
    width: 285px;
    height: 159px;
    position: absolute;
    left: -71px;
    top: -40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
  }

  .blue-gradient-image::after {
    content: "";
    background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/Ellipse-after.png);
    width: 285px;
    height: 159px;
    position: absolute;
    right: -73px;
    bottom: -49px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
  }
}



.blue-gradient-content {
  background: radial-gradient(73.04% 91.03% at 50% 120%, #3275F5 0%, rgba(80, 137, 246, 0.66) 14.67%, rgba(255, 255, 255, 0.4) 100%);
  border-radius: 20px;
}

.blue-gradient-mobile {
  background: radial-gradient(73.04% 91.03% at 50% 120%, #3275F5 0%, rgba(80, 137, 246, 0.66) 14.67%, rgba(255, 255, 255, 0.4) 100%);
  border-radius: 20px;
}

.expanding-flex-cards .active .bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
}

.expanding-flex-cards .bg-gradient-to-t {
  background-image: none;
}

.expanding-flex-cards-item:last-child {
  margin-right: 0px;
}

/* .language-div {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: end;
} */


.active-link .active-icon {
  display: block !important;
}

.active-link .inactive-icon {
  display: none !important;
}

.nav-link .active-icon {
  display: none;
}

.nav-link .inactive-icon {
  display: block;
}

.navigation-bar-content {
  width: 90%;
  height: 100%;
  margin-left: auto;
  background: #FFFFFF;
}

.navlink-div {
  height: 100%;
}

.navlink-div a {
  border-bottom: 1px solid #ECEDEE
}

.content-under-div {
  height: 85%;
}

.innerHero-bg {
  height: 290px;
  margin-top: 50px;
}

.innerHero-bg {
  background: #fbfbfc;
  background: linear-gradient(180deg, rgba(253, 253, 255, 1) 20%, rgba(240, 239, 255, 1) 75%, rgba(255, 255, 255, 0.77) 90%);
}

.swiper-container {
  width: 100%;
  height: auto;
}


.swipermob {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

#prev-container>button,
#next-container>button {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0%;
}

#prev-container>button span.label,
#next-container>button span.label {
  display: none;
}

div#pagination>* {
  width: 30px;
  height: 30px;
  padding: 0;
  font-family: Helvetica Neue;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  display: flex;
  margin: 0 1px;
  border-radius: 8px;
  color: #83888E;
  justify-content: center;
  align-items: center;
}

#pagination span.icon.text-lg {
  display: none;
}

@media screen and (min-width: 768px) {

  #prev-container>button span.label,
  #next-container>button span.label {
    display: block;
  }

  #prev-container>button,
  #next-container>button {
    font-weight: 400;
    line-height: 32px;
    font-size: 14px;
  }

  div#pagination>* {
    width: 40px;
    height: 40px;
    font-weight: 400;
    font-size: 14px;
  }

  .circle-image {
    background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/circle.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 115% 55px;
    height: 603px;
  }
}

@media screen and (max-width:767px) {
  .cardbg-gredient {
    background: #ffffff;
    background: linear-gradient(180deg, rgb(255 255 255) 60%, rgb(245 249 255) 90%);
  }
 
}

@media screen and (min-width:320px) and (max-width:768px) {

  .circle-img-mobile {
    background-image: url("https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/circle.svg");    
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 240px 0px;
  }
}


@media screen and (min-width:769px) and (max-width:1023px) {

  .circle-img-mobile {
    background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/circle.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 115% 0px;
  }
}

.line-seprator {
  width: 1px;
  height: 75px;
  background: url("https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/line-seprator.svg") no-repeat center center;
}

.custom-heading {
  background: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/heading-bg.svg) no-repeat 63% 75%;
  padding-bottom: 30px;
}

@media screen and (max-width:767px) {
  .custom-heading {
    background: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/heading-bg.svg) no-repeat center 75%;
    padding-bottom: 30px;
    background-size: 120px;
  }
}

.bgline-gredient {
  background: #FFFFFF;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.65) 0%, rgba(46, 106, 223, 0.50) 100%);
}

.ourValue-inwrap::before {
  background: url("https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/our-value-bg.png") repeat-y center center;
  position: absolute;
  left: 15px;
  top: 20px;
  height: 189px;
  content: "";
  width: 1px;
  z-index: -1;
}

@media screen and (min-width:768px) {
  .ourValue-inwrap::before {
    background: url("https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/our-value-bgx.png") repeat-x center center;
    position: absolute;
    left: 13%;
    top: 55px;
    height: 1px;
    content: "";
    width: 73%;
    z-index: -1;
  }
}

/***** feature-one CSS Here *****/

.feature-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.feature-one--service-two-page {
  padding-bottom: 120px;
}

.feature-one--service-two-page .row {
  --bs-gutter-y: 30px;
}

.feature-one--service-two-page .feature-one__single {
  margin-bottom: 0;
}

.feature-one--service-two-page .carousel-dot-style-1 .owl-dots {
  margin-top: 40px !important;
}

.feature-one__single {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.feature-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.feature-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--notech-black-rgb, 27, 21, 37), 0.9);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: 1;
}

.feature-one__single:hover .feature-one__img:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.feature-one__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.feature-one__single:hover .feature-one__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.feature-one__title-box {
  position: absolute;
  left: 25px;
  bottom: 45px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.feature-one__single:hover .feature-one__title-box {
  opacity: 0;
  visibility: hidden;
}

.feature-one__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.feature-one__title a {
  color: var(--notech-white, #ffffff);
}

.feature-one__hover-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: 3;
}

@media screen and (min-width:768px) and (max-width:992px) {
  .feature-one__hover-content {
    padding: 20px;
  }

  .feature-one__title,
  .feature-one__hover-title {
    font-size: 20px;
  }

}

.feature-one__single:hover .feature-one__hover-content {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.feature-one__icon {
  position: relative;
  display: block;
}

.feature-one__icon span {
  font-size: 66px;
  color: var(--notech-primary, #2be4ac);
  position: relative;
  display: inline-block;
}

.feature-one__hover-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 0px;
  margin-bottom: 5px;
}

@media screen and (min-width:992px) {
  .feature-one__hover-title {
    font-size: 24px;
  }
}

.feature-one__hover-title a {
  color: var(--notech-white, #ffffff);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__hover-title a:hover {
  color: var(--notech-primary, #2be4ac);
}

.feature-one__hover-text {
  font-size: 14px;
  color: #aea8b9;
  line-height: 18px;
  margin-top: 5px;
}

@media screen and (min-width:992px) {
  .feature-one__hover-text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }

  .feature-one__hover-content {
    padding: 25px;
  }
}

.feature-one__learn-more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 31px;
}

.feature-one__learn-more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: var(--notech-base, #6653e8);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__learn-more a:hover {
  color: var(--notech-primary, #2be4ac);
}

.feature-one__learn-more a i {
  position: relative;
  padding-left: 10px;
  top: 2px;
}

.feature-btmbg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
  ;
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
}

h3.feature-one__subtitle {
  color: #fff;
  font-size: 12px;
}

@media screen and (max-width:768px) {
  .bg-map {
    background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/contact-bg.jpg);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: center 90px;
    width: 100%;
  }
}

@media screen and (min-width:768px) {

  h3.feature-one__subtitle,
  .feature-one__hover-text {
    font-size: 12px;
    line-height: 14px;
  }

  .bg-map {
    background-image: url(https://qedvault.s3.us-west-1.amazonaws.com/NewQEDPortal/contact-bg.jpg);
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center 30px;
    width: 100%;
  }
}

@media screen and (min-width:992px) {

  h3.feature-one__subtitle,
  .feature-one__hover-text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Remove spinner arrows from number input */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.expanding-flex-cards-item.active .expanding-flex-cards-overlay {
  display: block;
}

.expanding-flex-cards-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 95%);
  display: none;
}

.custom-frame span.mb-6.mt-auto.pt-6.\[\&_img\]\:h-\[15px\].block{
  display: none !important;
}


.recent-blog-main-banner{
  background-color: whitesmoke;
  border-radius: 16px;
}

.recent-blog-main-banner img {
  display: block;
  margin: auto;
}

.trustpilot-widget{
  max-width: 236px; 
  max-height: 36px;
}
.tp-widget-wrapper{
  max-width: 100%;
}
.tp-widget-wrapper a.button{
  border-radius: 25px;
}
