.bannerSubHeading {
  font-size: 30px;
  font-weight: bold;
  text-transform: capitalize;
  color: #00ad66;
  margin: 0px 0px 0px 0px;
}

@media only screen and (min-width: 1000px) {
  .bannerHeading {
    font-size: 55px !important;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.1em;
  }
  .cardStyle {
    width: 30rem !important;
    min-height: 500px;
  }

}

@media only screen and (min-width: 400px) {
  .bannerHeading {
    font-size: 35px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1em;
  }
  .cardStyle {
    width: 20rem;
    min-height: 500px;
  }

}
.partnerColor {
  color: #005ba6;
}

.paragraphStyle {
  color: #000000;
  font-size: 22px;
  font-weight: 450;
  text-align: justify;
  font-family: 'Montserrat';
}

.cardHover {
  transition: 0.3s;
  height: 600px;
}
.cardHover:hover {
  box-shadow: 0 16px 32px 0 rgba(42, 204, 249, 0.642), 0 24px 80px 0 rgba(108, 235, 252, 0.516);
  transform: translate(0, -20px);
}

.letStart {
  background-color: transparent;
  background-image: linear-gradient(180deg, #29a0dd 0%, #005ba6 100%);
}

.btnHoverEffect:hover {
  background-image: linear-gradient(180deg, #29a0dd 0%, #005ba6 100%);
}
.btnHover:hover {
  background-image: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  box-shadow: 0 4px 8px 0 rgb(255, 255, 255), 0 6px 20px 0 rgb(255, 255, 255) !important;
  color: black !important;
  border: none;
}

.scrollup {
  background: #ffffff;
  height: 45px;
  width: 45px;
  color: #fff;
  font-size: 18px;
  line-height: 0px;
  text-align: center;
  text-decoration: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes continueUpDown {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}


@keyframes fadeLeftIn {
  0% {
    transform: translateX(-20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes fadeRightIn {
  0% {
    transform: translateX(20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes fadeZoomIn {
  0% {
    transform: scale(0, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

.fadeInUp-animation {
  animation: 1.5s fadeInUp;
}
.fadeInDown-animation {
  animation: 1.5s fadeInDown;
}
.fadeLeftIn-animation {
  animation: 1.5s fadeLeftIn;
}
.fadeRightIn-animation {
  animation: 1.5s fadeRightIn;
}
.fadeZoomIn-animation {
  animation: 1.5s fadeZoomIn;
}
.continueUpDown-animation {
  animation: 2s continueUpDown infinite;
}

.owl-carousel .owl-item .img-circle {
  transform-style: preserve-3d;
  max-width: 90px;
  margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #005ba6;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #005ba6;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

.wrapper {
  padding: 20px;
  max-width: 400px;
}
.maxWidthOfPargraph {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.commonBgImage {
  background-image: url("../webImages/talent.jpg");
  background-color: rgb(58, 57, 57);
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  filter: blur(8px);
  -webkit-filter: blur(8px);
  height: 300px; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.commonBgText {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: #ffffff;
  font-weight: bolder;
  border: 3px solid #000000;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px;
  text-align: center;
  text-shadow: 2px 2px #29a0dd;
}

/* The Image container */
.img-hover-zoom {
  height: 350px; /* Modify this according to your need */
  overflow: hidden; /* Removing this will break the effects */
}

/* Colorize-zoom Container */
.img-hover-zoom--colorize img {
  transition: transform 0.5s, filter 0.5s ease-in-out;
  filter: grayscale(100%);
}

/* The Transformation */
.img-hover-zoom--colorize:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.divider:after,
.divider:before {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}
.h-custom {
  height: calc(100% - 73px);
}
@media (max-width: 450px) {
  .h-custom {
      height: 100%;
  }
}

.custom-loader {
  width: 100px;
  height: 100px;
  display: grid;
  border: 8px solid #0000;
  border-radius: 50%;
  border-color: #e4e4ed #0000;
  animation: s6 2s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 4px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: #766df4 #0000;
  animation: inherit;
  animation-duration: 1s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 16px;
}

@keyframes s6 {
  100% {
      transform: rotate(1turn);
  }
}