@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@400;500;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@font-face {
  font-family: 'gilroy-bolduploaded_file';
  src: url('../fonts/gilroy-bold.woff2') format('woff2'),
       url('../fonts/gilroy-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'gilroy-mediumuploaded_file';
  src: url('../fonts/gilroy-medium.woff2') format('woff2'),
       url('../fonts/gilroy-medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'gilroy-regularuploaded_file';
  src: url('../fonts/gilroy-regular.woff2') format('woff2'),
       url('../fonts/gilroy-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
  font-size: 1rem;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #ed1d7e;
  text-decoration: none;
}
h2{
  font-size: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  
  font-family: "gilroy-bolduploaded_file";
}
.text-dark{
  color: #000 !important;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3498db;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #57aae1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: transparent;
  position: absolute;
  width: 100%;
  padding-top: 10px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #384046;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #384046;
  text-decoration: none;
}

#header .logo img {
  max-height: 100px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin: 0 0 0 30px;
}

.header-social-links a {
  color: #9ba6af;
  padding-left: 8px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #3498db;
}

@media (max-width: 768px) {
  .header-social-links {
    margin: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "gilroy-regularuploaded_file";
  font-size: 16px;
  font-weight: 500;
  color: #4f5a62;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #0033ff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #21262a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #384046;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #384046;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3498db;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#custom-content {
  width: 100%;
  height: 450px;
  background-size: cover !important;
  position: relative;
  padding: 0;
}

#custom-content{
  background: rgb(31, 132, 118) url("../image/Top_Banner_background_only.webp") no-repeat center right;
  overflow: hidden;
}

.spc-bnr{
  padding-top: 50px;
}
#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 50px 0 10px 0;
    font-size: 48px;
    line-height: 56px;
    color: #000000;
}

#hero h1 span {
  border-bottom: 4px solid #3498db;
}

#hero h2 {
  color: #000;
    margin-bottom: 30px;
    font-size: 18px;
}

#hero .btn-get-started {
  font-family: "gilroy-regularuploaded_file";
  font-weight: 400;
  font-size: 13px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  transition: ease-in-out 0.3s;
  color: #fff;
  background: #0033ff;
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: #4ea5e0;
}
.ft-md{
  font-size: 18px;
}
.Ldrship-h-btn{
  background-color: #ed1d7e;
  color: #fff;
  font-family: "gilroy-regularuploaded_file";
    font-weight: 500;
    font-size: 13px;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    transition: ease-in-out 0.3s;
    text-transform: uppercase;
}
.Ldrship-h-btn:hover{
  color: #fff;
}

/* .responsive-text {
   white-space: nowrap;
  } */


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

  #hero{
    background: url("../img/Home-Page-Banner-mobile.png") center center;
  }
.mb-pb{
  padding-bottom: 20px;
}
.mb-p{
  padding: 50px;
}
/* .responsive-text {
  white-space: normal;
} */

  #Leadership-skill{
    background: url("../img/leadership-page-cover-mobile.png") center center;
  }
  #contct-us{
    background: url("../img/Custom-content-cover-mobil.png") center center;
  }

#hero, #Leadership-skill, #custom-content, #contct-us, #insight {
    height: 80vh;
    background-repeat: no-repeat;
    margin-top: 0;
  }
  #header .logo img {
    max-height: 70px;
}
  
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
/* .headercontent{
  height: 48vh;
} */
.headercontent h1{
  font-weight: 700;
    color: #4a2278;
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 20px;
    display: block;
    font-family: 'Poppins', sans-serif;
}
.headercontent h4{
  background: linear-gradient(65.02deg, #C41C74 14.69%, #ED1D7E 41.06%, #F15A3F 84.66%);
  display: inline;
  padding: 10px 10px;
  color: #fff !important;
  font-weight: 300 !important;
  font-size: 20px;
}
.headercontent h1 span{
  color: #65d74e;
}
.wrap-banner-bg{
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-bg-black{
  background-color: #000;
    color: #fff;
    padding: 10px 20px 10px;
    text-align: right;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-bg-white{
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      color: #000;
      padding: 10px;
      height: 100px;
      width: 100%;
}
.pr-0{
  padding-right: 0 !important;
}
.pl-0{
  padding-left: 0 !important;
}
.headercontent h3{
  font-size: 23px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #102d3c;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.contentWrap h2{
  font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #1c1c1c;
}

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


#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "gilroy-regularuploaded_file";
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  display: flex;
    justify-content: center;
}

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

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

#footer .footer-top .footer-links ul li {
  padding: 10px 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: #c1c1c1;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ed1d7e;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #3498db;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

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

#footer .social-links a:hover {
  background: #ed1d7e;
  color: #fff;
  text-decoration: none;
}
.ftr-cgna-logo{
  height: 80px;
}
.ftr-cgna-logo p{
  border-left: 2px solid #4c4b4b;
  padding-left: 15px;
  margin-left: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.ftr-niit-logo{
  height: 80px;
}
.ftr-alg{
  width: 60%;
  /* height: 33%; */
  border-left: 2px solid #4c4b4b;

}
.copyright{
  color: #fff;
}
.ftr-use-link-alg{
  padding: 10%;
}

.brd-btm{
  border-top: 3px solid #b3b3b3;
    width: 9%;
    padding-bottom: 15px;
}
.dsg-md{
  padding: 44px;
  text-align: center;
}
.dsg-icn{
  height: 70px;
    width: 70px;
}
.gry-bg{
  background-color: #000000;
}
.profile-bg-gridnt{
    background-repeat: no-repeat;
    margin-top: 0;
    /* background: rgb(31, 132, 118) url(../img/Profile_background_new.webp) no-repeat bottom center; */
    background-size: cover;
    background-color: #000;
}
.wrp-quto-icon{
  display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.quto-icon{
  height: 30px;
}
.bg-white{
  background-color: #ffffff;
  padding: 55px;
}
.custom-A-img{
  border: 1px solid #b9b6b6;
    padding: 15px;
    height: 65%;
    width: 65%;
}
.testimonial-item-cc{
  padding: 0 0 35px 0;
  text-align: center;
}
.testimonial-img-cc{
  width: 300px;
  height: 100%;
}

.text-left{
  text-align: left!important;
}
.pd-10{
  padding: 0 100px;
}
.pr-5{
  padding-right: 70px;
}
.redy-nxt-lep{
  background-repeat: no-repeat;
    margin-top: 0;
    background: url(../image/bottom-image.webp);
    background-size: cover;
    /* padding: 50px 0 80px 0; */
    height: 48vh;
}
.shared-dns-bg{
  background-repeat: no-repeat;
    margin-top: 0;
    background: url(../image/Shared_DNA_background.webp)no-repeat center center;
    background-size: cover;
}
.shared-dns-bg h2, h3 {
  color: #4a2278;
}
.shared-dns-bg h3{
  font-family: "Caveat", cursive;
    font-size: 50px;
    color: #743997;
    padding-bottom: 30px;
}
.redy-nxt-lep h2{
  font-family: "Caveat", cursive;
    font-size: 50px;
    color: #fff;
}

.shrd-dna-bx-frst{
  background: linear-gradient(to right, #c89ccd, #ffffff);
    height: 300px;
    border-radius: 70px 0 0 70px;
    text-align: center;
    padding: 45px 90px 45px 45px;
    margin-right: -80px;
}
.shrd-dna-bx-frst h2{
  font-size: 26px;
}
.shrd-dna-bx-scnd{
  background: linear-gradient(to right, #743997, #f6626e, #e78f4e);
    height: 300px;
    border-radius: 70px;
    text-align: center;
    padding: 45px;
    color: #fff;
    margin-top: 0px;
    position: relative;
    z-index: 10;
}

.shrd-dna-bx-third{
  background: linear-gradient(to right, #ffffff, #fd9940);
    height: 300px;
    border-radius: 0 70px 70px 0;
    text-align: center;
    padding: 45px 45px 45px 90px;
    margin-left: -80px;
}
.shrd-dna-bx-third h2{
  font-size: 26px;
}
.shrd-dna-bx-scnd h2{
  color: #fff;
  font-size: 26px;
}

.NS-together{
  background-color: #743997;
  background-repeat: no-repeat;
    margin-top: -30px;
    background: url(../image/Hands_with_bakground.webp) right;
    background-size: cover;
}
.NS_box-bdr{
    height: 160px;
    margin: 15px 0;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border: 5px solid #c89ccd;
    border-radius: 30px;
}
.cmb-str-NS{
  background-color: #743997;
  background-repeat: no-repeat;
    margin-top: 0;
    background: url(../image/Stretegy_Solution_graphic_background.webp) no-repeat bottom center;
    background-size: cover;
}
.cmb-str-NS h2{
  color: #4a2278;
}
.cmb-str-NS h5{
  font-size: 55px;
    color: #743997;
}
@keyframes animate {
  0% {
    transform: scale(0) translateY(0) rotate(70deg);
  }
  100% {
    transform: scale(1.3) translateY(-100px) rotate(360deg);
  }
}

@keyframes hideAfter20Seconds {
  0% {
      opacity: 1;
  }
  99.9% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

.hide-after-20s {
  animation: hideAfter20Seconds 10s forwards;
}

/*--------------------------------------------------------------
# Mobile view
--------------------------------------------------------------*/

@media screen and (min-device-width: 320px) and (max-device-width: 768px) {
  .pr-0{
    padding-right: 10px !important;
  }
  .wrap-banner-bg {
    height: auto;
}
.shrd-dna-bx-frst {
    border-radius: 70px;
    padding: 45px;
    margin-right: 0px;
}
.shrd-dna-bx-third {
    border-radius: 70px;
    padding: 45px;
    margin-left: 0px;
}
.mrgn-10{
  margin: 10px;
}
  .pl-0{
    padding-left: 10px !important;
  }
  .banner-bg-white{
    width: 100%;
  }
  .banner-bg-black {
    text-align: center;
}
.shared-img-mb{
  height: 80vh;
    background-repeat: no-repeat;
    background: url(../image/shared_dna_mobile.webp) no-repeat center center !important;
    background-size: cover;
}
.shared-img{
  display: none;
}
  .mb-cntr{
    text-align: center I !important;
  }
  .testimonials .testimonial-item {
    padding: 0px;
    margin: 0;
}
  .ftr-use-link-alg {
    padding:  11px 0 0 0;
}
.MLE-sec {
  height: auto;
}
.MLE-section-title {
  padding: 44px 0;
}
  .Work-you-sec {
    display: block;
}
.WWY-equl-sec {
  width: 100%;
  padding: 44px;
}
.Ldrship-h-btn{
  margin-bottom: 44px;
}
.img-LPS{
  float: none;
}
.bg-white {
  padding: 0 20px;
}
.cc-btm-pd {
  padding: 20px 0;
}
.pd-10 {
  padding: 33px 10px;
}
.custom-A-img {
  width: 70%;
}
.pr-5 {
  padding-right: 10px;
}
#footer .footer-top .footer-links{
  display: block;
  margin-top: 20px;
}
#footer .footer-top .footer-links ul i {
  font-size: 12px;
}
#footer .footer-top .footer-links ul a {
  font-size: 12px!important;
}
.what-we-do .icon-box{
  padding: 0%;
}
.MLE-btn{
  padding: 12px 18px;
}
.pd-10 {
  text-align: center!important;
}
.C-M-A{
  text-align: center;
}
.mb-cntr {
  text-align: center!important;
}
}



@media screen and (min-device-width: 992px) and (max-device-width: 1200px){
  .ftr-cgna-logo {
    width: 100%;
    margin-bottom: 20px;
  }
    /* .shared-img{
    height: 75vh;
    background-repeat: no-repeat;
    background: url(../image/Shared_DNA.webp) no-repeat center center;
    background-size: cover;
    width: 100%;
} */
  /* .ftr-alg {
    width: 60%;
    border-left: 2px solid #4c4b4b;
  } */
  .test-btn{
    display: block;
  }
  .section-title3 h2::before {
    margin: 0 auto;
    left: 0;
    right: 0;
    display: none;
  }
  .section-title3 h2::after {
    left: 0;
    right: 0;
    margin: 0 auto;
    display: none;
  }
  .section-title3 h2{
    padding-bottom: 0;
  }
  .counter-section{
    flex-wrap: wrap;
  }
  .counter-section .items{
    width: 31%;
    margin: 15px 0;
    min-height: 150px;
  }
  #header .logo img {
    max-height: 60px;
  }
  #hero, #Leadership-skill, #custom-content {
    height: 42vh;
    background-repeat: no-repeat;
    margin-top: 0;
    background: rgb(31, 132, 118) url(../image/Top_Banner_background_only.webp) no-repeat bottom center;
  }
  .insights-box .items p{
    margin-bottom: 0 !important;
    min-height: 220px;
  }
  .insights-box .items:nth-child(1) p, .insights-box .items:nth-child(2) p, .insights-box .items:nth-child(3) p {
    min-height:290px;
  }
  .insights-box .items h4 {
    font-size: 18px;
  }
  .headercontent h1 {
    font-size: 36px;
    line-height: 42px;
    padding-top: 20px !important;
  }
  .headercontent h4 {
    font-size: 18px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 991px){
  #custom-content{
    background-size: cover;
  }
  #header .logo img {
    max-height: 60px;
  }
  .icon-bdr-bx {
    text-align: left;
    font-size: 12px;
}
.icon-bdr-bx img{
  width: 100%;
}
.NS_box-bdr {
    height: 220px;
    padding: 15px;
}
  .col-md-3 {
        flex: 0 0 auto;
        width: 50% !important;
    }
    .mb-25{
      width: 25% !important;
    }
    .col-md-6 {
        width: 100%;
        text-align: center;
    }
    .C-M-A img {
    border-radius: 10px;
    height: 80%;
    width: 80%;
    padding-top: 10%;
}
  #hero, #Leadership-skill, #custom-content, #contct-us, #insight {
    height: 65vh;
    background-repeat: no-repeat;
    margin-top: 0;
    background: rgb(31, 132, 118) url(../image/Top_Banner_background_only.webp) no-repeat center;
    overflow: hidden;
    background-position-x: -140px;
  }
  .testi-txt::after {
    right: 25%;
}
    .mb-cntr {
        text-align: center !important;
    }
  .headercontent{
    height: auto;
  }
  .pdr-lr {
    padding: 0px 10px;
  }
  .btn-tier {
    padding: 12px 4px;
    font-size: 13px;
    display: block;
  } 
  .pdr-lr h4 span {
    display: inline-block;
  }
  .pdr-lr h4 {
    font-size: 20px;
  }
  .ftr-cgna-logo {
    width: 100%;
    margin-bottom: 20px;
  }
  .ftr-alg {
    width: 100%;
    border-left: 0px solid #4c4b4b;
  }
  .section-title2 h2 {
    font-size: 28px;
  }
  .headercontent h1 {
    font-size: 36px;
    line-height: 42px;
    padding-top: 20px !important;
  }
  .headercontent h4 {
    font-size: 18px;
  }
  .section-title h2, .section-title3 h2, .section-title2 h2 {
    font-size: 28px;
  }
  .counter-section{
    flex-wrap: wrap;
  }
  .counter-section .items{
    width: 32%;
    margin: 1% 0;
    min-height: 150px;
  }
  section{
    padding: 30px 0;
  }

  .section-title3 h2::before {
    margin: 0 auto;
    left: 0;
    right: 0;
    display: none;
  }
  .section-title3 h2::after {
    left: 0;
    right: 0;
    margin: 0 auto;
    display: none;
  }
}

@media screen and (min-device-width: 320px) and (max-device-width: 767px) {
  .headercontent h1 {
    font-size: 26px;
    line-height: 32px;
  }
  .headercontent h4 {
    font-size: 18px;
  }
.redy-nxt-lep {
    height: 55vh;
}
  #custom-content{
    background: url("../img/MST-website-mobile_banner.webp") bottom center;
    background-size: cover;
    /* padding-top: 75px; */
  }
  .ftr-logo-size{
  width: 90% !important;
}
  .faq-row {
    display: block !important;
}
.faq-sec {
    width: 100% !important;
}

.bdr-ryt-gry {
    border-right: none !important;
}
  .spc-bnr{
    padding-top: 20%;
  }
  .headercontent h4{
    background: none;
  }
  .mb-grd{
    background: linear-gradient(65.02deg, #C41C74 14.69%, #ED1D7E 41.06%, #F15A3F 84.66%);
  }
  .headercontent {
    height: 55vh;
    align-items: flex-start !important;
    text-align: center;
  }
  .headercontent .pt-5{
    padding-top: 0 !important;
  }
  #custom-content .pt-5{
    padding-top: 10px !important;
  }
  #custom-content{
    background: rgb(31, 132, 118) url("../image/Top_Banner_background_only.webp") no-repeat center center;
  overflow: hidden;
  }
  .testi-txt::after {
    right: 50%;

}
.icon-bdr-bx {
    height: 220px !important;
    margin: 10px;
}
  .aboutcoca {
    padding-left: 0px;
    text-align: center;
  }
  .section-title h2, .section-title h3, .section-title p{
    text-align: center;
  }
  .section-title h2::before {
    left: calc(50% - 60px);
  }
  .section-title h2::after {
    left: calc(50% - 20px);
  }
  .aboutcoco-img{
    margin-bottom: 15px;
  }
  .helpfulbox{
    flex-direction: column;
  }
  .helpfulbox .gry-bg {
    width: 100%;
  }
  .ftr-cgna-logo {
    width: 100%;
    height: 80px;
  }
  .pdr-lr p{
    min-height: auto;
  }
  .section-title3{
    text-align: center;
  }
  .section-title3 h2::before {
    left: calc(50% - 60px);
  }
  .section-title3 h2::after {
    left: calc(50% - 20px);
  }
  .counter-section{
    flex-wrap: wrap;
  }
  .counter-section .items{
    width: 49%;
    margin: 1% 0;
    min-height: 170px;
  }
  .NS-together {
    background-color: #743997;
    margin-top: 0px;
    background-size: cover;
    background-image: none;
}
  section {
    padding: 30px 0;
  }
  .insights-box .items {
    margin: 1% 2% 25px 0;
  }
  .poptitle h6, .poptitle p{
    text-align: center;
  }
  .login {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
  }
}


.intro-icon{
  width: 25%;
  padding-bottom: 25px;
}
.gridnt-grn-bg{
  background: linear-gradient(111deg, #19A199 25.97%, #31A987 48.33%, #67BC5F 85% 85%);
}
.testi-box{
  padding-top: 33px;
}
.testi-txt{
  font-size: 14px;
  color: #fdc430;
}

.testi-txt::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 3px;
    background: #fdc430;
}

.icon-bdr-bx{
  background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    height: 180px;
    box-shadow: 2px 3px 10px #d8d8d8;
}
.p-30{
  padding: 30px;
}
.faq-sec{
  width: 20%;
}
.faq-row{
  display: flex;
}
.bdr-ryt-gry{
  border-right: 1px solid #b9b0b0;
}
.bh-ftr{
  background-color: #fefefe;
}
.drk-grn{
  color: #743997;
}

.bh-ftr a:hover{
  color: #743997;
}
.ftr-logo-size{
  width: 95%;
}
.dis-blk{
  display: block;
}
.bdr-top{
  border-top: 3px solid #1aff00;
}
.wheel-img, .hdr-logo-size{
  width: 80%;
  height: auto;
}
.end-txt{
  text-align: end;
}
.pinkOrangeGradient {
    /* background: linear-gradient(65.02deg, #C41C74 14.69%, #ED1D7E 41.06%, #F15A3F 84.66%); */
    padding: 5px 20px;
    border-radius: 20px;
    background-color: #743997;
    color: #fff;
}
.pinkOrangeGradient:hover {
    /* background: linear-gradient(65.02deg, #F15A3F 14.69%, #ED1D7E 41.06%, #C41C74 84.66%); */
    color: #ffffff;
    background-color: #743997;
}
.btnOutlined:hover {
    border: 1px solid #ffffff !important;
    color: #000000 !important;
    background: #ffffff;
}
.btnOutlined {
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
     padding: 5px 20px;
    border-radius: 20px;
}
.img-icon{
  text-align: center;
}
.profil-cntr{
  display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    padding: 10px;
}
@media screen and (min-device-width: 400px) and (max-device-width: 600px)  {
.mb-p{
  padding: 60px;
}

}