/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
.nav-link {
  padding: 0px;
}

.crossLine {
  background: transparent;
  position: relative;
  display: inline-block;
  padding: 0px;
  width: 45px;
  height: 25px;
  cursor: pointer;
  border: inherit;
}
.crossLine:focus, .crossLine:hover {
  border: inherit;
  outline: none;
}
.crossLine .line {
  display: block;
  background: #fff;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (max-width: 991px) {
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}
@media (max-width: 400px) {
  .crossLine {
    width: 35px;
  }
}

#sidebarCollapse {
  z-index: 5555;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}
body.overflowhidden {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 0px;
  color: #232323;
  font-weight: 400;
}
@media (max-width: 1700px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

ul {
  padding-left: 0px;
  margin-bottom: 0px;
  list-style-type: none;
}
ul li {
  font-size: 16px;
  line-height: 20px;
}

.mrg40 {
  margin-bottom: 40px;
}

.font22 {
  font-size: 22px;
  line-height: 28px;
  color: #000;
  font-weight: 500;
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

button:focus:not(:focus-visible) {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 1920px) and (max-width: 2500px) {
  .container {
    max-width: 1720px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1720px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1700px;
  }
}
.defaultBtn {
  background: -webkit-gradient(linear, left top, right top, from(#C46514), to(#9987FE));
  background: linear-gradient(90deg, #C46514 0%, #9987FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  padding-left: 60px;
  border: none;
}
.defaultBtn:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(../images/roundGradient.png);
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
@media (max-width: 1700px) {
  .defaultBtn:before {
    background-size: contain;
    width: 60px;
    height: 60px;
    left: 0px;
  }
}
@media (max-width: 1700px) {
  .defaultBtn {
    font-size: 16px;
    line-height: 16px;
    padding-left: 45px;
  }
}
.defaultBtn:hover {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mainHeader {
  position: absolute;
  z-index: 99999;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 0px;
}
.mainHeader header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.mainHeader header .navbarBtn .crossLine.active {
  background: transparent;
}
@media (max-width: 400px) {
  .mainHeader header .navbarBtn {
    padding: 10px;
  }
}
.mainHeader header .navbarLink ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainHeader header .navbarLink ul li {
  margin-left: 70px;
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 3px;
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
.mainHeader header .navbarLink ul li a {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: 0.4s ease-in-out all;
  transition: 0.4s ease-in-out all;
  line-height: 25px;
}
@media (max-width: 1700px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 45px;
    line-height: 55px;
    color: #fff;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  background: none;
  border-radius: 0;
  color: #14B8BD;
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: #fff;
  padding: 0;
  margin: 0;
  min-width: 635px;
  -webkit-box-shadow: 0px 4px 25px 10px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 25px 10px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  -webkit-transform: inherit !important;
          transform: inherit !important;
  top: 100% !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu ul {
  padding-top: 25px;
  padding-bottom: 25px;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpdwn_services {
  padding-right: 0px;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .col-lg-5 {
  padding: 0px;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 80px;
  position: relative;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li::before {
  content: "";
  position: absolute;
  background: #0AB0B0;
  width: 5px;
  height: 100%;
  left: 0px;
  opacity: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #000;
  padding: 15px 20px;
  font-size: 25px;
  text-transform: capitalize;
  line-height: 35px;
  padding-right: 0px;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover {
  background: #EAFFFF;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active::before, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover::before {
  opacity: 1;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #0AB0B0 !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown li {
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    text-align: center;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #fff;
    text-align: center;
    padding: 3px 5px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
.mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu, .mainHeader header .navbarLink ul li:focus > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mainHeader header .navbarLink ul li.openBottom li.submenu .dropdown-toggle {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown {
  left: 0 !important;
  top: 100% !important;
  position: relative;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li {
  padding-left: 20px;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li a {
  font-size: 13px;
  padding: 0;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover {
  background: none;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover a {
  color: #000 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    position: relative !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.mainHeader header .navbarLink.active {
  left: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink {
    background: linear-gradient(70deg, #2FA4FF 0%, #A268FF 0.65%, #DC5CB0 22%, #FB8427 100%);
    width: 100%;
    position: fixed;
    top: 0;
    left: -128%;
    height: 100vh;
    z-index: 999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    padding-top: 20%;
  }
  .mainHeader header .navbarLink .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}
.mainHeader header .headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .mainHeader header .headerMenu {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.mainHeader header .headerMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainHeader header .headerMenu ul li {
  margin-left: 80px;
}
.mainHeader header .headerMenu ul li a {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
  color: #fff !important;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 1700px) {
  .mainHeader header .headerMenu ul li a {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .headerMenu ul li a {
    font-size: 40px;
    line-height: 40px;
    color: #fff !important;
  }
}
.mainHeader header .headerMenu ul li a:hover {
  background: linear-gradient(70deg, #2FA4FF 0%, #A268FF 0.65%, #DC5CB0 22%, #FB8427 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 991px) {
  .mainHeader header .headerMenu ul li a:hover {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
}
@media (max-width: 1700px) {
  .mainHeader header .headerMenu ul li {
    margin-left: 50px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .headerMenu ul li {
    margin-left: 0px !important;
    margin-bottom: 40px !important;
  }
}
.mainHeader header .headerMenu ul li.active a {
  background: linear-gradient(70deg, #2FA4FF 0%, #A268FF 0.65%, #DC5CB0 22%, #FB8427 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 991px) {
  .mainHeader header .headerMenu ul li.active a {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
}
@media (max-width: 1700px) {
  .mainHeader .logo img {
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 400px) {
  .mainHeader .logo img {
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.sectionPadding {
  padding: 120px 0px;
}
@media (max-width: 1700px) {
  .sectionPadding {
    padding: 80px 0px;
  }
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 575px) {
  .sectionPadding {
    padding: 40px 0px;
  }
}

.sectionTitle {
  font-size: 80px;
  line-height: 90px;
  background: -webkit-gradient(linear, left top, right top, from(#2FA4FF), color-stop(19.65%, #A268FF), color-stop(38%, #DC5CB0), to(#FB8427));
  background: linear-gradient(90deg, #2FA4FF 0%, #A268FF 19.65%, #DC5CB0 38%, #FB8427 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  margin-bottom: 80px;
}
@media (max-width: 1700px) {
  .sectionTitle {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .sectionTitle {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 30px;
  }
}

.homebanner {
  position: relative;
}
.homebanner::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 98%;
}
@media (max-width: 991px) {
  .homebanner::before {
    background: rgba(0, 0, 0, 0.8);
  }
}
.homebanner video {
  width: 100%;
  height: 100%;
}
@media (max-width: 1700px) {
  .homebanner video {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .homebanner video {
    height: 700px;
  }
}
@media (max-width: 575px) {
  .homebanner video {
    height: 600px;
  }
}
.homebanner .bannerText {
  position: absolute;
  top: 300px;
  max-width: 1415px;
  left: 0;
  right: 0;
  margin: auto;
}
.homebanner .bannerText .bannertagline {
  margin-bottom: 150px;
}
.homebanner .bannerText .bannertagline span {
  font-size: 60px;
  line-height: 60px;
  color: #BDBDBD;
  display: block;
}
.homebanner .bannerText .bannertagline span:last-child {
  text-align: end;
}
@media (max-width: 1700px) {
  .homebanner .bannerText .bannertagline span {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerText .bannertagline span {
    font-size: 35px;
    line-height: 35px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .bannertagline span {
    font-size: 24px;
    line-height: 34px;
  }
}
.homebanner .bannerText .bannertagline p {
  background: -webkit-gradient(linear, left top, right top, from(#C46514), to(#9987FE));
  background: linear-gradient(90deg, #C46514 0%, #9987FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 120px;
  line-height: 140px;
}
@media (max-width: 1700px) {
  .homebanner .bannerText .bannertagline p {
    font-size: 80px;
    line-height: 100px;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerText .bannertagline p {
    font-size: 60px;
    line-height: 80px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .bannertagline p {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 1700px) {
  .homebanner .bannerText .bannertagline {
    margin-bottom: 70px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText .bannertagline {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .bannertagline {
    margin-bottom: 40px;
  }
}
.homebanner .bannerText .subtagline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.homebanner .bannerText .subtagline .leftBtn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68%;
          flex: 0 0 68%;
  max-width: 68%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.homebanner .bannerText .subtagline .leftBtn a:first-child {
  margin-right: 140px;
}
@media (max-width: 1700px) {
  .homebanner .bannerText .subtagline .leftBtn a:first-child {
    margin-right: 70px;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerText .subtagline .leftBtn a:first-child {
    margin-right: 60px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .subtagline .leftBtn a:first-child {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .subtagline .leftBtn .bannerBtn:first-child {
    margin-bottom: 70px;
  }
}
@media (max-width: 400px) {
  .homebanner .bannerText .subtagline .leftBtn .bannerBtn:first-child {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText .subtagline .leftBtn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 63%;
            flex: 0 0 63%;
    max-width: 63%;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerText .subtagline .leftBtn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .subtagline .leftBtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.homebanner .bannerText .subtagline .rightTxt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  max-width: 32%;
}
.homebanner .bannerText .subtagline .rightTxt p {
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
}
@media (max-width: 1700px) {
  .homebanner .bannerText .subtagline .rightTxt p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .subtagline .rightTxt p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText .subtagline .rightTxt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .subtagline .rightTxt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText .subtagline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 1700px) {
  .homebanner .bannerText {
    max-width: 75%;
    top: 190px;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerText {
    top: 135px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText {
    max-width: 90%;
  }
}
@media (max-width: 400px) {
  .homebanner .bannerText {
    top: 110px;
  }
}

.innerbanner {
  position: relative;
}
.innerbanner img {
  width: 100%;
}
.innerbanner:before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(11.56%, #000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 11.56%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
}
.innerbanner .bannerText {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
  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;
}
.innerbanner .bannerText .sectionTitle {
  margin-bottom: 0px;
}
@media (max-width: 1199px) {
  .innerbanner .bannerText {
    top: 15%;
  }
}
@media (max-width: 1199px) {
  .innerbanner img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .innerbanner img {
    height: 350px;
  }
}

.whoweareSec {
  position: relative;
}
.whoweareSec::before {
  content: "";
  position: absolute;
  background: url(../images/whoweare_bg.png) no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
@media (max-width: 1700px) {
  .whoweareSec::before {
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .whoweareSec::before {
    opacity: 0.4;
  }
}
.whoweareSec .whowearedetail p {
  color: #232323;
  margin-bottom: 30px;
}
@media (max-width: 1700px) {
  .whoweareSec .whowearedetail p {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .whoweareSec .whowearedetail {
    margin-bottom: 20px;
  }
}
.whoweareSec .whoweareCounterbox .fntinter500 {
  background: transparent;
  border-bottom: 2px solid transparent;
  -o-border-image: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%) 1;
     border-image: -webkit-gradient(linear, right top, left top, from(#2FA4FF), color-stop(33.66%, #A268FF), color-stop(75.02%, #DC5CB0), color-stop(100.03%, #FB8427)) 1;
     border-image: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%) 1;
  max-width: 350px;
  margin-right: auto;
  padding-bottom: 40px;
}
.whoweareSec .whoweareCounterbox .fntinter500 span {
  color: #876AF1;
  font-size: 160px;
  line-height: 160px;
  font-weight: 100;
  margin-bottom: 40px;
}
@media (max-width: 1700px) {
  .whoweareSec .whoweareCounterbox .fntinter500 span {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .whoweareSec .whoweareCounterbox .fntinter500 span {
    font-size: 55px;
    line-height: 65px;
  }
}
@media (max-width: 1700px) {
  .whoweareSec .whoweareCounterbox .fntinter500 {
    padding-bottom: 20px;
    max-width: 270px;
  }
}
@media (max-width: 767px) {
  .whoweareSec .whoweareCounterbox .fntinter500 {
    padding-bottom: 15px;
  }
}
.whoweareSec .whoweareCounterbox p {
  margin-top: 40px;
  font-size: 22px;
  line-height: 22px;
  font-weight: 500;
}
@media (max-width: 1700px) {
  .whoweareSec .whoweareCounterbox p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .whoweareSec .whoweareCounterbox {
    margin-bottom: 20px;
  }
}
.whoweareSec .defaultBtn {
  margin-top: 100px;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#C46514), color-stop(25%, #9987FE));
  background: linear-gradient(90deg, #C46514 0%, #9987FE 25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1700px) {
  .whoweareSec .defaultBtn {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .whoweareSec .defaultBtn {
    margin-top: 40px;
  }
}
.whoweareSec .defaultBtn:hover {
  background: #232323;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 991px) {
  .whoweareSec.sectionPadding {
    padding-bottom: 70px;
  }
}

.whatwedoSec {
  background: #13101C;
  /* Track (background) */
  /* Thumb (scroll handle) */
  /* Hover effect */
}
.whatwedoSec .sectionTitle {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.whatwedoSec .leftImg {
  height: 100%;
}
.whatwedoSec .leftImg img {
  border-radius: 30px;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 767px) {
  .whatwedoSec .leftImg {
    padding-bottom: 30px;
  }
  .whatwedoSec .leftImg img {
    height: auto;
  }
}
.whatwedoSec ul {
  min-height: 490px;
  height: 490px;
  overflow-y: auto;
  direction: rtl;
  padding-left: 50px;
}
.whatwedoSec ul li {
  text-align: left;
  border-bottom: 2px solid rgba(217, 217, 217, 0.2);
  padding: 30px 0px;
  direction: ltr;
}
.whatwedoSec ul li:last-child {
  border-bottom: none;
}
.whatwedoSec ul li:nth-child(1) {
  padding-top: 0px;
}
.whatwedoSec ul li .listDetail {
  display: none;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.whatwedoSec ul li .listDetail p {
  font-size: 24px;
  line-height: 30px;
  color: #AFAFAF;
  margin-bottom: 30px;
}
@media (max-width: 1700px) {
  .whatwedoSec ul li .listDetail p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .whatwedoSec ul li .listDetail p {
    font-size: 16px;
    line-height: 22px;
  }
}
.whatwedoSec ul li .listDetail a {
  background: linear-gradient(70deg, #2FA4FF 0%, #A268FF 0.65%, #DC5CB0 22%, #FB8427 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
}
.whatwedoSec ul li .listDetail a:hover {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.whatwedoSec ul li h2 {
  font-size: 32px;
  line-height: 32px;
  color: #CECECE;
  font-weight: 400;
}
@media (max-width: 1700px) {
  .whatwedoSec ul li h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .whatwedoSec ul li h2 {
    font-size: 20px;
    line-height: 24px;
    min-height: inherit;
  }
}
.whatwedoSec ul li:hover .listDetail {
  display: block;
}
@media (max-width: 1700px) {
  .whatwedoSec ul li:hover h2 {
    min-height: 50px;
  }
}
.whatwedoSec ul li.active .listDetail {
  display: block;
}
@media (max-width: 1700px) {
  .whatwedoSec ul li.active h2 {
    min-height: 50px;
  }
}
@media (max-width: 767px) {
  .whatwedoSec ul li.active h2 {
    min-height: inherit;
    margin-bottom: 10px;
  }
}
@media (max-width: 1700px) {
  .whatwedoSec ul li {
    padding: 20px 0px;
  }
}
@media (max-width: 767px) {
  .whatwedoSec ul li {
    padding: 15px 0px;
  }
}
@media (max-width: 1700px) {
  .whatwedoSec ul {
    padding-left: 30px;
    min-height: 380px;
    height: 380px;
  }
}
@media (max-width: 767px) {
  .whatwedoSec ul {
    padding: 0px;
    min-height: 100%;
    height: 100%;
  }
}
.whatwedoSec ul::-webkit-scrollbar {
  width: 5px;
}
.whatwedoSec ul::-webkit-scrollbar-track {
  background: #1E192D;
  border-radius: 10px;
}
.whatwedoSec ul::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#2FA4FF), color-stop(33.65%, #A268FF), color-stop(75%, #DC5CB0), to(#FB8427));
  background: linear-gradient(180deg, #2FA4FF 0%, #A268FF 33.65%, #DC5CB0 75%, #FB8427 100%);
  border-radius: 10px;
}
.whatwedoSec ul::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

.howwedoitSec .padd80 {
  padding-bottom: 80px;
}
@media (max-width: 1700px) {
  .howwedoitSec .padd80 {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .howwedoitSec .padd80 {
    padding-bottom: 30px;
  }
}
.howwedoitSec .howwedoBox {
  position: relative;
  border-radius: 20px;
}
.howwedoitSec .howwedoBox::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(43.34%, rgba(23, 23, 23, 0)), color-stop(92.5%, #171717));
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 43.34%, #171717 92.5%);
  width: 100%;
  height: 100%;
  bottom: 0;
  border-radius: 20px;
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
}
.howwedoitSec .howwedoBox img {
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .howwedoitSec .howwedoBox img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.howwedoitSec .howwedoBox .details {
  position: absolute;
  bottom: 0;
  padding: 0px 30px;
}
.howwedoitSec .howwedoBox .details h2 {
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  font-weight: 400;
  padding-bottom: 30px;
  margin-bottom: 0px;
  min-height: 110px;
}
@media (max-width: 1700px) {
  .howwedoitSec .howwedoBox .details h2 {
    font-size: 22px;
    line-height: 30px;
    min-height: 75px;
    padding-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .howwedoitSec .howwedoBox .details h2 {
    min-height: auto;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 575px) {
  .howwedoitSec .howwedoBox .details h2 {
    font-size: 24px;
    line-height: 24px;
  }
}
.howwedoitSec .howwedoBox .details p {
  margin-bottom: 30px;
  color: #fff;
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  display: none;
}
@media (max-width: 767px) {
  .howwedoitSec .howwedoBox .details p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 1700px) {
  .howwedoitSec .howwedoBox .details {
    padding: 0px 15px;
  }
}
@media (max-width: 767px) {
  .howwedoitSec .howwedoBox .details {
    padding: 0px 20px;
  }
}
.howwedoitSec .howwedoBox:hover:before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25.71%, rgba(220, 92, 176, 0)), to(#5644BC));
  background: linear-gradient(180deg, rgba(220, 92, 176, 0) 25.71%, #5644BC 100%);
}
@media (max-width: 1700px) {
  .howwedoitSec .howwedoBox:hover:before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-32.29%, rgba(220, 92, 176, 0)), to(#5644BC));
    background: linear-gradient(180deg, rgba(220, 92, 176, 0) -32.29%, #5644BC 100%);
  }
}
.howwedoitSec .howwedoBox:hover .details p {
  display: block;
}
@media (max-width: 1700px) {
  .howwedoitSec .howwedoBox:hover h2 {
    min-height: 50px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .howwedoitSec .howwedoBox {
    margin-bottom: 20px;
  }
}

.whyusSec {
  background: linear-gradient(254.53deg, rgba(80, 147, 255, 0.6) -1.16%, rgba(154, 108, 255, 0.6) 34.61%, rgba(209, 95, 193, 0.6) 70.87%, rgba(232, 107, 125, 0.6) 100.77%);
}
.whyusSec .sectionTitle {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}
.whyusSec ul li .whyusBox img {
  border-radius: 20px;
}

.industriesSec .emergingSlider .emergingBox {
  position: relative;
}
.industriesSec .emergingSlider .emergingBox::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.industriesSec .emergingSlider .emergingBox p {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 40px;
}
@media (max-width: 1199px) {
  .industriesSec .emergingSlider .emergingBox p {
    padding: 20px;
  }
}
.industriesSec .emergingSlider .emergingBox img {
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 575px) {
  .industriesSec .emergingSlider .emergingBox img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.industriesSec .emergingSlider .slick-slide {
  padding: 0px 15px;
}
.industriesSec .emergingSlider .slick-current .emergingBox::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45.71%, rgba(220, 92, 176, 0)), to(#5644BC));
  background: linear-gradient(180deg, rgba(220, 92, 176, 0) 45.71%, #5644BC 100%);
}
@media (max-width: 767px) {
  .industriesSec .emergingSlider {
    padding: 20px 0px;
  }
}
.industriesSec .tabStructure .card {
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 767px) {
  .industriesSec .tabStructure .card {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .industriesSec .tabStructure .nav-tabs li a {
    font-size: 18px;
    line-height: 18px;
    padding: 0px;
  }
}
@media (max-width: 991px) {
  .industriesSec .tabStructure .nav-tabs li a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .industriesSec .tabStructure .tab-content {
    padding: 0px 15px;
  }
}

footer {
  background: #170F22;
  padding-top: 130px;
}
footer .row {
  border-bottom: 1px solid #fff;
}
footer .footerTitle {
  padding-bottom: 80px;
}
footer .footerTitle h2 {
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 400;
  padding-bottom: 80px;
}
@media (max-width: 1700px) {
  footer .footerTitle h2 {
    font-size: 35px;
    line-height: 45px;
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  footer .footerTitle h2 {
    text-align: center;
    max-width: 500px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  footer .footerTitle h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
footer .footerTitle .footerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footerTitle .footerBtn a {
  display: block;
}
footer .footerTitle .footerBtn a:last-child {
  margin-left: 100px;
}
@media (max-width: 1700px) {
  footer .footerTitle .footerBtn a:last-child {
    margin-left: 60px;
  }
}
@media (max-width: 1199px) {
  footer .footerTitle .footerBtn a:last-child {
    margin-left: 30px;
  }
}
@media (max-width: 480px) {
  footer .footerTitle .footerBtn a:last-child {
    margin-left: 0px;
  }
}
@media (max-width: 480px) {
  footer .footerTitle .footerBtn a:first-child {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  footer .footerTitle .footerBtn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 480px) {
  footer .footerTitle .footerBtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1700px) {
  footer .footerTitle {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  footer .footerTitle {
    padding-bottom: 50px;
  }
}
footer .footerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footerLinks li {
  margin-right: 57px;
}
footer .footerLinks li a {
  font-size: 24px;
  line-height: 24px;
  color: #fff;
}
@media (max-width: 1700px) {
  footer .footerLinks li a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 1199px) {
  footer .footerLinks li a {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 991px) {
  footer .footerLinks li a {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  footer .footerLinks li a {
    font-size: 14px;
    line-height: 18px;
  }
}
footer .footerLinks li a:hover {
  background: linear-gradient(70deg, #2FA4FF 0%, #A268FF 0.65%, #DC5CB0 22%, #FB8427 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
footer .footerLinks li.active a {
  background: linear-gradient(70deg, #2FA4FF 0%, #A268FF 0.65%, #DC5CB0 22%, #FB8427 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
footer .footerLinks li:last-child {
  margin-right: 0px;
}
@media (max-width: 1700px) {
  footer .footerLinks li {
    margin-right: 35px;
  }
}
@media (max-width: 1199px) {
  footer .footerLinks li {
    margin-right: 19px;
  }
}
@media (max-width: 480px) {
  footer .footerLinks li {
    margin: 0px 3px;
    margin-bottom: 10px;
  }
  footer .footerLinks li a {
    padding: 5px;
  }
}
@media (max-width: 1700px) {
  footer .footerLinks {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  footer .footerLinks {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .locationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .locationList li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 50px;
}
footer .locationList li .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .locationList li .location p, footer .locationList li .location a {
  color: #d7d7d7;
  font-size: 26px;
  line-height: 26px;
}
@media (max-width: 1700px) {
  footer .locationList li .location p, footer .locationList li .location a {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1199px) {
  footer .locationList li .location p, footer .locationList li .location a {
    font-size: 14px;
    line-height: 20px;
  }
}
footer .locationList li .location img {
  margin-right: 20px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (max-width: 1700px) {
  footer .locationList li .location img {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  footer .locationList li .location img {
    width: 22px;
    max-height: 22px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
footer .locationList li .location a:hover {
  background: linear-gradient(70deg, #2FA4FF 0%, #A268FF 0.65%, #DC5CB0 22%, #FB8427 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
footer .locationList li .location a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
footer .locationList li:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
footer .locationList li:last-child .location img {
  margin: 0px;
}
@media (max-width: 1700px) {
  footer .locationList li {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  footer .locationList li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  footer .locationList li:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  footer .locationList li:last-child .location {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 991px) {
  footer .locationList {
    max-width: 400px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  footer .locationList {
    max-width: 358px;
  }
}
@media (max-width: 575px) {
  footer .locationList {
    max-width: 200px;
    margin: auto;
  }
}
footer .copyrightSec {
  padding: 20px 0px;
}
footer .copyrightSec ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .copyrightSec ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .copyrightSec ul li img {
  margin-right: 10px;
}
footer .copyrightSec ul li p {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 1700px) {
  footer .copyrightSec ul li p {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  footer .copyrightSec ul li p {
    font-size: 14px;
    line-height: 14px;
  }
}
footer .copyrightSec ul li:last-child img {
  margin-right: 0px;
  margin-left: 10px;
}
@media (max-width: 575px) {
  footer .copyrightSec ul li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .copyrightSec ul li:first-child {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  footer .copyrightSec ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1700px) {
  footer .copyrightSec {
    padding: 15px 0px;
  }
}
@media (max-width: 1700px) {
  footer {
    padding-top: 80px;
  }
}

.industriesSection {
  position: relative;
}
.industriesSection::before {
  content: "";
  position: absolute;
  background: url(../images/industries_bg.png) no-repeat;
  background-size: contain;
  width: 1050px;
  height: 1050px;
  top: -23%;
  right: -10%;
}
@media (max-width: 1700px) {
  .industriesSection::before {
    width: 800px;
    height: 800px;
    right: -18%;
    z-index: -1;
  }
}
@media (max-width: 1199px) {
  .industriesSection::before {
    right: -21%;
    top: -28%;
    opacity: 0.5;
  }
}
@media (max-width: 991px) {
  .industriesSection::before {
    right: -32%;
    top: -10%;
  }
}
.industriesSection .sectionTitle {
  max-width: 735px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 90px;
}
@media (max-width: 1700px) {
  .industriesSection .sectionTitle {
    line-height: 50px;
    max-width: 590px;
  }
}
@media (max-width: 767px) {
  .industriesSection .sectionTitle {
    line-height: 40px;
    max-width: 475px;
  }
}
@media (max-width: 575px) {
  .industriesSection .sectionTitle {
    line-height: 45px;
  }
}
@media (max-width: 991px) {
  .industriesSection .disFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .industriesSection .disFlex {
    display: block;
  }
}
@media (max-width: 991px) {
  .industriesSection .disFlex .industriesBox:first-child {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .industriesSection .disFlex .industriesBox:first-child {
    margin-right: 0px;
  }
}
.industriesSection .industriesBox {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 30px;
}
.industriesSection .industriesBox::before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45.71%, rgba(220, 92, 176, 0)), to(#5644BC));
  background: linear-gradient(180deg, rgba(220, 92, 176, 0) 45.71%, #5644BC 100%);
  width: 100%;
  border-radius: 30px;
  height: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  bottom: 0;
}
.industriesSection .industriesBox::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0;
  width: 100%;
  border-radius: 30px;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(61%, rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61%, #000000 100%);
}
.industriesSection .industriesBox img {
  width: 100%;
}
@media (max-width: 767px) {
  .industriesSection .industriesBox img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.industriesSection .industriesBox:hover::after {
  height: 0px;
}
.industriesSection .industriesBox:hover::before {
  height: 100%;
}
.industriesSection .industriesBox .industriesDetail {
  position: absolute;
  bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  color: #fff;
  max-width: 430px;
  z-index: 1;
}
.industriesSection .industriesBox .industriesDetail .title {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1700px) {
  .industriesSection .industriesBox .industriesDetail .title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .industriesSection .industriesBox .industriesDetail .title {
    font-size: 28px;
    line-height: 34px;
  }
}
.industriesSection .industriesBox .industriesDetail p {
  color: #EEEEEE;
}
@media (max-width: 991px) {
  .industriesSection .industriesBox .industriesDetail p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1700px) {
  .industriesSection .industriesBox .industriesDetail {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    max-width: 300px;
  }
}
@media (max-width: 1700px) {
  .industriesSection .industriesBox {
    margin-bottom: 20px;
  }
}

.industriesCounter {
  background: linear-gradient(254.53deg, rgba(80, 147, 255, 0.8) -1.16%, rgba(154, 108, 255, 0.8) 34.61%, rgba(209, 95, 193, 0.8) 70.87%, rgba(232, 107, 125, 0.8) 100.77%);
}
.industriesCounter .sectionTitle {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 991px) {
  .industriesCounter .sectionTitle {
    text-align: center;
    margin-bottom: 40px;
  }
}
.industriesCounter .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industriesCounter .industriesCounterBox {
  margin-bottom: 60px;
}
.industriesCounter .industriesCounterBox.mrg0 {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .industriesCounter .industriesCounterBox .fntinter500 {
    text-align: center;
  }
}
.industriesCounter .industriesCounterBox span {
  font-size: 60px;
  line-height: 70px;
  padding-bottom: 20px;
  color: #fff;
  display: inline-block;
}
@media (max-width: 1700px) {
  .industriesCounter .industriesCounterBox span {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .industriesCounter .industriesCounterBox span {
    font-size: 35px;
    line-height: 45px;
    padding-bottom: 10px;
  }
}
.industriesCounter .industriesCounterBox p {
  color: #fff;
}
@media (max-width: 991px) {
  .industriesCounter .industriesCounterBox p {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .industriesCounter .industriesCounterBox p {
    min-height: 50px;
  }
}
@media (max-width: 1700px) {
  .industriesCounter .industriesCounterBox {
    margin-bottom: 40px;
  }
}

.discoverIndustries {
  text-align: center;
}
.discoverIndustries .sectionTitle {
  max-width: 907px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 90px;
}
@media (max-width: 1700px) {
  .discoverIndustries .sectionTitle {
    line-height: 60px;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .discoverIndustries .sectionTitle {
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .discoverIndustries .sectionTitle {
    line-height: 45px;
  }
}
.discoverIndustries .defaultBtn:hover {
  background: #232323;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 575px) {
  .discoverIndustries {
    padding-bottom: 50px;
  }
}

.whoweareSec.noBg::before {
  display: none;
}

.borderImageSec img {
  border-radius: 20px;
}
@media (max-width: 575px) {
  .borderImageSec img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.aboutPage {
  position: relative;
}
.aboutPage::before {
  content: "";
  position: absolute;
  background: url(../images/about_icon.png) no-repeat;
  width: 100%;
  height: 100%;
  top: 10%;
  z-index: -1;
  background-position: right top;
  max-height: 1000px;
  background-size: contain;
  right: 0;
  margin: auto;
  opacity: 0.6;
}
@media (max-width: 1700px) {
  .aboutPage::before {
    max-height: 700px;
  }
}
@media (max-width: 767px) {
  .aboutPage::before {
    opacity: 0.5;
  }
}

.fourColList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.fourColList::before {
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(#2FA4FF), color-stop(33.66%, #A268FF), color-stop(75.02%, #DC5CB0), color-stop(100.03%, #FB8427));
  background: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%);
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .fourColList::before {
    display: none;
  }
}
.fourColList::after {
  content: "";
  background: linear-gradient(296.8deg, #2FA4FF 33.22%, #A268FF 55.7%, #DC5CB0 83.33%, #FB8427 100.03%);
  position: absolute;
  height: 100%;
  width: 2px;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .fourColList::after {
    display: none;
  }
}
.fourColList li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 50px 0px;
}
.fourColList li h2 {
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  color: #232323;
  margin-bottom: 30px;
}
@media (max-width: 1700px) {
  .fourColList li h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.fourColList li p {
  color: #6D6D6D;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 0px;
}
@media (max-width: 1700px) {
  .fourColList li p {
    font-size: 18px;
    line-height: 28px;
  }
}
.fourColList li:nth-child(1) {
  padding-right: 120px;
}
@media (max-width: 1700px) {
  .fourColList li:nth-child(1) {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .fourColList li:nth-child(1) {
    padding-right: 30px;
  }
}
.fourColList li:nth-child(2) {
  padding-left: 120px;
}
@media (max-width: 1700px) {
  .fourColList li:nth-child(2) {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .fourColList li:nth-child(2) {
    padding-left: 30px;
  }
}
.fourColList li:nth-child(3) {
  padding-right: 120px;
}
@media (max-width: 1700px) {
  .fourColList li:nth-child(3) {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .fourColList li:nth-child(3) {
    padding-right: 30px;
  }
}
.fourColList li:nth-child(4) {
  padding-left: 120px;
}
@media (max-width: 1700px) {
  .fourColList li:nth-child(4) {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .fourColList li:nth-child(4) {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .fourColList li {
    padding: 30px 0px;
  }
}
@media (max-width: 767px) {
  .fourColList li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
    background: transparent;
    border-bottom: 2px solid transparent;
    -o-border-image: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%) 1;
       border-image: -webkit-gradient(linear, right top, left top, from(#2FA4FF), color-stop(33.66%, #A268FF), color-stop(75.02%, #DC5CB0), color-stop(100.03%, #FB8427)) 1;
       border-image: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%) 1;
  }
  .fourColList li:last-child {
    border: none;
    background-image: none;
  }
}
@media (max-width: 991px) {
  .fourColList {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .fourColList {
    margin-top: 10px;
  }
}

.whyUsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.whyUsList .whyUsMenu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
}
.whyUsList .whyUsMenu li {
  margin-bottom: 50px;
}
.whyUsList .whyUsMenu li a {
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  padding: 5px 0px;
  display: inline-block;
  opacity: 0.5;
}
@media (max-width: 1700px) {
  .whyUsList .whyUsMenu li a {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .whyUsList .whyUsMenu li a {
    font-size: 20px;
    line-height: 30px;
  }
}
.whyUsList .whyUsMenu li.active a {
  opacity: 1;
}
@media (max-width: 1700px) {
  .whyUsList .whyUsMenu li {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .whyUsList .whyUsMenu li {
    margin: 0px 5px;
    padding-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .whyUsList .whyUsMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.whyUsList .whyUsMenu::-webkit-scrollbar {
  height: 2px;
}
.whyUsList .whyUsMenu::-webkit-scrollbar-track {
  background: -webkit-gradient(linear, left top, left bottom, from(#2FA4FF), color-stop(33.65%, #A268FF), color-stop(75%, #DC5CB0), to(#FB8427));
  background: linear-gradient(180deg, #2FA4FF 0%, #A268FF 33.65%, #DC5CB0 75%, #FB8427 100%);
  border-radius: 10px;
  opacity: 0.6;
}
.whyUsList .whyUsMenu::-webkit-scrollbar-thumb {
  background: #6f45b3;
  border-radius: 10px;
}
.whyUsList .whyContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  max-width: 60%;
}
.whyUsList .whyContent .whyContentBox {
  display: none;
}
.whyUsList .whyContent .whyContentBox:hover {
  display: block;
}
.whyUsList .whyContent .whyContentBox.active {
  display: block;
}
.whyUsList .whyContent .whyContentBox img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .whyUsList .whyContent .whyContentBox img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.whyUsList .whyContent .whyContentBox p {
  color: #fff;
}
@media (max-width: 991px) {
  .whyUsList .whyContent {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .whyUsList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.serviceSec .tabLinkList {
  padding: 15px 0px;
  position: relative;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: scroll;
  white-space: nowrap;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: auto;
}
.serviceSec .tabLinkList::after {
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(#2FA4FF), color-stop(33.66%, #A268FF), color-stop(75.02%, #DC5CB0), color-stop(100.03%, #FB8427));
  background: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%);
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1199px) {
  .serviceSec .tabLinkList::after {
    display: none;
  }
}
.serviceSec .tabLinkList li {
  padding: 0px 50px;
  position: relative;
  text-align: center;
}
.serviceSec .tabLinkList li a {
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: #969595;
  padding: 10px 2px;
  position: relative;
  display: block;
}
@media (max-width: 1700px) {
  .serviceSec .tabLinkList li a {
    font-size: 18px;
    line-height: 20px;
  }
}
.serviceSec .tabLinkList li:nth-child(1) {
  padding-left: 0px;
}
.serviceSec .tabLinkList li.active a {
  color: #232323;
}
.serviceSec .tabLinkList li.active a::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#170F22), to(#5C3C88));
  background: linear-gradient(90deg, #170F22 0%, #5C3C88 100%);
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
@media (max-width: 1199px) {
  .serviceSec .tabLinkList li.active a::before {
    display: none;
  }
}
.serviceSec .tabLinkList li:last-child::after {
  display: none;
}
.serviceSec .tabLinkList li::after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#2FA4FF), color-stop(37.02%, #A268FF), color-stop(74.04%, #DC5CB0), to(#FB8427));
  background: linear-gradient(180deg, #2FA4FF 0%, #A268FF 37.02%, #DC5CB0 74.04%, #FB8427 100%);
  height: 30px;
  width: 5px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  top: 0;
}
@media (max-width: 1700px) {
  .serviceSec .tabLinkList li {
    padding: 0px 20px;
  }
}
.serviceSec .tabLinkList::-webkit-scrollbar {
  height: 2px;
}
.serviceSec .tabLinkList::-webkit-scrollbar-track {
  background: -webkit-gradient(linear, left top, left bottom, from(#2FA4FF), color-stop(33.65%, #A268FF), color-stop(75%, #DC5CB0), to(#FB8427));
  background: linear-gradient(180deg, #2FA4FF 0%, #A268FF 33.65%, #DC5CB0 75%, #FB8427 100%);
  border-radius: 10px;
  opacity: 0.6;
}
.serviceSec .tabLinkList::-webkit-scrollbar-thumb {
  background: #6f45b3;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .serviceSec .tabLinkList {
    margin-bottom: 30px;
  }
}
.serviceSec .serviceBox {
  display: none;
}
.serviceSec .serviceBox.active {
  display: block;
}
.serviceSec .serviceBox img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  width: 100%;
}
.serviceSec .serviceBox p {
  margin-bottom: 30px;
}
.serviceSec .serviceBox p:last-child {
  margin-bottom: 0px;
}
@media (max-width: 1700px) {
  .serviceSec .serviceBox p {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .serviceSec .serviceBox p {
    margin-bottom: 15px;
  }
  .serviceSec .serviceBox p:last-child {
    margin-bottom: 15px;
  }
}

.hm_accordion_box1 .accordion {
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
}
.hm_accordion_box1 .accordion section {
  position: relative;
  display: block;
  float: left;
  width: 200px;
  height: 632px;
  margin: 0 5px;
  overflow: hidden;
  min-height: 518px;
  cursor: pointer;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(rgba(255, 255, 255, 0.3568627451), rgba(255, 255, 255, 0.3568627451)) padding-box, linear-gradient(254.53deg, #5093FF -1.16%, #9A6CFF 34.61%, #D15FC1 70.87%, #E86B7D 100.77%) border-box;
}
@media (max-width: 1700px) {
  .hm_accordion_box1 .accordion section {
    width: 140px;
    height: 520px;
  }
}
.hm_accordion_box1 .accordion section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(205.47deg, rgba(86, 68, 188, 0) 48.2%, #5644BC 87.49%);
  display: none;
  z-index: 1;
  border-radius: 20px;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.hm_accordion_box1 .accordion section .accordionBoxs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hm_accordion_box1 .accordion section .accordionBoxs .hover_area {
  width: 100%;
  height: 100%;
  position: relative;
}
.hm_accordion_box1 .accordion section .accordionBoxs .hover_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.4);
}
.hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail .whyusBox {
  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;
}
.hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail .whyusBox .whyusdetail h4 {
  font-size: 32px;
  line-height: 32px;
  color: #000;
  margin: 0;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  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;
  text-align: center;
}
@media (max-width: 1700px) {
  .hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail .whyusBox .whyusdetail h4 {
    font-size: 26px;
    line-height: 30px;
  }
}
.hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail .whyusBox .whyusdetail p {
  font-size: 26px;
  line-height: 26px;
  color: #fff;
  display: none;
  margin: 0;
}
@media (max-width: 1700px) {
  .hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail .whyusBox .whyusdetail p {
    font-size: 18px;
    line-height: 24px;
  }
}
.hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail .whyusBox img {
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail .whyusBox .rightBtn {
  width: 100px;
  height: 100px;
  background: url(../images/round.png) no-repeat center/contain;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1700px) {
  .hm_accordion_box1 .accordion section .accordionBoxs .hover_area .box_detail .whyusBox .rightBtn {
    width: 70px;
    height: 70px;
  }
}
.hm_accordion_box1 .accordion section.active {
  width: 800px;
}
.hm_accordion_box1 .accordion section.active::before {
  display: block;
}
.hm_accordion_box1 .accordion section.active .accordionBoxs .hover_area .box_detail {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: linear-gradient(254.53deg, #5093FF -1.16%, #9A6CFF 34.61%, #D15FC1 70.87%, #E86B7D 100.77%);
}
.hm_accordion_box1 .accordion section.active .accordionBoxs .hover_area .box_detail .whyusBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hm_accordion_box1 .accordion section.active .accordionBoxs .hover_area .box_detail .whyusBox .whyusdetail h4 {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  margin-bottom: 30px;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
}
@media (max-width: 1700px) {
  .hm_accordion_box1 .accordion section.active .accordionBoxs .hover_area .box_detail .whyusBox .whyusdetail h4 {
    margin-bottom: 15px;
  }
}
.hm_accordion_box1 .accordion section.active .accordionBoxs .hover_area .box_detail .whyusBox .whyusdetail p {
  display: block;
}
.hm_accordion_box1 .accordion section.active .accordionBoxs .hover_area .box_detail .whyusBox .rightBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hm_accordion_box1 .accordion section.active .accordionBoxs .hover_area .box_detail .btn_accordion i {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  color: #000;
}

.font32 {
  font-size: 32px;
  line-height: 42px;
  color: #232323;
  margin-bottom: 50px;
  font-weight: 400;
}
@media (max-width: 1700px) {
  .font32 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
  }
}

.industriesDetailSec {
  position: relative;
}
.industriesDetailSec::before {
  content: "";
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: url(../images/whoweare_bg.png) no-repeat;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1700px) {
  .industriesDetailSec::before {
    width: 800px;
    height: 800px;
    background-size: contain;
  }
}
.industriesDetailSec .industriesDetailImg {
  margin-right: -40%;
}
.industriesDetailSec .industriesDetailImg img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (max-width: 1700px) {
  .industriesDetailSec .industriesDetailImg img {
    height: 280px;
  }
}
@media (max-width: 991px) {
  .industriesDetailSec .industriesDetailImg img {
    height: 100%;
    border-radius: 20px;
  }
}
@media (max-width: 1199px) {
  .industriesDetailSec .industriesDetailImg {
    margin-right: -68%;
  }
}
@media (max-width: 991px) {
  .industriesDetailSec .industriesDetailImg {
    margin-right: 0%;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .industriesDetailSec .col-lg-4 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 991px) {
  .industriesDetailSec .col-lg-3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 991px) {
  .industriesDetailSec .ordone {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.industriesChallenges {
  background: linear-gradient(254.53deg, rgba(80, 147, 255, 0.8) -1.16%, rgba(154, 108, 255, 0.8) 34.61%, rgba(209, 95, 193, 0.8) 70.87%, rgba(232, 107, 125, 0.8) 100.77%);
}
.industriesChallenges .challengesImg {
  margin-left: -18%;
  height: 100%;
}
.industriesChallenges .challengesImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1700px) {
  .industriesChallenges .challengesImg img {
    height: 400px;
  }
}
@media (max-width: 1700px) {
  .industriesChallenges .challengesImg {
    margin-left: -27%;
  }
}
@media (max-width: 991px) {
  .industriesChallenges .challengesImg {
    margin-left: 0%;
    padding: 50px 0px;
  }
}
@media (max-width: 575px) {
  .industriesChallenges .challengesImg {
    padding: 30px 0px;
  }
}
.industriesChallenges .challengesDetails {
  padding-left: 90px;
}
.industriesChallenges .challengesDetails h2 {
  font-size: 60px;
  line-height: 70px;
  padding-bottom: 40px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0px;
}
@media (max-width: 1700px) {
  .industriesChallenges .challengesDetails h2 {
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .industriesChallenges .challengesDetails h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.industriesChallenges .challengesDetails ul li {
  color: #fff;
  border-bottom: 1px solid #fff;
  margin: 0px;
  padding: 40px 0px;
}
.industriesChallenges .challengesDetails ul li:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
}
@media (max-width: 1700px) {
  .industriesChallenges .challengesDetails ul li {
    padding: 20px 0px;
  }
}
@media (max-width: 991px) {
  .industriesChallenges .challengesDetails ul li {
    padding: 15px 0px;
  }
}
@media (max-width: 1199px) {
  .industriesChallenges .challengesDetails {
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .industriesChallenges .challengesDetails {
    padding-left: 0px;
    padding-bottom: 50px;
  }
}
.industriesChallenges .col-lg-6, .industriesChallenges .col-lg-5, .industriesChallenges .col-lg-1 {
  padding: 0px;
}
@media (max-width: 575px) {
  .industriesChallenges .col-lg-6, .industriesChallenges .col-lg-5, .industriesChallenges .col-lg-1 {
    padding: 0px 15px;
  }
}
.industriesChallenges .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.industriesSolutions .sectionTitle {
  font-size: 60px;
  line-height: 60px;
}
@media (max-width: 1700px) {
  .industriesSolutions .sectionTitle {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .industriesSolutions .sectionTitle {
    text-align: center;
  }
}
.industriesSolutions .solutionsBox {
  background: linear-gradient(254.53deg, rgba(80, 147, 255, 0.8) -1.16%, rgba(154, 108, 255, 0.8) 34.61%, rgba(209, 95, 193, 0.8) 70.87%, rgba(232, 107, 125, 0.8) 100.77%);
  margin-bottom: 30px;
  border-radius: 20px;
}
.industriesSolutions .solutionsBox ul li {
  padding: 60px 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.industriesSolutions .solutionsBox ul li img {
  margin-right: 30px;
  height: 60px;
}
@media (max-width: 1700px) {
  .industriesSolutions .solutionsBox ul li img {
    margin-right: 25px;
  }
}
@media (max-width: 1199px) {
  .industriesSolutions .solutionsBox ul li img {
    margin-right: 14px;
    height: 40px;
  }
}
.industriesSolutions .solutionsBox ul li p {
  color: #fff;
  margin-bottom: 0px;
  min-height: 105px;
}
@media (max-width: 1700px) {
  .industriesSolutions .solutionsBox ul li p {
    min-height: 75px;
  }
}
@media (max-width: 767px) {
  .industriesSolutions .solutionsBox ul li p {
    min-height: auto;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1700px) {
  .industriesSolutions .solutionsBox ul li {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .industriesSolutions .solutionsBox {
    margin-bottom: 20px;
  }
}

.valueDelivered.sectionPadding {
  padding-top: 0px;
}
.valueDelivered .valueDeliveredDetail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  position: relative;
}
.valueDelivered .valueDeliveredDetail::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45.71%, rgba(220, 92, 176, 0)), to(#5644BC));
  background: linear-gradient(180deg, rgba(220, 92, 176, 0) 45.71%, #5644BC 100%);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .valueDelivered .valueDeliveredDetail::before {
    background: linear-gradient(284deg, rgba(220, 92, 176, 0) 0.71%, #5644BC 100%);
  }
}
.valueDelivered .valueDeliveredDetail img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .valueDelivered .valueDeliveredDetail img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.valueDelivered .valueDeliveredDetail .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
  position: absolute;
  bottom: 0;
}
.valueDelivered .valueDeliveredDetail .row .font60 {
  font-size: 58px;
  line-height: 60px;
  color: #fff;
  padding: 30px 0px;
}
@media (max-width: 1700px) {
  .valueDelivered .valueDeliveredDetail .row .font60 {
    padding: 20px 0px;
    font-size: 37px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .valueDelivered .valueDeliveredDetail .row .font60 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .valueDelivered .valueDeliveredDetail .row .font60 {
    padding-bottom: 0px;
  }
}
.valueDelivered .valueDeliveredDetail .row p {
  color: #fff;
}
@media (max-width: 1700px) {
  .valueDelivered .valueDeliveredDetail .row {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .valueDelivered .valueDeliveredDetail .row {
    padding: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .valueDelivered .valueDeliveredDetail .disNone {
    display: none;
  }
}

.form-group {
  margin-bottom: 30px;
}
.form-group label {
  font-size: 18px;
  line-height: 18px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 400;
}
@media (max-width: 1700px) {
  .form-group label {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
  }
}
.form-group input, .form-group select {
  height: 60px;
  border: 1px solid #aeaeae;
  border-radius: 5px;
  width: 100%;
}
@media (max-width: 1700px) {
  .form-group input, .form-group select {
    height: 50px;
  }
}
.form-group select {
  background: url(../images/down_grey.png) no-repeat;
  background-position: calc(100% - 9px) center;
}
.form-group select option {
  color: #a3a3a3 !important;
}
@media (max-width: 1700px) {
  .form-group {
    margin-bottom: 20px;
  }
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #aeaeae;
}

.submitBtn {
  margin-top: 50px;
}
@media (max-width: 1700px) {
  .submitBtn {
    margin-top: 30px;
  }
}
.submitBtn .defaultBtn:hover {
  background: #232323;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.joinUsSec {
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .joinUsSec .joinusForm p {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .joinUsSec {
    padding-bottom: 60px;
  }
}

.currentOpeningSec {
  padding-top: 0px;
  position: relative;
}
.currentOpeningSec::before {
  content: "";
  position: absolute;
  background: url(../images/whoweare_bg.png) no-repeat;
  width: 1000px;
  height: 1000px;
  background-size: contain;
  top: -22%;
}
@media (max-width: 1700px) {
  .currentOpeningSec::before {
    width: 800px;
    height: 800px;
    top: -28%;
  }
}
@media (max-width: 767px) {
  .currentOpeningSec::before {
    display: none;
  }
}
.currentOpeningSec .sectionTitle {
  text-align: center;
}
.currentOpeningSec .currentOpeningDetails .font32 {
  margin-bottom: 30px;
  color: #232323;
}
.currentOpeningSec .currentOpeningDetails .defaultBtn:hover {
  background: #232323;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.currentOpeningSec .accordion-item {
  -webkit-box-shadow: 0px 4px 15px 5px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 15px 5px rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 20px;
}
.currentOpeningSec .accordion-button {
  padding: 40px 70px !important;
  background: #fff !important;
  margin: 0px !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  position: relative;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  text-align: left !important;
  line-height: 40px;
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-button.font32 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .currentOpeningSec .accordion-button.font32 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-button {
    padding: 30px !important;
  }
}
@media (max-width: 575px) {
  .currentOpeningSec .accordion-button {
    padding: 20px !important;
  }
}
.currentOpeningSec #accordionId .accordion-item .accordion-header .accordion-button.collapsed {
  color: #232323;
}
.currentOpeningSec #accordionId .accordion-item .accordion-header .accordion-button.collapsed::after {
  background: url(../images/right_rrow.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  content: "";
}
.currentOpeningSec #accordionId .accordion-item .accordion-header .accordion-button::after {
  content: "";
  background: url(../images/bottom_arrow.png) no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.currentOpeningSec .accordion-body {
  padding: 50px 70px;
  background: #fff !important;
  padding-bottom: 80px;
  position: relative;
}
.currentOpeningSec .accordion-body:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px; /* border thickness */
  background: -webkit-gradient(linear, right top, left top, from(#2FA4FF), color-stop(33.66%, #A268FF), color-stop(75.02%, #DC5CB0), color-stop(100.03%, #FB8427));
  background: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%);
}
.currentOpeningSec .accordion-body ul {
  margin-bottom: 50px;
}
.currentOpeningSec .accordion-body ul li {
  font-size: 24px;
  line-height: 34px;
  color: #787878;
  margin-bottom: 30px;
  position: relative;
  padding-left: 35px;
}
.currentOpeningSec .accordion-body ul li:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #787878;
  left: 0;
  top: 14px;
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-body ul li:before {
    width: 8px;
  }
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-body ul li {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
    padding-left: 25px;
  }
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-body ul {
    margin-bottom: 30px;
  }
}
.currentOpeningSec .accordion-body .joinuslist {
  margin-bottom: 50px;
}
.currentOpeningSec .accordion-body .joinuslist .mrg30 {
  margin-bottom: 30px;
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-body .joinuslist .mrg30 {
    margin-bottom: 15px;
  }
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-body .joinuslist {
    margin-bottom: 30px;
  }
}
.currentOpeningSec .accordion-body .mrg100 {
  margin-bottom: 100px;
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-body .mrg100 {
    margin-bottom: 50px;
  }
}
.currentOpeningSec .accordion-body p {
  color: #787878;
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-body .font32 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .currentOpeningSec .accordion-body .font32 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 1700px) {
  .currentOpeningSec .accordion-body {
    padding: 30px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .currentOpeningSec .accordion-body {
    padding: 20px;
    padding-bottom: 40px;
  }
}

.uploadresume input {
  background: #fff !important;
  width: 100% !important;
  border-radius: 5px !important;
}
.uploadresume .btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block;
}
.uploadresume .input-group-btn {
  position: absolute;
  right: 0;
  z-index: 3;
}
.uploadresume .input-group-btn .career_btn {
  padding: 13px 20px;
}

/* bharavi mam css */
.hm_accordion_box .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hm_accordion_box .accordion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.hm_accordion_box .accordion section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11.5%;
          flex: 0 0 11.5%;
  height: auto;
  margin: 0.5% 0.5%;
  cursor: pointer;
  min-height: 600px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-transition: -webkit-box-flex 0.5s ease;
  transition: -webkit-box-flex 0.5s ease;
  transition: flex 0.5s ease;
  transition: flex 0.5s ease, -webkit-box-flex 0.5s ease, -ms-flex 0.5s ease;
}
.hm_accordion_box .accordion section .accordionBoxs > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.hm_accordion_box .accordion section::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hm_accordion_box .accordion section {
    min-height: 400px;
  }
}
@media (max-width: 991px) {
  .hm_accordion_box .accordion section {
    min-height: inherit;
  }
}
@media (max-width: 767px) {
  .hm_accordion_box .accordion section {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
}
.hm_accordion_box .accordion section .box_detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 30px;
}
.hm_accordion_box .accordion section .box_detail .whyusBox {
  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;
}
.hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail h4 {
  font-size: 32px;
  line-height: 32px;
  color: #fff;
  margin: 0;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  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;
  text-align: center;
}
@media (max-width: 1700px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail h4 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail h4 {
    font-size: 22px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail h4 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 30px;
    line-height: 40px;
  }
}
.hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail p {
  font-size: 26px;
  line-height: 36px;
  color: #fff;
  display: none;
  margin-bottom: 20px;
}
.hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1700px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1700px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail {
    max-width: 350px;
  }
}
@media (max-width: 1199px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail {
    max-width: 290px;
  }
}
@media (max-width: 991px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .whyusdetail {
    max-width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.hm_accordion_box .accordion section .box_detail .whyusBox .rightBtn {
  width: 100px;
  height: 100px;
  background: url(../images/round.png) no-repeat;
  background-size: contain;
  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;
  display: none !important;
}
.hm_accordion_box .accordion section .box_detail .whyusBox .rightBtn img {
  height: 26px;
}
@media (max-width: 1700px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .rightBtn {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox .rightBtn {
    width: 50px;
    height: 50px;
  }
  .hm_accordion_box .accordion section .box_detail .whyusBox .rightBtn img {
    height: 22px;
  }
}
@media (max-width: 991px) {
  .hm_accordion_box .accordion section .box_detail .whyusBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1700px) {
  .hm_accordion_box .accordion section .box_detail {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .hm_accordion_box .accordion section .box_detail {
    padding: 30px 20px;
  }
}
.hm_accordion_box .accordion section.active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}
.hm_accordion_box .accordion section.active::before {
  display: block;
  background: linear-gradient(205.47deg, rgba(86, 68, 188, 0) 48.2%, #5644BC 87.49%);
}
@media (max-width: 767px) {
  .hm_accordion_box .accordion section.active {
    height: 100%;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    min-height: 400px;
  }
}
.hm_accordion_box .accordion section.active .accordionBoxs {
  width: 100%;
}
.hm_accordion_box .accordion section.active .accordionBoxs > img {
  display: block;
}
.hm_accordion_box .accordion section.active .box_detail {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hm_accordion_box .accordion section.active .box_detail .whyusBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hm_accordion_box .accordion section.active .box_detail .whyusBox .whyusdetail h4 {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  margin-bottom: 30px;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
}
@media (max-width: 1700px) {
  .hm_accordion_box .accordion section.active .box_detail .whyusBox .whyusdetail h4 {
    margin-bottom: 15px;
  }
}
.hm_accordion_box .accordion section.active .box_detail .whyusBox .whyusdetail p {
  display: block;
}
.hm_accordion_box .accordion section.active .box_detail .whyusBox .rightBtn {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (max-width: 1700px) {
  .hm_accordion_box .accordion section {
    min-height: 500px;
  }
}
@media (max-width: 991px) {
  .hm_accordion_box .accordion section {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .hm_accordion_box .accordion section {
    margin-bottom: 10px;
  }
}

.hm_accordion_box1 .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hm_accordion_box1 .accordion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.hm_accordion_box1 .accordion section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9%;
          flex: 0 0 9%;
  height: auto;
  margin: 0 0.5%;
  cursor: pointer;
  min-height: 600px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-transition: -webkit-box-flex 0.5s ease;
  transition: -webkit-box-flex 0.5s ease;
  transition: flex 0.5s ease;
  transition: flex 0.5s ease, -webkit-box-flex 0.5s ease, -ms-flex 0.5s ease;
  border: 2px solid transparent;
  background: linear-gradient(rgba(255, 255, 255, 0.3568627451), rgba(255, 255, 255, 0.3568627451)) padding-box, linear-gradient(254.53deg, #5093FF -1.16%, #9A6CFF 34.61%, #D15FC1 70.87%, #E86B7D 100.77%) border-box;
}
@media (max-width: 1199px) {
  .hm_accordion_box1 .accordion section {
    min-height: 400px;
  }
}
@media (max-width: 991px) {
  .hm_accordion_box1 .accordion section {
    min-height: inherit;
  }
}
@media (max-width: 767px) {
  .hm_accordion_box1 .accordion section {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
}
.hm_accordion_box1 .accordion section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(205.47deg, rgba(86, 68, 188, 0) 48.2%, #5644BC 87.49%);
  display: none;
  z-index: 1;
  border-radius: 20px;
}
.hm_accordion_box1 .accordion section span.srno {
  font-weight: 400;
  font-size: 150px;
  line-height: 150px;
  text-align: right;
  background: linear-gradient(254.53deg, #5093FF -1.16%, #9A6CFF 34.61%, #D15FC1 70.87%, #E86B7D 100.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.15;
}
@media (max-width: 767px) {
  .hm_accordion_box1 .accordion section span.srno {
    font-size: 60px;
    line-height: 60px;
    top: 0;
    right: 10px;
    bottom: 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.hm_accordion_box1 .accordion section .box_detail {
  position: relative;
  inset: 0;
  z-index: 2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.4);
}
.hm_accordion_box1 .accordion section .box_detail .whyusBox {
  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;
}
.hm_accordion_box1 .accordion section .box_detail .whyusBox .whyusdetail h4 {
  font-size: 32px;
  line-height: 32px;
  color: #000;
  margin: 0;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  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;
  text-align: center;
}
@media (max-width: 1700px) {
  .hm_accordion_box1 .accordion section .box_detail .whyusBox .whyusdetail h4 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .hm_accordion_box1 .accordion section .box_detail .whyusBox .whyusdetail h4 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.hm_accordion_box1 .accordion section .box_detail .whyusBox .whyusdetail p {
  font-size: 26px;
  line-height: 36px;
  color: #fff;
  display: none;
  margin-bottom: 20px;
}
.hm_accordion_box1 .accordion section .box_detail .whyusBox .whyusdetail p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1700px) {
  .hm_accordion_box1 .accordion section .box_detail .whyusBox .whyusdetail p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .hm_accordion_box1 .accordion section .box_detail {
    position: relative;
    padding: 25px 30px;
    width: 100%;
  }
  .hm_accordion_box1 .accordion section .box_detail .whyusBox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.hm_accordion_box1 .accordion section.active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}
.hm_accordion_box1 .accordion section.active::before {
  display: block;
}
@media (max-width: 767px) {
  .hm_accordion_box1 .accordion section.active {
    height: 100%;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    min-height: 200px;
  }
}
.hm_accordion_box1 .accordion section.active span.srno {
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
  font-size: 250px;
  line-height: 250px;
  opacity: 0.2;
  top: -8%;
  right: -3%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-text-fill-color: #E8F1FF;
  background: none;
}
@media (max-width: 767px) {
  .hm_accordion_box1 .accordion section.active span.srno {
    font-size: 120px;
    line-height: 120px;
    top: -10px;
    right: -10px;
    bottom: auto;
  }
}
.hm_accordion_box1 .accordion section.active .box_detail {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: linear-gradient(254.53deg, #5093FF -1.16%, #9A6CFF 34.61%, #D15FC1 70.87%, #E86B7D 100.77%);
}
.hm_accordion_box1 .accordion section.active .box_detail .whyusBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hm_accordion_box1 .accordion section.active .box_detail .whyusBox .whyusdetail h4 {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  margin-bottom: 30px;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
}
@media (max-width: 1700px) {
  .hm_accordion_box1 .accordion section.active .box_detail .whyusBox .whyusdetail h4 {
    margin-bottom: 15px;
  }
}
.hm_accordion_box1 .accordion section.active .box_detail .whyusBox .whyusdetail p {
  display: block;
}

.mapsec {
  position: relative;
  z-index: 99;
}
.mapsec .addressMap {
  max-width: 1920px;
  margin: auto;
}
.mapsec:before {
  content: "";
  position: absolute;
  background: url(../images/contact_us_bg.png) no-repeat;
  width: 1000px;
  height: 1000px;
  background-size: contain;
  top: -79%;
  left: 0;
}
@media (max-width: 1700px) {
  .mapsec:before {
    width: 700px;
    height: 700px;
    top: -81%;
    z-index: -1;
  }
}
@media (max-width: 575px) {
  .mapsec:before {
    opacity: 0.5;
  }
}
.mapsec.sectionPadding {
  padding-top: 0px;
}
.mapsec.sectionPadding .addressMap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mapsec.sectionPadding .addressMap .leftaddressDetail {
  background: linear-gradient(254.53deg, #5093FF -1.16%, #9A6CFF 34.61%, #D15FC1 70.87%, #E86B7D 100.77%);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38%;
          flex: 0 0 38%;
  max-width: 38%;
  margin-right: 10px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-left: 100px;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-right: 40px;
}
.mapsec.sectionPadding .addressMap .leftaddressDetail ul li {
  margin-bottom: 80px;
}
.mapsec.sectionPadding .addressMap .leftaddressDetail ul li img {
  margin-bottom: 20px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1700px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul li img {
    height: 25px;
    margin-bottom: 10px;
  }
}
.mapsec.sectionPadding .addressMap .leftaddressDetail ul li p {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 300;
  display: block;
}
@media (max-width: 1700px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul li p {
    font-size: 25px;
    line-height: 35px;
  }
}
.mapsec.sectionPadding .addressMap .leftaddressDetail ul li a {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 300;
  display: block;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.mapsec.sectionPadding .addressMap .leftaddressDetail ul li a:hover {
  color: #000;
}
@media (max-width: 1700px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul li a {
    font-size: 25px;
    line-height: 35px;
  }
}
.mapsec.sectionPadding .addressMap .leftaddressDetail ul li:last-child {
  margin-bottom: 0px;
}
@media (max-width: 1700px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul li {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul li {
    margin-bottom: 0px;
  }
}
@media (max-width: 575px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul {
    max-width: 480px;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail ul {
    max-width: 100%;
    padding: 0px 15px;
  }
}
@media (max-width: 1700px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail {
    padding-left: 110px;
  }
}
@media (max-width: 991px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    border-radius: 0px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .mapsec.sectionPadding .addressMap .leftaddressDetail {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.mapsec.sectionPadding .addressMap .rightMap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  max-width: 60%;
}
.mapsec.sectionPadding .addressMap .rightMap iframe {
  width: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  height: 100%;
}
@media (max-width: 991px) {
  .mapsec.sectionPadding .addressMap .rightMap iframe {
    height: 500px;
    border-radius: 0px;
  }
}
@media (max-width: 991px) {
  .mapsec.sectionPadding .addressMap .rightMap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

.bottomslider .slider .slick-prev:before, .bottomslider .slider-vertical .slick-next:before {
  display: none;
}
.bottomslider .slider .slick-prev, .bottomslider .slider .slick-next {
  width: 28px;
  height: 28px;
  border-style: solid;
  margin: 10px;
  display: inline-block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}
.bottomslider .slider .slick-prev:before, .bottomslider .slider .slick-next:before {
  display: none;
}
.bottomslider .slider .slick-prev {
  border-width: 14px 14px 14px 0px;
  border-color: transparent #ffffff;
  left: 0px;
  right: auto;
}
.bottomslider .slider .slick-next {
  border-width: 14px 0px 14px 14px;
  border-color: transparent #ffffff;
  right: 0px;
  left: auto;
}
.bottomslider .slider-thumb {
  margin-bottom: 50px;
}
.bottomslider .slider-thumb h3 {
  font-size: 28px;
  line-height: 32px;
  color: #969595;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  padding: 0 20px;
  padding-bottom: 10px;
  text-align: left;
  margin: 0 5px;
}
@media (max-width: 1700px) {
  .bottomslider .slider-thumb h3 {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    padding: 0 10px;
    padding-bottom: 10px;
  }
}
.bottomslider .slider-thumb h3:hover {
  color: #232323;
  background: transparent;
  border-bottom: 2px solid transparent;
  -o-border-image: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%) 1;
     border-image: -webkit-gradient(linear, right top, left top, from(#2FA4FF), color-stop(33.66%, #A268FF), color-stop(75.02%, #DC5CB0), color-stop(100.03%, #FB8427)) 1;
     border-image: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%) 1;
}
.bottomslider .slider-thumb .slick-slide.slick-current h3 {
  color: #232323;
  background: transparent;
  border-bottom: 2px solid transparent;
  -o-border-image: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%) 1;
     border-image: -webkit-gradient(linear, right top, left top, from(#2FA4FF), color-stop(33.66%, #A268FF), color-stop(75.02%, #DC5CB0), color-stop(100.03%, #FB8427)) 1;
     border-image: linear-gradient(270deg, #2FA4FF 0%, #A268FF 33.66%, #DC5CB0 75.02%, #FB8427 100.03%) 1;
}
@media (max-width: 1700px) {
  .bottomslider .slider-thumb {
    margin-bottom: 30px;
  }
}
.bottomslider .slider-content .slick-slide {
  padding: 0px 15px;
}
.bottomslider .slider-content .slick-slide .slidercontentBox {
  position: relative;
}
.bottomslider .slider-content .slick-slide .slidercontentBox::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.bottomslider .slider-content .slick-slide .slidercontentBox img {
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 480px) {
  .bottomslider .slider-content .slick-slide .slidercontentBox img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bottomslider .slider-content .slick-slide .slidercontentBox p {
  position: absolute;
  color: #fff;
  bottom: 0;
  opacity: 0.5;
  padding: 40px;
  font-size: 26px;
  line-height: 26px;
}
@media (max-width: 1700px) {
  .bottomslider .slider-content .slick-slide .slidercontentBox p {
    font-size: 22px;
    line-height: 22px;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .bottomslider .slider-content .slick-slide .slidercontentBox p {
    font-size: 18px;
    line-height: 20px;
    padding: 20px;
  }
}
.bottomslider .slider-content .slick-slide.slick-current .slidercontentBox:before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45.71%, rgba(220, 92, 176, 0)), to(#5644BC));
  background: linear-gradient(180deg, rgba(220, 92, 176, 0) 45.71%, #5644BC 100%);
}
.bottomslider .slider-content .slick-slide.slick-current .slidercontentBox p {
  opacity: 1;
}
@media (max-width: 1700px) {
  .bottomslider .slider-content .slick-slide {
    padding: 0px 10px;
  }
}

.applyform {
  overflow: hidden;
}
.applyform .modal-dialog {
  max-width: 800px;
  margin: 20px auto;
}
.applyform .modal-body {
  padding-bottom: 30px;
}
.applyform textarea {
  height: 80px;
}
.applyform .modal-header .modal-title {
  background: -webkit-gradient(linear, left top, right top, from(#2FA4FF), color-stop(19.65%, #A268FF), color-stop(38%, #DC5CB0), to(#FB8427));
  background: linear-gradient(90deg, #2FA4FF 0%, #A268FF 19.65%, #DC5CB0 38%, #FB8427 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 25px;
  line-height: 25px;
}

.error {
  color: red !important;
  margin-bottom: 0px !important;
  font-size: 14px !important;
  line-height: 14px !important;
  margin-top: 5px;
}

@media (max-width: 575px) {
  footer {
    padding-bottom: 80px;
  }
}
.mobStickyFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(254.53deg, #5093FF -1.16%, #9A6CFF 34.61%, #D15FC1 70.87%, #E86B7D 100.77%);
  padding: 15px 0px;
  z-index: 9999;
  display: none;
}
@media (max-width: 575px) {
  .mobStickyFooter {
    display: block;
  }
}
.mobStickyFooter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.mobStickyFooter ul li {
  padding: 0 10px;
}
.mobStickyFooter ul li a {
  color: #fff;
}
.mobStickyFooter ul li .text {
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
}
.mobStickyFooter ul li img {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 5px;
}/*# sourceMappingURL=style.css.map */