/*
 * GLightBox CSS
*/
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}
.glightbox-container.inactive {
  display: none;
}
.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}
.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}
.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}
.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}
.glightbox-container .gslide-inner-content {
  width: 100%;
}
.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}
.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}
.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}
.gslide iframe,
.gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}
.gslide:not(.current) {
  pointer-events: none;
}
.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}
.desc-bottom .gslide-image img,
.desc-top .gslide-image img {
  width: auto;
}
.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}
.gslide-image img.zoomable {
  position: relative;
}
.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}
.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}
.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}
.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}
.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}
.gslide-video.playing::before {
  display: none;
}
.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}
.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}
.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}
.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}
.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}
.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}
.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}
.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}
.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.desc-bottom .gslide-media,
.desc-top .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}
.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}
.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}
.gslide-description p {
  margin-bottom: 12px;
}
.gslide-description p:last-child {
  margin-bottom: 0;
}
.zoomed .gslide-description {
  display: none;
}
.glightbox-button-hidden {
  display: none;
}
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.75))
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.75) 100%
  );
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}
.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}
.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}
.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}
.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}
.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}
.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}
.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}
.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gabsolute {
  position: absolute;
}
.grelative {
  position: relative;
}
.glightbox-desc {
  display: none !important;
}
.glightbox-open {
  overflow: hidden;
}
.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}
.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}
.glightbox-mobile .goverlay {
  background: #000;
}
.gclose,
.gnext,
.gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.gclose svg,
.gnext svg,
.gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gclose.disabled,
.gnext.disabled,
.gprev.disabled {
  opacity: 0.1;
}
.gclose .garrow,
.gnext .garrow,
.gprev .garrow {
  stroke: #fff;
}
.gbtn.focused {
  outline: 2px solid #0f3d81;
}
iframe.wait-autoplay {
  opacity: 0;
}
.glightbox-closing .gclose,
.glightbox-closing .gnext,
.glightbox-closing .gprev {
  opacity: 0 !important;
}
.glightbox-clean .gslide-description {
  background: #fff;
}
.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}
.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}
.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}
.glightbox-clean .gslide-video {
  background: #000;
}
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}
.glightbox-clean .gclose path,
.glightbox-clean .gnext path,
.glightbox-clean .gprev path {
  fill: #fff;
}
.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}
.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}
.glightbox-clean .gclose:hover {
  opacity: 1;
}
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}
.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}
.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}
.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}
.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}
.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}
.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}
.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}
@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes float-updown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.animate-float-slow {
  animation: 6s ease-in-out infinite float-updown;
  -webkit-animation: 6s ease-in-out infinite float-updown;
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose,
  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

/*

 * Custom CSS
*/
.hero-slider-full .hero-slider-item .hero-slider-caption {
  overflow: hidden;
}

.hero-slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hero-slider-item .button-group a.btn.btn-bordered {
  margin-top: 10px;
}
.hero-slider-item.img .button-group a.btn.btn-bordered {
  margin-top: 0px;
  box-shadow: none !important;
}
.hero-slider-item .button-group .animation-img img.butn-arrow {
  width: 61px;
}
.hero-slider-img img {
  margin: 0 auto;
}
.hero-slider-item .welcome-intro {
  overflow: hidden;
  padding-bottom: 30px;
  padding-left: 5px;
}
/*Animation*/
/*.active .hero-slider-item h1, .active .hero-slider-item a, .active .hero-slider-item p, .active .hero-slider-item h4{
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-delay: 1s;
  animation-delay: 0.8s;
}
.active .hero-slider-item h4{
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.active .hero-slider-item p{
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.active .hero-slider-item a {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.active .hero-slider-item .hero-slider-img img{
    -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1.3s;
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.6s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}*/
.hero-slider-area .owl-nav {
  display: none;
}
.hero-slider-area .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.hero-slider-area .owl-dots .owl-dot {
  margin: 0 6px;
  border: 0;
  background: none;
  cursor: pointer;
  outline: none;
}
.hero-slider-full .owl-dots .owl-dot span {
  display: block;
  border-radius: 50%;
  background-color: #fff;
  width: 12px;
  height: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.hero-slider-full .owl-dots .owl-dot span::after {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  transform: scale(0);
  transition: all 0.3s ease;
}
.hero-slider-full .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}
.hero-slider-full .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}

.hero-image-slider-full .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.hero-image-slider-full .owl-dots .owl-dot {
  margin: 0 6px;
  border: 0;
  background: none;
  cursor: pointer;
  outline: none;
}
.hero-image-slider-full .owl-dots .owl-dot span {
  display: block;
  border-radius: 50%;
  background-color: #333;
  width: 12px;
  height: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.hero-image-slider-full .owl-dots .owl-dot span::after {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  transform: scale(0);
  transition: all 0.3s ease;
}
.hero-image-slider-full .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}
.hero-image-slider-full .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}

.hs2-section {
  background:
    radial-gradient(
      60% 50% at 80% 0%,
      oklch(85% 0.1 230/0.55),
      transparent 70%
    ),
    radial-gradient(50% 40% at 0% 20%, oklch(88% 0.08 245/0.5), transparent 70%) !important;
  padding-top: 4rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .hs2-section {
    padding-top: 6rem;
  }
}
@media (min-width: 1024px) {
  .hs2-section {
    padding-bottom: 7rem;
  }
}
@keyframes hs2-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hs2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  color: #64748b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  animation: hs2-fade-up 0.5s ease forwards;
}
@keyframes hs2-pulse-ring {
  0% {
    box-shadow: 0 0 #2389e280;
  }
  70% {
    box-shadow: 0 0 0 14px #2389e200;
  }
  100% {
    box-shadow: 0 0 #2389e200;
  }
}
.hs2-badge-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(32% 0.16 258);
  flex-shrink: 0;
  animation: hs2-pulse-ring 2.4s ease-out infinite;
}
.hs2-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: oklch(18% 0.04 255);
  margin: 24px 0;
}

.hs2-title-highlight {
  background: linear-gradient(135deg, oklch(32% 0.16 258), oklch(58% 0.18 245));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hs2-description {
  font-size: 17px;
  line-height: 1.75;
  color: #475569;
  max-width: 520px;
  margin: 0 0 36px;
}
.hs2-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.hs2-btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 16px 24px !important;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  box-shadow: none;
  text-decoration: none;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease;
}
.hs2-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: none !important;
}
.hs2-btn-primary:hover .hs2-btn-arrow {
  transform: translateX(2px);
}

.hs2-btn-primary i,
.hs2-btn-primary svg {
  font-size: 14px;
  width: 16px;
  height: 16px;
}
.hs2-btn-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  transition: transform 200ms ease;
}
.hs2-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0f172a !important;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid oklch(92% 0.02 240);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background-color: oklch(100% 0 0);
  transition: border-color 0.2s;
}
.hs2-btn-secondary:hover {
  color: #0f172a !important;
  background: oklch(97% 0.02 240);
  border-color: oklch(92% 0.02 240) !important;
}
.hs2-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hs2-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: oklch(48% 0.04 250);
}
.hs2-trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: oklch(32% 0.16 258);
}
.hs2-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs2-visual .animate-float-slow {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hs2-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hs2-float-card {
  position: absolute;
  background-color: color-mix(in oklab, oklch(100% 0 0) 95%, transparent);
  border-radius: 16px;
  box-shadow: 0 24px 60px -24px oklch(32% 0.16 258/0.4);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  z-index: 2;
  border: 1px solid oklch(92% 0.02 240);
}
.hs2-float-card-top {
  top: 50px;
  right: auto;
  left: 0;
}
.hs2-float-card-bottom {
  bottom: 50px;
  left: auto;
  right: 0;
}
.hs2-float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: oklch(97% 0.02 240);
  display: flex;
  align-items: center;
  justify-content: center;
  color: oklch(32% 0.16 258);
  flex-shrink: 0;
  font-size: 16px;
}
.hs2-float-card-label {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 2px;
  line-height: 1.3;
}
.hs2-float-card-value {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}
.hs2-stats-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  margin-top: 40px;
}
.hs2-stat-item strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: oklch(18% 0.04 255);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hs2-stat-item span {
  font-size: 12px;
  color: oklch(48% 0.04 250);
}

.hs2-stat-item strong svg {
  width: 14px;
  height: 14px;
  color: oklch(32% 0.16 258);
}

/* Certification marquee band */
.hs2-marquee-band {
  padding: 32px 0;
  border-top: 1px solid oklch(92% 0.02 240);
  border-bottom: 1px solid oklch(92% 0.02 240);
  background-color: color-mix(in oklab, oklch(97% 0.02 240) 40%, transparent);
}
/* standalone widget — reset hero margin */
.mqb-standalone .hs2-marquee-band {
  margin-top: 0;
}
.hs2-marquee-title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.75rem; /* 12px */
  line-height: 1rem; /* 16px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: oklch(48% 0.04 250);
}
.hs2-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.hs2-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: hs2-marquee-scroll var(--hs2-marquee-speed, 28s) linear infinite;
}
.hs2-marquee:hover .hs2-marquee-track {
  animation-play-state: paused;
}
.hs2-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hs2-marquee-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(
    -45deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hs2-marquee-badge svg {
  width: 16px;
  height: 16px;
}
.hs2-marquee-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
  font-size: 0.875rem; /* 14px */
  line-height: 1.25rem; /* 20px */
  font-weight: 600;
  color: color-mix(in oklab, oklch(48% 0.04 250) 60%, transparent);
}
@media (max-width: 1199px) {
  .hs2-title {
    font-size: 44px;
  }
  .hs2-description {
    font-size: 16px;
    max-width: 100%;
  }
  .hs2-stats-row {
    gap: 32px;
  }
  .hs2-float-card {
    min-width: 180px;
    padding: 8px 12px;
  }
  .hs2-visual img {
    max-width: 420px;
  }
}
@media (max-width: 991px) {
  .hs2-title {
    font-size: 38px;
  }
  .hs2-visual {
    min-height: 260px;
    /* margin-top: 48px; */
    margin: auto;
    max-width: 28rem;
  }
  .hs2-description {
    max-width: 100%;
  }
  .hs2-float-card {
    min-width: 180px;
    padding: 8px 12px;
  }
  .hs2-float-card-top {
    top: 50px;
    left: 0;
    right: auto;
  }
  .hs2-float-card-bottom {
    bottom: 50px;
    right: 0;
    left: auto;
  }
}
@media (max-width: 767px) {
  .hs2-title {
    font-size: 28px;
  }
  .hs2-description {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .hs2-stats-row {
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    width: 100%;
  }
  .hs2-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hs2-btn-primary,
  .hs2-btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
  .hs2-trust-items {
    gap: 12px;
  }
  .hs2-visual {
    min-height: auto;
    margin-top: 36px;
  }
  .hs2-visual img {
    max-width: 100%;
  }

  .hs2-float-card-top {
    top: 40px;
    left: 0;
    right: auto;
  }
  .hs2-float-card-bottom {
    bottom: 40px;
    right: 0;
    left: auto;
  }

  .hs2-stat-item strong {
    font-size: 24px;
  }
  .hs2-stat-item strong svg {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 576px) {
  .hs2-stats-row {
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
  }
  .hs2-btn-primary {
    padding: 14px 20px !important;
    font-size: 14px;
  }
  .hs2-btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
  .hs2-trust-items {
    gap: 10px;
  }
  .hs2-trust-item {
    font-size: 12px;
  }

  .hs2-float-card-top {
    top: 20px;
    left: 0;
    right: auto;
  }
  .hs2-float-card-bottom {
    bottom: 20px;
    right: 0;
    left: auto;
  }
}
@media (max-width: 480px) {
  .hs2-section {
    padding-left: 0;
    padding-right: 0;
  }
  .hs2-stats-row {
    gap: 12px;
  }
  .hs2-trust-items {
    flex-direction: column;
    gap: 8px;
  }
  .hs2-badge {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .hs2-btn-primary {
    padding: 12px 16px !important;
    font-size: 13px;
  }
  .hs2-btn-secondary {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.career-highlights-section {
  height: 100%;
}
.career-highlights-section-img {
  height: 100%;
}
.career-highlights-section-img img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}
.book-meeting-section-full .hidden-image img {
  width: 100%;
}
.case-study-item .content h2 a {
  color: var(--secondary-color);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.single-input {
  width: 100%;
  margin-bottom: 20px;
}

.single-input label {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 15px;
  color: #666;
}

.single-input input,
.single-input textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border: 1px solid #ddd;
  font-size: 15px;
  letter-spacing: 0.4px;
  border-radius: 5px;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  outline: none;
  transition: all 0.3s ease;
}
.single-input textarea {
  height: 150px;
}
.single-input input:focus,
.single-input textarea:focus {
  border-color: var(--primary-color);
}
.sa-demand-contact-box input[type="submit"] {
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}
.testimonial-single {
  position: relative;
}
.testimonial-single .flag-img {
  max-width: 25px;
  position: absolute;
  top: 25px;
  right: 28px;
}
.testimonial-single .t-modal .flag-img {
  max-width: 25px;
  position: absolute;
  top: 40px;
  right: 57px;
}
.hero-slider-img.fo-section-h {
  padding: 20px;
}
.hero-slider-img.fo-section-h .fo-section-h-full {
  border: 1px solid #dddddd3b;
  padding: 30px;
  border-radius: 5px;
  background: #dddddd29;
}
.hero-slider-img.fo-section-h .fo-section-h-full .form-group input {
  width: 100%;
  border-radius: 0px;
  height: auto;
  padding: 13px 20px;
  box-shadow: none;
  border: 1px solid #cccccc59;
}
.hero-slider-img.fo-section-h .fo-section-h-full .form-group input:focus {
  border-color: var(--primary-color);
}
.hero-slider-img.fo-section-h .fo-section-h-full h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.hero-slider-img.fo-section-h .fo-section-h-full .form-group textarea {
  width: 100%;
  border-radius: 0px;
  height: 80px;
  padding: 13px 20px;
  box-shadow: none;
  border: 1px solid #cccccc59;
}
.hero-slider-img.fo-section-h .fo-section-h-full .form-group textarea:focus {
  border-color: var(--primary-color);
}
.section-heading > h2 {
  margin-bottom: 15px !important;
}
.section-heading h3.price {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}
.section-heading h3.price span {
  color: var(--primary-color);
}
.content-box-section-area h2.title {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}
.content-box-section-area p.content {
  font-size: 15px;
  line-height: 32px;
  color: #605774;
  margin-bottom: 20px;
}

.content-box-section-area .content-2 {
  line-height: 32px;
  color: #605774;
  margin-bottom: 20px;
}

.content-box-section-area .content-2 p {
  font-size: 15px;
}

.content-box-section-area .list-repeate-item {
  margin-bottom: 15px;
}

.content-box-section-area .list-repeate-item p {
  font-size: 15px;
  line-height: 26px;
  color: #605774;
}
.aws-slider-item .img {
  height: 400px;
  border-radius: 10px;
  position: relative;
}
.aws-slider-item .img .main-img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.aws-slider-item .img .tags {
  position: absolute;
  z-index: 10;
  top: 30px;
  right: 30px;
}
.aws-slider-item .img .slide_up_down {
  position: absolute;
  top: 120px;
  z-index: 2;
  width: 200px;
  left: -100px;
}
.aws-slider-item .img .slide_up_down {
  align-self: flex-end;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  margin: 0 auto 0 auto;
  transform-origin: bottom;
  animation-name: bounce-1;
  animation-timing-function: linear;
}
@keyframes bounce-1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}
.aws-slider-item .content .l-logo {
  max-width: 100px;
  margin-bottom: 25px;
}
.aws-slider-item .content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}
.aws-slider-item .img .tags a {
  display: inline-block;
  padding: 6px 23px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
.aws-slider-item .content p {
  font-size: 15px;
  line-height: 28px;
  color: #605774;
  margin-bottom: 25px;
}
.aws-slider-item .content .button-group {
  display: flex;
  margin: 0;
  align-items: center;
}
.aws-slider-item .content .button-group a.button-2 {
  margin-left: 10px;
  background: transparent;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 11px 30px;
  display: inline-block;
  line-height: 22px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.aws-slider-item .content .button-group a.button-2 svg {
  margin-right: 4px;
}
.aws-slider-item .content .button-group a.btn {
  font-size: 14px;
  font-weight: 400;
}
.aws-slider-item .content .button-group a.btn:before,
.aws-slider-item .content .button-group a.btn:after {
  background: var(--primary-color);
}
.aws-slider-item .content .button-group a.button-2:hover {
  background: var(--primary-color);
  color: #fff;
}
.gallery-card-item {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.gallery-card-item:hover {
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.gallery-card-item .content {
  padding: 28px 30px;
}
.gallery-card-item .content .date {
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #666666c7;
  padding-left: 15px;
}
.gallery-card-item .content .date:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  background: #3333335e;
  border-radius: 50%;
  top: 9px;
  left: 3px;
}
.gallery-card-item .content h3 {
  font-size: 20px;
  font-weight: 600;
}
.gallery-card-item .content h3:hover a {
  color: var(--primary-color);
}
.aws-slider-full .owl-dots {
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}
.aws-slider-full .owl-dots .owl-dot {
  margin: 0 6px;
  border: 0;
  background: none;
  cursor: pointer;
  outline: none;
}
.aws-slider-full .owl-dots .owl-dot span {
  display: block;
  border-radius: 50%;
  background-color: #333;
  width: 12px;
  height: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.aws-slider-full .owl-dots .owl-dot span::after {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  transform: scale(0);
  transition: all 0.3s ease;
}
.aws-slider-full .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}
.aws-slider-full .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}
.side-widgets-l-blog .item .thubnail img {
  border-radius: 5px;
}
.tech-we-used-section .tech-we-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 8px;
  padding: 24px 100px 9px;
  padding-right: 20px;
}
.tech-we-used-section .tech-we-bg .content h3 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}
.tech-we-used-section .tech-we-bg .content p {
  font-size: 15px;
  line-height: 28px;
  color: #605774;
  margin-bottom: 25px;
}
.single-solution-card {
  background-color: #edeff5;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.single-solution-card:hover {
  -webkit-box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.12);
  box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.12);
}

.single-solution-card a {
  padding: 40px;
  display: inline-block;
}

.single-solution-card a .title {
  text-align: left;
  margin-bottom: 35px;
}

.single-solution-card a .title h4 {
  font-weight: 500;
  line-height: 30px;
  font-size: 23px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-solution-card:hover a .title h4 {
  color: var(--primary-color);
}
.single-solution-card .thumb img {
  width: 100%;
}
.book-meeting-section-full.slider-image-sec .image-column-s {
  margin: 0;
  padding: 0;
}
.book-meeting-section-full.slider-image-sec .row.section-bg {
  height: 550px;
  overflow: hidden;
}
.book-meeting-section-full.slider-image-sec .b-image-slider-full .image {
  height: 100%;
}
.book-meeting-section-full.slider-image-sec .b-image-slider-full .image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.b-image-slider-full .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.b-image-slider-full .owl-dots .owl-dot {
  margin: 0 6px;
  border: 0;
  background: none;
  cursor: pointer;
  outline: none;
}
.b-image-slider-full .owl-dots .owl-dot span {
  display: block;
  border-radius: 50%;
  background-color: #333;
  width: 12px;
  height: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.b-image-slider-full .owl-dots .owl-dot span::after {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  transform: scale(0);
  transition: all 0.3s ease;
}
.b-image-slider-full .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}
.b-image-slider-full .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}
.book-meeting-section-full.slider-image-sec .content-column {
  padding: 0px 20px;
  padding-left: 26px;
}
.hero-slider-item .welcome-intro h1,
.hero-slider-item .welcome-intro h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  line-height: 52px;
}
.hero-slider-item .welcome-intro h2 span,
.section-heading > h2 span {
  color: var(--primary-color);
}
.welcome-intro p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 28px;
}
.button-group a.btn.btn-bordered.active::before {
  background: var(--primary-color);
}
.about-image-slider-full .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
}
.about-image-slider-full .owl-dots .owl-dot {
  margin: 0 6px;
  border: 0;
  background: none;
  cursor: pointer;
  outline: none;
}
.about-image-slider-full .owl-dots .owl-dot span {
  display: block;
  border-radius: 50%;
  background-color: #333;
  width: 12px;
  height: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.about-image-slider-full .owl-dots .owl-dot span::after {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  transform: scale(0);
  transition: all 0.3s ease;
}
.about-image-slider-full .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}
.about-image-slider-full .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}
.hero-slider-area .hero-slider-img img {
  padding: 20px;
}
.certificate-image-box {
  text-align: center;
  background: #fff;
  padding: 25px;
  width: 100%;
  box-shadow: 0px 4px 16px 0px #00000014;
  border-radius: 16px;
}
.service-box-item-n {
  overflow: hidden;
  border-radius: 16px;
  /* background: #0a1026; */
  background: linear-gradient(
    -45deg,
    var(--secondary-color) 0%,
    rgb(10, 16, 38) 100%
  );
  padding: 24px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  height: 100%;
}
.service-box-item-n .icon {
  margin-bottom: 18px;
  max-width: 150px;
}
.service-box-item-n .content h3 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}
.service-box-item-n .content p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin-bottom: 30px;
}
.service-box-item-n .content a.view_text {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-box-item-n .content a.view_text:hover {
  color: var(--primary-color);
}
.service-box-item-n .content a.view_text span {
  margin-left: -120px;
  display: inline-block;
  width: auto;
  transition: all 0.5s ease;
}
.service-box-item-n:hover .content a.view_text span {
  margin-left: 0px;
}
.service-box-item-n .content a.view_text svg {
  font-size: 20px;
  width: 25px !important;
  height: 20px;
}

/* ---- Service Box Style 2 ---- */
.service-box-item-n.style2 {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid oklch(92% 0.02 240);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  -webkit-transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.service-box-item-n.style2::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
  transition:
    background 0.4s ease,
    width 0.4s ease,
    height 0.4s ease;
}
.service-box-item-n.style2:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.service-box-item-n.style2:hover::after {
  background: linear-gradient(
    135deg,
    oklch(98% 0.02 230) 0%,
    oklch(92% 0.06 230) 100%
  );
  width: 160px;
  height: 160px;
}
.service-box-item-n.style2 .icon {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  max-width: 80px;
}
.service-box-item-n.style2 .content {
  position: relative;
  z-index: 1;
}
.service-box-item-n.style2 .content h3 {
  color: #0d1b2a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0px;
  margin-bottom: 12px;
}
.service-box-item-n.style2 .content p {
  color: #6b7280;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
.service-box-item-n.style2 .content a.view_text {
  color: oklch(32% 0.16 258);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}
.service-box-item-n.style2:hover .content a.view_text {
  opacity: 1;
  transform: translateY(0);
}
.service-box-item-n.style2 .content a.view_text:hover {
  color: #1a3a8f;
}
/* override base slide-in on span */
.service-box-item-n.style2 .content a.view_text span {
  margin-left: 0 !important;
  display: inline;
  transition: none;
}
.service-box-item-n.style2:hover .content a.view_text span {
  margin-left: 0 !important;
}
/* rotate arrow to northeast (↗) */
.service-box-item-n.style2 .content a.view_text svg {
  width: 16px !important;
  height: 16px;
  transition: transform 0.3s ease;
}

.about-us-content h4 {
  margin-bottom: 26px !important;
  font-size: 26px !important;
  font-weight: 400 !important;
}
.about-us-content h2 {
  font-size: 40px !important;
  line-height: 52px !important;
}
.item-stle span svg {
  margin-right: 10px !important;
}
.single-solution-card2 {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #0000001a;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.single-solution-card2:hover {
  box-shadow:
    0 10px 15px rgba(150, 46, 255, 0.3),
    0 -10px 15px rgba(0, 115, 229, 0.3),
    10px 0 15px rgba(0, 126, 148, 0.3),
    -10px 0 15px rgba(0, 115, 229, 0.3);
  border-color: var(--primary-color);
}
.single-solution-card2:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  width: 100% !important;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(10, 16, 38, 0) 0%, #0a1026 83.75%);
}
.single-solution-card2 .thumb img {
  width: 100%;
}
.single-solution-card2 .cate {
  position: absolute;
  top: 30px;
  z-index: 3;
  left: 30px;
  background: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #000;
  padding: 4px 12px;
  padding-top: 5px;
  border-radius: 4px;
}
.single-solution-card2 .content {
  position: absolute;
  z-index: 4;
  bottom: 0;
  padding: 24px;
  left: 0;
  right: 0;
  width: 100%;
}
.single-solution-card2 .content h3 {
  margin-bottom: 20px;
}
.single-solution-card2 .content h3 a {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.2px;
  color: #fff;
}
.single-solution-card2 .content h3:hover a {
  color: var(--primary-color);
}
.single-solution-card2 .view-btn a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.single-solution-card2 .view-btn a svg {
  font-size: 20px;
  width: 25px !important;
  height: 20px;
}
.single-solution-card2 .view-btn a span {
  margin-left: -91px;
  display: inline-block;
  width: auto;
  transition: all 0.5s ease;
}
.single-solution-card2:hover .view-btn a span {
  margin-left: 0px;
}
.single-solution-card2 .view-btn a:hover span {
  color: var(--primary-color);
}
.testimonial-sec-left-content h4 {
  margin-bottom: 26px !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: #000 !important;
}
.discover-we-section {
  padding: 100px 0px;
  background: #0a1026;
}
.discover-we-section .image img {
  width: 100%;
}
.discover-we-section .content h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.2px;
  color: #fff;
  margin-bottom: 20px;
}
.discover-we-section .content p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #fff;
  margin-bottom: 20px;
}
.discover-we-section .content h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #fff;
}
.discover-we-section .content ul.list {
  margin-bottom: 20px;
}
.discover-we-section .content ul.list li {
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
}
.discover-we-section .content ul.list li svg {
  margin-right: 8px;
}
.discover-we-section .content ul.list li:last-child {
  margin-bottom: 0px;
}
.discover-we-section .content ul.list li a {
  color: #fff;
}
.discover-we-section .content ul.list li a:hover {
  color: var(--primary-color);
}
.discover-we-section .content .button-sec a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #fff;
  background: var(--primary-color);
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 4px;
}
.discover-we-section .image img {
  width: 100%;
  border-radius: 8px;
}
.blog-item .content a.read-more {
  color: #333333 !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  display: inline-flex !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}
.blog-item .content a.read-more span {
  margin-left: -85px;
  display: inline-block;
  width: auto;
  transition: all 0.5s ease;
}
.blog-item .content a.read-more svg {
  font-size: 20px;
  width: 25px !important;
  height: 20px;
}
.blog-item:hover .content a.read-more span {
  margin-left: 0px;
}
.blog-item .content a.read-more:hover {
  color: var(--primary-color) !important;
}

.ftc-team-2-item.ftc-t1-active-toggle {
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.5);
}
.ftc-team-2-item.ftc-t1-active-toggle.col-lg-3.active {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.ftc-certificate-item {
  position: relative;
  z-index: 1;
  /*    border: 1px solid #502e64;*/
  border-radius: 10px;
  padding: 30px;
  /*    padding-bottom: 0;*/
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.5);
  width: 100%;
  overflow: hidden;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.ftc-certificate-item .bg-shape-cer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.5);
}
.ftc-team-2-item:is(.active) .bg-shape-cer {
  opacity: 1;
  visibility: visible;
}

.ftc-certificate-item .item-img {
  height: 100%;
  display: flex;
  align-items: end;
  max-width: 190px;
  overflow: hidden;
}
.certificate-item-hover {
  position: absolute;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  width: 100%;
  padding-left: 230px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition-delay: 0s;
  z-index: 1;
}
.ftc-team-2-item:is(.active) .certificate-item-hover {
  right: 0;
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}
.certificate-item-hover p {
  display: none;
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition-delay: 0s;
  font-style: italic;
  padding-right: 10px;
}
.ftc-team-2-item:is(.active) .certificate-item-hover p {
  display: block;
}
.ftc-team-2-item .item-btn {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 22px;
  position: absolute;
  right: -100px;
  top: 18px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition-delay: 0;
  z-index: 1;
}
.ftc-team-2-item:is(.active) .item-btn {
  right: 20px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
}
.ftc-team-2-item .item-btn svg {
  width: 20px;
  line-height: 1;
  color: #fff;
  fill: #fff;
  transform: rotate(-45deg);
}
.certificate-item-hover h2.title {
  font-size: 20px;
  color: #003a6f;
  margin-bottom: 8px;
}
.certificate-item-hover p {
  font-size: 15px;
  font-weight: 400;
}
.certificate-count-box {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  padding: 30px 20px;
  /* padding-bottom: 0; */
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.5);
  width: 100%;
  overflow: hidden;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}
.certificate-count-box h2.title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003a6f;
}
.certificate-count-box h2.title span {
  display: block;
  font-size: 30px;
}
.certificate-count-box p {
  font-size: 16px;
}
.single-blog-details .blog-thumb img {
  max-width: 100%;
  width: auto;
}
.job-apply-form {
  border-top: 1px solid #ddddddb5;
  padding-top: 20px;
}
.job-apply-form h2 {
  font-size: 26px;
  color: #003a6f;
  margin-bottom: 20px;
}
.job-apply-form .single-input input,
.job-apply-form .single-input textarea {
  border-radius: 0px;
}
.job-apply-form .wpcf7-response-output {
  margin: 0 !important;
}
.job-apply-form input[type="submit"] {
  width: auto;
  padding: 12px 38px;
  border-radius: 4px;
  background: #003a6f;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.job-apply-form input[type="submit"]:hover {
  background: var(--primary-color);
}
.date-read-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.certificate-count-box p span {
  color: #ff9900;
  position: relative;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
  display: inline-block;
  z-index: 1;
}
.certificate-count-box p span:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  width: 40px;
  height: 9px;
  bottom: -5px;
  line-height: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  left: 0;
  margin: 0 auto;
}
.ftc-certificate-item.style-2 .item-img {
  max-width: 100%;
  justify-content: space-around;
}
.ftc-certificate-item.style-2 .item-img img {
  max-width: 200px;
  width: 100%;
}
.testimonial-single-header .video-sec-tes {
  text-align: center;
  border-radius: 8px;
  padding: 70px 30px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.testimonial-single-header .video-sec-tes:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #505050;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 8px;
}
.testimonial-single-header .video-sec-tes .icon svg {
  font-size: 30px;
  width: 34px;
  height: 34px;
  fill: var(--primary-color);
  transition: all 0.3s ease;
}
.testimonial-single-header .video-sec-tes .icon {
  width: 75px;
  height: 75px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--primary-color);
  text-align: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.testimonial-single-header:hover .video-sec-tes .icon {
  color: #fff;
  background: var(--primary-color);
}
.testimonial-single-header:hover .video-sec-tes {
  transform: scale(1.05);
}
.testimonial-single-header:hover .video-sec-tes .icon svg {
  fill: #fff;
}
.section-heading > h1 {
  text-transform: inherit;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -1.2px;
  margin-bottom: 15px;
  display: inline-block;
}
body .single-service.st2 {
  padding: 40px 30px !important;
  border: 1px solid #cccccc45;
  -webkit-box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
  box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
  height: 100%;
  background: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.h-100-100 .elementor-widget-container {
  height: 100%;
}
body .testimonial-single-header .ratting {
  display: none;
}
body .testimonial-single-header p.designation {
  font-weight: 600;
}
.review-iframe {
  height: 100%;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgb(0 0 0 / 5%) 0px 0px 0px 1px;
}
.new-p-card {
  box-shadow: -12px 10px 60px 0px
    rgba(35.000000000000014, 40.00000000000006, 105, 0.05);
  height: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.new-p-card:hover {
  box-shadow:
    0 10px 15px rgb(150 46 255 / 11%),
    0 -10px 15px rgb(0 115 229 / 14%),
    10px 0 15px rgb(0 126 148 / 19%),
    -10px 0 15px rgb(0 115 229 / 20%);
}
.new-p-card .thumb img {
  width: 100%;
}
.new-p-card .content {
  padding: 25px;
}
.new-p-card .content h2 {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--headding-color);
}
.new-p-card .content p.text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 12px;
}
.new-p-card .content .l-l {
  margin-bottom: 10px;
}
.new-p-card .content .l-l img {
  max-width: 138px;
}
.new-p-card .content ul {
  margin-left: 13px;
  margin-bottom: 10px;
}
.new-p-card .content ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  padding-left: 4px;
  color: #666666;
}
.new-p-card .content ul li:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 50%;
  top: calc(50% - 3px);
  left: -8px;
}
.new-p-card .content .a-btn {
  margin-top: 10px;
}
.new-p-card .content .a-btn a {
  display: inline-flex;
  align-items: center;
  padding: 9px 25px;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
}
.new-p-card .content .a-btn a:hover {
  color: #fff;
  background: var(--primary-color);
}
.new-p-card .content .a-btn a svg {
  fill: var(--primary-color);
  transition: all 0.3s ease;
  width: 14px;
  margin-left: 6px;
}
.new-p-card .content .a-btn a:hover svg {
  fill: #fff;
}
.iq_review_sec {
  box-shadow: 0px 4px 8px 0px #0000000a;
  border: 1px solid #00000014;
  border-radius: 8px;
  padding: 24px;
  background: #f7f7f7;
}
.iq_review_sec h2 {
  color: #141831;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 32px;
}
.iq_review_sec .iq-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #000;
  line-height: 1;
}
.iq_review_sec .iq-rating span {
  line-height: 27px;
}
.iq_review_sec .iq-rating .ratting {
  font-size: 18px;
  float: left;
  color: #ffd52b;
}
.iq_review_sec .iq-rating .ratting span {
  float: left;
  margin-right: 2px;
}
.iq_review_sec .iq-a-btn a.button-1 {
  background: var(--primary-color);
  padding: 11px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 28px;
  display: inline-block;
}
.offer-banner-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px 0px;
}
.offer-banner-section .content h3 {
  color: #fff;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 40px;
}

.offer-banner-section .content h2 {
  color: #0190f6;
  font-size: 70px;
  font-weight: 700;
  margin: 18px 0px;
}

.offer-banner-section .content h5 {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}
.offer-banner-section .image {
  text-align: center;
}
.offer-banner-section .image img {
  max-width: 300px;
  margin: 0 auto;
}
.iq_review_sec .iq-a-btn a.button-1:hover {
  background: #0072e5;
}
.new-product-list {
  position: relative;
}
.single-list-view-item {
  padding-top: 80px;
  padding-bottom: 50px;
}
.single-list-view-item .image img {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .single-list-view-item .order-first .image {
    margin-right: 20px;
    margin-left: 0;
  }

  .single-list-view-item .image {
    margin-left: 20px;
  }
  .single-list-view-item .order-first.order-lg-last .image {
    margin-right: 0;
    margin-left: 20px;
  }
}
.single-list-view-item .content h2 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.single-list-view-item .content p {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 12px;
}
.single-list-view-item .content ul {
  margin-left: 13px;
  margin-bottom: 10px;
}
.single-list-view-item .content ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  padding-left: 4px;
  color: #666666;
}
.single-list-view-item .content ul li:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 50%;
  top: calc(50% - 3px);
  left: -8px;
}
.single-list-view-item .content .a-btn {
  margin-top: 20px;
}
.single-list-view-item .content .a-btn a {
  display: inline-flex;
  align-items: center;
  padding: 9px 25px;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
}
.single-list-view-item .content .a-btn a:hover {
  color: #fff;
  background: var(--primary-color);
}
.single-list-view-item .content .a-btn a svg {
  fill: var(--primary-color);
  transition: all 0.3s ease;
  width: 14px;
  margin-left: 6px;
}
.single-list-view-item .content .a-btn a:hover svg {
  fill: #fff;
}
@media (min-width: 1400px) {
  .ftc-certificate-item.style-2 .item-img img {
    max-width: 220px;
  }
  .ftc-certificate-item .item-img {
    max-width: 225px;
  }
  .certificate-item-hover {
    padding-left: 255px;
  }
  .certificate-count-box h2.title {
    font-size: 26px;
  }
  .certificate-count-box p {
    font-size: 20px;
    line-height: 27px;
  }
  .certificate-count-box p span {
    font-size: 20px;
  }
  .certificate-count-box p span:after {
    width: 45px;
    height: 10px;
    bottom: -8px;
  }
  .certificate-count-box p span {
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .discover-we-section .content {
    padding-left: 40px;
  }
}
@media (min-width: 1400px) {
  .hero-slider-item .welcome-intro h1,
  .hero-slider-item .welcome-intro h2 {
    font-size: 44px;
    line-height: 60px;
  }
}
@media (max-width: 1200px) {
  @keyframes bounce-1 {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .aws-slider-item .img .slide_up_down {
    display: none;
  }
}
@media (max-width: 1199px) {
  .ftc-certificate-item.style-2 .item-img img {
    max-width: 160px;
  }
}
@media (max-width: 991px) {
  .career-highlights-section-img {
    margin-top: 30px;
    text-align: center;
  }
  .career-highlights-section-img.mmb-30 {
    margin-top: 0px;
    text-align: center;
    margin-bottom: 30px;
  }
  .career-highlights-section-img img {
    height: auto;
    width: auto;
  }
  .aws-slider-item .content {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .book-meeting-section-full.slider-image-sec .row.section-bg {
    height: auto;
    overflow: hidden;
  }
  .book-meeting-section-full.slider-image-sec .b-image-slider-full .image img {
    width: 100%;
    height: auto;
  }
  .book-meeting-section-full.slider-image-sec .content-column {
    padding: 40px 20px;
  }
  .discover-we-section .content h2 {
    margin-top: 30px;
  }
  .ftc-team-2-item.ftc-t1-active-toggle.col-lg-3.active {
    -ms-flex: 0 0 50%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ftc-team-2-item.ftc-t1-active-toggle .certificate-item-hover {
    right: 0;
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
  }
  .ftc-team-2-item.ftc-t1-active-toggle .item-btn {
    right: 20px;
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s;
  }
  .ftc-team-2-item.ftc-t1-active-toggle .certificate-item-hover p {
    display: block;
  }
  .ftc-certificate-item.style-2 .item-img img {
    max-width: 200px;
  }
  .section-heading > h1 {
    font-size: 32px;
  }
  .offer-banner-section .content {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero-slider-item .welcome-intro h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .hero-slider-item .welcome-intro h2 {
    font-size: 26px;
    line-height: 38px;
  }
  .aws-slider-item .content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .aws-slider-item .content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .tech-we-used-section .tech-we-bg .content h3 {
    font-size: 32px;
  }
  .tech-we-used-section .tech-we-bg {
    padding: 40px 25px 15px;
  }
  .single-solution-card a .title h4 {
    line-height: 26px;
    font-size: 18px;
  }
  .single-solution-card a .title {
    margin-bottom: 25px;
  }
  .single-solution-card a {
    padding: 30px;
  }
  .single-solution-card2 .content h3 a {
    font-size: 16px;
    line-height: 27px;
  }
  .service-box-item-n .content p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .discover-we-section .content h2 {
    font-size: 26px;
  }
  .discover-we-section .content ul.list li {
    font-size: 15px;
  }
  .section-heading > h1 {
    font-size: 25px;
  }
  .iq_review_sec h2 {
    font-size: 25px;
    text-align: center;
  }
  .iq_review_sec .iq-rating {
    justify-content: center;
    margin-bottom: 16px;
  }
  .iq_review_sec .iq-a-btn {
    text-align: center;
  }
  .offer-banner-section .content h2 {
    font-size: 50px;
    margin: 10px 0px;
  }
  .single-list-view-item .content h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .single-list-view-item .content p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .single-list-view-item .content .a-btn {
    margin-top: 10px;
  }
  .single-list-view-item {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .discover-we-section {
    padding: 60px 0px;
  }
}
@media (max-width: 480px) {
  .ftc-certificate-item .item-img {
    height: 100%;
    display: flex;
    align-items: end;
    max-width: 100%;
    overflow: hidden;
    display: block;
    text-align: center;
  }
  .ftc-team-2-item:is(.active) .bg-shape-cer {
    display: none;
  }
  .certificate-item-hover {
    position: relative;
    top: 2px;
    right: 0;
    transform: translateY(0%);
    width: 100%;
    padding-left: 0;
    text-align: center;
    padding: 10px;
  }
  .ftc-team-2-item.ftc-t1-active-toggle .item-btn {
    display: none;
  }
  .ftc-certificate-item.style-2 {
    padding: 30px 2px;
  }
  .ftc-certificate-item.style-2 .certificate-item-hover {
    display: none;
  }
  .ftc-certificate-item.style-2 .item-img img {
    max-width: 180px;
  }
}
@media (max-width: 430px) {
  .ftc-certificate-item.style-2 .item-img img {
    max-width: 150px;
  }
}
@media (max-width: 400px) {
  .certificate-image-box {
    padding: 12px;
  }
}
@media (max-width: 360px) {
  .ftc-certificate-item.style-2 .item-img img {
    max-width: 130px;
  }
}

#scrollUp {
  right: 83px;
}
.chat-toggle {
  z-index: 9999999999;
}

/* ── Marquee Band ──────────────────────────────────────────────────────────── */
.mqb-section {
  overflow: hidden;
  background-color: #0f172a;
}
.mqb-wrapper {
  overflow: hidden;
  width: 100%;
}
.mqb-track {
  display: flex;
  width: max-content;
  animation: mqb-scroll-left linear infinite;
}
.mqb-track.mqb-direction-right {
  animation-name: mqb-scroll-right;
}
.mqb-wrapper.mqb-pause-hover:hover .mqb-track {
  animation-play-state: paused;
}
.mqb-track-inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mqb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 8px;
  color: #f8fafc;
}
.mqb-item-icon {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  opacity: 0.75;
}
.mqb-item-icon svg,
.mqb-item-icon i {
  width: 14px;
  height: 14px;
}
.mqb-sep {
  font-size: 6px;
  opacity: 0.4;
  padding: 0 4px;
  color: #2563eb;
  flex-shrink: 0;
}
@keyframes mqb-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes mqb-scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes hs2-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes hs2-marquee-scroll-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.hs2-marquee-track.hs2-marquee-rtl {
  animation-name: hs2-marquee-scroll-reverse;
}

/* ── Strategy Call Banner ──────────────────────────────────────────────────── */
.scb-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 64rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.scb-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: oklch(100% 0 0) !important;
  padding: 56px;
  box-shadow: 0 24px 60px -24px oklch(32% 0.16 258/0.4);
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  border: 1px solid oklch(92% 0.02 240);
}
.scb-blob {
  pointer-events: none;
  position: absolute;
  right: -5rem;
  top: -5rem;
  height: 20rem;
  width: 20rem;
  border-radius: 9999px;
  opacity: 0.5;
  filter: blur(64px);
  background: linear-gradient(135deg, oklch(32% 0.16 258), oklch(58% 0.18 245));
}
.scb-left {
  flex: 1;
  max-width: 620px;
}
.scb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: oklch(97% 0.02 240);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: oklch(32% 0.16 258);
  margin-bottom: 20px;
}
.scb-heading {
  margin-top: 1rem;
  margin-bottom: 16px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: oklch(18% 0.04 255) !important;
  display: block;
}
@media (min-width: 640px) {
  .scb-heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.scb-heading-normal {
  color: oklch(18% 0.04 255) !important;
  display: inline;
}
.scb-heading-colored {
  background: linear-gradient(135deg, oklch(32% 0.16 258), oklch(58% 0.18 245));
  color: #0000 !important;
  -webkit-background-clip: text;
  background-clip: text;
}
.scb-description {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: oklch(48% 0.04 250) !important;
}
.scb-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.scb-sub-text {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: oklch(48% 0.04 250) !important;
}

/* ── Strategy Call Banner — Responsive ─────────────────────────────────────── */
@media (max-width: 991px) {
  .scb-wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .scb-card {
    flex-direction: column;
    align-items: flex-center;
    padding: 36px 32px;
    gap: 28px;
  }
  .scb-left {
    text-align: center;
  }
  .scb-right {
    align-items: flex-center;
    text-align: center;
  }
  .scb-heading {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .scb-blob {
    width: 10rem;
    height: 10rem;
    right: -2.5rem;
    top: -2.5rem;
    filter: blur(40px);
    opacity: 0.35;
  }

  .scb-description {
    font-size: 14px;
  }
  .scb-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    margin-bottom: 12px;
  }

  .scb-card {
    padding: 28px 20px;
  }
  .scb-heading {
    font-size: 26px;
    margin: 0.5rem 0 12px;
  }
  .scb-sub-text {
    margin-top: 0.5rem;
    white-space: normal;
  }
}
