body {
  font-family: "Lato", sans-serif;
  font-family: "Nunito Sans", sans-serif;
  font-family: "Raleway", sans-serif;
  font-family: "Source Sans Pro", sans-serif;
  font-family: "Poppins", sans-serif;
  background-color: #f3fcff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

li {
  text-decoration: none;
  list-style-type: none;
}

ul {
  padding: 0px;
}

a {
  text-decoration: none;
  color: unset;
}

a:hover {
  color: unset;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

button {
  border: none;
  background: none;
}

#loading {
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 999999;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/pre-loder.gif);
}

.sub-page-head h1 {
  color: #100060;
  font-size: 40px;
  overflow: hidden;
  white-space: nowrap;
  /* animation:
    typing 8.5s steps(20, end),
    blink-caret .9s step-end infinite; */
}

/* The typing effect */
@keyframes typing {
  0%,
  100% {
    width: 0px;
  }

  30%,
  60% {
    width: 794.09px;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #529af9;
  }
}
/* get-started-css-start*/

.px-steps {
  font-family: "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background: #f3fcff;
  margin-top: -200px; /* Fixed typo: added 'px' */
  padding: 0;
}

.px-steps h1 {
  color: #196196;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 2em;
  margin-bottom: 50px;
  text-align: center;
  margin-top: 0px; /* Fixed typo: added 'px' */
  padding: 0;
}

.px-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -30px; /* Fixed typo: added 'px' */
  width: 90%; /* Ensure full width for container */
}

.px-step {
  background: linear-gradient(90deg, #56ccf2 0%, #2f80ed 100%);
  border-radius: 20px;
  width: 250px;
  height: 200px;
  margin: 0 20px;
  position: relative;
  perspective: 1000px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  border: 2px solid #0072ff;
  border-top: 6px solid #4da8e8;
}

.px-step:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.px-step-content {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.px-step:hover .px-step-content {
  transform: rotateY(180deg);
}

.px-front,
.px-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-sizing: border-box;
  color: white;
  border-radius: 20px;
}

.px-front {
  background: linear-gradient(135deg, #50c0f1, #0072ff);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.px-back {
  background: linear-gradient(135deg, #7ec7ff, #4da8e8);
  transform: rotateY(180deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.px-step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.px-step h2 {
  font-size: 24px;
  margin: 20px 0 10px 0;
  font-family: "Nunito Sans";
}

.px-step p {
  font-size: 16px;
  margin: 0;
}

.px-arrow {
  font-size: 40px;
  color: #0072ff;
  margin: 0 20px;
  transition: transform 0.3s;
}

.px-arrow:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .px-steps {
    padding: 20px;
    height: auto;
    margin-top: 0;
  }

  .px-steps h1 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .px-container {
    flex-direction: column;
    align-items: center;
  }

  .px-step {
    width: 100%;
    margin: 20px 0;
  }

  .px-step-content {
    height: auto;
  }

  .px-front,
  .px-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px; /* Increased padding for better visibility */
    box-sizing: border-box;
    color: white;
    border-radius: 20px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    clip-path: none;
    border-radius: 10px;
  }

  .px-step-icon {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .px-step h2 {
    font-size: 20px;
    margin: -40px 0;
    font-family: "Nunito Sans";
  }

  .px-step p {
    font-size: 14px;
  }

  .px-arrow {
    display: none;
  }
}
/* get-started-css-end*/

/* animate-css */
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x-2 {
  animation-name: float-bob-x;
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 25s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 25s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 25s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 25s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.rotate-me {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0) !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* theme-button */
.theme-btn.style-three {
  background: linear-gradient(90deg, #56ccf2 0%, #2f80ed 100%);
}
button:hover {
  color: #000;
}

.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #fff;
  padding: 14px 35px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
  transition: all 500ms ease;
}

.theme-btn.style-one:before,
.theme-btn.style-two:before,
.theme-btn.style-three:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: -1;
  clip-path: polygon(0% 103%, 400% 0, 100% 100%, 0% 100%, 0 0);
  transition: all 500ms ease;
}

.theme-btn.style-three:before {
  background: linear-gradient(96.24deg, #afddff 11.18%, #7ac5ff 96.91%);
}

.theme-btn.style-one:hover:after,
.theme-btn.style-two:hover:after,
.theme-btn.style-three:hover:after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn.style-one:after,
.theme-btn.style-two:after,
.theme-btn.style-three:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.theme-btn.style-three:after {
  background: linear-gradient(96.24deg, #afddff 11.18%, #7ac5ff 96.91%);
}

.theme-btn:hover:after {
  opacity: 1;
}

/* theme-button-btn */

/* site-genrel-heading */
.section-heading h3 {
  color: #196196;
  font-size: 40px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  text-align: center;
  padding: 30px 0;
}

/* .section-heading {
  position: relative;
} */

/* site-genrel-heading-end */

/* header */
.header_text a {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  font-family: "Nunito Sans", sans-serif;
}

.head-bg-color {
  background-color: #fff;
  box-shadow: 0px 7px 20px 0px #6c757d47;
  padding: 5px 0;
}

.headerfirst {
  z-index: 1111;
  width: 100%;
  position: absolute;
  background: transparent;
}

.headersecond {
  z-index: 11111;
  display: none;
}

.second-header-bg {
  background-color: #fff;
}

.patient-xpress_header ul li a {
  position: relative;
  display: inline-block;
}

.patient-xpress_header ul li a:hover {
  margin-left: 10px;
}

.patient-xpress_header ul li a:hover {
  color: #0f0058;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.patient-xpress_header ul li a:hover::before {
  color: #0f0058;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.patient-xpress_header ul li a:before {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.patient-xpress_header ul li a:hover:after {
  width: calc(100% - 15px);
}

.patient-xpress_header ul li a:after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  left: 6px;
  bottom: 0px;
  transition: all 500ms ease;
}

.patient-xpress_header ul li a:after {
  background: #0f0058;
}

/* header-end */

/* patient-xpress_banner */
.patient-xpress_banner {
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vactor-fream img {
  height: 300px;
}

.patient-xpress_banner .slider-nav {
  position: absolute !important;
  bottom: 0;
  left: 0;
  right: 0;
}

.vactor-img {
  cursor: pointer;
  display: flex !important;
  align-items: center;
  flex-direction: column;
}

.vactor-content {
  background-color: #fff;
  max-width: 70%;
  max-height: 60vh;
  margin: 0 auto;
  padding: 50px 100px;
  border-radius: 23px;
  position: relative;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.25),
    inset 51.4px -51.4px 51.4px rgba(194, 194, 194, 0.032),
    inset -51.4px 51.4px 51.4px rgba(255, 255, 255, 0.032);
}

.animate-section {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 3000ms ease;
  -moz-transition: all 3000ms ease;
  -ms-transition: all 3000ms ease;
  -o-transition: all 3000ms ease;
  transition: all 3000ms ease;
}

.vactor-content h3 {
  color: #196196;
  font-family: "Nunito Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  padding: 10px 0;
}

.vactor-content p {
  color: #7b7b7b;
  font-size: 18px;
  font-family: "Nunito Sans";
  padding-bottom: 20px;
}

.vactor-content::after {
  content: url(../images/banner-fream.png);
  position: absolute;
  right: 0;
  bottom: -7px;
}

.slider-nav .slick-current {
  transform: translateY(-25%);
  transition: all 0.5s ease 0s;
}

.slider-nav .slick-slide:hover {
  transform: translateY(-25%);
  transition: all 0.5s ease 0s;
}

.slider-nav .slick-slide:hover .vactor-name-hover {
  visibility: visible;
  position: absolute;
  top: -25px;
}

.slick-list draggable {
  overflow: visible;
}
.patient-xpress_banner .slick-list {
  overflow: visible !important;
}
.slick-track {
  display: flex !important;
  align-items: flex-end;
}

/* .vactor-name-hover {
  visibility: hidden;
} */

.vactor-name-hover p {
  font-size: 12px;
  text-align: center;
  color: #196196;
}
.width-add {
  width: 20%;
}

/* banner-animate */

.animation-container {
  position: absolute;
  top: 14%;
  left: 27%;
}

.wrapper {
  position: relative;
  width: 155px;
  height: 145px;
}

.layer-1 {
  z-index: 1;
  position: absolute;
  bottom: 56%;
  left: -3%;
}

.layer-1.animated {
  animation: layer-1-animation 1.75s ease-in-out forwards 1;
}

.layer-2 {
  z-index: 2;
  position: absolute;
  bottom: 56%;
  left: -3%;
}

.layer-2.animated {
  animation: layer-2-animation 1.75s cubic-bezier(0.215, 0.61, 0.355, 1)
    forwards 1;
}

.layer-3 {
  z-index: 3;
  position: absolute;
  bottom: 56%;
  left: -3%;
}

.layer-3.animated {
  animation: layer-3-animation 1.75s cubic-bezier(0.215, 0.61, 0.355, 1)
    forwards 1;
}

.layer-4 {
  z-index: 1;
  position: absolute;
  bottom: 56%;
  left: -3%;
}

.layer-4.animated {
  animation: layer-4-animation 1.75s ease-in-out forwards 1;
}

.layer-5 {
  z-index: 2;
  position: absolute;
  bottom: 56%;
  left: -3%;
}

.layer-5.animated {
  animation: layer-5-animation 1.75s cubic-bezier(0.215, 0.61, 0.355, 1)
    forwards 1;
}

.layer-6 {
  z-index: 3;
  position: absolute;
  bottom: 56%;
  left: -3%;
}

.layer-6.animated {
  animation: layer-6-animation 1.75s cubic-bezier(0.215, 0.61, 0.355, 1)
    forwards 1;
}

@keyframes layer-1-animation {
  100% {
    transform: translate3d(900px, -90px, 35px);
  }
}

@keyframes layer-2-animation {
  100% {
    transform: translate3d(910px, 200px, 15px);
  }
}

@keyframes layer-3-animation {
  100% {
    transform: translate3d(600px, 395px, 3px);
  }
}

@keyframes layer-4-animation {
  100% {
    transform: translate3d(-307px, -30px, 2rem);
  }
}

@keyframes layer-5-animation {
  100% {
    transform: translate3d(-220px, 248px, 10px);
  }
}

@keyframes layer-6-animation {
  100% {
    transform: translate3d(-400px, 407px, 7rem);
  }
}

.slick-slide img {
  display: unset !important;
  margin: 0 auto;
}

.wrapper img {
  position: absolute;
}

.vactor-content img {
  position: relative;
  z-index: 11;
}

/* banner-animate-end */

/* about-us */
.bold-heading h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
}

.bold-heading {
  position: absolute;
}

.about-us {
  padding: 100px 0 0;
  /* position: relative; */
  /* background-image: url(../images/about-bg.png); */
  background-color: #f3fcff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* .about-content-wrap{
  padding: 0 0 240px;
} */

.about-us__content h2 {
  padding: 30px 0;
}

.about-us__btn a {
  padding: 14px 45px;
}

.about-us__content h4 {
  color: #196196;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
}

.about-us__content h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  font-family: "Nunito Sans";
  color: #000000;
}

.about-us__content p {
  color: #7b7b7b;
  font-size: 18px;
  font-family: "Nunito Sans";
  padding-bottom: 30px;
}

.about-us__vector {
  position: relative;
}

/* .about-us__vector::after {
  content: url(../images/about-us__vector1.png);
  position: absolute;
  bottom: 0;
  left: 0;
}

.about-us__vector::before {
  content: url(../images/about-us__vector2.png);
  position: absolute;
  right: 0;
  bottom: 100px;
} */

/* counter */
.count__bg {
  background: linear-gradient(
    219.33deg,
    #cbecff 22.52%,
    #c1f0ff 45.99%,
    #b4dbff 75.34%
  );
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.14);
  border-radius: 20px;
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .style-two {
  position: relative;
  top: -100px;
} */

.counters i {
  color: lightskyblue;
  margin-bottom: 5px;
}

.counters .count {
  font-weight: 700;
  font-size: 40px;
  color: #196196;
}

.count__bg h5 {
  font-weight: 600;
  font-family: "Nunito Sans";
  font-size: 18px;
  color: #7b7b7b;
}

/* about-us-end */

/* solutions-section */
.solutions-section {
  /* background-image: url(../images/Group\170\\(2\).png); */
  background-repeat: no-repeat;
  background-size: cover;
  height: 39vh;
  background-position: center;
  position: relative;
  top: -15px;
  z-index: 1;
  display: flex;
  align-items: center;
}

.solutions-head {
  color: #fff;
  font-family: "Lato", sans-serif;
  position: relative;
}

.solutions-head h3 {
  font-size: 40px;
  font-weight: 700;
}

.solutions-head p {
  font-size: 16px;
  width: 60%;
  margin: 0 auto;
}

.solutions-text {
  position: relative;
  top: 80px;
  text-align: center;
}

.solutions-bold-heading {
  text-align: center;
  position: absolute;
  top: 0;
}

.solutions-bold-heading h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgb(235 235 235 / 18%);
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

/* video-btn */
.video-inner-box a {
  display: inline-block;
  font-size: 50px;
  color: #bee2ff;
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background: -webkit-linear-gradient(to right, #1cb5e0, #000046);
  background: linear-gradient(to right, #1cb5e0, #000046);
  border-radius: 50%;
  transition: all 500ms ease;
  -webkit-animation: pulse 3s infinite;
  -o-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
}

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  position: absolute;
  bottom: 0%;
  left: 50%;
  right: 50%;
}

/* video-btn-end */

/* solutions-section-end */

/* PatientXpress-ontheWeb-section */
.background-type {
  background: linear-gradient(
    131.8deg,
    #cbecff 24.73%,
    #c1f0ff 50.03%,
    #b4dbff 77.53%
  );
}

.patientXpress-ontheWeb-section {
  padding-bottom: 100px;
  position: relative;
  padding-top: 100px;
}

.patientXpress-ontheWeb-section:before {
  content: url(../images/animate-img.svg);
  position: absolute;
  right: 0px;
  top: -160px;
  animation: scale 0.6s alternate infinite linear both;
}

.ontheWeb-section-heading {
  margin-bottom: 50px;
}

.ontheWeb-text {
  position: absolute;
  top: 70px;
}

.ontheWeb-text h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
  text-align: center;
}

.inner-box {
  min-height: 305px;
  width: 305px;
  margin: 60px auto;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 28px;
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box {
  transform: rotate(315deg);
}

.inner-box p {
  text-align: center;
  padding: 0 10px;
  font-size: 16px;
  color: #6d6d6d;
  font-weight: 600;
  font-family: "Nunito Sans";
}

.icon-box h4 {
  font-size: 25px;
  color: #196196;
  font-family: "Nunito Sans";
  font-weight: 700;
}

/* .icon-after-img::after {
  content: url(../images/bg-icon.png);
  position: absolute;
  transition: all 500ms ease;
  -webkit-animation: pulse 3s infinite;
  -o-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
} */

.icon-after-img {
  display: flex;
  justify-content: center;
}

.feature-block-one {
  position: relative;
  overflow: hidden;
}

.feature-block-one:hover:before {
  transform: scale(1);
  transition: all 0.5s linear;
  transition-delay: 0.1s;
}

.feature-block-one:before {
  content: "";
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: -30px;
  transform: scale(0);
  transition: all 500ms ease;
}

.feature-block-one:before {
  background: rgb(198 219 247 / 36%);
}

.feature-block-one .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -3;
  opacity: 0;
  transition: all 0.3s linear;
}

.feature-block-one:hover .hover-content {
  opacity: 1;
}

.feature-block-one:hover .hover-content:before {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 0.9s linear;
}

.feature-block-one .hover-content:before {
  content: "";
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 500ms ease;
}

.feature-block-one .hover-content:before {
  background: rgb(198 219 247 / 44%);
}

.feature-block-one:hover .hover-content:after {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 1.3s linear;
}

.feature-block-one .hover-content:after {
  content: "";
  width: 310px;
  height: 310px;
  border-radius: 50%;
  position: absolute;
  top: -60px;
  left: -60px;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 500ms ease;
}

.feature-block-one .hover-content:after {
  background: rgb(198 219 247 / 44%);
}

/* PatientXpress-ontheWeb-end */

/* testimonial-section */
.testimonial-bold-heading {
  position: absolute;
  text-align: center;
  top: 75px;
}

.testimonial-bold-heading h1 {
  font-size: 100px;
  font-family: "Nunito Sans";
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
}

.testimonial-section {
  background-image: url(../images/Testimonials_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  height: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}

.testimonial-section .testimonial-slider-img {
  padding: 30px 0;
}

.testimonial-section .carousel-caption p {
  color: #777777;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.testimonial-section .carousel-caption h5 {
  color: #100060;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.testimonial-section .carousel-caption span {
  color: #777777;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.testimonial-section .carousel-caption {
  bottom: unset;
}

.testimonial-section .carousel-indicators [data-bs-target] {
  color: #000000;
  background-color: #000046;
  margin-top: 20px;
  width: 5%;
  height: 10px;
  width: 10px;
}

/* .testimonial-section .carousel-indicators [data-bs-target] :after:active {
  border: 2px solid rgb(17 72 134);
  border-radius: 50%;
} */

/* .testimonial-section .carousel-indicators button img:active {
  border: 2px solid rgb(17 72 134);
  border-radius: 50%;
} */

.testimonial-section .carousel-inner {
  overflow: visible;
}

.testimonial-section .carousel-control-next-icon {
  background-image: url(../images/next-arrow.png);
}

.testimonial-section .carousel-control-prev-icon {
  background-image: url(../images/pre-arrow.png);
}
.carousel-control-prev,
.carousel-control-next {
  margin-top: 60px;
  width: 5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #030853;
  border-radius: 50%;
  margin-top: 90px !important;
  padding: 30px;
}
/* testimonial-section-end */

/* our-keyfeatures */
.keyfeature-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-caller-box {
  background-color: #fff;
  border: 1px solid #196196;
  border-radius: 10px;
  padding: 40px 20px;
  height: 50vh;
  text-align: center;
  box-shadow: 0px 10px 38px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.smart-caller-box h2 {
  text-align: center;
  color: #196196;
  padding: 0px 0 20px;
}

.smart-caller-box p {
  color: #777777;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.smart-caller-box::after {
  content: url(../images/key-animate.png);
  display: block;
  width: 100%;
  bottom: -10px;
  position: absolute;
  left: 110px;
}

.keyfeature-section .keyfeature-right-box {
  background-image: url(../images/keyfeatur-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 493px;
  width: 100%;
  background-position-x: center;
}

.keyfeature-section .vac-width {
  width: 7%;
}

.team-wrap img,
.choose-img img {
  filter: gray;
  -webkit-filter: grayscale(1);
  -webkit-transition: all 0.8s ease-in-out;
}

.keyfeature-section .keyfeature-vac-one img {
  position: absolute;
  right: 0%;
  left: 68%;
  top: 20px;
}

.keyfeature-section .keyfeature-vac-two img {
  position: absolute;
  top: 140px;
  left: 17%;
}

.keyfeature-section .keyfeature-vac-three img {
  position: absolute;
  top: 204px;
  right: 15%;
}

.keyfeature-section .keyfeature-vac-four img {
  position: absolute;
  bottom: -480px;
  right: 50%;
  left: 41%;
}

.keyfeature-section .keyfeature-vac-five img {
  position: absolute;
  left: 20%;
  top: 349px;
}

/* .keyfeature-section .keyfeature-right-box img:hover {
  position: absolute;
  filter: none;
  -webkit-filter: grayscale(0);
  -webkit-transform: scale(1.0);
} */

.team-wrap img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  -webkit-transform: scale(1);
}

.choose-img img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  -webkit-transform: scale(1);
}

.key-doctor {
  left: 20%;
  right: 20%;
  top: -40px;
}

.feature-content:first-child {
  display: block;
}

.feature-content {
  display: none;
}
/* 
.feature-icon img{
  animation: animName 5s ease-out;
	animation-iteration-count: infinite;
}

  @keyframes animName {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
   } */

.feature-icon:hover {
  cursor: pointer;
}

/* our-keyfeatures-end */

.call-wrapper {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.call-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 50%
  );
  z-index: 0;
}

.call-section {
  background: #ffffff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  padding: 40px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.call-section:hover {
  transform: translateY(-5px);
}

.call-section-border {
  border: 2px solid #b0b0b0; /* Updated to gray border */
  border-radius: 15px;
  padding: 25px;
  height: 22vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.call-section-border:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.call-section-border h4 {
  /* font-size: 6px; */
  text-align: center;
  color: #0a4066;
  font-weight: 200;
  margin: 0;
  line-height: 1.5;
}

.call-section-border h4 a {
  color: #2a82c5;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.call-section-border h4 a:hover {
  color: #1a5a8c;
  text-decoration: underline;
}

.call-type a {
  font-weight: 700;
  color: #2a82c5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.call-type a:hover {
  color: #1a5a8c;
}

.call-now a {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #2a82c5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.call-now a:hover {
  color: #1a5a8c;
}

/* .theme-btn.style-three {
  background: linear-gradient(90deg, #2A82C5 0%, #64B5F6 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
} */
/* 
.theme-btn.style-three:hover {
  background: linear-gradient(90deg, #1A5A8C 0%, #4A90E2 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
} */

.theme-btn.style-three i {
  font-size: 16px;
}

.call-button {
  transition: all 0.5s ease;
  animation: pulse 1.5s infinite;
}

.call-button img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.call-button:hover img {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* =======contact-us======== */
/* contact-us_banner */

.address_bg {
  background: linear-gradient(
    142.31deg,
    #cbecff 22.5%,
    #c1f0ff 45.32%,
    #b4dbff 75.76%
  );
  box-shadow: 0px 4px 16px rgba(25, 97, 150, 0.16);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.address_bg {
  min-height: 355px;
  position: relative;
}

.address_bg h4 {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  color: #196196;
}

.info-img p {
  color: #777777;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  width: 70%;
  margin: 0 auto;
}

.info-img h4 {
  color: #3464b170;
}

.info-img a {
  color: #3464b170;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.info-img a:hover {
  color: #1b3598;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  border-bottom: 1px solid #3464b170;
}

.contact-bold-heading h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

.contact-bold-heading {
  bottom: 10%;
}

.contact__head h2 {
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  text-align: center;
  color: #196196;
}

.contact-us_address {
  padding: 100px 0;
}

.request-quote {
  box-shadow: 0px 3px 75px rgba(0, 0, 0, 0.04);
}

.form-box .request-quote {
  padding: 80px 25px;
  margin: 0 auto;
  position: relative;
}

.form-box {
  padding: 0 0 100px;
}

.form-control {
  background-color: #fff;
  border: 0.5px solid #b6d6f5;
  box-shadow: 0px 3px 75px rgba(0, 0, 0, 0.04);
}
label.error {
  color: red;
  font-size: 12px;
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000 !important;
  opacity: 1;
  font-size: 18px;
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif;
  /* Firefox */
}

.text-set option,
select.form-select.py-3.form-bg.form-control.text-set,
input.form-bg {
  color: #000 !important;
  opacity: 1;
  font-size: 18px;
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif;
}

/* ======about-us======= */
/* about-us-banner */
.otherpage_banner {
  background-image: url(../images/otherpage-hero.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 65vh;
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.other-line {
  background-image: url(../images/Aboutpage-bottom-img.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 52%;
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  position: absolute;
  top: 64%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.other-line-two {
  background-image: url(../images/Aboutpage-bottom-img2.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 52%;
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  bottom: -240px;
  left: 0;
  right: 0;
}

/* .support-line-two {
  background-image: url(../images/Aboutpage-bottom-img2.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 30%;
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  left: 0;
  right: 0;
  top: -90px;
} */

.about-index {
  padding-bottom: 0 !important;
}

.about-bold-heading h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

.faq-set-bold-heading h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
  font-weight: 700;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
}

.ourteam-bold-heading,
.about-bold-heading,
.advisor-bold-heading,
.Keyfeature-bold-heading,
.faq-set-bold-heading {
  bottom: 10%;
}

.ourteam-bold-heading h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

.advisor-bold-heading h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

.padd-add {
  padding: 100px 0;
}

.team-wrap img {
  width: 100%;
  height: 282px;
}

/* =========smartKeyfeature========== */
/* smartKeyfeature */
.Keyfeature-bold-heading h1 {
  font-size: 100px;
  text-transform: uppercase;
  color: rgba(83, 150, 200, 0.15);
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

.team-name p {
  color: #777777;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

.team-name h5 {
  color: #215e93;
  font-weight: 600;
  font-family: "Lato", sans-serif;
}
.Keyfeature-text-inner {
  margin-top: 110px;
}

.Keyfeature-text-inner p {
  color: #777777;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  padding-bottom: 15px;
}

.Keyfeature-text-inner li {
  color: #777777;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  list-style-type: disc;
}

.Keyfeature-text-inner h3 {
  color: #215e938a;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  padding-bottom: 20px;
}

.Keyfeature-content {
  padding: 50px 0;
}

.Keyfeature {
  position: relative;
}

.Keyfeature::before {
  content: url(../images/bubble.png);
  position: absolute;
  transition: all 500ms ease;
  -webkit-animation: pulse 1s infinite;
  -o-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  right: 270px;
  top: 120px;
  z-index: -1;
}

.Keyfeature::after {
  content: url(../images/bubble.png);
  position: absolute;
  transition: all 500ms ease;
  -webkit-animation: pulse 1s infinite;
  -o-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  bottom: -10px;
  z-index: -1;
  right: 860px;
}

/* =======website======== */
/* website */
.website-inner {
  padding: 100px 0;
}

.choose-us {
  background-color: #fff;
  padding: 100px 0;
}

.chooseus-box {
  background: rgba(217, 217, 217, 0.1);
  box-shadow: 0px 0px 20px rgb(36 148 242 / 53%);
  backdrop-filter: blur(40.5px);
  border-radius: 10px;
  padding: 50px 20px;
  margin: 15px 0;
  min-height: 275px;
  text-align: center;
}

.chooseus-box h4 {
  color: #363f4d;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.chooseus-box p {
  color: #777777;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}
.service-wrap-box {
  background-color: #fff;
  margin: 15px;
  padding: 30px 15px;
  border-radius: 10px 0 10px 0;
}

.service-wrap-box:hover {
  box-shadow: 0px 0px 20px rgba(36, 148, 242, 0.53);
}
.service-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  color: #777777;
}
.service-content h4 {
  font-size: 20px;
  color: #215e93;
  padding-bottom: 10px;
}
.customer-check p {
  padding-right: 10px;
}
.services-offer {
  padding: 50px 0;
}

/* service-animation */
/* .service-block-one {
  width: calc(100% / 5);
}

.service-block-one .service-icon-box .anim-icon .icon {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgb(0 0 0 / 30%);
  z-index: 1;
  background: #5235DB;
}

.service-block-one .service-icon-box .anim-icon .icon-1 {
  left: 95px;
  top: -25px;
  width: 10px;
  height: 10px;
  -webkit-animation: zoom-fade-two 4s infinite linear;
  animation: zoom-fade-two 4s infinite linear;
}

.service-block-one:hover .service-icon-box .anim-icon {
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.service-block-one .service-icon-box .anim-icon {
  position: absolute;
  left: 30%;
  top: 20%;
  right: 0px;
  width: 40%;
  height: 40%;
  -moz-animation: service_hexagon 3s infinite linear;
  -o-animation: service_hexagon 3s infinite linear;
  animation: service_hexagon 3s infinite linear;
}

.service-block-one .service-icon-box .anim-icon .icon-2 {
  top: 75px;
  right: -28px;
  height: 20px;
  width: 20px;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.service-block-one .service-icon-box .anim-icon .icon-3 {
  right: 94px;
  bottom: -10px;
  width: 25px;
  height: 25px;
  -webkit-animation: zoom-fade 3s infinite linear;
  animation: zoom-fade 3s infinite linear;
}

.service-block-one .service-icon-box .anim-icon {
  position: absolute;
  left: 30%;
  top: 20%;
  right: 0px;
  width: 40%;
  height: 40%;
  -webkit-animation: service_hexagon 3s infinite linear;
  -moz-animation: service_hexagon 3s infinite linear;
  -o-animation: service_hexagon 3s infinite linear;
  animation: service_hexagon 3s infinite linear;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
} */

/* .scroll-to-top {
  position: fixed;
  right: 0px;
  bottom: 100px;
  transform: rotate(90deg);
  z-index: 99;
}
.scroll-to-top .scroll-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
  -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
  transition: all cubic-bezier(.4,0,.2,1) .4s;
}
.scroll-to-top .scroll-top-inner {
  opacity: 0;
  visibility: hidden;
}
.scroll-to-top .visible {
  visibility: visible!important;
  opacity: 1!important;
}
.visible {
  visibility: visible !important;
}
.scroll-to-top .scroll-bar {
  width: 50px;
  height: 2px;
  margin-right: 10px;
  position: relative;
}
.scroll-to-top .scroll-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
  -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
  transition: all cubic-bezier(.4,0,.2,1) .4s;
}
.scroll-to-top .scroll-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f4244f;
  opacity: .3;
}
.scroll-to-top .scroll-bar .bar-inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: currentColor;
}
.scroll-to-top .scroll-bar-text {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 500ms ease;
}
.g_color {
  color: #100060;
  background-color: transparent;
} */

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: -50px;
  right: -162px;
}

.open-button img {
  width: 50%;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #04aa6d;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button {
  opacity: 1;
}

.secondimg {
  display: none;
}

#starshine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shine {
  display: block;
  position: absolute;
  /* background-image: url(../images/footer-animation\\(2\).png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  overflow: hidden;
  opacity: 0;
  width: 420px;
  height: 420px;
  -webkit-animation: glitter 10s linear 0s infinite normal;
  animation: glitter 10s linear 0s infinite normal;
  text-indent: -9999px;
  z-index: 1;
}

.shine.shine-1 {
  top: 60%;
  left: -8%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.shine.shine-2 {
  right: 0px;
  top: 0%;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

@-webkit-keyframes glitter {
  0% {
    -webkit-transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(1) rotate(360deg);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.3) rotate(720deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
}

@keyframes glitter {
  0% {
    -webkit-transform: scale(0.3) rotate(0deg);
    transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.3) rotate(720deg);
    transform: scale(0.3) rotate(720deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(0.3) rotate(0deg);
    transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
}

@-moz-keyframes glitter {
  0% {
    -moz-transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }

  25% {
    -moz-transform: scale(1) rotate(360deg);
    opacity: 1;
  }

  50% {
    -moz-transform: scale(0.3) rotate(720deg);
    opacity: 0;
  }

  100% {
    -moz-transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
}

/* support-page */
.navigtion {
  padding: 100px 0;
}

/* .navigtion-inner {
  padding: 100px 0;
} */
.navigtion-inner .quick-navigation-inner {
  display: none;
}

.navigtion-inner .quick-navigation-inner.active {
  display: block;
}

.support_videos {
  padding: 100px 0;
}

.video-section button {
  border: none;
  background: #fff;
  padding: 8px 40px;
  margin: 0 15px;
  color: #196196;
  border-radius: 5px;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11);
}

.video-section button:hover {
  border: none;
  background: linear-gradient(90deg, #56ccf2 0%, #2f80ed 100%);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11);
  border-radius: 5px;
  color: #fff;
}

.video-section button.active {
  border: none;
  background: linear-gradient(90deg, #56ccf2 0%, #2f80ed 100%);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11);
  border-radius: 5px;
  color: #fff;
}

.video-werpper {
  background: #f3fcff;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #777777;
  overflow: hidden;
  justify-content: center;
  height: 130px;
  cursor: pointer;
}

.video-werpper::after {
  content: "";
}

.video-werpper .color-set {
  color: #777777;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

.support-slider {
  overflow-y: auto;
  height: 450px;
}

.support-slider::-webkit-scrollbar {
  width: 0px;
}

.video-werpper .bg-img-set img {
  right: 0;
  top: 33px;
}

/* .video-werpper:hover{
  background: linear-gradient(90deg, #56CCF2 0%, #2F80ED 100%);
  border: 1px solid #7B7B7B;
  border-radius: 10px;
  transition: all 500ms ease;
  
}
.support-slider p:hover{
  color: #fff;
} */

/* .video-werpper:hover .bg-img-set{
  display: none;
} */

.font-add {
  font-size: 20px;
}

.video-date::after {
  border-right: 1px solid;
}

.sp-thumbnail-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-navigation {
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 50px 0;
}

.quick-navigation h2 {
  padding: 0 50px 50px;
}

.quick-navigation p {
  border-bottom: 0.5px solid #a0a0a0;
  padding: 15px 26px 15px 50px;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
}

.quick-navigation p:hover {
  color: #196196;
}

.quick-navigation p:active {
  color: #196196;
}

.quick-navigation p:active span {
  display: block;
}

.quick-navigation-head h3 {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #196196;
  padding: 30px 0 30px;
}

.accordion-body p {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: rgba(134, 134, 134, 1);
}

.quick-navigation-inner .accordion-button:not(.collapsed) {
  color: #196196;
  background-color: #fff;
  box-shadow: unset !important;
}

.quick-navigation-inner .accordion-button:focus {
  border-color: unset;
  box-shadow: unset;
}

.bg-wrap {
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.our-team .team-name i {
  font-size: 30px;
  color: #777777;
}

.our-team .team-name i:hover {
  color: #196196;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
.form-bg-style {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: rgba(134, 134, 134, 1);
}
.form-bg-style:hover {
  color: #0f0058;
  font-weight: 600;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #b6d6f5;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: rgb(13 110 253 / 25%) 0px 0px 0px 0.25rem;
}

.choose-img {
  width: 30%;
}

.call-design {
  width: 80px;
  height: 80px;
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(96.24deg, #afddff 11.18%, #7ac5ff 96.91%);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 1000px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  top: 40%;
  right: 0;
}
.call-design:hover {
  color: #f3fcff !important;
  background: linear-gradient(96.24deg, #4180e8 11.18%, #204a9a 96.91%);
}

.refined-solution-space {
  padding: 80px 0;
  padding-top: 0px;
}
.refined-container {
  max-width: 1200px;
  margin: 0 auto;
}
.refined-header {
  text-align: center;
  margin-bottom: 40px;
}
.refined-header-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3d58a2;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  word-spacing: 5px;
}
.refined-content-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.refined-video-section {
  flex: 1;
  margin-left: 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(82, 44, 236, 0.1);
}
.refined-video-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}
.refined-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.refined-info-section {
  flex: 1;
  padding: 20px;
  padding-top: 60px;
}
.refined-details-block h3 {
  font-size: 1.6rem;
  color: #1e3864;
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  word-spacing: 3px;
}
.refined-details-block p {
  color: #848c9a;
  line-height: 2;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  word-spacing: 2px;
}
@media (max-width: 768px) {
  .refined-header-text {
    font-size: 1.8rem;
  }
  .refined-content-layout {
    flex-direction: column;
    text-align: center;
  }
  .refined-video-section {
    margin-left: 0;
    width: 100%;
  }
  .refined-video-frame {
    padding-bottom: 56.25%; /* Maintains aspect ratio on mobile */
  }
  .refined-video-frame iframe {
    height: 100%;
  }
  .refined-details-block h3 {
    font-size: 1.3rem;
  }
}

/* stats section home */
.stats-section {
  padding: 60px 0;
  margin-bottom: 120px;
  text-align: center;
}

.stats-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1a2e4d;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.stats-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.stats-section .stat-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  margin: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: calc(25% - 1rem);
  min-width: 200px;
  box-sizing: border-box;
}

@media (hover: hover) {
  .stats-section .stat-box:hover {
    transform: translateY(-5px);
  }
}

.stats-section .stat-box h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.stats-section .stat-box:nth-child(1) h3 {
  color: #f28c38; /* Orange */
}

.stats-section .stat-box:nth-child(2) h3 {
  color: #a3338d; /* Purple */
}

.stats-section .stat-box:nth-child(3) h3 {
  color: #e13030; /* Red */
}

.stats-section .stat-box:nth-child(4) h3 {
  color: #00a3e0; /* Teal */
}

.stats-section .stat-box p {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: #696767;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .stats-section .stat-box {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .stats-section .stat-box {
    width: 100%;
    margin: 0.5rem 0;
  }

  .stats-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .stats-section {
    padding: 2rem 0;
  }
}

/* testimonials  css */
.section-heading h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}
.carousel-caption {
  color: #fffdfd;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 210px !important;
  padding: 30px;
  border-radius: 10px;
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.carousel-caption p {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: rgb(32, 29, 29) !important;
  text-align: center; /* Ensure testimonial text stays left-aligned */
}

.carousel-caption .testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align image and cite to the right */
  margin-top: 10px;
}

.carousel-caption img {
  width: 100px;
  margin-left: 15px; /* Space between cite and image */
}

.carousel-caption cite {
  font-style: italic;
  color: #666;
  text-align: right; /* Align cite text to the right */
}
.carousel-indicators [data-bs-target] {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  opacity: 0.5;
}
.carousel-indicators .active {
  opacity: 1;
}
@media (max-width: 768px) {
  .carousel-caption {
    max-width: 90%;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    background: white;
    height: 430px !important;
  }
  .testimonial-bold-heading h1 {
    font-size: 2rem;
  }
  .section-heading h3 {
    font-size: 1.2rem;
  }
  .carousel-indicators [data-bs-target] {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .carousel-caption {
    max-width: 100%;
    padding: 10px;
  }
  .testimonial-bold-heading h1 {
    font-size: 1.5rem;
  }
  .section-heading h3 {
    font-size: 1rem;
  }
  .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 30px;
  }
}

/* map page CSS */
/* map page CSS */
.maps-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
}

.country-section {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.country-section h2 {
  margin: 0 0 20px;
  color: #0e4276;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
}

.country-section p {
  margin: 0 0 20px;
  color: #34495e;
  font-size: 16px;
  font-weight: 400;
}

.country-grid {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 0;
  height: 120px;
  flex-wrap: nowrap; /* Prevent wrapping */
  position: relative;
}

.country-grid:hover .country-item {
  animation-play-state: paused;
}

.country-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0 15px;
  flex: 0 0 auto; /* Prevent items from resizing */
  min-width: 100px; /* Fixed width for consistency */
  animation: slide 40s linear infinite; /* Increased duration for slower speed */
}

.country-item:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.country-item img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 4px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-100px * 9 - 15px * 18)
    ); /* Adjust based on number of flags and margins */
  }
}

@media (max-width: 1024px) {
  .country-grid {
    height: 100px;
  }

  .country-item {
    min-width: 80px;
    margin: 0 10px;
  }

  .country-item img {
    width: 60px;
    height: 45px;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(
        calc(-80px * 9 - 10px * 18)
      ); /* Adjusted for smaller margins and widths */
    }
  }
}

@media (max-width: 640px) {
  .country-section h2 {
    font-size: 24px;
  }

  .country-section p {
    font-size: 14px;
  }

  .country-grid {
    height: 80px;
  }

  .country-item {
    min-width: 60px;
    margin: 0 5px;
  }

  .country-item img {
    width: 40px;
    height: 30px;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(
        calc(-60px * 9 - 5px * 18)
      ); /* Adjusted for smaller margins and widths */
    }
  }
}

/* contact css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Twk+Lausanne&display=swap");
.contact-container {
  background-color: #ffffff;
  padding: 1.5rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 80rem;
  margin: 2.5rem auto;
}

@media (min-width: 640px) {
  .contact-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 768px) {
  .contact-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.contact-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.contact-title {
  font-size: 1.875rem;
  color: #1f2937;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

.contact-description {
  color: #4b5563;
  font-size: 1.125rem;
  font-family: "Twk Lausanne", sans-serif;
  text-align: left;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrapper {
  padding: 0.75rem;
  background-color: #dbeafe;
  border-radius: 9999px;
  flex-shrink: 0;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.contact-link {
  color: #2563eb;
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
  text-decoration: none;
}

.contact-link:hover {
  color: #1f2937;
}

.contact-subtext {
  color: #4b5563;
  font-size: 0.875rem;
  text-align: left;
  font-family: "Twk Lausanne", sans-serif;
}


@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Twk+Lausanne&display=swap");
.custom-hero-bg {
  background: linear-gradient(to right, #a7dbf0, #3f9cf8);
  padding: 50px 0;
  padding-top: 130px;
  border-radius: 10px;
}
.custom-hero-title {
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.custom-hero-subtitle {
  color: white;
  font-family: "Twk Lausanne", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.custom-hero-text {
  color: white;
  font-family: "Twk Lausanne", sans-serif;
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 15px;
}


/* Hero Section CSS */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Twk+Lausanne&display=swap");

.px-hero-section {
    background: url("../images/heroimag.jpeg") no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.px-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.px-hero-content {
    text-align: left;
    max-width: 600px;
}

.px-hero-heading {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.px-hero-subheading {
    color: white;
    font-family: "Twk Lausanne", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.px-hero-description {
    color: white;
    font-family: "Twk Lausanne", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.px-hero-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #3f9cf8;
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.px-hero-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .px-hero-container {
        text-align: center;
    }

    .px-hero-content {
        margin: 0 auto;
    }

    .px-hero-heading {
        font-size: 2.5rem;
    }

    .px-hero-subheading {
        font-size: 1.8rem;
    }

    .px-hero-description {
        font-size: 1.2rem;
        max-width: 100%;
    }
}

