@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
header .navbarBtn {
  display: none;
}
@media (max-width: 991px) {
  header .navbarBtn {
    display: block;
  }
}

.crossLine {
  background: #fff;
  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: #0e0eff;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .crossLine.active {
    background: inherit;
    padding: 0px;
  }
  .crossLine.active .line {
    background: #000;
  }
}
#sidebarCollapse {
  z-index: 5555;
}

.navbar {
  position: inherit;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 85%;
  width: 100%;
  background: white;
  border-top: 1px solid #eee;
  box-shadow: 0px 4px 25px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 38px 20px 38px 20px;
  display: none;
  z-index: 1000;
}
@media (min-width: 1024px) and (max-width: 1398px) {
  .mega-menu {
    top: 67px;
  }
}

.nav-item:hover .mega-menu {
  display: block;
}

.subcategory-col-1 {
  position: relative;
  border-right: #F3F3F3 solid 5px;
}
.subcategory-col-1.last {
  border: none;
}
.subcategory-col-1 h5 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.subcategory-col-1 ul {
  list-style: none;
  padding: 0;
}
.subcategory-col-1 ul li {
  padding: 5px 0;
  cursor: pointer;
  color: #000;
}
.subcategory-col-1 ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.subcategory-col-1 ul li:hover a {
  color: #1E5DAC;
}
@media (max-width: 1199px) {
  .subcategory-col-1 h5 {
    font-size: 17px;
    margin-bottom: 12px;
  }
}

/* Mobile Styles */
@media (max-width: 991px) {
  body.overflowhidden {
    overflow-y: hidden;
  }
  .navi_mobile {
    width: 100%;
  }
  .mega-menu {
    position: fixed;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    display: none;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    box-shadow: none;
  }
  .mega-menu.active {
    display: block;
    transform: translateX(-100%);
  }
  .mega-menu .container {
    padding: 0;
    height: 100vh;
    max-height: 87vh;
    overflow-y: auto;
    max-width: 100%;
  }
  .mega-menu .row {
    display: block;
  }
  .subcategory-col {
    margin-bottom: 0px;
  }
  .subcategory-col h5 {
    margin-bottom: 0;
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    position: relative;
  }
  .subcategory-col h5::after {
    content: "";
    position: absolute;
    right: 0px;
    width: 30px;
    height: 30px;
    background: url(../images/arrow_down.png) no-repeat center center;
    background-size: 16px;
  }
  .subcategory-col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  .subcategory-col ul.active {
    max-height: 500px; /* Adjust based on content */
  }
  .subcategory-col ul li a {
    text-align: left;
  }
  .back-btn {
    display: flex;
    align-items: center;
    padding: 14px 10px 12px 10px;
    background: #000;
    color: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 18px;
    display: none;
  }
  .back-btn span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    line-height: 1;
  }
  .back-btn span::before {
    content: "";
    background: url(../images/left_arrow.png) no-repeat left top;
    background-size: contain;
    width: 9px;
    height: 15px;
    margin-right: 6px;
    margin-top: -4px;
  }
  .back-btn.active {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .mega-menu {
    padding: 0px;
  }
}
/* Ensure desktop view is not affected by mobile styles */
@media (min-width: 992px) {
  .mega-menu.menuDropdown {
    width: auto;
    left: inherit;
  }
  .back-btn {
    display: none !important;
  }
}
@media (min-width: 1399px) and (max-width: 1500px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    padding: 20px;
  }
  .mainHeader header .navbarLink ul li ul li {
    margin: 0 0px !important;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    padding: 0px !important;
  }
  .mainHeader header .navbarLink ul li a {
    font-size: 18px !important;
    line-height: 20px !important;
  }
  .subcategory-col h5 {
    font-size: 16px !important;
    line-height: 18px !important;
  }
  .mainHeader header .navbarLink ul li ul li {
    padding: 6px 0px !important;
  }
  .mainHeader header .navbarLink ul li.active ul li a, .mainHeader header .navbarLink ul li:hover ul li a {
    font-size: 16px !important;
    line-height: 18px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1398px) {
  .mainHeader header .navbarLink ul li {
    margin: 0 10px !important;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    padding: 20px;
  }
  .mainHeader header .navbarLink ul li ul li {
    margin: 0 0px !important;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    padding: 0px !important;
  }
  .subcategory-col h5 {
    font-size: 14px !important;
    line-height: 16px !important;
  }
  .mainHeader header .navbarLink ul li ul li {
    padding: 4px 0px !important;
    margin-bottom: 5px !important;
  }
  .mainHeader header .navbarLink ul li > ul li a, .mainHeader header .navbarLink ul li.active ul li a, .mainHeader header .navbarLink ul li:hover ul li a {
    font-size: 16px !important;
    line-height: 16px !important;
  }
}
@media (min-width: 993px) and (max-width: 1025px) {
  .mainHeader header .navbarLink ul li ul.products-list li {
    padding: 6px 0px;
  }
  .mainHeader header .navbarLink ul li ul.products-list li a {
    display: block;
    padding: 0px;
  }
  .mainHeader header .navbarLink ul li.active ul li a, .mainHeader header .navbarLink ul li:hover ul li a {
    font-size: 16px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    padding: 15px !important;
  }
}
.sectionSubTitle {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  color: #000000;
  font-family: "Lora", serif;
  color: #636363;
  margin-bottom: 20px;
}

#accordionId .accordion-item {
  border: 0;
}
#accordionId .accordion-item .accordion-header {
  padding: 0;
  border: 0;
}
#accordionId .accordion-item .accordion-header .accordion-button {
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 0;
  background: #ccc;
  color: #000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: normal;
  word-break: break-word;
}
#accordionId .accordion-item .accordion-header .accordion-button::after {
  content: "";
  background: url(../images/minus_icon.svg) no-repeat;
  width: 30px;
  height: 4px;
}
#accordionId .accordion-item .accordion-header .accordion-button.collapsed {
  background: #fff;
  color: blue;
}
#accordionId .accordion-item .accordion-header .accordion-button.collapsed::after {
  content: "";
  background: url(../images/plus_icon.svg) no-repeat;
  width: 30px;
  height: 30px;
}
#accordionId .accordion-item .accordion-body {
  background: #efefef;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
}

.accordion-button::after {
  background-image: none;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Josefin Sans", serif;
  font-weight: 400;
  overflow-x: hidden;
}

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

p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #3C3C3C;
}
@media (max-width: 1600px) {
  p {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 1199px) {
  p {
    font-size: 14px;
    line-height: 18px;
  }
}

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

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.mrbtm15 {
  margin-bottom: 15px !important;
}

.defaultButton {
  background: #FD7D00;
  padding: 15px 25px;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2509803922);
  border: 0px;
  min-width: 230px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.defaultButton:hover, .defaultButton:focus {
  background: #125AD3;
  color: #fff;
}
@media (max-width: 1600px) {
  .defaultButton {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 16px;
    min-width: 190px;
  }
}
@media (max-width: 1199px) {
  .defaultButton {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 767px) {
  .defaultButton {
    font-size: 12px;
    line-height: 12px;
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .defaultButton {
    padding: 10px 18px;
    min-width: auto;
  }
}

.blackBtn {
  background: #000;
  padding: 15px 25px;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2509803922);
  min-width: 230px;
  transition: all 0.5s ease-in-out;
}
.blackBtn:hover, .blackBtn:focus {
  background: #125AD3;
  color: #fff;
}
@media (max-width: 1600px) {
  .blackBtn {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 16px;
    min-width: 190px;
  }
}
@media (max-width: 1199px) {
  .blackBtn {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 767px) {
  .blackBtn {
    font-size: 12px;
    line-height: 12px;
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .blackBtn {
    padding: 10px 18px;
    min-width: auto;
  }
}

.sectionTitle {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  color: #636363;
  margin-bottom: 40px;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .sectionTitle {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1600px) {
  .sectionTitle {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1199px) {
  .sectionTitle {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .sectionTitle {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .sectionTitle {
    font-size: 25px;
    line-height: 32px;
  }
}

.tagLine {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  color: #000000;
}
@media (max-width: 1600px) {
  .tagLine.caseTagLine {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .tagLine.caseTagLine {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 575px) {
  .tagLine.caseTagLine {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 450px) {
  .tagLine.caseTagLine {
    font-size: 20px;
    line-height: 30px;
  }
}

.sectionPadding {
  padding: 120px 0px;
}
.sectionPadding.paddingBtmZro {
  padding-bottom: 0;
}
.sectionPadding.paddingTpZro {
  padding-top: 0;
}
@media (max-width: 1600px) {
  .sectionPadding {
    padding: 70px 0px;
  }
}
@media (max-width: 1199px) {
  .sectionPadding {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 767px) {
  .sectionPadding {
    padding: 40px 0px;
  }
}

.fnt30 {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
}
@media (max-width: 1600px) {
  .fnt30 {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 1199px) {
  .fnt30 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .fnt30 {
    font-size: 18px;
    line-height: 18px;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1700px;
  }
}
.mainHeader {
  padding: 15px 0;
  background: #FFFFFF;
  width: 100%;
  position: relative;
  z-index: 11;
}
.mainHeader header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.mainHeader header .logo {
  flex: 0 0 15%;
  max-width: 15%;
}
.mainHeader header .logo a {
  display: block;
}
.mainHeader header .logo a img {
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mainHeader header .logo.sideLogo a img {
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mainHeader header .logo.sideLogo.logoMnuMob {
  display: none;
}
@media (max-width: 1600px) {
  .mainHeader header .logo a {
    display: block;
  }
  .mainHeader header .logo a img {
    height: 75px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .mainHeader header .logo.sideLogo a img {
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .logo a img {
    height: 65px;
  }
  .mainHeader header .logo.sideLogo a img {
    height: 45px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .logo {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mainHeader header .logo.sideLogo {
    display: none;
  }
  .mainHeader header .logo.sideLogo.logoMnuMob {
    display: block;
    margin: 30px auto 0 auto;
  }
  .mainHeader header .logo.sideLogo.logoMnuMob a {
    text-align: center;
  }
  .mainHeader header .logo.sideLogo.logoMnuMob a img {
    height: 50px;
  }
}
.mainHeader header .navbarLink {
  background: #fff !important;
}
.mainHeader header .navbarLink ul {
  align-items: center;
}
.mainHeader header .navbarLink ul li {
  margin: 0 20px;
  padding: 20px 0px;
}
.mainHeader header .navbarLink ul li ul li {
  margin: 0px;
  padding: 9px 0px;
}
.mainHeader header .navbarLink ul li ul li:first-child {
  padding-top: 4px;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .mainHeader header .navbarLink ul li {
    margin: 0 15px;
  }
}
@media (max-width: 1600px) {
  .mainHeader header .navbarLink ul li {
    margin: 0 15px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li {
    margin: 0 4px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li {
    margin: 0;
    padding: 0px;
    display: block;
    width: 100%;
    border-bottom: solid 1px #CBCBCB;
  }
  .mainHeader header .navbarLink ul li ul li {
    padding: 0px;
    font-weight: 400;
  }
  .mainHeader header .navbarLink ul li ul li:first-child {
    padding: 0px;
  }
  .mainHeader header .navbarLink ul li ul li a {
    padding: 15px 15px !important;
    text-align: left !important;
    font-size: 18px !important;
    font-weight: 400;
  }
  .mainHeader header .navbarLink ul li.active ul li a, .mainHeader header .navbarLink ul li:hover ul li a {
    color: #000;
    font-size: 18px;
    font-weight: 400;
  }
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
.mainHeader header .navbarLink ul li a {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #000;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 1600px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 14px;
    padding: 5px 7px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    color: #000;
    font-size: 25px;
    padding: 21px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .mainHeader header .navbarLink ul li a i {
    font-size: 25px;
    opacity: 0.85;
  }
}
@media (max-width: 575px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 22px;
    padding: 21px 15px;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  background: none;
  border-radius: 0;
  color: #1E5DAC;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #1E5DAC;
    background: none;
  }
}
.mainHeader header .navbarLink ul li.active ul li a, .mainHeader header .navbarLink ul li:hover ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
.mainHeader header .navbarLink ul li.active ul li.active a, .mainHeader header .navbarLink ul li.active ul li:hover a, .mainHeader header .navbarLink ul li:hover ul li.active a, .mainHeader header .navbarLink ul li:hover ul li:hover a {
  color: #1E5DAC;
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: #fff;
  padding: 30px;
  margin: 0;
  min-width: 220px;
  border-radius: 0px;
  transform: inherit !important;
  top: 100% !important;
  border: 0px;
  box-shadow: 0px 4px 25px 10px rgba(0, 0, 0, 0.1607843137);
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 0;
  margin-bottom: 5px;
  margin-right: 0px;
  padding: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #000;
  padding: 5px 10px;
  font-size: 18px;
  text-transform: capitalize;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover {
  background: #fff;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #1E5DAC !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
  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 {
    transform: rotate(0deg);
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    border-top: solid 1px #CBCBCB;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    text-align: center;
    margin: 0px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li:last-child {
    border: none;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #000;
    text-align: center;
    padding: 3px 5px;
    padding: 18px 15px !important;
  }
  .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 {
  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;
    transition: all 0.25s ease-out;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
    flex-direction: column;
  }
}
.mainHeader header .navbarLink ul li.openBottom li.submenu .dropdown-toggle {
  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: #ff9a38 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul {
    border-top: solid 1px #CBCBCB;
    flex-direction: column;
    margin: 0 auto;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    position: relative !important;
    transform: none !important;
    box-shadow: none;
    padding: 0px;
  }
}
.mainHeader header .navbarLink.active {
  right: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink {
    background: #1E5DAC;
    width: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    z-index: 9999;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    align-items: flex-start;
  }
  .mainHeader header .navbarLink .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
  .mainHeader header .navbarLink .navbarBtn {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: 15px;
    margin-bottom: 20px;
  }
  .mainHeader header .navbarLink .navbar-collapse {
    background: #fff;
  }
  .mainHeader header .navbarLink .crossLine {
    margin-right: 4px;
  }
  .mainHeader header .navbarLink .crossLine .line {
    background: #000;
  }
  .mainHeader header .navbarLink .crossLine .line.crossLine1 {
    top: 42%;
    transform: rotate(45deg);
  }
  .mainHeader header .navbarLink .crossLine .line.crossLine2 {
    opacity: 0;
  }
  .mainHeader header .navbarLink .crossLine .line.crossLine3 {
    bottom: 50%;
    transform: rotate(135deg);
  }
}
.mainHeader .flxMnu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 82%;
  max-width: 82%;
}
.mainHeader .flxMnu .sideLogo {
  text-align: right;
}
@media (max-width: 991px) {
  .mainHeader .flxMnu {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mainHeader .flxMnu .sideLogo {
    margin-right: 40px;
  }
}
@media (max-width: 1600px) {
  .mainHeader {
    padding: 10px 0;
  }
}

.homebanner .bannerBox {
  position: relative;
  overflow: hidden;
}
.homebanner .bannerBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 2%, rgba(255, 255, 255, 0) 85%);
  height: 200px;
  width: 100%;
  z-index: 2;
}
.homebanner .bannerBox::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgb(131, 218, 255);
  background: linear-gradient(90deg, rgb(131, 218, 255) 15%, rgba(255, 255, 255, 0.2) 56%);
  height: 100%;
  width: 100%;
  z-index: 1;
}
.homebanner .bannerImage img {
  width: 100%;
}
.homebanner .bannerBox {
  display: block !important;
}
.homebanner .bannerText {
  position: absolute;
  bottom: 0;
  left: 7.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  z-index: 3;
}
.homebanner .bannerText .bannerDesc {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 65px;
  line-height: 75px;
  color: #033574;
  margin-bottom: 30px;
  max-width: 710px;
}
.homebanner .bannerText .bannerLwImg {
  margin-bottom: 50px;
}
.homebanner .bannerText .bannerLwImg.mobShw {
  display: none;
}
@media (max-width: 575px) {
  .homebanner .bannerText .bannerLwImg.mobShw {
    display: block;
  }
  .homebanner .bannerText .bannerLwImg.mobHde {
    display: none;
  }
}
.homebanner .bannerText .bannerLwImg img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.homebanner .slick-dots {
  margin-top: 0px;
  width: 130px;
  height: 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 30px;
  top: 0;
  left: inherit;
  line-height: 0px;
  margin: auto;
  transform: rotate(90deg);
}
.homebanner .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0px 5px;
}
.homebanner .slick-dots li button {
  width: 20px;
  height: 20px;
  font-size: 0px;
  background-color: #CBCBCB;
  padding: 0px;
  border-radius: 100%;
}
.homebanner .slick-dots li button:before {
  display: none;
}
.homebanner .slick-dots li.slick-active button {
  background: #1E5DAC;
}
@media (max-width: 1600px) {
  .homebanner .slick-dots li {
    width: 15px;
    height: 15px;
  }
  .homebanner .slick-dots li button {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 1600px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
    max-width: 525px;
  }
  .homebanner .bannerText .bannerLwImg {
    margin-bottom: 35px;
  }
  .homebanner .bannerText .bannerLwImg img {
    height: 80px;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 30px;
    line-height: 35px;
    max-width: 420px;
  }
  .homebanner .bannerText .bannerLwImg {
    margin-bottom: 30px;
  }
  .homebanner .bannerText .bannerLwImg img {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .homebanner .slick-dots {
    display: none !important;
  }
  .homebanner .slick-dots li {
    width: 15px;
    height: 15px;
  }
  .homebanner .slick-dots li button {
    width: 15px;
    height: 15px;
  }
  .homebanner .bannerText {
    left: 14%;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 22px;
    line-height: 30px;
    max-width: 350px;
    margin-bottom: 15px;
  }
  .homebanner .bannerText .bannerLwImg {
    margin-bottom: 20px;
  }
  .homebanner .bannerText .bannerLwImg img {
    height: 55px;
  }
}
@media (max-width: 575px) {
  .homebanner .slick-dots li {
    width: 12px;
    height: 12px;
  }
  .homebanner .slick-dots li button {
    width: 12px;
    height: 12px;
  }
  .homebanner .bannerBox::before {
    transform: scale(-1);
    top: inherit;
    bottom: 0;
    height: 100%;
  }
  .homebanner .bannerBox::after {
    display: none;
  }
  .homebanner .bannerBox .bannerImage img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homebanner .bannerText {
    padding: 15px 10px;
    left: 0;
    right: 0;
    top: inherit;
    bottom: 0;
    text-align: center;
    margin: auto;
    background: linear-gradient(to top, rgb(255, 255, 255) 2%, rgba(255, 255, 255, 0) 85%);
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 22px;
    line-height: 30px;
    max-width: 400px;
    margin: 0 auto 15px;
    text-align: center;
  }
  .homebanner .bannerText .bannerLwImg img {
    height: 45px;
    margin: auto;
  }
}
@media (max-width: 450px) {
  .homebanner .slick-dots {
    bottom: 10px;
    right: 0;
    top: inherit;
    left: 0;
    transform: rotate(0deg);
  }
  .homebanner .bannerImage img {
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.homebanner .slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.innerbanner {
  position: relative;
  background: linear-gradient(83.87deg, #83DAFF 3.73%, rgba(255, 255, 255, 0) 52.29%);
}
.innerbanner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  top: 0;
}
.innerbanner.darkBlueInnerbanner::before {
  background: linear-gradient(83.87deg, #83DAFF 3.73%, rgba(255, 255, 255, 0) 52.29%);
}
.innerbanner .innerImg {
  width: 100%;
  height: 400px;
}
.innerbanner .innerBlock {
  position: absolute;
  bottom: 30px;
  width: 100%;
}
.innerbanner .innerBlock .taglineInnerbanner {
  font-size: 40px;
  line-height: 50px;
  color: #033574;
  width: 100%;
  font-family: "Lora", serif;
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 30px;
}
.innerbanner .innerBlock .taglineInnerbanner.mrbtm10 {
  margin-bottom: 10px;
}
.innerbanner .innerBlock .subTaglineBanner {
  font-size: 30px;
  line-height: 30px;
  color: #033574;
  font-family: "Lora", serif;
}
.innerbanner .innerBlock .innerFlex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.innerbanner .innerBlock .innerFlex .rightInnerBanner {
  max-width: 250px;
}
.innerbanner.stoneBanner {
  background: none;
}
.innerbanner.stoneBanner::before {
  display: none;
}
.innerbanner.stoneBanner .mbShw {
  display: none;
}
.innerbanner.stoneBanner .innerBlock {
  background-image: url("../images/stone_banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  z-index: -1;
  width: 100%;
  position: relative;
  z-index: 1;
}
.innerbanner.stoneBanner .innerBlock::before {
  content: "";
  position: absolute;
  z-index: 0;
  background: linear-gradient(180deg, #FFFFFF 3%, rgba(255, 255, 255, 0) 30%);
  height: 100%;
  bottom: inherit;
  top: 0;
  left: 0;
  right: 0;
}
.innerbanner.stoneBanner .innerBlock .innerFlex {
  position: relative;
  z-index: 1;
  padding: 148px 0;
}
.innerbanner.stoneBanner .innerBlock .innerFlex::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 0;
  bottom: 0;
  background: linear-gradient(83.87deg, #83DAFF 3.73%, rgba(255, 255, 255, 0) 52.29%);
  background-position: left;
  height: 100%;
  width: 50%;
  z-index: -1;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerSub {
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 10px;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerSub span {
  display: block;
  text-transform: uppercase;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerHead {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  color: #033574;
  margin-bottom: 25px;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerHead span {
  color: #FD7D00;
  display: block;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .nmPara {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #3C3C3C;
  max-width: 40%;
  margin-bottom: 0;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns {
  margin: 50px 0;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns .defaultButton {
  margin-right: 30px;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl {
  display: flex;
  flex-wrap: wrap;
  max-width: 55%;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li {
  flex: 0 0 30%;
  max-width: 30%;
  margin-right: 46px;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:last-child, .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:first-child {
  margin-right: 0;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .num {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: #033574;
  margin-bottom: 5px;
}
.innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .numTxt {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: #3C3C3C;
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .innerbanner.stoneBanner .innerBlock .innerFlex {
    padding: 120px 0;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex::after {
    left: -11%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerSub {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerHead {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .nmPara {
    font-size: 15px;
    line-height: 20px;
    max-width: 46%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns {
    margin: 30px 0;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns .defaultButton {
    margin-right: 25px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl {
    max-width: 55%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li {
    flex: 0 0 27%;
    max-width: 27%;
    margin-right: 25px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:nth-child(2) {
    flex: 0 0 37%;
    max-width: 37%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:first-child {
    margin-right: 30px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .num {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .numTxt {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 1199px) {
  .innerbanner.stoneBanner .innerBlock .innerFlex {
    padding: 90px 0;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex::after {
    left: -15%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerSub {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerHead {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 18px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .nmPara {
    font-size: 14px;
    line-height: 18px;
    max-width: 45%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns {
    margin: 25px 0;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns .defaultButton {
    margin-right: 22px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl {
    max-width: 55%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li {
    margin-right: 23px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:first-child {
    margin-right: 23px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .num {
    font-size: 26px;
    line-height: 26px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .numTxt {
    font-size: 12px;
    line-height: 12px;
  }
}
@media (max-width: 991px) {
  .innerbanner.stoneBanner .innerBlock .innerFlex {
    padding: 80px 0;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex::after {
    left: -22%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerSub {
    font-size: 18px;
    line-height: 18px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerHead {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .nmPara {
    font-size: 12px;
    line-height: 16px;
    max-width: 60%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns {
    margin: 22px 0;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns .defaultButton {
    margin-right: 20px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl {
    max-width: 60%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li {
    margin-right: 15px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:first-child {
    margin-right: 10px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .num {
    font-size: 21px;
    line-height: 21px;
  }
}
@media (max-width: 767px) {
  .innerbanner.stoneBanner .mbShw {
    display: block;
  }
  .innerbanner.stoneBanner::before {
    height: 20%;
    display: block;
  }
  .innerbanner.stoneBanner .innerBlock {
    background: #fff;
  }
  .innerbanner.stoneBanner .innerBlock::before {
    display: none;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex {
    padding: 60px 0 40px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex::after {
    display: none;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerSub {
    font-size: 16px;
    line-height: 16px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerHead {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 12px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .nmPara {
    font-size: 12px;
    line-height: 16px;
    max-width: 100%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns {
    margin: 20px 0 25px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns .defaultButton {
    margin-right: 18px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl {
    max-width: 100%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li {
    margin-right: 15px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:first-child {
    margin-right: 15px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .num {
    font-size: 21px;
    line-height: 21px;
  }
}
@media (max-width: 575px) {
  .innerbanner.stoneBanner::before {
    height: 15%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex {
    padding: 50px 0 10px;
    text-align: center;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns .defaultButton {
    margin: 0 auto 15px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerBtns .blackBtn {
    margin: 0 auto;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl {
    max-width: 100%;
    justify-content: center;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li {
    margin-right: 0;
    margin-bottom: 22px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:first-child {
    margin-right: 0;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li:nth-child(2) {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 22px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .num {
    font-size: 25px;
    line-height: 25px;
  }
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerUl li .prcntgBx .numTxt {
    font-size: 15px;
    line-height: 15px;
  }
}
@media (max-width: 450px) {
  .innerbanner.stoneBanner .innerBlock .innerFlex .bannerHead {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .innerbanner .innerBlock .taglineInnerbanner {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 1600px) {
  .innerbanner .innerImg {
    width: 100%;
    height: 300px;
  }
  .innerbanner .innerBlock .taglineInnerbanner {
    font-size: 32px;
    line-height: 38px;
    max-width: 700px;
  }
  .innerbanner .innerBlock .subTaglineBanner {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 1199px) {
  .innerbanner .innerImg {
    height: 300px;
  }
  .innerbanner .innerBlock .taglineInnerbanner {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .innerbanner .innerImg {
    height: 300px;
  }
  .innerbanner .innerBlock .innerFlex {
    flex-direction: column-reverse;
  }
  .innerbanner .innerBlock .innerFlex .rightInnerBanner {
    margin-bottom: 15px;
  }
  .innerbanner .innerBlock .taglineInnerbanner {
    font-size: 20px;
    line-height: 22px;
  }
}

.pageTitleSection p {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0px;
}
.pageTitleSection .sectionTitle, .pageTitleSection p {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1600px) {
  .pageTitleSection .sectionTitle, .pageTitleSection p {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1199px) {
  .pageTitleSection p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .pageTitleSection p {
    font-size: 16px;
  }
}

.blueBg {
  background: #1E5DAC;
  padding: 100px 80px;
  border-radius: 30px;
  color: #fff;
}
.blueBg .sectionTitle {
  margin-bottom: 80px;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .blueBg {
    padding: 60px 40px;
  }
}
@media (max-width: 1600px) {
  .blueBg {
    padding: 50px 40px;
  }
  .blueBg .sectionTitle {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .blueBg {
    padding: 40px 30px;
  }
  .blueBg .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blueBg {
    padding: 25px 20px;
  }
  .blueBg .sectionTitle {
    margin-bottom: 20px;
  }
}

.whiteText {
  color: #fff;
}

.listImage img {
  width: 100%;
}

.imageRadius {
  border-radius: 30px;
  overflow: hidden;
}

.marginTop70 {
  margin-top: 70px;
}
@media (max-width: 1600px) {
  .marginTop70 {
    margin-top: 40px;
  }
}
@media (max-width: 1199px) {
  .marginTop70 {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .marginTop70 {
    margin-top: 10px;
  }
}

.businessFace .listUi {
  display: flex;
  flex-wrap: wrap;
}
.businessFace .listUi li {
  flex: 0 0 48%;
  max-width: 48%;
  margin-bottom: 40px;
  padding: 0px 40px 0px 40px;
  position: relative;
}
.businessFace .listUi li span {
  position: absolute;
  left: 0;
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
}
.businessFace .listUi li p {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  margin-bottom: 0px;
}
.businessFace .listUi li .listTitle {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .businessFace .listUi li {
    margin-bottom: 30px;
  }
  .businessFace .listUi li .listTitle {
    font-size: 22px;
    line-height: 28px;
  }
  .businessFace .listUi li p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1600px) {
  .businessFace .listUi li {
    margin-bottom: 20px;
    padding: 0px 20px 20px 40px;
  }
  .businessFace .listUi li span {
    font-size: 20px;
    top: -5px;
  }
  .businessFace .listUi li .listTitle {
    font-size: 20px;
    line-height: 24px;
  }
  .businessFace .listUi li p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1199px) {
  .businessFace .listUi li {
    margin-bottom: 20px;
    padding: 0px 20px 0px 40px;
  }
  .businessFace .listUi li span {
    font-size: 20px;
    top: -7px;
  }
  .businessFace .listUi li .listTitle {
    font-size: 20px;
    line-height: 25px;
  }
  .businessFace .listUi li p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .businessFace .listUi li {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 0px 0px 0px 40px;
  }
  .businessFace .listUi li span {
    font-size: 20px;
    top: -7px;
  }
  .businessFace .listUi li .listTitle {
    font-size: 20px;
    line-height: 25px;
  }
  .businessFace .listUi li p {
    font-size: 18px;
    line-height: 22px;
  }
}

.transformSection {
  padding-top: 70px;
}
.transformSection .transformList li:nth-child(odd) .transformImage img {
  border-radius: 30px 0px 0px 30px;
  width: 100%;
}
.transformSection .transformList li:nth-child(even) .transformImage img {
  border-radius: 0px 30px 30px 0px;
  width: 100%;
}
.transformSection .transformList .flexRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.transformSection .transformList .flexRow.rowReverse {
  flex-direction: row-reverse;
}
.transformSection .transformList .flexRow .transformImage {
  flex: 0 0 50%;
  max-width: 50%;
}
.transformSection .transformList .flexRow .transformImage img {
  width: 100%;
}
.transformSection .transformList .flexRow .transformContent {
  flex: 0 0 50%;
  max-width: 50%;
}
.transformSection .transformList .flexRow .transformContent .paddingTransfrom {
  padding: 50px;
  text-align: left;
}
.transformSection .transformList .flexRow .transformContent .paddingTransfrom .tranfromTitle {
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 30px;
}
.transformSection .transformList .flexRow .transformContent .paddingTransfrom p {
  font-size: 20px;
  line-height: 26px;
}
@media (max-width: 1600px) {
  .transformSection {
    padding-top: 40px;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom {
    padding: 35px;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom .tranfromTitle {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1199px) {
  .transformSection {
    padding-top: 30px;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom {
    padding: 25px;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom .tranfromTitle {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .transformSection {
    padding-top: 35px;
  }
  .transformSection .transformList .flexRow .transformImage {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .transformSection .transformList .flexRow .transformImage img {
    border-radius: 30px !important;
  }
  .transformSection .transformList .flexRow .transformContent {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom {
    padding: 25px;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom .tranfromTitle {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .transformSection .transformList .flexRow .transformContent .paddingTransfrom p {
    font-size: 18px;
    line-height: 24px;
  }
}

.calltoAction p {
  font-size: 20px;
  line-height: 26px;
}
.calltoAction li {
  margin: 0px 15px;
}
.calltoAction .callBtn {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1600px) {
  .calltoAction p {
    font-size: 18px;
    line-height: 24px;
  }
  .calltoAction .callBtn {
    margin-top: 35px;
  }
}
@media (max-width: 1199px) {
  .calltoAction p {
    font-size: 18px;
    line-height: 24px;
  }
  .calltoAction .callBtn {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .calltoAction p {
    font-size: 16px;
    line-height: 22px;
  }
  .calltoAction li {
    margin-bottom: 15px;
  }
  .calltoAction .callBtn {
    margin-top: 25px;
  }
}

.bullets {
  padding-left: 0;
}
.bullets li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}
.bullets li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background-color: #1E5DAC;
}
.bullets.orngBlts li::before {
  background-color: #FD7D00;
  top: 5px;
}
@media (max-width: 1600px) {
  .bullets li {
    padding-left: 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .bullets li::before {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .bullets li {
    font-size: 18px;
    line-height: 24px;
  }
}

.faq {
  background: #FFF4EB;
}
.faq .alignCenterRow {
  align-items: center;
}
.faq #accordionId .accordion-item {
  background: transparent;
  border-top: 2px solid #DFDFDF;
}
.faq #accordionId .accordion-item .accordion-header .accordion-button {
  font-size: 40px;
  color: #000;
  line-height: 40px;
  background: transparent;
  padding: 25px 0px;
  padding-left: 50px;
  position: relative;
}
.faq #accordionId .accordion-item .accordion-header .accordion-button .iconCheck {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  margin-top: -5px;
}
.faq #accordionId .accordion-item .accordion-header .accordion-button .iconCheck img {
  margin-right: 10px;
  display: inline-block;
}
.faq #accordionId .accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.faq #accordionId .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
  border-bottom: 2px solid #DFDFDF;
}
.faq #accordionId .accordion-item .accordion-header .accordion-button.collapsed {
  color: #000 !important;
  background: transparent !important;
}
.faq #accordionId .accordion-item .accordion-body {
  background: transparent;
  padding: 20px 0px 10px;
}
.faq #accordionId .accordion-item .accordion-body .subTitle {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}
.faq #accordionId .accordion-item .accordion-body .mb-3 {
  margin-bottom: 30px !important;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .faq #accordionId .accordion-item .accordion-body .subTitle {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 1600px) {
  .faq #accordionId .accordion-item .accordion-body p {
    font-size: 18px;
  }
  .faq #accordionId .accordion-item .accordion-body .subTitle {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .faq #accordionId .accordion-item .accordion-header .accordion-button {
    font-size: 32px;
    line-height: 36px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button .iconCheck img {
    width: 30px;
    height: 20px;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-body .subTitle {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 1600px) {
  .faq #accordionId .accordion-item:first-of-type {
    border-radius: 0px;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button {
    font-size: 25px;
    line-height: 32px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 20px;
    padding-left: 45px;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button .iconCheck img {
    width: 30px;
    height: 20px;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button.collapsed::after {
    width: 20px;
    height: 20px;
    background-size: contain;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button::after {
    width: 20px;
    height: 4px;
    background-size: contain;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-body .subTitle {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .faq .sectionTitle {
    text-align: center;
  }
  .faq .defaultButton {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 30px;
    display: block;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button {
    font-size: 22px;
    line-height: 26px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 35px;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button .iconCheck img {
    width: 24px;
    height: 20px;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button.collapsed::after {
    width: 20px;
    height: 20px;
    background-size: contain;
  }
  .faq #accordionId .accordion-item .accordion-header .accordion-button::after {
    width: 20px;
    height: 4px;
    background-size: contain;
  }
}

.inquiryForm {
  background: #f1f1f1;
}
.inquiryForm .form-group {
  margin-bottom: 25px;
}
.inquiryForm .defaultButton a {
  color: #fff;
}

.socialMda {
  display: flex;
  flex-wrap: wrap;
}
.socialMda li {
  margin: 0 30px 0 0;
  cursor: pointer;
}
.socialMda li img {
  transform: scale(1);
  transition: 0.4s ease-in-out all;
}
.socialMda li:hover img, .socialMda li.active img {
  transform: scale(1.1);
}
@media (max-width: 1600px) {
  .socialMda li {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 767px) {
  .socialMda li {
    margin: 0 14px 0 0;
  }
}

.hmAbt .hmAbtTxt {
  text-align: center;
}
.hmAbt .hmAbtTxt p {
  font-weight: 400;
  font-size: 80px;
  line-height: 100px;
  color: #033574;
  margin-bottom: 50px;
  font-family: "Lora", serif;
}
.hmAbt .hmAbtTxt p span {
  color: #1E5DAC;
}
@media (max-width: 1600px) {
  .hmAbt .hmAbtTxt p {
    font-size: 45px;
    line-height: 55px;
    max-width: 860px;
    margin: 0 auto 30px;
  }
}
@media (max-width: 1199px) {
  .hmAbt .hmAbtTxt p {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .hmAbt .hmAbtTxt p {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hmAbt .hmAbtTxt p {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 450px) {
  .hmAbt .hmAbtTxt p {
    font-size: 25px;
    line-height: 35px;
  }
}

.hmSolution .sectionTitle {
  text-align: center;
  margin-bottom: 40px;
}
.hmSolution .solUl {
  display: flex;
  flex-wrap: wrap;
}
.hmSolution .solUl li {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 10px;
}
.hmSolution .solUl li .solBx {
  background: #F0F0F0;
  border-radius: 20px;
  padding: 15px;
  display: block;
}
.hmSolution .solUl li .solBx img {
  width: 100%;
  border-radius: 20px;
}
.hmSolution .solUl li .solBx p {
  margin-bottom: 0;
  padding-top: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 23px;
  line-height: 33px;
}
.hmSolution.indusSolution .solUl li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 15px;
}
.hmSolution.indusSolution .solUl li .solBx {
  padding: 30px;
  height: 100%;
}
.hmSolution.indusSolution .solUl li .solBx p {
  color: #000;
  margin-bottom: 0;
  padding-top: 27px;
  text-align: center;
  font-weight: 500;
  font-size: 25px;
  line-height: 36px;
}
@media (max-width: 1600px) {
  .hmSolution .sectionTitle {
    margin-bottom: 25px;
  }
  .hmSolution .solUl li .solBx {
    padding: 10px;
  }
  .hmSolution .solUl li .solBx p {
    padding-top: 10px;
    font-size: 16px;
    line-height: 26px;
  }
  .hmSolution.indusSolution .solUl li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 12px;
  }
  .hmSolution.indusSolution .solUl li .solBx {
    padding: 20px;
  }
  .hmSolution.indusSolution .solUl li .solBx p {
    padding-top: 20px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .hmSolution .solUl li .solBx p {
    font-size: 14px;
    line-height: 24px;
  }
  .hmSolution.indusSolution .solUl li {
    padding: 0 10px;
  }
  .hmSolution.indusSolution .solUl li .solBx {
    padding: 15px;
  }
  .hmSolution.indusSolution .solUl li .solBx p {
    padding-top: 18px;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .hmSolution .solUl {
    justify-content: center;
  }
  .hmSolution .solUl li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 20px;
  }
  .hmSolution .solUl li:nth-child(4), .hmSolution .solUl li:last-child {
    margin-bottom: 0;
  }
  .hmSolution.indusSolution .solUl li {
    padding: 0 8px;
    margin-bottom: 0;
  }
  .hmSolution.indusSolution .solUl li .solBx {
    padding: 12px;
  }
  .hmSolution.indusSolution .solUl li .solBx p {
    padding-top: 15px;
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .hmSolution .sectionTitle {
    margin-bottom: 15px;
  }
  .hmSolution .solUl li .solBx p {
    font-size: 12px;
    line-height: 20px;
  }
  .hmSolution.indusSolution {
    padding-top: 0;
  }
  .hmSolution.indusSolution .solUl li {
    padding: 0 8px;
    margin-bottom: 25px;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .hmSolution.indusSolution .solUl li {
    margin: 0 auto 20px;
    flex: 0 0 100%;
    max-width: 350px;
  }
}
@media (max-width: 450px) {
  .hmSolution .solUl li {
    flex: 0 0 100%;
    max-width: 260px;
    margin: 0 auto 20px;
  }
  .hmSolution .solUl li .solBx p {
    font-size: 14px;
    line-height: 22px;
  }
  .hmSolution .solUl li:nth-child(4) {
    margin-bottom: 20px;
  }
}

.hmServices {
  margin-bottom: -400px;
}
.hmServices .serviceBxDt {
  background: #1E5DAC;
  padding: 100px 50px;
  border-radius: 30px;
  position: relative;
}
.hmServices .serviceBxDt .sectionTitle {
  color: #fff;
}
.hmServices .serviceBxDt .serviceFlx {
  display: flex;
  flex-wrap: wrap;
}
.hmServices .serviceBxDt .serviceFlx .serviceFlxLft {
  flex: 0 0 70%;
  max-width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx {
  flex: 0 0 49%;
  max-width: 49%;
  padding: 40px 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  background-color: #3876C5;
  border-radius: 20px;
  margin-bottom: 30px;
}
.hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
.hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx.wdh100 {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0;
}
.hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx .serviceFlxLftBxTxt .fnt30 {
  margin-bottom: 20px;
}
.hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx .serviceFlxLftBxTxt p {
  color: #fff;
  margin-bottom: 0;
}
.hmServices .serviceBxDt .serviceFlx .serviceFlxRgt {
  flex: 0 0 30%;
  max-width: 30%;
  padding-left: 30px;
}
.hmServices .serviceBxDt .serviceFlx .serviceFlxRgt img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 1600px) {
  .hmServices .serviceBxDt {
    padding: 80px 30px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx img {
    height: 40px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx .serviceFlxLftBxTxt .fnt30 {
    margin-bottom: 10px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxRgt {
    padding-left: 15px;
  }
}
@media (max-width: 1199px) {
  .hmServices {
    margin-bottom: -350px;
  }
  .hmServices .serviceBxDt {
    padding: 50px 25px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx {
    padding: 15px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx img {
    height: 30px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx .serviceFlxLftBxTxt .fnt30 {
    margin-bottom: 10px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxRgt {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .hmServices .serviceBxDt {
    padding: 40px 25px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxRgt {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    display: none;
  }
}
@media (max-width: 767px) {
  .hmServices .serviceBxDt {
    padding: 25px 20px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .hmServices .serviceBxDt .sectionTitle {
    text-align: center;
  }
  .hmServices .serviceBxDt {
    padding: 20px;
  }
  .hmServices .serviceBxDt .serviceFlx .serviceFlxLft .serviceFlxLftBx {
    text-align: center;
  }
}

.hmWhyChsUs {
  padding-top: 500px;
  background: #FFF4EB;
}
.hmWhyChsUs .hmWhyChsUsImg {
  text-align: center;
}
.hmWhyChsUs .hmWhyChsUsImg img {
  width: 100%;
}
@media (max-width: 1199px) {
  .hmWhyChsUs {
    padding-top: 400px;
  }
}

.hmClientSec .sectionTitle {
  text-align: center;
}
.hmClientSec .row {
  align-items: center;
}
.hmClientSec .slick-list .slick-slide {
  text-align: center;
}
.hmClientSec .slick-dots {
  margin-top: 0px;
  width: auto;
  height: 20px;
  text-align: center;
  position: absolute;
  bottom: -60px;
  right: 0;
  left: 0;
  line-height: 0px;
  margin: auto;
}
.hmClientSec .slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0px 5px;
}
.hmClientSec .slick-dots li button {
  width: 15px;
  height: 15px;
  font-size: 0px;
  background-color: #CBCBCB;
  padding: 0px;
  border-radius: 100%;
}
.hmClientSec .slick-dots li button:before {
  display: none;
}
.hmClientSec .slick-dots li.slick-active button {
  background: #1E5DAC;
}
.hmClientSec .clientSlider li.clientBox {
  padding: 5px 20px;
  margin: 0;
  text-align: center;
  max-width: 170px;
  transition: 0.4s ease-in-out all;
  min-height: 90px;
}
.hmClientSec .clientSlider li.clientBox img {
  margin: 0 auto;
  text-align: center;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1199px) {
  .hmClientSec .slick-dots {
    bottom: -50px;
  }
  .hmClientSec .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .hmClientSec .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  .hmClientSec .clientSlider li.clientBox {
    max-width: 160px;
    min-height: 80px;
  }
  .hmClientSec .clientSlider li.clientBox img {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .hmClientSec .sectionTitle {
    text-align: center;
  }
  .hmClientSec .slick-dots {
    bottom: -40px;
  }
}
@media (max-width: 575px) {
  .hmClientSec {
    padding-left: 0;
  }
  .hmClientSec .clientSlider li.clientBox {
    max-width: 230px;
  }
}

.hmIndustries .productMainBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-direction: row-reverse;
}
.hmIndustries .productMainBox .leftProductBox {
  flex: 0 0 60%;
  max-width: 60%;
}
.hmIndustries .productMainBox .leftProductBox .productContent {
  display: none;
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.hmIndustries .productMainBox .leftProductBox .productContent.active {
  display: block;
}
.hmIndustries .productMainBox .leftProductBox .productContent img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.hmIndustries .productMainBox .rightProductBox {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  max-height: 550px;
  overflow-y: scroll;
  position: relative;
}
.hmIndustries .productMainBox .rightProductBox::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.hmIndustries .productMainBox .rightProductBox::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
.hmIndustries .productMainBox .rightProductBox::-webkit-scrollbar-thumb {
  background-color: #FD7D00;
  border: 2px solid #FD7D00;
}
.hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText {
  display: flex;
  border-bottom: 1px solid #1A5094;
  background: #1E5DAC;
  padding: 30px 0;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText {
  position: relative;
  padding-left: 40px;
}
.hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: orange;
  height: 4px;
  width: 30px;
  margin: auto;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText .fnt30, .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText a {
  margin-bottom: 0;
  color: #FFF4EB;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}
.hmIndustries .productMainBox .rightProductBox .productMainTitle.active .sideText::before, .hmIndustries .productMainBox .rightProductBox .productMainTitle:hover .sideText::before {
  opacity: 1;
}
.hmIndustries .productMainBox .rightProductBox .productMainTitle.active .sideText .fnt30, .hmIndustries .productMainBox .rightProductBox .productMainTitle:hover .sideText .fnt30 {
  font-weight: 700;
}
@media (max-width: 1600px) {
  .hmIndustries .productMainBox .rightProductBox {
    padding-left: 100px;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText {
    padding: 20px 0;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText {
    padding-left: 25px;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText::before {
    width: 15px;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText .fnt30 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .hmIndustries .productMainBox .rightProductBox {
    max-height: 470px;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText .fnt30 {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .hmIndustries .productMainBox {
    flex-direction: column-reverse;
  }
  .hmIndustries .productMainBox .leftProductBox {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmIndustries .productMainBox .rightProductBox {
    max-height: 375px;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto 0 0;
    padding-left: 0;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText {
    padding: 15px 25px 15px 0;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText .fnt30 {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 575px) {
  .hmIndustries .productMainBox .rightProductBox {
    max-height: 310px;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText {
    padding: 12px 25px 12px 0;
  }
  .hmIndustries .productMainBox .rightProductBox .productMainTitle .sliderText .sideText .fnt30 {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 450px) {
  .hmIndustries .productMainBox .leftProductBox .productContent {
    position: relative;
  }
  .hmIndustries .productMainBox .leftProductBox .productContent img {
    height: 350px;
  }
  .hmIndustries .productMainBox .rightProductBox {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hmIndustries .sectionTitle {
    text-align: center;
  }
}

.hmAsocte {
  position: relative;
}
.hmAsocte::after {
  content: "";
  background: #fff4eb;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.hmAsocte .container {
  display: flex;
}
.hmAsocte .container .hmAsocteFLx {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
}
.hmAsocte .container .ourChannelPartners {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
}
.hmAsocte .container .ourChannelPartners img {
  max-width: 180px;
  padding-top: 10px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 1600px) {
  .hmAsocte .container .ourChannelPartners img {
    max-width: 160px;
  }
}
.hmAsocte .hmAsocteFLx .hmAsocteFLxRgt .hmAsocteBx {
  text-align: center;
}
.hmAsocte .hmAsocteFLx .hmAsocteFLxRgt .hmAsocteBx img {
  margin: 0 auto;
  height: 100px;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 15px;
}
@media (max-width: 1600px) {
  .hmAsocte .hmAsocteFLx .hmAsocteFLxRgt .hmAsocteBx img {
    height: 75px;
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .hmAsocte .container {
    max-width: 100% !important;
  }
  .hmAsocte .hmAsocteFLx .hmAsocteFLxRgt .hmAsocteBx {
    padding: 10px 15px;
  }
}
@media (max-width: 991px) {
  .hmAsocte .hmAsocteFLx .hmAsocteFLxLft {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .hmAsocte .hmAsocteFLx .hmAsocteFLxLft .sectionTitle {
    max-width: 100%;
    text-align: center;
  }
  .hmAsocte .hmAsocteFLx .hmAsocteFLxRgt {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmAsocte .hmAsocteFLx .hmAsocteFLxRgt .hmAsocteBx {
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .hmAsocte::after {
    display: none;
  }
  .hmAsocte .container {
    flex-direction: column;
  }
  .hmAsocte .container .hmAsocteFLx {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmAsocte .container .ourChannelPartners {
    flex: 0 0 100%;
    max-width: 100%;
    background: #fff4eb;
    padding: 30px;
  }
  .hmAsocte .container .ourChannelPartners img {
    max-width: 180px;
  }
  .hmAsocte .hmAsocteFLx .hmAsocteFLxRgt .hmAsocteBx {
    padding: 10px 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .hmAsocte .hmAsocteFLx .hmAsocteFLxRgt {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmAsocte .hmAsocteFLx .hmAsocteFLxRgt .hmAsocteBx:last-child {
    margin-bottom: 0;
  }
  .hmAsocte .container .ourChannelPartners img {
    max-width: 100%;
    padding: 0 10px;
  }
}

footer {
  background: #033574;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  background: #fff;
  height: 1px;
  width: 100%;
}
footer .ftrFlx {
  display: flex;
  flex-wrap: wrap;
  padding: 70px 0;
}
footer .ftrFlx .flexOne {
  flex: 0 0 25%;
  max-width: 25%;
}
footer .ftrFlx .flexOne .ftrLogo {
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .ftrFlx .flexOne .socialMda {
  margin-top: 50px;
}
footer .ftrFlx .flexTwo {
  flex: 0 0 20%;
  max-width: 20%;
}
footer .ftrFlx .flexTwo .ftrTxt {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 25px;
}
footer .ftrFlx .flexTwo ul li {
  margin-bottom: 15px;
}
footer .ftrFlx .flexTwo ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  transition: 0.5s ease-in-out all;
}
footer .ftrFlx .flexTwo ul li:hover a, footer .ftrFlx .flexTwo ul li.active a {
  color: #FD7D00;
}
footer .ftrFlx .flexThree {
  flex: 0 0 35%;
  max-width: 35%;
}
footer .ftrFlx .flexThree ul {
  display: flex;
  flex-wrap: wrap;
}
footer .ftrFlx .flexThree ul li {
  flex: 0 0 50%;
  max-width: 50%;
}
footer .ftrFlx .flexFour {
  flex: 0 0 20%;
  max-width: 20%;
  padding-top: 40px;
}
footer .ftrFlx .flexFour ul .mail {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}
footer .ftrFlx .flexFour ul .mail:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background: url("../images/mail.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  width: 20px;
}
footer .ftrFlx .flexFour ul .mail span img {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .ftrFlx .flexFour ul .mail.call:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/call.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
}
footer .ftrFlx .flexFour ul .mail.call a {
  display: block;
  margin-bottom: 30px;
}
footer .ftrFlx .flexFour ul .mail.call span img {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .ftrFlx .flexFour ul .mail a {
  font-weight: 400;
  font-size: 25px;
  line-height: 24px;
  color: #fff;
  transition: 0.5s ease-in-out all;
}
footer .ftrFlx .flexFour ul .mail a:hover {
  color: #FD7D00;
}
footer .ftrLast {
  display: flex;
  flex-wrap: wrap;
  padding: 17px 0;
  align-items: center;
}
footer .ftrLast .ftrLastFlx {
  flex: 0 0 50%;
  max-width: 50%;
}
footer .ftrLast .ftrLastFlx.rgtTxt {
  text-align: right;
}
footer .ftrLast .ftrLastFlx p {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  footer .ftrFlx {
    padding: 50px 0;
  }
  footer .ftrFlx .flexOne .ftrLogo {
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .ftrFlx .flexOne .socialMda {
    margin-top: 30px;
  }
  footer .ftrFlx .flexTwo .ftrTxt {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  footer .ftrFlx .flexTwo ul li {
    margin-bottom: 10px;
  }
  footer .ftrFlx .flexTwo ul li a {
    font-size: 14px;
    line-height: 14px;
  }
  footer .ftrFlx .flexFour ul .mail {
    padding-left: 30px;
    margin-bottom: 30px;
  }
  footer .ftrFlx .flexFour ul .mail.call a {
    margin-bottom: 20px;
  }
  footer .ftrFlx .flexFour ul .mail a {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  footer::before {
    bottom: 53px;
  }
  footer .ftrFlx {
    padding: 40px 0 30px;
  }
  footer .ftrFlx .flexOne .ftrLogo {
    height: 90px;
  }
  footer .ftrFlx .flexOne .socialMda {
    margin-top: 25px;
  }
  footer .ftrFlx .flexTwo .ftrTxt {
    font-size: 22px;
    line-height: 22px;
  }
  footer .ftrFlx .flexTwo ul li a {
    font-size: 12px;
    line-height: 12px;
  }
  footer .ftrFlx .flexFour ul .mail {
    margin-bottom: 25px;
  }
  footer .ftrFlx .flexFour ul .mail a {
    font-size: 16px;
    line-height: 16px;
  }
  footer .ftrLast {
    padding: 12px 0;
  }
  footer .ftrLast .ftrLastFlx p {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 991px) {
  footer .ftrFlx {
    padding: 30px 0;
  }
  footer .ftrFlx .flexOne {
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .ftrFlx .flexOne .socialMda {
    margin-top: 30px;
  }
  footer .ftrFlx .flexTwo {
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .ftrFlx .flexTwo .ftrTxt {
    font-size: 22px;
    line-height: 22px;
  }
  footer .ftrFlx .flexTwo ul {
    display: flex;
    flex-wrap: wrap;
  }
  footer .ftrFlx .flexTwo ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .ftrFlx .flexTwo ul li a {
    font-size: 14px;
    line-height: 14px;
  }
  footer .ftrFlx .flexThree {
    flex: 0 0 70%;
    max-width: 70%;
    padding-top: 30px;
  }
  footer .ftrFlx .flexThree ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .ftrFlx .flexFour {
    flex: 0 0 30%;
    max-width: 30%;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  footer::before {
    bottom: 50px;
  }
  footer .ftrFlx {
    padding: 20px 0 15px;
  }
  footer .ftrFlx .flexOne .socialMda {
    margin-top: 20px;
  }
  footer .ftrFlx .flexTwo {
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .ftrFlx .flexTwo .ftrTxt {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  footer .ftrFlx .flexTwo ul {
    display: flex;
    flex-wrap: wrap;
  }
  footer .ftrFlx .flexTwo ul li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 5px;
  }
  footer .ftrFlx .flexTwo ul li a {
    font-size: 14px;
    line-height: 14px;
  }
  footer .ftrFlx .flexThree {
    flex: 0 0 70%;
    max-width: 70%;
    padding-top: 30px;
  }
  footer .ftrFlx .flexThree ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .ftrFlx .flexFour {
    flex: 0 0 30%;
    max-width: 30%;
    padding-top: 30px;
  }
  footer .ftrFlx .flexFour ul .mail {
    padding-left: 25px;
    margin-bottom: 20px;
  }
  footer .ftrFlx .flexFour ul .mail:before {
    height: 10px;
    width: 15px;
  }
  footer .ftrFlx .flexFour ul .mail span img {
    height: 15px;
  }
  footer .ftrFlx .flexFour ul .mail.call:before {
    height: 15px;
    width: 15px;
  }
  footer .ftrFlx .flexFour ul .mail.call a {
    margin-bottom: 20px;
  }
  footer .ftrFlx .flexFour ul .mail.call span img {
    height: 10px;
  }
  footer .ftrFlx .flexFour ul .mail a {
    font-size: 12px;
    line-height: 14px;
  }
  footer .ftrLast .ftrLastFlx p {
    font-size: 12px;
    line-height: 12px;
  }
}
@media (max-width: 450px) {
  footer::before {
    bottom: 80px;
  }
  footer .ftrFlx {
    text-align: center;
  }
  footer .ftrFlx .flexOne {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  footer .ftrFlx .flexOne .socialMda {
    justify-content: center;
  }
  footer .ftrFlx .flexTwo {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .ftrFlx .flexTwo ul li {
    text-align: center;
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .ftrFlx .flexThree {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 20px;
  }
  footer .ftrFlx .flexFour {
    flex: 0 0 100%;
    max-width: 160px;
    padding-top: 20px;
    margin: 0 auto;
  }
  footer .ftrFlx .flexFour ul .mail::before {
    height: 13px;
    width: 18px;
  }
  footer .ftrLast .ftrLastFlx {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .ftrLast .ftrLastFlx p {
    margin-bottom: 10px;
    text-align: center;
  }
  footer .ftrLast .ftrLastFlx.rgtTxt {
    text-align: center;
  }
  footer .ftrLast .ftrLastFlx.rgtTxt p {
    margin-bottom: 0;
  }
}

.aboutSection {
  background-color: #FFF4EB;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.aboutSection .devItImage {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 40%;
  display: flex;
  align-items: center;
  height: 100%;
}
.aboutSection .devItImage img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.aboutSection .devItImage.lftImgSt {
  right: inherit;
  left: 0;
}
.aboutSection p {
  font-size: 20px;
  line-height: 26px;
}
@media (max-width: 991px) {
  .aboutSection .devItImage {
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .aboutSection .devItImage img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .aboutSection p {
    font-size: 16px;
    line-height: 20px;
  }
}
.aboutSection.industriesInfo {
  background: #fff;
}
.aboutSection.industriesInfo .devItImage img {
  height: auto;
}

.aboutCoreServies {
  background-color: #FFF4EB;
  position: relative;
}
.aboutCoreServies .coreImage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 35%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutCoreServies .coreImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .aboutCoreServies .coreImage {
    max-width: 30%;
  }
}
.aboutCoreServies p {
  font-size: 20px;
  line-height: 26px;
}
.aboutCoreServies .coreServiceContent {
  background: transparent;
}
@media (max-width: 1199px) {
  .aboutCoreServies .coreImage {
    max-width: 30%;
  }
}
@media (max-width: 991px) {
  .aboutCoreServies .coreImage {
    display: none;
  }
}
@media (max-width: 767px) {
  .aboutCoreServies .flexColumnMobile {
    flex-direction: column-reverse;
  }
  .aboutCoreServies .coreImage {
    position: relative;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: 20px;
  }
}

.aboutVisionSection .blueBoxList li {
  margin-bottom: 0px;
  flex: 0 0 33.3%;
  max-width: 33.3%;
}
.aboutVisionSection .blueBoxList li .blueBox {
  padding: 70px 50px;
}
.aboutVisionSection .blueBoxList li .blueBox img {
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .aboutVisionSection .blueBoxList li .blueBox {
    padding: 40px 22px;
  }
}
@media (max-width: 991px) {
  .aboutVisionSection .blueBoxList li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
  .aboutVisionSection .blueBoxList li .blueBox {
    padding: 40px 22px;
  }
}
@media (max-width: 767px) {
  .aboutVisionSection .blueBoxList li {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .aboutVisionSection .blueBoxList li .blueBox {
    padding: 40px 22px;
  }
}

.partnership img {
  width: 100%;
}
@media (max-width: 1199px) {
  .partnership img {
    margin-bottom: 30px;
  }
}
@media (max-width: 1600px) {
  .partnership .partnerContent {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 15px;
  }
}

.leadershipTeam ul {
  display: flex;
  flex-wrap: wrap;
}
.leadershipTeam ul li {
  flex: 0 0 33.3%;
  max-width: 33.3%;
  padding: 0 15px;
  position: relative;
  text-align: center;
  margin-bottom: 180px;
}
.leadershipTeam ul li .teamBlock {
  background: #FFF4EB;
  border-radius: 20px;
  padding: 35px;
}
.leadershipTeam ul li .teamBlock .teamImage {
  position: relative;
  text-align: center;
}
.leadershipTeam ul li .teamBlock .teamImage img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  margin: 0 auto 40px;
  margin-top: -175px;
  max-width: 350px;
}
.leadershipTeam ul li .teamBlock .shortdesc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.leadershipTeam ul li .teamBlock .teamName {
  font-size: 40px;
  line-height: 48px;
  color: #000;
  font-weight: 500;
}
.leadershipTeam ul li .teamBlock .designation {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #9B9B9B;
  font-style: italic;
  margin-bottom: 10px;
}
.leadershipTeam ul li .teamBlock .teamSocialLink {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
}
.leadershipTeam ul li .teamBlock .teamSocialLink a {
  margin: 0px 8px;
  transition: 0.5s ease-in-out all;
}
.leadershipTeam ul li .teamBlock .teamSocialLink a:hover {
  transform: scale(1.2);
}
.leadershipTeam ul li .teamBlock .readmore {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
}
.leadershipTeam ul li .teamBlock .readmore .defaultButton {
  min-width: auto;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .leadershipTeam ul li {
    flex: 0 0 33%;
    max-width: 33%;
    margin-bottom: 120px;
  }
  .leadershipTeam ul li .teamBlock {
    padding: 20px;
  }
  .leadershipTeam ul li .teamBlock .teamImage img {
    max-width: 180px;
    margin-top: -100px;
    margin-bottom: 20px;
  }
  .leadershipTeam ul li .teamBlock .teamName {
    font-size: 24px;
    line-height: 28px;
  }
  .leadershipTeam ul li .teamBlock .designation {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1600px) {
  .leadershipTeam ul li {
    flex: 0 0 33%;
    max-width: 33%;
    margin-bottom: 140px;
  }
  .leadershipTeam ul li .teamBlock {
    padding: 20px;
  }
  .leadershipTeam ul li .teamBlock .teamImage img {
    max-width: 200px;
    margin-top: -100px;
    margin-bottom: 20px;
  }
  .leadershipTeam ul li .teamBlock .teamName {
    font-size: 22px;
    line-height: 24px;
  }
  .leadershipTeam ul li .teamBlock .designation {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .leadershipTeam ul li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 120px;
  }
  .leadershipTeam ul li .teamBlock {
    padding: 20px;
  }
  .leadershipTeam ul li .teamBlock .teamImage img {
    max-width: 150px;
    margin-top: -100px;
    margin-bottom: 20px;
  }
  .leadershipTeam ul li .teamBlock .teamName {
    font-size: 20px;
    line-height: 22px;
  }
  .leadershipTeam ul li .teamBlock .designation {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .leadershipTeam ul li {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 120px;
  }
  .leadershipTeam ul li .teamBlock {
    padding: 20px;
  }
  .leadershipTeam ul li .teamBlock .teamImage img {
    max-width: 200px;
    margin-top: -100px;
    margin-bottom: 20px;
  }
  .leadershipTeam ul li .teamBlock .teamName {
    font-size: 20px;
    line-height: 22px;
  }
  .leadershipTeam ul li .teamBlock .designation {
    font-size: 14px;
    line-height: 20px;
  }
}

.boxList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.boxList li {
  flex: 0 0 33.3%;
  max-width: 33.3%;
  list-style: none;
  padding: 0 15px;
  margin-bottom: 50px;
}
.boxList li .listBox {
  box-shadow: 0px 4px 20px 10px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  border-radius: 20px;
  height: 100%;
}
.boxList li .listBox .imgbox {
  background: #1E5DAC;
  border-radius: 20px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-width: 120px;
}
.boxList li .listBox p {
  padding: 22px 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #3C3C3C;
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.boxList li .listBox p span {
  display: block;
  font-weight: 600;
  font-size: 25px;
  line-height: 25px;
  color: #000000;
  margin-bottom: 5px;
}
@media (max-width: 1600px) {
  .boxList li .listBox p {
    font-size: 18px;
    line-height: 22px;
  }
  .boxList li .listBox p span {
    font-size: 20px;
    line-height: 24px;
  }
  .boxList li .listBox .imgbox {
    min-width: 100px;
  }
}
@media (max-width: 1199px) {
  .boxList li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 991px) {
  .boxList li {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .boxList li .listBox .imgbox {
    padding: 15px;
  }
  .boxList li .listBox .imgbox img {
    max-width: 50px;
  }
}

@media (max-width: 1600px) {
  .strengthSection .boxList li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 991px) {
  .strengthSection .boxList li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.tableBox {
  border-radius: 20px 20px 0px 0px;
}
.tableBox thead tr {
  background: #1E5DAC !important;
}
.tableBox thead tr th {
  padding: 20px 40px;
  border-right: 1px solid #CBCBCB;
}
.tableBox thead tr th p {
  font-family: "Lora", serif;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 0px;
}
.tableBox thead tr th p span {
  margin-bottom: 10px;
  display: block;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .tableBox thead tr th p span {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 1600px) {
  .tableBox thead tr th p {
    font-size: 18px;
    line-height: 16px;
  }
  .tableBox thead tr th p span {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 1199px) {
  .tableBox thead tr th p {
    font-size: 18px;
    line-height: 22px;
  }
  .tableBox thead tr th p span {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .tableBox thead tr th p {
    font-size: 16px;
    line-height: 22px;
  }
  .tableBox thead tr th p span {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 5px;
  }
}
.tableBox table {
  border-right: 1px solid #CBCBCB;
  width: 100%;
}
.tableBox table tr td {
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: #CBCBCB;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}
.tableBox table tr td:nth-child(1) {
  text-align: left;
}
@media (max-width: 1600px) {
  .tableBox table tr td {
    font-size: 18px;
    line-height: 22px;
  }
}
.tableBox table tr:nth-child(odd) {
  background: #F5F5F5;
}
.tableBox table tr:nth-child(even) {
  background: #F5F5F5;
}

.tableList {
  margin-top: 50px;
}

.blueBoxList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blueBoxList li {
  flex: 0 0 25%;
  max-width: 25%;
  list-style: none;
  padding: 0 15px;
  margin-bottom: 50px;
}
.blueBoxList li .blueBox {
  background: #1E5DAC;
  padding: 40px 22px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  height: 100%;
}
.blueBoxList li .blueBox .title {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
}
.blueBoxList li .blueBox p {
  color: #fff;
  margin-bottom: 0px;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .blueBoxList li .blueBox .title {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1600px) {
  .blueBoxList li .blueBox .title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1199px) {
  .blueBoxList li .blueBox .title {
    font-size: 23px;
    line-height: 26px;
  }
  .blueBoxList li .blueBox p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .blueBoxList li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .blueBoxList li {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 0 10px;
  }
}

.imageShadow {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.whiteShadowbox {
  padding: 40px 22px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  height: 100%;
}
.whiteShadowbox .title {
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
}
.whiteShadowbox p {
  color: #3C3C3C;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0px;
}

.colouredBg {
  background: #FFF4EB;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.bottomColouredSection {
  position: relative;
}
.bottomColouredSection .container {
  position: relative;
}
.bottomColouredSection::after {
  content: "";
  background: #FFF4EB;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  height: 30%;
  z-index: -1;
}

.topColouredSection {
  position: relative;
}
.topColouredSection .container {
  position: relative;
}
.topColouredSection::after {
  content: "";
  background: #FFF4EB;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  height: 30%;
  z-index: -1;
}

.whiteBoxList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.whiteBoxList li {
  flex: 0 0 50%;
  max-width: 50%;
  list-style: none;
  padding: 0 15px;
  margin-bottom: 30px;
}
.whiteBoxList li .whiteBox {
  padding: 40px 22px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  height: 100%;
  background: #fff;
}
.whiteBoxList li .whiteBox .title {
  color: #000000;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
}
.whiteBoxList li .whiteBox p {
  color: #3C3C3C;
  margin-bottom: 0px;
}
.whiteBoxList li.wid100 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .whiteBoxList li .whiteBox {
    padding: 25px 20px;
  }
  .whiteBoxList li .whiteBox .title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1600px) {
  .whiteBoxList li {
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .whiteBoxList li .whiteBox {
    padding: 25px 20px;
  }
  .whiteBoxList li .whiteBox .title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1199px) {
  .whiteBoxList li .whiteBox .title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .whiteBoxList li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .whiteBoxList {
    margin-top: 30px;
  }
}

.whiteBoxList.threecols li {
  flex: 0 0 33.3%;
  max-width: 33.3%;
  list-style: none;
}
@media (max-width: 991px) {
  .whiteBoxList.threecols li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .whiteBoxList.threecols li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.contactBox {
  padding: 40px 35px !important;
}
.contactBox .icon {
  color: #FD7D00;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: 0px;
}
.contactBox .icon.fa-map-marker {
  font-size: 30px;
}
.contactBox p {
  padding-left: 40px;
  position: relative;
  margin-bottom: 30px !important;
}
.contactBox p:last-child {
  margin-bottom: 0px !important;
}
.contactBox p, .contactBox a {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #3B3B3B;
}
.contactBox a:hover {
  color: #fd7d00;
}
.contactBox a {
  font-weight: 600;
}
@media (max-width: 1199px) {
  .contactBox {
    padding: 25px 20px !important;
  }
}
@media (max-width: 767px) {
  .contactBox p {
    padding-left: 25px;
    margin-bottom: 15px !important;
  }
  .contactBox p, .contactBox a {
    font-size: 18px;
    line-height: 24px;
  }
  .contactBox img {
    max-width: 15px;
  }
}

@media (max-width: 991px) {
  .businessFace .defaultButton {
    margin-bottom: 30px;
  }
}

.contactInfo {
  display: flex;
  flex-wrap: wrap;
}
.contactInfo li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  flex: 0 0 100%;
  max-width: 100%;
}
.contactInfo li.wid50 {
  flex: 0 0 50%;
  max-width: 50%;
}
.contactInfo li .icon {
  position: absolute;
  left: 0;
  top: 5px;
}
.contactInfo li p strong {
  font-weight: 700;
  display: block;
}
.contactInfo li p {
  font-size: 20px;
  line-height: 26px;
  color: #3C3C3C;
  margin: 0;
}
.contactInfo li p a {
  font-size: 20px;
  line-height: 26px;
  color: #3C3C3C;
  margin: 2px 0px;
  display: inline-block;
}
.contactInfo li p a:hover {
  color: #fd7d00;
}
@media (max-width: 575px) {
  .contactInfo li.wid50 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.map {
  border-radius: 20px;
  overflow: hidden;
}
.map iframe {
  display: block;
}
@media (max-width: 767px) {
  .map {
    height: 300px;
  }
}

@media (max-width: 1600px) {
  .desktopNone {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 20px;
  }
}
.contactFormBg {
  background: #1E5DAC;
  padding: 100px 80px;
  border-radius: 30px;
  color: #fff;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .contactFormBg {
    padding: 60px 40px;
  }
}
@media (max-width: 1600px) {
  .contactFormBg {
    padding: 60px 40px;
  }
}
@media (max-width: 1199px) {
  .contactFormBg {
    padding: 40px 30px;
  }
}

.contactForm .form-group {
  margin-bottom: 30px;
}
.contactForm .form-control, .contactForm select {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #3876C5;
  border: 0px;
  color: #fff;
  min-height: 50px;
  padding: 10px 20px;
}
.contactForm .form-control::-moz-placeholder, .contactForm select::-moz-placeholder {
  color: #fff;
}
.contactForm .form-control::placeholder, .contactForm select::placeholder {
  color: #fff;
}

.teamPopup .modal-dialog {
  max-width: 900px;
}
.teamPopup .modal-dialog .modal-body {
  padding: 45px 30px 30px;
  position: relative;
}
.teamPopup .modal-dialog .modal-body .btn-close {
  position: absolute;
  right: 20px;
  top: 10px;
}
.teamPopup .modal-dialog .modal-content {
  border: 0px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .teamPopup .modal-dialog {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .teamPopup .modal-dialog {
    margin: 30px auto;
    max-width: 90%;
  }
  .teamPopup .modal-dialog .modal-body {
    padding: 20px;
  }
}
.teamPopup .teamPopupBody {
  display: flex;
}
.teamPopup .teamPopupBody .teamImage {
  flex: 0 0 30%;
  max-width: 30%;
}
.teamPopup .teamPopupBody .teamImage img {
  border-radius: 50%;
}
.teamPopup .teamPopupBody .teamInfo {
  flex: 0 0 70%;
  max-width: 70%;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .teamPopup .teamPopupBody {
    flex-direction: column;
  }
  .teamPopup .teamPopupBody .teamImage img {
    max-width: 200px;
    margin-bottom: 30px;
  }
  .teamPopup .teamPopupBody .teamImage, .teamPopup .teamPopupBody .teamInfo {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding: 0;
  }
}

.enquiryPopup .modal-dialog {
  max-width: 900px;
}
.enquiryPopup .modal-dialog .modal-body {
  padding: 30px 30px;
  position: relative;
}
.enquiryPopup .modal-dialog .modal-body .btn-close {
  position: absolute;
  right: 30px;
  top: 25px;
}
.enquiryPopup .modal-dialog .enquiryPopupBody .form-group {
  margin-bottom: 20px;
}
.enquiryPopup .modal-dialog .enquiryPopupBody .form-control, .enquiryPopup .modal-dialog .enquiryPopupBody select {
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  color: #3C3C3C;
  font-size: 18px;
}
.enquiryPopup .modal-dialog .enquiryPopupBody .form-control::-moz-placeholder, .enquiryPopup .modal-dialog .enquiryPopupBody select::-moz-placeholder {
  color: #3C3C3C;
  font-size: 18px;
}
.enquiryPopup .modal-dialog .enquiryPopupBody .form-control::placeholder, .enquiryPopup .modal-dialog .enquiryPopupBody select::placeholder {
  color: #3C3C3C;
  font-size: 18px;
}
.enquiryPopup .modal-dialog .enquiryPopupBody select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/drop_icn.png");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: 98%;
}
.enquiryPopup .modal-dialog .modal-content {
  border: 0px;
  border-radius: 20px;
  background-color: #FFF4EB;
  overflow: hidden;
}

.modal-dialog .modal-body .btn-close {
  position: absolute;
  right: 20px;
  top: 10px;
}

.titleRow {
  margin-bottom: 40px;
}
.titleRow .sectionTitle {
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .titleRow {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .titleRow {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .titleRow {
    margin-bottom: 20px;
  }
  .titleRow .sectionTitle {
    margin-bottom: 10px;
  }
}

.businessFace .listUi.threeCols {
  justify-content: space-between;
}
.businessFace .listUi.threeCols li {
  flex: 0 0 33%;
  max-width: 33%;
}
@media (max-width: 1199px) {
  .businessFace .listUi.threeCols li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .businessFace .listUi.threeCols li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.iconBoxList {
  display: flex;
  flex-wrap: wrap;
}
.iconBoxList li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}
.iconBoxList li .iconBox {
  border: 0px solid #ccc;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .iconBoxList li {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 5px;
  }
}

.pdT0 {
  padding-top: 0px !important;
}

.whyChooseSection .blueBoxList li {
  margin-bottom: 30px;
}
.whyChooseSection .blueBoxList li .blueBox {
  padding: 50px 30px;
}

.aboutSection {
  background: #fff;
}

.bullets li {
  margin-bottom: 20px;
}
.bullets li .title {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 5px;
}

@media (max-width: 1600px) {
  .bullets li .title {
    font-size: 20px;
    line-height: 25px;
  }
  .bullets li p {
    font-size: 18px;
    line-height: 26px;
  }
}
.privacyPolicy h3 {
  margin-top: 50px;
}
.privacyPolicy ul {
  list-style: disc;
  padding-left: 20px;
}
.privacyPolicy ul li {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.tutorialList li {
  margin-bottom: 50px;
}
.tutorialList li img {
  margin: 10px 0px;
}

.indusErp {
  background: #1E5DAC;
  padding: 62px 0;
}
.indusErp .indusErpFlx {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.indusErp .indusErpFlx .indusErpFlxLft {
  flex: 0 0 70%;
  max-width: 70%;
}
.indusErp .indusErpFlx .indusErpFlxLft .sectionTitle {
  color: #fff;
  margin-bottom: 30px;
}
.indusErp .indusErpFlx .indusErpFlxLft p {
  color: #fff;
  margin: 0;
  font-weight: 700;
  font-size: 25px;
  line-height: 36px;
}
.indusErp .indusErpFlx .indusErpFlxRgt {
  flex: 0 0 30%;
  max-width: 30%;
  text-align: right;
}
.indusErp .indusErpFlx .indusErpFlxRgt .blackBtn {
  min-width: auto;
}
.indusErp .indusErpFlx .indusErpFlxRgt .blackBtn:hover {
  background: #FD7D00;
  color: #fff;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .indusErp {
    padding: 50px 0;
  }
  .indusErp .indusErpFlx .indusErpFlxLft .sectionTitle {
    margin-bottom: 25px;
  }
  .indusErp .indusErpFlx .indusErpFlxLft p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1600px) {
  .indusErp {
    padding: 50px 0;
  }
  .indusErp .indusErpFlx .indusErpFlxLft .sectionTitle {
    margin-bottom: 25px;
  }
  .indusErp .indusErpFlx .indusErpFlxLft p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .indusErp {
    padding: 45px 0;
  }
  .indusErp .indusErpFlx .indusErpFlxLft .sectionTitle {
    margin-bottom: 20px;
  }
  .indusErp .indusErpFlx .indusErpFlxLft p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .indusErp {
    padding: 40px 0;
  }
  .indusErp .indusErpFlx .indusErpFlxLft .sectionTitle {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 36px;
  }
  .indusErp .indusErpFlx .indusErpFlxLft p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .indusErp {
    padding: 40px 0;
  }
  .indusErp .indusErpFlx .indusErpFlxLft {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .indusErp .indusErpFlx .indusErpFlxLft .sectionTitle {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 36px;
  }
  .indusErp .indusErpFlx .indusErpFlxRgt {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .indusErp {
    padding: 35px 0;
  }
  .indusErp .indusErpFlx .indusErpFlxLft {
    margin-bottom: 20px;
  }
  .indusErp .indusErpFlx .indusErpFlxLft .sectionTitle {
    margin-bottom: 15px;
    font-size: 25px;
    line-height: 34px;
  }
  .indusErp .indusErpFlx .indusErpFlxLft p {
    font-size: 14px;
    line-height: 24px;
  }
}

.para20 {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #3C3C3C;
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .para20 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .para20 {
    font-size: 14px;
    line-height: 18px;
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .para20 {
    max-width: 100%;
  }
}

.orngBck {
  background: #FFF4EB;
}

.subTtle {
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  color: #1E5DAC;
  margin-bottom: 10px;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .subTtle {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 1600px) {
  .subTtle {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 1199px) {
  .subTtle {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .subTtle {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 450px) {
  .subTtle {
    font-size: 16px !important;
    line-height: 20px !important;
  }
}

.prblmSec .sectionTitle {
  margin-bottom: 50px;
}
.prblmSec .boxList li {
  margin-bottom: 0;
}
.prblmSec .boxList li .listBox {
  background: #fff;
}
.prblmSec .boxList li .listBox .percntgBox {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 70px;
  color: #033574;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  padding: 40px 30px 40px 40px;
}
.prblmSec .boxList li .listBox .percntgBox span {
  font-weight: 400;
  font-size: 30px;
  line-height: 70px;
}
.prblmSec .boxList li .listBox .paddRgtMax {
  padding-right: 100px;
}
.prblmSec .boxList.cnsltLst li {
  margin-bottom: 50px;
}
.prblmSec .boxList.cnsltLst li .listBox .imgbox {
  height: 100%;
}
.prblmSec .tableList {
  margin: 0;
}
.prblmSec .tableList .tableBox .table thead tr th p.text-left {
  text-align: left;
  margin: 0;
}
.prblmSec .tableList .tableBox .table thead tr th:first-child, .prblmSec .tableList .tableBox .table thead tr td:first-child {
  width: 60%;
}
.prblmSec .tableList .tableBox .table thead tr th:nth-child(2), .prblmSec .tableList .tableBox .table thead tr th:nth-child(3), .prblmSec .tableList .tableBox .table thead tr td:nth-child(2), .prblmSec .tableList .tableBox .table thead tr td:nth-child(3) {
  width: 20%;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .prblmSec .sectionTitle {
    margin-bottom: 30px;
  }
  .prblmSec .boxList li .listBox {
    align-items: center;
  }
  .prblmSec .boxList li .listBox .percntgBox {
    font-size: 50px;
    line-height: 55px;
    padding: 25px;
    padding-right: 15px;
  }
  .prblmSec .boxList li .listBox .percntgBox span {
    font-size: 26px;
    line-height: 56px;
  }
  .prblmSec .boxList li .listBox .paddRgtMax {
    padding-right: 25px;
  }
  .prblmSec .tableList .tableBox .table thead tr th {
    padding: 20px 30px;
  }
}
@media (max-width: 1600px) {
  .prblmSec .sectionTitle {
    margin-bottom: 30px;
  }
  .prblmSec .boxList {
    margin-top: 30px;
  }
  .prblmSec .boxList li .listBox {
    align-items: center;
  }
  .prblmSec .boxList li .listBox .percntgBox {
    font-size: 45px;
    line-height: 50px;
    padding: 20px;
    padding-right: 10px;
  }
  .prblmSec .boxList li .listBox .percntgBox span {
    font-size: 24px;
    line-height: 54px;
  }
  .prblmSec .boxList li .listBox .paddRgtMax {
    padding-right: 25px;
  }
  .prblmSec .boxList.cnsltLst li {
    margin-bottom: 30px;
  }
  .prblmSec .tableList .tableBox .table thead tr th {
    padding: 20px 30px;
  }
}
@media (max-width: 1199px) {
  .prblmSec .sectionTitle {
    margin-bottom: 25px;
  }
  .prblmSec .boxList li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .prblmSec .boxList li .listBox .percntgBox {
    font-size: 40px;
    line-height: 45px;
    padding: 15px;
    padding-right: 10px;
  }
  .prblmSec .boxList li .listBox .percntgBox span {
    font-size: 20px;
    line-height: 45px;
  }
  .prblmSec .boxList li .listBox p {
    padding: 15px;
    font-size: 16px;
    line-height: 20px;
  }
  .prblmSec .boxList li .listBox .paddRgtMax {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .prblmSec .sectionTitle {
    margin-bottom: 20px;
  }
  .prblmSec .boxList {
    justify-content: center;
  }
  .prblmSec .boxList li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 25px;
  }
  .prblmSec .boxList li:last-child {
    margin-bottom: 0;
  }
  .prblmSec .boxList.cnsltLst li:nth-last-child(2), .prblmSec .boxList.cnsltLst li:last-child {
    margin-bottom: 0;
  }
  .prblmSec .tableList {
    margin: 0;
  }
  .prblmSec .tableList .tableBox .table thead tr th:first-child, .prblmSec .tableList .tableBox .table thead tr td:first-child {
    width: 40%;
  }
  .prblmSec .tableList .tableBox .table thead tr th:nth-child(2), .prblmSec .tableList .tableBox .table thead tr th:nth-child(3), .prblmSec .tableList .tableBox .table thead tr td:nth-child(2), .prblmSec .tableList .tableBox .table thead tr td:nth-child(3) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .prblmSec .sectionTitle {
    margin-bottom: 20px;
  }
  .prblmSec .boxList {
    justify-content: center;
    margin-top: 25px;
  }
  .prblmSec .boxList li {
    flex: 0 0 100%;
    max-width: 450px;
    margin: 0 auto 25px;
  }
  .prblmSec .boxList.cnsltLst li {
    margin-bottom: 25px;
  }
  .prblmSec .boxList.cnsltLst li:nth-last-child(2) {
    margin-bottom: 25px;
  }
  .prblmSec .tableList {
    margin: 0;
  }
  .prblmSec .tableList .tableBox .table tr td {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .prblmSec .boxList {
    justify-content: center;
    margin-top: 25px;
  }
  .prblmSec .boxList li {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto 25px;
  }
  .prblmSec .boxList.cnsltLst li {
    margin-bottom: 25px;
  }
  .prblmSec .boxList.cnsltLst li:nth-last-child(2) {
    margin-bottom: 25px;
  }
  .prblmSec .tableList {
    margin: 0;
  }
  .prblmSec .tableList .tableBox .table tr th p {
    font-size: 15px;
    line-height: 20px;
  }
  .prblmSec .tableList .tableBox .table tr td {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 450px) {
  .prblmSec .tableList .tableBox .table thead tr th {
    padding: 15px 20px;
  }
  .prblmSec .tableList .tableBox .table tr th p {
    font-size: 14px;
    line-height: 18px;
  }
  .prblmSec .tableList .tableBox .table tr td {
    font-size: 14px;
    line-height: 18px;
  }
}

.caseList {
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.caseList > li {
  padding: 50px 30px;
  background: #F4E1D2;
  flex: 0 0 49%;
  max-width: 49%;
  margin-right: 30px;
}
.caseList > li:last-child {
  margin-right: 0;
}
.caseList > li .caseListUl {
  display: flex;
  flex-wrap: wrap;
}
.caseList > li .caseListUl li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 50px;
}
.caseList > li .caseListUl li:nth-child(3), .caseList > li .caseListUl li:last-child {
  margin-bottom: 0;
}
.caseList > li .caseListUl li .resltimpli p {
  margin-bottom: 0;
}
.caseList > li .caseListUl li .resltimpli .prcntg {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: #033574;
}
.caseList > li .caseListUl li .resltimpli .prcntg span {
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .caseList {
    margin: 30px 0;
  }
  .caseList > li {
    padding: 30px 20px;
    margin-right: 22px;
  }
  .caseList > li .caseListUl li {
    margin-bottom: 30px;
  }
  .caseList > li .caseListUl li .resltimpli p {
    font-size: 18px;
    line-height: 26px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg {
    font-size: 33px;
    line-height: 38px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg span {
    font-size: 16px;
    line-height: 38px;
  }
}
@media (max-width: 1600px) {
  .caseList {
    margin: 30px 0;
  }
  .caseList > li {
    padding: 30px 20px;
    margin-right: 22px;
  }
  .caseList > li .caseListUl li {
    margin-bottom: 30px;
  }
  .caseList > li .caseListUl li .resltimpli p {
    font-size: 16px;
    line-height: 24px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg {
    font-size: 30px;
    line-height: 35px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg span {
    font-size: 14px;
    line-height: 35px;
  }
}
@media (max-width: 1199px) {
  .caseList {
    margin: 25px 0;
  }
  .caseList > li {
    padding: 25px 15px;
    margin-right: 18px;
  }
  .caseList > li .caselistBox .bullets li {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .caseList > li .caseListUl li {
    margin-bottom: 25px;
  }
  .caseList > li .caseListUl li .resltimpli p {
    font-size: 14px;
    line-height: 22px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg {
    font-size: 25px;
    line-height: 30px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg span {
    font-size: 12px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .caseList {
    margin: 20px 0;
  }
  .caseList > li {
    padding: 20px 12px;
    margin-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }
  .caseList > li:last-child {
    margin-bottom: 0;
  }
  .caseList > li .caselistBox .bullets li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }
  .caseList > li .caseListUl li {
    margin-bottom: 18px;
  }
  .caseList > li .caseListUl li .resltimpli p {
    font-size: 14px;
    line-height: 22px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg {
    font-size: 24px;
    line-height: 30px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg span {
    font-size: 14px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .caseList {
    margin: 20px 0;
  }
  .caseList > li {
    margin-bottom: 20px;
  }
  .caseList > li .caseListUl li {
    margin-bottom: 15px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .caseList > li .caseListUl li:nth-child(3) {
    margin-bottom: 15px;
  }
  .caseList > li .caseListUl li .resltimpli p {
    font-size: 16px;
    line-height: 24px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg {
    font-size: 26px;
    line-height: 32px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg span {
    font-size: 16px;
    line-height: 32px;
  }
}
@media (max-width: 450px) {
  .caseList > li .caseListUl li .resltimpli p {
    font-size: 14px;
    line-height: 22px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg {
    font-size: 24px;
    line-height: 30px;
  }
  .caseList > li .caseListUl li .resltimpli .prcntg span {
    font-size: 14px;
    line-height: 30px;
  }
}

.builtStn .subTtle {
  text-align: left;
  color: #fff;
}
.builtStn .sectionTitle {
  text-align: left;
  color: #fff;
  margin-bottom: 50px;
}
.builtStn .setPra {
  margin-bottom: 30px;
}
.builtStn .setPra .para20 {
  text-align: left;
  max-width: 100%;
  margin: 0;
  color: #fff;
}
.builtStn .listUi > li {
  padding-left: 0;
}
.builtStn .listUi > li .listTitle {
  padding-left: 45px;
  margin-bottom: 15px;
}
.builtStn .listUi > li .bullets.whtbullets li {
  flex: inherit;
  max-width: 100%;
  padding-bottom: 0;
  padding-right: 0;
  margin-bottom: 30px;
}
.builtStn .listUi > li .bullets.whtbullets li::before {
  background: #FFFFFF;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .builtStn .setPra {
    margin-bottom: 20px;
  }
  .builtStn .sectionTitle {
    margin-bottom: 30px;
  }
  .builtStn .listUi > li span {
    top: -5px;
  }
  .builtStn .listUi > li .listTitle {
    padding-left: 40px;
    margin-bottom: 12px;
  }
  .builtStn .listUi > li .bullets.whtbullets li {
    margin-bottom: 18px;
    padding-left: 30px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1600px) {
  .builtStn .setPra {
    margin-bottom: 20px;
  }
  .builtStn .sectionTitle {
    margin-bottom: 30px;
  }
  .builtStn .listUi > li .listTitle {
    padding-left: 35px;
    margin-bottom: 12px;
  }
  .builtStn .listUi > li .bullets.whtbullets li {
    margin-bottom: 18px;
    padding-left: 30px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1199px) {
  .builtStn .setPra {
    margin-bottom: 18px;
  }
  .builtStn .sectionTitle {
    margin-bottom: 28px;
  }
  .builtStn .listUi > li .listTitle {
    padding-left: 32px;
    margin-bottom: 10px;
  }
  .builtStn .listUi > li .bullets.whtbullets li {
    margin-bottom: 16px;
    padding-left: 28px;
    font-size: 14px;
    line-height: 20px;
  }
}

.maturityList {
  margin: 25px 0 50px;
}
.maturityList li .iconBox {
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: flex-start;
  min-height: 495px;
  position: relative;
}
.maturityList li .iconBox .maturityListFlx {
  padding: 56px 30px;
  text-align: left;
  width: 100%;
}
.maturityList li .iconBox .maturityListFlx .tagLine {
  margin-bottom: 30px;
}
.maturityList li .iconBox .maturityListFlx .bullets li {
  flex: inherit;
  max-width: inherit;
  padding: 0;
  padding-left: 30px;
}
.maturityList li .iconBox .maturityListFlx .bullets li:last-child {
  margin: 0;
}
.maturityList li .iconBox .prcntgBx {
  padding: 30px;
  background: #D7E8FF;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: absolute;
  bottom: 0;
}
.maturityList li .iconBox .prcntgBx p {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  margin: 0;
  color: #033574;
  text-align: left;
  display: flex;
  align-items: center;
}
.maturityList li .iconBox .prcntgBx p span {
  font-size: 18px;
  line-height: 40px;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .maturityList {
    margin: 15px 0 35px;
  }
  .maturityList li .iconBox {
    min-height: 400px;
  }
  .maturityList li .iconBox .maturityListFlx {
    padding: 35px 20px;
  }
  .maturityList li .iconBox .maturityListFlx .tagLine {
    margin-bottom: 20px;
  }
  .maturityList li .iconBox .maturityListFlx .bullets li {
    padding-left: 25px;
  }
  .maturityList li .iconBox .prcntgBx {
    padding: 20px;
  }
  .maturityList li .iconBox .prcntgBx p {
    font-size: 35px;
    line-height: 35px;
  }
  .maturityList li .iconBox .prcntgBx p span {
    font-size: 16px;
    line-height: 35px;
  }
}
@media (max-width: 1600px) {
  .maturityList {
    margin: 15px 0 35px;
  }
  .maturityList li .iconBox {
    min-height: 400px;
  }
  .maturityList li .iconBox .maturityListFlx {
    padding: 35px 20px;
  }
  .maturityList li .iconBox .maturityListFlx .tagLine {
    margin-bottom: 20px;
  }
  .maturityList li .iconBox .maturityListFlx .bullets li {
    padding-left: 25px;
  }
  .maturityList li .iconBox .prcntgBx {
    padding: 20px;
  }
  .maturityList li .iconBox .prcntgBx p {
    font-size: 30px;
    line-height: 30px;
  }
  .maturityList li .iconBox .prcntgBx p span {
    font-size: 14px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .maturityList {
    margin: 12px 0 32px;
  }
  .maturityList li .iconBox {
    min-height: 390px;
  }
  .maturityList li .iconBox .maturityListFlx {
    padding: 30px 15px;
  }
  .maturityList li .iconBox .maturityListFlx .tagLine {
    margin-bottom: 15px;
  }
  .maturityList li .iconBox .maturityListFlx .bullets li {
    padding-left: 20px;
    margin-bottom: 18px;
  }
  .maturityList li .iconBox .prcntgBx {
    padding: 15px;
  }
  .maturityList li .iconBox .prcntgBx p {
    font-size: 25px;
    line-height: 25px;
  }
  .maturityList li .iconBox .prcntgBx p span {
    font-size: 12px;
    line-height: 25px;
  }
}
@media (max-width: 991px) {
  .maturityList {
    margin: 12px 0 32px;
  }
  .maturityList li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 25px;
  }
  .maturityList li:nth-child(3), .maturityList li:last-child {
    margin-bottom: 0;
  }
  .maturityList li .iconBox {
    min-height: 330px;
  }
  .maturityList li .iconBox .maturityListFlx {
    padding: 25px 15px;
  }
  .maturityList li .iconBox .maturityListFlx .bullets li {
    margin-bottom: 15px;
  }
  .maturityList li .iconBox .prcntgBx p {
    font-size: 28px;
    line-height: 28px;
  }
  .maturityList li .iconBox .prcntgBx p span {
    font-size: 14px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .maturityList {
    margin: 12px 0 32px;
  }
  .maturityList li {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .maturityList li:nth-child(3) {
    margin-bottom: 20px;
  }
  .maturityList li .iconBox {
    min-height: auto;
  }
  .maturityList li .iconBox .maturityListFlx {
    padding: 20px;
  }
  .maturityList li .iconBox .maturityListFlx .caseTagLine br {
    display: none;
  }
  .maturityList li .iconBox .prcntgBx {
    padding: 20px;
    position: relative;
  }
}
@media (max-width: 575px) {
  .maturityList {
    margin: 12px 0 32px;
  }
  .maturityList li {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .maturityList li:nth-child(3) {
    margin-bottom: 20px;
  }
  .maturityList li .iconBox {
    min-height: auto;
  }
  .maturityList li .iconBox .maturityListFlx {
    padding: 20px;
  }
  .maturityList li .iconBox .maturityListFlx .caseTagLine br {
    display: none;
  }
  .maturityList li .iconBox .maturityListFlx .bullets li {
    font-size: 16px;
    line-height: 22px;
  }
  .maturityList li .iconBox .prcntgBx {
    padding: 20px;
    position: relative;
  }
  .maturityList li .iconBox .prcntgBx p {
    font-size: 25px;
    line-height: 25px;
  }
  .maturityList li .iconBox .prcntgBx p span {
    font-size: 12px;
    line-height: 25px;
  }
}

.serveTble {
  margin-top: 50px !important;
}
.serveTble .tableBox .table tr th, .serveTble .tableBox .table tr td {
  width: 33.33% !important;
  text-align: left !important;
}
.serveTble .tableBox .table tr th .bullets li:last-child, .serveTble .tableBox .table tr td .bullets li:last-child {
  margin-bottom: 0;
}
@media (min-width: 1601px) and (max-width: 1800px) {
  .serveTble {
    margin-top: 30px !important;
  }
}
@media (max-width: 1600px) {
  .serveTble {
    margin-top: 30px !important;
  }
}
@media (max-width: 767px) {
  .serveTble {
    margin-top: 25px !important;
  }
  .serveTble .tableBox .table tr th .bullets li, .serveTble .tableBox .table tr td .bullets li {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 450px) {
  .prblmSec .table {
    width: 600px;
  }
}

@media (max-width: 450px) {
  #enquiryPopup2 .modal-dialog .modal-content .modal-body .btn-close {
    right: 30px;
    top: 35px;
  }
  #enquiryPopup2 .modal-dialog .modal-content .modal-body .enquiryPopupBody .sectionTitle {
    font-size: 20px;
    line-height: 25px;
  }
}

.bsnsSc .bsnsImg {
  margin-bottom: 20px;
}
.bsnsSc .bsnsImg img {
  width: 100%;
}
.bsnsSc p {
  color: #fff;
}

.blts {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: space-between;
}
.blts li {
  flex: 0 0 48%;
  max-width: 48%;
  margin-bottom: 20px;
}
.blts li p {
  margin-bottom: 0;
}
.blts li.flx100 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .blts li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.mgRgt {
  margin: 0 0 0 auto;
}

.mgBt20 {
  margin-bottom: 20px !important;
}
@media (max-width: 1600px) {
  .mgBt20 {
    margin-bottom: 15px !important;
  }
}

.ytVdo {
  height: 400px;
}
.ytVdo iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1199px) {
  .ytVdo {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .ytVdo {
    height: 300px;
  }
}

.ulFull li {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.beigeClr {
  background: #FFF4EB;
}/*# sourceMappingURL=style.css.map */