@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto+Slab:wght@100..900&display=swap');


:root {
  --primary-bg: #046f66;
  --secondary-bg: #f0f9ff;
  --gradient-bg: linear-gradient(to bottom, #63b228 0%, #1e5799 0%, #63b228 0%, #409a15 100%);
  --lightgreen-bg: #f6fff1;
  --white-bg: #ffffff;
  --primary-text-color: #046f66;
  --light-green-bg: #b1f2ce;
  --color-black: #000;
  --font-size-title: 1.3rem;
  --font-weight-title: 600;
  --body-font-family: "Nunito", sans-serif;
  --heading-font-family: "Roboto Slab", serif;
  --gray-bg: #f7f7f7;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font-family);
  color:#6f6f6f;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font-family);
}

ul li { line-height:25px; margin-bottom: 10px; }

.gray-bg { background: var(--gray-bg); }

.mainheader {
  background-color: var(--secondary-bg);
}

.header-logo {
  position: relative;
  z-index: 1;
  top: 5px;
}

.header-logo img {
  margin-top: 10px;
}

.header-top ul {
  margin: 0;
  padding: 0;
}

.header-top ul li {
  display: inline-block;
  padding: 5px 15px;
}

.header-top ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  top: 3px;
}

.mainheader {
  background: var(--secondary-bg);
}

.header-top::before {
  content: '';
  background: var(--primary-bg);
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  right: 0;
}

section {
  padding: 30px 0px;
}

.op-banner-section {
  background-color: var(--secondary-bg);
}

/**
  Buttons CSS
*/
.tj-primary-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background-color: var(--primary-bg);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 5px 5px 25px;
  text-align: center;
  border-radius: 50px;
  line-height: 1;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.tj-primary-btn .btn-text {
  color: white;
  overflow: hidden;
}

.tj-primary-btn .btn-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-decoration: none;
  color: #fff;
}

.tj-primary-btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background-color: black;
  border-radius: 50%;
}

.tj-primary-btn .btn-icon i {
  color: white;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tj-primary-btn.transparent-btn {
  background-color: transparent;
  border: 1px solid var(--tj-color-border-1);
}

.tj-primary-btn.transparent-btn .btn-text {
  color: var(--tj-color-heading-primary);
}

.tj-primary-btn.transparent-btn:hover {
  border-color: var(--tj-color-theme-dark);
}

.tj-primary-btn:hover .btn-text span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.tj-primary-btn:hover .btn-icon i {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.tj-primary-btn-lg {
  font-size: 20px;
  padding: 7px 7px 7px 44px;
  gap: 14px;
}

.tj-primary-btn-lg .btn-icon {
  font-size: 27px;
  width: 59px;
  height: 59px;
}

.text-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  text-align: center;
  line-height: 1;
  z-index: 2;
}

.text-btn .btn-text {
  color: #fff;
  overflow: hidden;
}

.text-btn .btn-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.text-btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-color: var(--tj-color-theme-dark);
  border-radius: 50%;
}

.text-btn .btn-icon i {
  color: var(--tj-color-common-white);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.text-btn:hover .btn-text span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.text-btn:hover .btn-icon {
  background-color: var(--tj-color-theme-primary);
}

.text-btn:hover .btn-icon i {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.tji-icon-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--tj-color-theme-primary);
  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;
  font-size: 26px;
}

.tji-icon-btn i {
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-normal);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tji-icon-btn:hover {
  background-color: var(--tj-color-theme-primary);
}

.tji-icon-btn:hover i {
  color: var(--tj-color-common-white);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tji-icon-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tji-icon-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

.stellarnav > ul > li > a {
    padding: 20px 12px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1.1rem;
}

/*** Banner Section ***/

.banner-img {
  position: relative;
}

.banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.banner-img-area {
  position: relative;
}

.banner-img-area::before {
  content: "";
  background-color: #b1f2ce;
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 50%;
  height: 343px;
  z-index: 0;
  border-start-start-radius: 100%;
  border-end-start-radius: 8px;
}

.banner-img {
  max-width: 507px;
  width: 100%;
  position: relative;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.banner-content h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 300;
}

@media only screen and (min-width: 1201px) and (max-width: 1399px) {

  .tj-banner-section-2 .banner-content-2 {
    padding-top: 0px;
    padding-inline-start: 30px;
  }

  .banner-img-area {
    -webkit-margin-end: -20px;
    margin-inline-end: -20px;
    position: relative;
  }

  .banner-img {
    max-width: 400px;
  }

}

/*---------------------------------main-section-start---------------------------------*/

.rounded {
  border-radius: 10px !important;
}

.zoom-effect {
  transition: 0.5s all ease-in-out;
  position: relative;
}

.zoom-effect:hover,
.services-col:hover .zoom-effect {
  transform: scale(1.1);
}

.bannertabs-section {
  background-color: var(--secondary-bg);
}

.bt-col {
  background-color: var(--white-bg);
  margin: 0px 5px;
  width: 100%;
}

.bannertabs-section .bt-col:hover {
  background-color: var(--primary-text-color);
  color: #fff;
}

.bt-digit {
  font-weight: 800;
  color: #d5d6d6;
  font-size: 2rem;
}

.bannertabs-section .bt-col:hover .bt-digit { color: #fff;}

.bt-content {
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--heading-font-family);
}

.bannertabs-section .bt-col:hover .bt-content { color: #fff; }

.btcontnet-main a {
  color: var(--primary-bg);
  text-decoration: none;
}

.bannertabs-section .bt-col:hover .btcontnet-main a { color: #fff;}


.services-section {
  text-align: left;
  background-color: var(--white-bg);
}

.services-section .all-services h2 {
  font-size: 1.5rem;
}

.services-section h2 span {
  color: var(--primary-text-color);
  font-weight: 500;
}

.services-col-content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  text-align: left;
  max-width: 80%;
  padding: 20px;
}

.services-col-content span {
  background: #fff;
  border-radius: 5px;
  color: #000;
  padding: 2px 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.services-col-content a {
  color: #fff;
  text-decoration: none;
}

.services-col-content a img {
  padding-left: 5px;
}

.technology-section {
  background-color: var(--light-green-bg);

}

.technology-col {
  background-color: var(--white-bg);
  min-height: 428px;
}

.technology-col a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
}

.technology-title h3 {
  color: #000;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 600;
}

.technology-icon img { height: 65px;}


.low-code-row {
  background-color: var(--primary-bg);
  color: #fff;
}

.lowcode-col {
  background-color: var(--white-bg);
  color: #6f6f6f; 
  min-height: 315px;
}


.blog-section {
  position: relative;
  background-color: var(--light-green-bg);
}

.blog-content {
  background-color: #fff;
  padding: 15px;
}

.blog-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
}

.blog-column {
  background-color: var(--white-bg);
  min-height: 523px;
}

.testimonials .testimonial {
  line-height: 30px;
  background-color: #fff;
  min-height: 485px;
}

.profile-content {
  color: #000;
}


.subscribe-section {
  background-color: #006D67;
  /* teal background like image */
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.subscribe-section p {
  color: #dcebe9;
  margin-bottom: 30px;
  text-transform: lowercase;
}

.subscribe-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
}

.subscribe-form input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.subscribe-form .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #006D67;
  color: #fff;
  font-weight: 600;
}

.subscribe-form .btn:hover {
  background-color: #f8f9fa;
  color: #006D67;
}

.subscribe-form .form-control {
  min-height: 50px;
  border: none;
}

.services-section {
  text-align: center;
  margin-top: -8px !important;
}

.services-details {
  background-color: #fff;
  border-radius: 10px;
  padding: 45px 0 10px;
  position: relative;
  z-index: 9;
  margin-bottom: 95px;
  margin-top: 10px;
  color: #1c2c45;
  font-size: 20px;
}

.services-icon {
  background: #fff;
  width: 40%;
  margin: 0 auto;
  border-radius: 100px;
  padding: 31px;
  height: auto;
  z-index: 99;
  position: absolute;
  left: 0;
  right: 0;
  top: -66px
}

.online-skills {
  text-align: center;
}

.online-skills h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: #1c2c45;
  font-weight: 800;
  margin: 0;
}

.online-skills .subtitle {
  font-size: 17px;
  color: #6d6d6d;
}

.online-skills .online-class {
  background: #fff;
}

.about-section {
  font-size: 0.9rem;
  background-color: #fff;
}

.service-title h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.online-class a {
  color: #1c2c45;
  text-decoration: none;
  font-weight: 600;
}

.subtitle {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 400;
}

.block-title {
  font-weight: 700;
  font-size: 2rem;
}

.common-btn {
  background-color: #fff;
  border-radius: 50px;
  border: #e20613 solid 2px;
  padding: 6px 30px;
  font-size: 1.1rem;
  color: #e20613;
  transition: all 0.5s;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

.common-btn:after {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 600;
  position: absolute;
  left: 79%;
  top: 32%;
  right: 5%;
  bottom: 0;
  opacity: 0;
}

.common-btn:hover {
  background: #e20613;
  transition: all 0.5s;
  padding: 6px 3.5rem 6px 3.5rem;
  color: #fff;
}

.common-btn:hover::after {
  opacity: 1;
  transition: all 0.5s;
}

.about-section h4 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 31px;
}

.main {
  background-color: var(--secondary-bg);
}

.consultant-section {
  background-image: url(../images/consultant-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  color: #fff;
  overflow: inherit !important;
  background-attachment: fixed;
}

.consultant-header h3 {
  font-size: 2.5rem;
}

.consultant-header p {
  font-size: 1.8rem;
}

.consultant-header p span {
  color: #ffc600;
  padding: 0px 10px;
}

.consultant-para {
  font-size: 1.3rem;
  padding: 80px 50px 80px 50px;
}

.consultant-details {
  position: relative;
}

.consultant-photo {
  position: relative;
  bottom: -60px;
  z-index: 1;
}

.photo-brief {
  position: absolute;
  bottom: 0px;
  left: 25px;
  right: 25px;
}

.photo-brief .con-brief {
  color: #fff;
  text-transform: uppercase;
  font-size: 2.2rem;
  text-align: left;
  line-height: 40px;
  font-weight: 800;
}

.photo-brief .con-brief span {
  color: #e20613;
}

.consultant-para h2 {
  margin-bottom: 60px;
  font-size: 3rem;
}

.consultant-para .section-button {
  background: none;
  color: #fff;
}

.consultant-name {
  color: #b1b1b1;
  font-size: 1.5rem;
}

.consultant-photo .zoom-effect,
.consultant-details .zoom-effect {
  transition: 0.5s all ease-in-out;
  position: relative;
}

.consultant-photo .zoom-effect:hover,
.consultant-details:hover .zoom-effect {
  transform: scale(1.1);
}

.consultant-section .common-btn {
  border: #fff solid 1px;
  background: none;
  color: #fff;
}

.consultant-section .common-btn:after {
  left: 85%;
  top: 32%;
}

.testimonial-girl {
  background-color: #e20613;
  color: #fff;
  min-height: 340px;
}

.testimonial-boy {
  background-color: #fff;
  color: #000;
}

.testimonial-profile {
  display: flex;
  align-items: center;
}

.profile-content {
  margin-left: 15px;
  font-size: 1rem;
  color: #000;
}

.testimonial-boy .profile-content {
  margin-left: 15px;
  font-size: 1rem;
  color: #000;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #046f66;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 0rem 6rem rgba(0, 0, 0, .175) !important;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff4a17;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ef4036;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff5e31;
}

#footer .copyright {
  text-align: center;
  background-color: #e7e3e3;
  padding: 10px;
  color: #000;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
}

.footer-links address {
  color: #fff;
  position: relative;
}

.footer-links address .bx {
  position: absolute;
  left: 0;
  top: 5px;
}

.footerbot-link {
  margin: 0;
  padding: 0;
  padding-top: 25px;
}

.footerbot-link li {
  display: inline-block;
  list-style: none;
}

.footerbot-link li a {
  color: #fff;
  border-right: #000 solid 1px;
  padding: 0px 15px;
}

.footerbot-link li:last-child a {
  border: none;
}


@media (max-width:767px) {

  .header {
    text-align: center;
  }

  .header-logo img {
    padding-bottom: 10px;
  }


  .bt-col {
    width: 46%;
    display: inline-block;
    margin-bottom: 15px;
    min-height: 200px;
  }

  .bt-col:last-child {
    width: 96%;
    min-height: auto;
  }

  .banner-img-area::before {
    display: none;
  }

  .op-banner-section {
    padding-top: 20px;
  }

  .header-logo {
    text-align: left;
  }

  .mainmenu {
    text-align: right;
    padding-top: 8px;
  }

  .banner-content {
    padding-top: 25px;
  }

  .service-header h2 {
    margin-bottom: 25px !important;
  }

  .technology-col {
    min-height: auto;
    margin-bottom: 25px;
  }

  .low-code-content h2 {
    margin-top: 20px;
  }

  .lowcode-col {
    min-height: auto;
    margin-bottom: 25px;
  }

  .blog-column {
    min-height: auto;
    margin-bottom: 25px;
    padding-top: 25px !important;
  }

}


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

  .banner-img-area::before {
    display: none;
  }

  .banner-content h2 {
    font-size: 2rem;
    line-height: 41px;
  }

  .subtitle {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .bt-col {
    margin: 0px 5px;
    width: 48%;
    display: inline-block;
    margin-bottom: 15px;
  }

  .technology-col {
    margin-bottom: 30px;
  }

  .low-code-content h2 {
    margin-top: 25px;
  }

  .blog-column {
    margin-bottom: 25px;
  }

}

/*---------------------------------main-section-stop---------------------------------*/


/*--------------------------------------------------------------
# Internal Pages
--------------------------------------------------------------*/

.bio-companies-section h2, .kpls-section h2 { color:#242424; }

.page-punchline {
  background-color: #fff;
}

.page-punchline h2 {
  line-height: 45px;
  font-size: 1.8rem;
  color: #242424;
}

.page-punchline .punchline-para {
  font-size: 1.2rem;
}

.page-punchline .punchline-para span {
  color: var(--primary-text-color);
  font-weight: 600;
}

.full-width-section {
  background-color: var(--primary-bg);
  color: #fff;
  font-size: 1.3rem;
  line-height: 34px;
}

.custom-card {
  border-radius: 15px;
  background-color: var(--white-bg);
  padding: 25px;
  height: 100%;
  color: #6f6f6f;;
}

.custom-card ul li { margin-bottom:5px; }

.para-right .img-holder {
  border-radius: 25px;
}

.pendmanagement-section .para-right .img-holder {
  padding-bottom: 92%;
}


.img-holder {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 100%;
  margin: 0 auto 0;
  border-radius: 20px;
}

.img-holder figure {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  text-align: center;
  padding: 0;
}

.img-holder figure img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  z-index: 1;
  transition: all 0.6s ease;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.img-holder.img-cover figure img {
  -o-object-fit: cover;
  object-fit: cover;
}

.img-holder.img-cover.img-top figure img {
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}

.img-holder.img-cover.img-bottom figure img {
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
}

.img-effect:hover .img-holder figure img,
.img-effect:hover .full-height-image>img {
  /*transform: scale(1.1); */
  transform: scale(1.1) rotate(2deg);
}



/*--------------------------------------------------------------
# Business Support
--------------------------------------------------------------*/

.page-title {
  font-size: 2.2rem;
  line-height: 45px;
  font-weight: 300;
  color: #3e3e3e;
}

.card-title {
  color: var(--color-black);
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-title);
  line-height: 32px;
  margin-bottom: 15px;
}

.fullwidth-row .custom-card p {
  font-size: 1.1rem;
  line-height: 27px;
}

.why-workforce .img-holder {
  padding-bottom: 75%;
}



/*--------------------------------------------------------------
# Workforce Managemnet
--------------------------------------------------------------*/

.key-features-section {
  background-color: #f6f6f6;
}

.green-bg {
  background-color: var(--primary-bg);
  color: #fff;
}

.digit {
  background-color: var(--primary-bg);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
}

.whypartner-us {
  background-color: #fff;
}


@media(max-width:767px) {
  .custom-card {
    margin-top: 25px;
    height: auto;
  }
}


/*-----------------------------24X7-app-support------------------------------------*/

.business-support .card-title {
  color: #fff;
}

.business-support p {
  font-size: 1rem;
  line-height: 25px;
}

.business-support ul {
  font-size: 1rem;
}

.our-approach {
  background-color: #fff;
}

.our-approach .punchline-para {
  font-size: 1.2rem;
}

.strategy-section {
  background-image: url(../images/strategy-section-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.kpls-section {
  background-color: #fff;
}

.industries-section {
  background-image: url(../images/industries-section-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.industries-section .custom-card {
  padding: 25px 15px 20px;
}

.industries-section .custom-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.industries-section .custom-card p {
  font-size: 1rem;
  line-height: 25px;
}

.free-assessment-section h2 span {
  color: #046f66;
}

.key-challenges-section .custom-card {
  padding: 25px;
}

.key-challenges-section h2 {
  font-size: 1.5rem;
}

.key-challenges-section p {
  font-size: 1.2rem;
}

.gradient-bg::before {
  background: var(--gradient-bg) !important;
}

.gradients-bg {
  background: var(--gradient-bg) !important;
}

.bannerbg::before {
  background-color: #fff !important;
}

.blog-section.blogbg,
.technology-section.blogbg {
  background-color: #f5f5f5 !important
}

.services-section h2 span.green-color {
  color: #49a01a;
  font-weight: 500;
}

.second-footer a {
  color: #5e5e5e !important;
}

.second-footer .subscribe-form {
  border: #55a921 solid 2px;
}

.second-footer .footer-top h4 {
  color: #000 !important;
}

.second-footer .footer-top .footer-links ul i {
  color: #000 !important;
}

.gradient-theme .bt-col:hover {
  background: var(--gradient-bg) !important;
  color: #fff;
}

.gradient-theme .bt-col:hover .bt-digit,
.gradient-theme .bt-col:hover .bt-content,
.gradient-theme .bt-col:hover .fa-long-arrow-right {
  color: #fff;
}

.footer-gradient-bg {
  background: var(--gradient-bg);
}

.lightGreenBg {
  background: var(--lightgreen-bg) !important;
}

.stellarnav.light li a {
  color: #1c2c45;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
}

.stellarnav.light li.whatsapp a {
  /* background: var(--gradient-bg) !important; */
  color: #fff;
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 1rem;
  background: #000;
}

/****** Image Height ******/

.per-10.img-holder { padding-bottom: 10%; }
.per-20.img-holder { padding-bottom: 20%; }
.per-30.img-holder { padding-bottom: 30%; }
.per-40.img-holder { padding-bottom: 40%; }
.per-50.img-holder { padding-bottom: 50%; }
.per-55.img-holder { padding-bottom: 55%; }
.per-60.img-holder { padding-bottom: 60%; }
.per-65.img-holder { padding-bottom: 65%; }
.per-70.img-holder { padding-bottom: 70%; }
.per-75.img-holder { padding-bottom: 75%; }
.per-80.img-holder { padding-bottom: 80%; }
.per-85.img-holder { padding-bottom: 85%; }
.per-90.img-holder { padding-bottom: 90%; }

.bio-companies-section span, .whypartner-us span { color: var(--primary-text-color); font-weight: 600;}
.overlay-content {     
        position: absolute;
    z-index: 1;
    color: #fff;
    bottom: 15px;
    left: 30px;
    text-align: left;
    width: 50%;
  }
.overlay-content a { color: #0ca497; font-weight: 800; text-transform: uppercase; text-decoration: none;}

@media(max-width:767px){

.overlay-content { width: 80%;}
.per-sm-50 { padding-bottom: 95% !important; }
.banner-content .page-title { font-size: 1.5rem; line-height: 32px; }

.card-title { margin-top: 15px;}

}

.btn-primary { border: none; background-color: #000; border-radius: 50px; text-transform: uppercase; padding: 0px; font-weight: 600; font-size:15px; }
.btn-primary:hover { background-color: #006D67;}
.text-primary { color: #006D67 !important;}
.btn-secondary { font-size:12px; padding:5px; }
.card {
  border-radius: 25px;
}
.card .form-control {
 border-radius: 25px;
}

/*News*/
.newsSection1 .inner-padding-200 {
  padding-top: 110px;
}
@media screen and (max-width: 1599.98px) {
  .newsSection1 .inner-padding-200 {
    padding-top: 90px;
  }
}
@media screen and (max-width: 1199.98px) {
  .newsSection1 .inner-padding-200 {
    padding-top: 60px;
  }
}
@media screen and (max-width: 575.98px) {
  .newsSection1 .inner-padding-200 {
    padding-top: 40px;
  }
}

.newsSection2 {
  border-top-right-radius: 80px;
}
@media screen and (max-width: 1599.98px) {
  .newsSection2 {
    border-top-right-radius: 40px;
  }
}
.newsSection2 .newsListing-grid {
  padding-bottom: 0px;
}
@media screen and (max-width: 1199.98px) {
  .newsSection2 .newsListing-grid {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 991.98px) {
  .news-mainSlider {
    margin-bottom: 40px !important;
  }
  .news-mainSlider .slick-prev,
  .news-mainSlider .slick-next {
    display: none !important;
  }
}

.newsMain-box .left .img-holder {
  border-radius: 20px;
  padding-bottom: 63.21%;
}
.newsMain-box .right .captionBox {
  color: #1A1A1A;
  padding-left: 50px;
  font-size: 16px;
}
@media screen and (max-width: 1599.98px) {
  .newsMain-box .right .captionBox {
    font-size: 13px;
  }
}
@media screen and (max-width: 575.98px) {
  .newsMain-box .right .captionBox {
    font-size: 13px;
  }
}
@media screen and (max-width: 1599.98px) {
  .newsMain-box .right .captionBox {
    padding-left: 20px;
  }
}
@media screen and (max-width: 991.98px) {
  .newsMain-box .right .captionBox {
    padding-left: 0px;
  }
}
.newsMain-box .right .captionBox h4 {
  font-weight: 600;
  color: #1D252D;
}

ul.newsUl-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 0px;
  margin: -10px -10px 15px;
  list-style-type: none;
}
ul.newsUl-grid li {
  color: #808080;
  padding: 5px 10px;
  font-size: 15px;
}
@media screen and (max-width: 1599.98px) {
  ul.newsUl-grid li {
    font-size: 12px;
	display:flex;
	width: 100%;
  }
}
@media screen and (max-width: 575.98px) {
  ul.newsUl-grid li {
    font-size: 12px;
  }
}
ul.newsUl-grid li img {
    margin-top: 0;
    margin-right: 5px;
    width: 18px;
    height: 18px;
}

.newsItem-box {
  color: #1A1A1A;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border-radius: 25px;
  transition: all 0.5s;
  margin-bottom:25px;
  min-height: 460px;
}
.newsItem-box a {
  color: #1A1A1A;
  display: block;
  position: relative;
}
.newsItem-box .img-holder {
  padding-bottom: 67.11%;
}
.newsItem-box .captionBox {
  padding: 40px 40px;
}
@media screen and (max-width: 1599.98px) {
  .newsItem-box .captionBox {
    padding: 25px 20px;
  }
}
.newsItem-box .captionBox h5 {
  padding: 0px 0px;
  font-weight: 600;
  color: #1B162D;
  margin-bottom: 24px;
}
.newsItem-box .captionBox .shortInfo {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.newsItem-box:hover {
  z-index: 9;
  color: #ffffff;
  transform: translateY(-60px);
  background: #005151;
}
@media screen and (max-width: 1599.98px) {
  .newsItem-box:hover {
    transform: translateY(-40px);
  }
}
@media screen and (max-width: 991.98px) {
  .newsItem-box:hover {
    transform: translateY(0px);
  }
}
.newsItem-box:hover h5 {
  color: #ffffff;
}
.newsItem-box:hover a {
  color: #ffffff;
}
.newsItem-box:hover ul.newsUl-grid li {
  color: #ffffff;
}
.newsItem-box:hover ul.newsUl-grid li img {
  filter: invert(97%) sepia(15%) saturate(465%) hue-rotate(192deg) brightness(117%) contrast(1000%);
}

.cta-section {
  position: relative;
}
.cta-section::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  content: "";
  height: 135px;
  background: #F2F2F2;
}
@media screen and (max-width: 1599.98px) {
  .cta-section::before {
    height: 89px;
  }
}
.cta-section .ctcInner-section {
  width: 100%;
  z-index: 7;
  position: relative;
  padding: 74px 100px;
  border-radius: 20px;
  background: #E4002B;
}
@media screen and (max-width: 1599.98px) {
  .cta-section .ctcInner-section {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .cta-section .ctcInner-section {
    padding: 30px 20px;
    border-radius: 10px;
  }
}

.newsDetails-banner .inner-banner-image {
  min-height: 220px;
  padding-bottom: 11.45%;
}

.newsDetailsSection1 {
  position: relative;
}
.newsDetailsSection1::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  content: "";
  height: 34.11%;
  max-height: 660px;
  background: #F2F2F2;
  border-radius: 0px 0px 80px 80px;
}
@media screen and (max-width: 1599.98px) {
  .newsDetailsSection1::before {
    height: 20%;
    border-radius: 0px 0px 40px 40px;
  }
}
@media screen and (max-width: 575.98px) {
  .newsDetailsSection1::before {
    height: 15%;
    max-height: 350px;
    border-radius: 0px 0px 20px 20px;
  }
}
.newsDetailsSection1 .detailsTitle-wrapper {
  padding-top: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1599.98px) {
  .newsDetailsSection1 .detailsTitle-wrapper {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.newsDetailsSection1 .detailsTitle-wrapper .pageTitle h1 {
  font-weight: 600;
}
.newsDetailsSection1 .detailsTitle-wrapper ul.newsUl-grid {
  justify-content: center;
}
.newsDetailsSection1 .innerContent-wrapper {
  position: relative;
  margin: 0px auto;
  max-width: 1150px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1599.98px) {
  .newsDetailsSection1 .innerContent-wrapper {
    max-width: 950px;
    padding-bottom: 60px;
  }
}
.newsDetailsSection1 .innerContent-wrapper .newsContent-box {
  color: #1A1A1A;
  margin-bottom: 50px;
}
@media screen and (max-width: 1599.98px) {
  .newsDetailsSection1 .innerContent-wrapper .newsContent-box {
    margin-bottom: 30px;
  }
}
.newsDetailsSection1 .innerContent-wrapper .newsContent-box:last-child {
  margin-bottom: 0px;
}
.newsDetailsSection1 .innerContent-wrapper .newsContent-box h5 {
  font-weight: 600;
}
.newsDetailsSection1 .innerContent-wrapper .newsContent-box p a {
  color: #1A1A1A;
}
.newsDetailsSection1 .innerContent-wrapper .newsContent-box p a:hover {
  color: #E4002B;
}
.newsDetailsSection1 .newsPagination-grid {
  padding-top: 45px;
  border-top: 1px solid #DCDCDC;
}
.newsDetailsSection1 .newsPagination-grid .container {
  padding: 0px 0px;
  max-width: 1150px;
}
@media screen and (max-width: 1599.98px) {
  .newsDetailsSection1 .newsPagination-grid .container {
    max-width: 950px;
  }
}
.newsDetailsSection1 .newsPagination-grid .button-white {
  color: #5B5B5B;
  border: 1px solid #5B5B5B;
}
.newsDetailsSection1 .newsPagination-grid .button-white::after {
  background-image: url("../../images/btn-arrow3.png");
}
.newsDetailsSection1 .newsPagination-grid .button-white:hover {
  color: #ffffff;
  border-color: #005151 !important;
}
.newsDetailsSection1 .newsPagination-grid .button-white:hover::after {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(250deg) brightness(102%) contrast(1000%);
}

.newsDetailsSection2 {
  border-top-right-radius: 80px;
}
@media screen and (max-width: 1599.98px) {
  .newsDetailsSection2 {
    border-top-right-radius: 40px;
  }
}
.newsDetailsSection2 .newsInnter-title {
  margin-bottom: 60px;
}
@media screen and (max-width: 1599.98px) {
  .newsDetailsSection2 .newsInnter-title {
    margin-bottom: 40px;
  }
}

.news-arrows .slick-arrow,
.caseManager-slider .slick-arrow {
  background: #F2F2F2;
}
.news-arrows .slick-arrow:hover,
.caseManager-slider .slick-arrow:hover {
  background: #E4002B;
}

.news-slider {
  margin: 0px -15px;
}
@media screen and (max-width: 1199.98px) {
  .news-slider {
    margin: 0px -10px;
  }
}
.news-slider .news-slide {
  padding: 0px 15px;
}
@media screen and (max-width: 1199.98px) {
  .news-slider .news-slide {
    padding: 0px 10px;
  }
}
.news-slider .news-slide .newsItem-box:hover {
  z-index: 9;
  color: #ffffff;
  transform: translateY(0px);
}

p:empty { display:none !important; }

.stellarnav ul ul { width:260px; }
.stellarnav ul ul ul {
    top: 0;
    left: 263px;
}
.prev-post { display:none; }
.newsItem-box a { text-decoration: none; }
.single-post .singleContent h1, .single-post .singleContent h2 { font-size:22px; }
.postNavigation { display:none; }

h4.fw-bold { color:#3e3e3e !important; }
h1.fw-bold {    font-size: 2rem;
    line-height: 50px;
    color: #3e3e3e; }

h3.fw-bold { font-size: 1.5rem; }

.pageTitle h2 { color:#3e3e3e; }


/* Completely disable Stellarnav dropdown animation */
.stellarnav ul ul {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: hidden;
    display: none;
}

/* Show instantly on hover */
.stellarnav li:hover > ul {
    visibility: visible !important;
    display: block !important;
}

.wp-singular body { background-color: #f8f9fa; }
.wp-singular .section-title { border-left: 4px solid #006d67 !important; padding-left: 12px !important; margin-bottom: 1rem !important; }
.wp-singular .meta-box { background: #f1f3f5 !important; border-radius: .5rem !important; }
.wp-singular .pageTitle h2 { padding-top: 35px !important; }
.btn-primary { background-color:#046f66 !important; } 
.filtername { font-size: 1.2rem; font-weight: 800; }

.newsUl-grid .cate-list a:nth-child(3) { padding-left:5px; }