/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
.crossLine {
  background: transparent;
  position: relative;
  display: inline-block;
  padding: 0px;
  width: 45px;
  height: 25px;
  cursor: pointer;
  border: inherit;
}
.crossLine:focus, .crossLine:hover {
  border: inherit;
  outline: none;
}
.crossLine .line {
  display: block;
  background: #000;
  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: 44%;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  transform: rotate(135deg);
}
@media (max-width: 991px) {
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}
#sidebarCollapse {
  z-index: 5555;
  position: absolute;
  top: 28px;
  right: 0;
}
#sidebarCollapse.active {
  position: fixed;
  top: 30px;
  right: 30px;
  padding: 30px 0;
}
@media (max-width: 575px) {
  #sidebarCollapse {
    top: 30px;
  }
}
@media (max-width: 450px) {
  #sidebarCollapse {
    top: 28px;
  }
}

* {
  margin: 0;
  padding: 0;
}

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

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

p {
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  color: #232323;
  margin-bottom: 0;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  p {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 1500px) {
  p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  p {
    font-size: 14px;
    line-height: 22px;
  }
}

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

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.defaultButton {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  border: none;
  padding: 17px 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2113F8;
  border-radius: 60px;
  color: #fff;
  transition: color 0.5s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.defaultButton::before {
  content: "";
  position: absolute;
  background: #000;
  z-index: -1;
  border-radius: 60px;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: all 0.5s ease;
}
.defaultButton:hover, .defaultButton:focus {
  color: #fff;
}
.defaultButton:hover::before, .defaultButton:focus::before {
  width: 100%;
}
.defaultButton span {
  margin-right: 10px;
}
@media (max-width: 1500px) {
  .defaultButton {
    font-size: 12px;
    line-height: 12px;
    padding: 12px 35px;
  }
}

.bullets {
  list-style: none;
}
.bullets li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 5px;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 9px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #241D80;
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .bullets li {
    padding-left: 20px;
  }
  .bullets li::before {
    left: 0px;
    top: 9px;
    height: 8px;
    width: 8px;
  }
}
@media (max-width: 1500px) {
  .bullets li {
    padding-left: 20px;
  }
  .bullets li::before {
    left: 0px;
    top: 9px;
    height: 8px;
    width: 8px;
  }
}
@media (max-width: 767px) {
  .bullets li::before {
    top: 8px;
  }
}
@media (max-width: 450px) {
  .bullets li {
    padding-left: 15px;
  }
  .bullets li::before {
    top: 7px;
  }
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1720px;
  }
}
.sectionTitle {
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  color: #666666;
  margin-bottom: 60px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .sectionTitle {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .sectionTitle {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1500px) {
  .sectionTitle {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .sectionTitle {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 35px;
  }
}
@media (max-width: 991px) {
  .sectionTitle {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sectionTitle {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 450px) {
  .sectionTitle {
    font-size: 25px;
    line-height: 35px;
  }
}

.sectionPadding {
  padding: 120px 0px;
}
.sectionPadding.paddBt {
  padding-bottom: 0;
}
@media (max-width: 1500px) {
  .sectionPadding {
    padding: 90px 0px;
  }
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 70px 0px;
  }
}
@media (max-width: 767px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 450px) {
  .sectionPadding {
    padding: 40px 0px;
  }
}

.subTxt {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: #232323;
  margin-bottom: 30px;
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .subTxt {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1500px) {
  .subTxt {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .subTxt {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .subTxt {
    font-size: 18px;
    line-height: 26px;
  }
}

.mainHeader {
  padding: 0 100px;
  background: #F3F2FF;
  position: relative;
  width: 100%;
  z-index: 111;
}
.mainHeader header {
  position: relative;
  width: 100%;
  text-align: center;
  height: 108px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1500px) {
  .mainHeader header {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .mainHeader header {
    height: auto;
    align-items: center;
  }
}
.mainHeader header .navBlock {
  width: 100%;
}
@media (max-width: 991px) {
  .mainHeader header .navBlock {
    text-align: right;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink .navbar-collapse {
    flex-direction: column;
  }
}
.mainHeader header .navbarLink ul {
  align-items: center;
  width: 100%;
}
.mainHeader header .navbarLink ul.ml-auto {
  justify-content: flex-end;
}
.mainHeader header .navbarLink ul li {
  margin-right: 130px;
  transition: 0.5s ease-in-out all;
}
.mainHeader header .navbarLink ul li.noMrgn {
  margin-right: 0;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .mainHeader header .navbarLink ul li {
    margin-right: 100px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .mainHeader header .navbarLink ul li {
    margin-right: 80px;
  }
}
@media (max-width: 1500px) {
  .mainHeader header .navbarLink ul li {
    margin-right: 80px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li {
    margin-right: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .mainHeader header .navbarLink ul li {
    margin-right: 50px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li .dropdown-toggle {
    padding: 0;
  }
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
.mainHeader header .navbarLink ul li a {
  display: inline-block;
  text-transform: capitalize;
  color: #232323;
  font-weight: 500;
  font-size: 26px;
  line-height: 26px;
  transition: 0.5s ease-in-out all;
}
.mainHeader header .navbarLink ul li a span {
  margin-right: 5px;
}
@media (max-width: 1500px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 19px;
    line-height: 19px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    padding: 0;
    display: block;
  }
  .mainHeader header .navbarLink ul li a span {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 22px;
    line-height: 22px;
  }
}
@media (max-width: 450px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 20px;
    line-height: 20px;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  color: #0010D5;
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: #f3f2ff;
  padding: 0;
  margin: 0;
  min-width: 220px;
  transform: inherit !important;
  top: 100% !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 0;
  margin: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #000;
  padding: 12px 15px;
  font-size: 18px;
  line-height: 18px;
  text-transform: capitalize;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover {
  background: #7066D1;
  color: #fff;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #fff !important;
  background: transparent;
}
.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: 1500px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    padding: 10px;
    font-size: 15px;
    line-height: 15px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    background: transparent;
    padding-top: 0;
    top: 0 !important;
    width: 100%;
    box-shadow: none;
    border: none;
    margin-top: 10px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    padding: 10px 0;
    border: none !important;
    text-align: left;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #fff;
    text-align: left;
    padding: 0;
    font-size: 18px;
    line-height: 18px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li:hover, .mainHeader header .navbarLink ul li > .dropdown-menu li.active {
    background: transparent;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li:hover a, .mainHeader header .navbarLink ul li > .dropdown-menu li.active a {
    color: #0010d3 !important;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    padding: 8px 0;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 450px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    padding: 6px 0;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    font-size: 14px;
    line-height: 14px;
  }
}
.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 {
    flex-direction: column;
    margin: 0 auto;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    position: relative !important;
    transform: none !important;
  }
}
.mainHeader header .navbarLink.active {
  left: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink {
    background: #0010D5;
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 999;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    padding-top: 13%;
  }
  .mainHeader header .navbarLink .navbar-nav {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .mainHeader header .navbarLink .navbar-nav li {
    margin-right: 0;
    margin-bottom: 0;
    padding: 25px 35px;
    width: 100%;
    border-top: 1px solid #fff;
  }
  .mainHeader header .navbarLink .navbar-nav li:hover, .mainHeader header .navbarLink .navbar-nav li.active {
    background: #9a95ff;
  }
  .mainHeader header .navbarLink .navbar-nav li:hover a, .mainHeader header .navbarLink .navbar-nav li.active a {
    color: #fff;
  }
  .mainHeader header .navbarLink .navbar-nav.mobBrdr li:last-child {
    border-bottom: 1px solid #fff;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink .navbar-nav li {
    padding: 20px 30px;
  }
}
@media (max-width: 450px) {
  .mainHeader header .navbarLink {
    padding-top: 23%;
  }
  .mainHeader header .navbarLink .navbar-nav li {
    padding: 15px 25px;
  }
}
.mainHeader .logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 400px;
  height: 200px;
  background: #fff;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}
.mainHeader .logo.disNone {
  display: none;
}
.mainHeader .logo a {
  display: block;
}
.mainHeader .logo a img {
  height: 148px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
@media (max-width: 1500px) {
  .mainHeader .logo a img {
    height: 110px;
  }
}
.mainHeader .logo a p {
  color: #0010D5;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}
@media (max-width: 1500px) {
  .mainHeader {
    padding: 0 70px;
  }
  .mainHeader .logo {
    width: 320px;
    height: 140px;
  }
  .mainHeader .logo a img {
    height: 100px;
    margin-bottom: 10px;
  }
  .mainHeader .logo a p {
    font-size: 12px;
    line-height: 12px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .mainHeader {
    padding: 0 60px;
  }
  .mainHeader .logo {
    width: 300px;
    height: 140px;
  }
}
@media (max-width: 991px) {
  .mainHeader {
    padding: 10px 50px;
  }
  .mainHeader .logo {
    display: none;
  }
  .mainHeader .logo.disNone {
    display: block;
  }
  .mainHeader .logo {
    background: transparent;
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
  }
  .mainHeader .logo a {
    display: flex;
    align-items: center;
  }
  .mainHeader .logo a img {
    height: 80px;
    margin: 0;
    margin-right: 10px;
  }
  .mainHeader .logo a p {
    max-width: 35%;
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .mainHeader {
    padding: 10px 40px;
  }
  .mainHeader .logo a p {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .mainHeader {
    padding: 10px 30px;
  }
  .mainHeader .logo a p {
    max-width: 55%;
  }
}
@media (max-width: 450px) {
  .mainHeader {
    padding: 10px 20px;
  }
  .mainHeader .logo a img {
    height: 70px;
  }
  .mainHeader .logo a p {
    max-width: 100%;
    font-size: 11px;
    line-height: 15px;
  }
}

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

.homebanner {
  position: relative;
}
.homebanner .bannerImage {
  position: relative;
}
.homebanner .bannerImage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(180deg, rgba(44, 30, 248, 0) 55.74%, #2C1EF8 110.11%);
  z-index: 0;
  height: 100%;
  width: 100%;
}
.homebanner .bannerImage img {
  width: 100%;
}
.homebanner .bannerBox {
  display: block !important;
}
.homebanner .bannerText {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.homebanner .bannerText .bannerFlx {
  display: flex;
  align-items: flex-end;
}
.homebanner .bannerText .bannerFlx .bannerDesc {
  font-size: 100px;
  line-height: 100px;
  color: #fff;
  margin-bottom: 0;
  flex: 0 0 75%;
  max-width: 75%;
  font-weight: 200;
}
.homebanner .bannerText .bannerFlx .bannerDesc span {
  font-weight: 500;
}
.homebanner .bannerText .bannerFlx .bannerBtn {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  flex: 0 0 25%;
  max-width: 25%;
  text-align: right;
  color: #FFFFFF;
  opacity: 0.9;
  transition: 0.5s ease-in-out all;
}
.homebanner .bannerText .bannerFlx .bannerBtn:hover {
  opacity: 1;
}
.homebanner .bannerText .bannerFlx .bannerBtn:hover span svg {
  transform: rotate(-45deg);
}
.homebanner .bannerText .bannerFlx .bannerBtn span {
  margin-right: 6px;
}
.homebanner .bannerText .bannerFlx .bannerBtn span svg {
  transform: rotate(0deg);
  transition: 0.8s ease-in-out all;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .homebanner .bannerText .bannerFlx .bannerDesc {
    font-size: 80px;
    line-height: 80px;
  }
  .homebanner .bannerText .bannerFlx .bannerBtn {
    font-size: 16px;
    line-height: 16px;
  }
  .homebanner .bannerText .bannerFlx .bannerBtn span svg {
    width: 14px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .homebanner .bannerText {
    bottom: 40px;
  }
  .homebanner .bannerText .bannerFlx .bannerDesc {
    font-size: 70px;
    line-height: 70px;
  }
  .homebanner .bannerText .bannerFlx .bannerBtn {
    font-size: 12px;
    line-height: 12px;
  }
  .homebanner .bannerText .bannerFlx .bannerBtn span svg {
    width: 12px;
  }
}
@media (max-width: 1500px) {
  .homebanner .bannerText {
    bottom: 40px;
  }
  .homebanner .bannerText .bannerFlx .bannerDesc {
    font-size: 70px;
    line-height: 70px;
  }
  .homebanner .bannerText .bannerFlx .bannerBtn {
    font-size: 12px;
    line-height: 12px;
  }
  .homebanner .bannerText .bannerFlx .bannerBtn span svg {
    width: 12px;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerText .bannerFlx .bannerDesc {
    font-size: 55px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText .bannerFlx .bannerDesc {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerText .bannerFlx {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .homebanner .bannerText .bannerFlx .bannerDesc {
    flex: 0 0 100%;
    max-width: 100%;
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .homebanner .bannerText .bannerFlx .bannerBtn {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerImage::before {
    background: linear-gradient(180deg, rgba(44, 30, 248, 0) 40.74%, #2C1EF8 110.11%);
  }
}
@media (max-width: 575px) {
  .homebanner .bannerImage {
    height: 300px;
  }
  .homebanner .bannerImage img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homebanner .bannerImage::before {
    display: none;
  }
  .homebanner .bannerText {
    position: relative;
    padding: 30px 0;
    background: #2C1EF8;
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/dropdown.svg) no-repeat;
  background-position: center right 20px;
}

.form-floating > label {
  color: #000;
}

.algnCntr {
  align-items: center;
}

.homeBanner {
  position: relative;
  height: 100vh;
}
.homeBanner img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeBanner .onButton {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 400px;
}

.hmAbt .hmAbtLft {
  margin-top: 38px;
}
.hmAbt .hmAbtLft p {
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  color: #C4000B;
}
.hmAbt .hmAbtLft p span {
  position: relative;
}
.hmAbt .hmAbtLft p span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #C4000B;
  height: 2px;
  width: 150px;
}
.hmAbt .hmAbtRgt .defaultButton {
  margin-top: 40px;
}
.hmAbt .hmAbtRgt .defaultButton span {
  margin-right: 10px;
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .hmAbt .hmAbtLft {
    margin-top: 28px;
  }
  .hmAbt .hmAbtLft p {
    font-size: 22px;
    line-height: 22px;
  }
  .hmAbt .hmAbtLft p span::before {
    width: 120px;
  }
  .hmAbt .hmAbtRgt .defaultButton {
    margin-top: 30px;
  }
}
@media (max-width: 1500px) {
  .hmAbt .hmAbtLft {
    margin-top: 28px;
  }
  .hmAbt .hmAbtLft p {
    font-size: 22px;
    line-height: 22px;
  }
  .hmAbt .hmAbtLft p span::before {
    width: 120px;
  }
  .hmAbt .hmAbtRgt .defaultButton {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .hmAbt .hmAbtLft {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .hmAbt .hmAbtLft p {
    font-size: 20px;
    line-height: 20px;
  }
  .hmAbt .hmAbtLft p span::before {
    width: 100px;
  }
  .hmAbt .hmAbtRgt .defaultButton {
    margin-top: 20px;
  }
}
@media (max-width: 450px) {
  .hmAbt {
    padding-top: 0;
    text-align: center;
  }
  .hmAbt.paddMob {
    padding-top: 40px;
  }
  .hmAbt .hmAbtLft p .sdLne {
    display: none;
  }
}

.hmAbtCounter {
  padding-top: 80px;
}
.hmAbtCounter .hmCounterBox .btmCounter .count, .hmAbtCounter .hmCounterBox .btmCounter .counterDigit {
  font-weight: 400;
  font-size: 120px;
  line-height: 80px;
  color: #232323;
}
.hmAbtCounter .hmCounterBox .countrHd {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: #232323;
  margin-top: 25px;
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .hmAbtCounter {
    padding-top: 50px;
  }
  .hmAbtCounter .hmCounterBox .btmCounter .count, .hmAbtCounter .hmCounterBox .btmCounter .counterDigit {
    font-size: 90px;
    line-height: 60px;
  }
  .hmAbtCounter .hmCounterBox .countrHd {
    font-size: 16px;
    line-height: 20px;
    margin-top: 15px;
  }
}
@media (max-width: 1500px) {
  .hmAbtCounter {
    padding-top: 50px;
  }
  .hmAbtCounter .hmCounterBox .btmCounter .count, .hmAbtCounter .hmCounterBox .btmCounter .counterDigit {
    font-size: 90px;
    line-height: 60px;
  }
  .hmAbtCounter .hmCounterBox .countrHd {
    font-size: 15px;
    line-height: 18px;
    margin-top: 15px;
  }
}
@media (max-width: 1199px) {
  .hmAbtCounter {
    padding-top: 40px;
  }
  .hmAbtCounter .hmCounterBox .btmCounter .count, .hmAbtCounter .hmCounterBox .btmCounter .counterDigit {
    font-size: 80px;
    line-height: 50px;
  }
  .hmAbtCounter .hmCounterBox .countrHd {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  .hmAbtCounter {
    padding-top: 30px;
  }
  .hmAbtCounter .hmCounterBox .btmCounter .count, .hmAbtCounter .hmCounterBox .btmCounter .counterDigit {
    font-size: 60px;
    line-height: 45px;
  }
  .hmAbtCounter .hmCounterBox .countrHd {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .hmAbtCounter {
    padding-top: 30px;
  }
  .hmAbtCounter .hmCounterBox {
    margin-bottom: 25px;
  }
  .hmAbtCounter .hmCounterBox .btmCounter .count, .hmAbtCounter .hmCounterBox .btmCounter .counterDigit {
    font-size: 60px;
    line-height: 45px;
  }
  .hmAbtCounter .hmCounterBox .countrHd {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 450px) {
  .hmAbtCounter .hmCounterBox .btmCounter .count, .hmAbtCounter .hmCounterBox .btmCounter .counterDigit {
    font-size: 50px;
    line-height: 40px;
  }
}

.whtClr {
  color: #fff;
}

.txtCntr {
  text-align: center;
}

.hmProducts {
  background: #070162;
}
.hmProducts .hmProductSlider .slick-prev::before {
  content: "";
  background: url(../images/left_arrow.svg) no-repeat;
  width: 15px;
  height: 25px;
  background-size: contain;
  display: block;
}
.hmProducts .hmProductSlider .slick-next::before {
  content: "";
  background: url(../images/right_arrow.svg) no-repeat;
  z-index: 1;
  width: 15px;
  height: 25px;
  background-size: contain;
  display: block;
}
.hmProducts .hmProductSlider .hmProductBox {
  background: #E8E7FF;
  border-radius: 20px;
  margin: 0 15px;
  min-height: 490px;
  display: block;
  transition: 0.5s ease-in-out all;
  overflow: hidden;
}
.hmProducts .hmProductSlider .hmProductBox img {
  margin: 0 0 80px auto;
  max-width: 95%;
  min-height: 330px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1);
  transition: 0.5s ease-in-out all;
}
.hmProducts .hmProductSlider .hmProductBox p {
  font-weight: 500;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  color: #232323;
  max-width: 90%;
  margin: 0 auto;
  transition: 0.5s ease-in-out all;
}
.hmProducts .hmProductSlider .hmProductBox:hover {
  background: #9e9aff;
}
.hmProducts .hmProductSlider .hmProductBox:hover img {
  transform: scale(1.1);
}
.hmProducts .hmProductSlider .hmProductBox:hover p {
  color: #fff;
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .hmProducts .hmProductSlider .slick-prev::before {
    content: "";
    background: url(../images/left_arrow.svg) no-repeat;
    width: 15px;
    height: 25px;
    background-size: contain;
    display: block;
  }
  .hmProducts .hmProductSlider .slick-next::before {
    content: "";
    background: url(../images/right_arrow.svg) no-repeat;
    z-index: 1;
    width: 15px;
    height: 25px;
    background-size: contain;
    display: block;
  }
  .hmProducts .hmProductSlider .hmProductBox {
    margin: 0 10px;
    min-height: 350px;
  }
  .hmProducts .hmProductSlider .hmProductBox img {
    margin-bottom: 50px;
    min-height: 250px;
  }
  .hmProducts .hmProductSlider .hmProductBox p {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 1500px) {
  .hmProducts .hmProductSlider .slick-prev::before {
    content: "";
    background: url(../images/left_arrow.svg) no-repeat;
    width: 15px;
    height: 25px;
    background-size: contain;
    display: block;
  }
  .hmProducts .hmProductSlider .slick-next::before {
    content: "";
    background: url(../images/right_arrow.svg) no-repeat;
    z-index: 1;
    width: 15px;
    height: 25px;
    background-size: contain;
    display: block;
  }
  .hmProducts .hmProductSlider .hmProductBox {
    margin: 0 10px;
    min-height: 350px;
  }
  .hmProducts .hmProductSlider .hmProductBox img {
    margin-bottom: 50px;
    min-height: 250px;
  }
  .hmProducts .hmProductSlider .hmProductBox p {
    font-size: 20px;
    line-height: 20px;
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 1199px) {
  .hmProducts .hmProductSlider .hmProductBox {
    min-height: 310px;
  }
  .hmProducts .hmProductSlider .hmProductBox img {
    margin-bottom: 30px;
    min-height: 230px;
  }
  .hmProducts .hmProductSlider .hmProductBox p {
    font-size: 18px;
    line-height: 18px;
  }
  .hmProducts .hmProductSlider .hmProductBox.lsrSze img {
    margin: 0 0 30px 12px;
  }
}
@media (max-width: 991px) {
  .hmProducts .hmProductSlider .hmProductBox {
    min-height: 290px;
  }
  .hmProducts .hmProductSlider .hmProductBox img {
    margin-bottom: 30px;
    min-height: 200px;
  }
  .hmProducts .hmProductSlider .hmProductBox p {
    font-size: 18px;
    line-height: 18px;
  }
  .hmProducts .hmProductSlider .hmProductBox.lsrSze img {
    margin: 0 0 30px 10px;
  }
}
@media (max-width: 767px) {
  .hmProducts .hmProductSlider .hmProductBox {
    min-height: 290px;
  }
  .hmProducts .hmProductSlider .hmProductBox img {
    margin-bottom: 30px;
    min-height: 200px;
  }
  .hmProducts .hmProductSlider .hmProductBox p {
    font-size: 20px;
    line-height: 22px;
  }
  .hmProducts .hmProductSlider .hmProductBox.lsrSze img {
    margin: 0 0 30px 10px;
  }
}
@media (max-width: 575px) {
  .hmProducts .hmProductSlider .slick-prev {
    left: 10px;
    z-index: 1;
  }
  .hmProducts .hmProductSlider .slick-next {
    right: 10px;
  }
  .hmProducts .hmProductSlider .hmProductBox {
    min-height: 400px;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .hmProducts .hmProductSlider .hmProductBox img {
    margin-bottom: 20px;
    min-height: 100%;
  }
  .hmProducts .hmProductSlider .hmProductBox p {
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 20px;
    max-width: 100%;
  }
  .hmProducts .hmProductSlider .hmProductBox.lsrSze img {
    margin: 0 0 20px 10px;
  }
}
@media (max-width: 450px) {
  .hmProducts {
    padding-bottom: 70px;
  }
  .hmProducts .hmProductSlider {
    padding-bottom: 40px;
  }
  .hmProducts .hmProductSlider .slick-prev {
    left: 40%;
    top: 100%;
  }
  .hmProducts .hmProductSlider .slick-next {
    right: 39%;
    top: 100%;
  }
  .hmProducts .hmProductSlider .hmProductBox {
    min-height: 280px;
    max-width: 280px;
  }
  .hmProducts .hmProductSlider .hmProductBox img {
    margin-bottom: 15px;
  }
  .hmProducts .hmProductSlider .hmProductBox p {
    font-size: 16px;
    line-height: 16px;
    padding-bottom: 20px;
  }
  .hmProducts .hmProductSlider .hmProductBox.lsrSze img {
    margin: 0 0 15px 10px;
  }
}

.mgBtZro {
  margin-bottom: 0px !important;
}

.hmCommitExlnc .hmCommitExlncLft {
  max-width: 80%;
}
.hmCommitExlnc .hmCommitExlncRgt img {
  width: 100%;
}
@media (max-width: 991px) {
  .hmCommitExlnc .hmCommitExlncLft {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}

.hmMarqee {
  background: #070162;
  padding: 100px 0;
}
.hmMarqee .marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  animation: marquee 20s linear infinite;
}
.hmMarqee .marquee-content span {
  color: #fff;
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  flex-shrink: 0;
}
.hmMarqee .marquee-content span:nth-child(even) {
  color: rgba(255, 255, 255, 0.3019607843);
  font-size: 40px;
  line-height: 40px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .hmMarqee {
    padding: 70px 0;
  }
  .hmMarqee .marquee-content {
    gap: 20px;
  }
  .hmMarqee .marquee-content span {
    font-size: 30px;
    line-height: 30px;
  }
  .hmMarqee .marquee-content span:nth-child(even) {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 1500px) {
  .hmMarqee {
    padding: 70px 0;
  }
  .hmMarqee .marquee-content {
    gap: 20px;
  }
  .hmMarqee .marquee-content span {
    font-size: 30px;
    line-height: 30px;
  }
  .hmMarqee .marquee-content span:nth-child(even) {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .hmMarqee {
    padding: 60px 0;
  }
  .hmMarqee .marquee-content {
    gap: 18px;
  }
  .hmMarqee .marquee-content span {
    font-size: 28px;
    line-height: 28px;
  }
  .hmMarqee .marquee-content span:nth-child(even) {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .hmMarqee {
    padding: 50px 0;
  }
  .hmMarqee .marquee-content {
    gap: 16px;
  }
  .hmMarqee .marquee-content span {
    font-size: 25px;
    line-height: 25px;
  }
  .hmMarqee .marquee-content span:nth-child(even) {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (max-width: 575px) {
  .hmMarqee {
    padding: 40px 0;
  }
  .hmMarqee .marquee-content {
    gap: 15px;
  }
  .hmMarqee .marquee-content span {
    font-size: 22px;
    line-height: 22px;
  }
  .hmMarqee .marquee-content span:nth-child(even) {
    font-size: 22px;
    line-height: 22px;
  }
}

.hmGlobal .global_presence_section .global_map_mobile {
  display: none;
}
.hmGlobal .global_presence_section .global_map_section {
  position: relative;
  max-width: 100%;
  margin: 0px auto;
}
.hmGlobal .global_presence_section .global_map_section .img_gloable {
  padding-right: 0;
  padding-bottom: 20px;
  margin: 0px auto;
  position: relative;
  z-index: 1;
}
.hmGlobal .global_presence_section .global_map_section .img_gloable img {
  width: 100%;
}
.hmGlobal .global_presence_section .global_map_section .map_location {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.hmGlobal .global_presence_section .global_map_section .map_location i {
  width: 28px;
  height: 40px;
  background: url(../images/glbmap_icn.png) no-repeat center center;
  display: block;
  background-size: contain;
  cursor: pointer;
  border: transparent solid 2px;
  transition: 0.5s ease-in-out all;
}
.hmGlobal .global_presence_section .global_map_section .map_location span {
  background: #fff;
  position: absolute;
  color: #000;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  bottom: -15px;
  left: -11px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  display: none;
  white-space: nowrap;
  border-radius: 6px;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.51);
}
.hmGlobal .global_presence_section .global_map_section .map_location:hover span {
  transition: all 0.4s ease-in-out;
  opacity: 1;
  width: auto;
  display: block;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Bangladesh {
  left: 72.35%;
  top: 45%;
  z-index: 5;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Thailand {
  left: 75.8%;
  top: 50.5%;
  z-index: 4;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Vietnam {
  left: 77.5%;
  top: 53.05%;
  z-index: 3;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Indonesia {
  left: 79.5%;
  top: 60.5%;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_UAE {
  left: 61.5%;
  top: 44.5%;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Saudi_Arabia {
  left: 58%;
  top: 42.75%;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Kenya {
  left: 56.5%;
  top: 56.5%;
  z-index: 6;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Tanzania {
  left: 55.5%;
  top: 60%;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Uganda {
  left: 54.6%;
  top: 56%;
}
.hmGlobal .global_presence_section .global_map_section .map_location.location_Nigeria {
  left: 47%;
  top: 52%;
}
@media (max-width: 767px) {
  .hmGlobal .global_presence_section .global_map_section {
    display: none;
  }
  .hmGlobal .global_presence_section .global_map_section .global_map_mobile {
    display: block;
  }
  .hmGlobal .global_presence_section .global_map_section .global_map_mobile img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .hmGlobal .global_presence_section .global_map_mobile {
    display: block;
    margin: 0px -15px;
  }
  .hmGlobal .global_presence_section .global_map_mobile img {
    max-width: 100%;
  }
}
.hmGlobal .globalMapMob {
  display: none;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .hmGlobal .global_presence_section .global_map_section .map_location i {
    width: 22px;
    height: 30px;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location span {
    padding: 2px 5px;
    font-size: 12px;
    line-height: 12px;
    bottom: -18px;
    left: -11px;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Bangladesh {
    left: 72.35%;
    top: 46%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Thailand {
    left: 75.8%;
    top: 51%;
    z-index: 3;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Vietnam {
    left: 77.5%;
    top: 54.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Indonesia {
    left: 79.5%;
    top: 61%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_UAE {
    left: 61.5%;
    top: 44.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Saudi_Arabia {
    left: 58%;
    top: 43.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Kenya {
    left: 56.5%;
    top: 56.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Tanzania {
    left: 55.5%;
    top: 60.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Uganda {
    left: 54.6%;
    top: 56.6%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Nigeria {
    left: 47%;
    top: 52.5%;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .hmGlobal .global_presence_section .global_map_section .map_location i {
    width: 22px;
    height: 30px;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location span {
    padding: 2px 5px;
    font-size: 12px;
    line-height: 12px;
    bottom: -18px;
    left: -11px;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Bangladesh {
    left: 72.35%;
    top: 45%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Thailand {
    left: 75.8%;
    top: 50.5%;
    z-index: 3;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Vietnam {
    left: 77.5%;
    top: 53.05%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Indonesia {
    left: 79.5%;
    top: 60.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_UAE {
    left: 61.5%;
    top: 43.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Saudi_Arabia {
    left: 58%;
    top: 42.75%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Kenya {
    left: 56.5%;
    top: 56%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Tanzania {
    left: 55.5%;
    top: 60%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Uganda {
    left: 54.6%;
    top: 55.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Nigeria {
    left: 47%;
    top: 52%;
  }
}
@media (max-width: 1500px) {
  .hmGlobal .global_presence_section .global_map_section .map_location i {
    width: 22px;
    height: 30px;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location span {
    padding: 2px 5px;
    font-size: 12px;
    line-height: 12px;
    bottom: -18px;
    left: -11px;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Bangladesh {
    left: 72.35%;
    top: 45%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Thailand {
    left: 75.8%;
    top: 50.5%;
    z-index: 3;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Vietnam {
    left: 77.5%;
    top: 53.05%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Indonesia {
    left: 79.5%;
    top: 60.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_UAE {
    left: 61.5%;
    top: 43.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Saudi_Arabia {
    left: 58%;
    top: 42.75%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Kenya {
    left: 56.5%;
    top: 56%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Tanzania {
    left: 55.5%;
    top: 60%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Uganda {
    left: 54.6%;
    top: 55.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Nigeria {
    left: 47%;
    top: 52%;
  }
}
@media (max-width: 1199px) {
  .hmGlobal .global_presence_section .global_map_section .map_location i {
    width: 18px;
    height: 25px;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Bangladesh {
    left: 72.35%;
    top: 44%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Thailand {
    left: 75.8%;
    top: 49.5%;
    z-index: 3;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Vietnam {
    left: 77.5%;
    top: 52.25%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Indonesia {
    left: 79.5%;
    top: 60.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_UAE {
    left: 61.75%;
    top: 43.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Saudi_Arabia {
    left: 58%;
    top: 42.75%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Kenya {
    left: 56.5%;
    top: 56%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Tanzania {
    left: 55.5%;
    top: 60%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Uganda {
    left: 54.6%;
    top: 55.5%;
  }
  .hmGlobal .global_presence_section .global_map_section .map_location.location_Nigeria {
    left: 47%;
    top: 52%;
  }
}
@media (max-width: 991px) {
  .hmGlobal .global_presence_section {
    display: none;
  }
  .hmGlobal .globalMapMob {
    display: block;
  }
  .hmGlobal .globalMapMob img {
    width: 100%;
  }
}

.hmIndustry {
  background: #F3F2FF;
}
.hmIndustry .hmIndustryRgt .fvLogo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hmIndustry .hmIndustryRgt .fvLogo li {
  width: 16%;
  margin-right: 46px;
}
.hmIndustry .hmIndustryRgt .fvLogo li:last-child {
  margin-right: 0px;
}
.hmIndustry .hmIndustryRgt .fvLogo li img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
  margin-top: 60px;
}
.hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
  width: 12.5%;
}
.hmIndustry .hmIndustryRgt .mobDisOn {
  display: none;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .hmIndustry .hmIndustryRgt .fvLogo li {
    width: 16%;
    margin-right: 33px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
    margin-top: 40px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
    width: 12.5%;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .hmIndustry .hmIndustryRgt .fvLogo li {
    width: 16%;
    margin-right: 33px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
    margin-top: 40px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
    width: 12.5%;
  }
}
@media (max-width: 1500px) {
  .hmIndustry .hmIndustryRgt .fvLogo li {
    width: 16%;
    margin-right: 33px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
    margin-top: 40px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
    width: 12.5%;
  }
}
@media (max-width: 1299px) {
  .hmIndustry .hmIndustryRgt .fvLogo li {
    width: 16%;
    margin-right: 30px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
    margin-top: 40px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
    width: 12.25%;
  }
}
@media (max-width: 1199px) {
  .hmIndustry .hmIndustryRgt .fvLogo li {
    width: 15.5%;
    margin-right: 28px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
    margin-top: 40px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
    width: 12.2%;
  }
}
@media (max-width: 991px) {
  .hmIndustry .hmIndustryLft {
    text-align: center;
    margin-bottom: 30px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo li {
    width: 16.75%;
    margin-right: 28px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
    margin-top: 30px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
    width: 13.25%;
  }
}
@media (max-width: 767px) {
  .hmIndustry .hmIndustryLft {
    margin-bottom: 30px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo {
    display: none;
    justify-content: center;
  }
  .hmIndustry .hmIndustryRgt .fvLogo li {
    width: 27.5%;
    margin: 0 15px 15px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo li img {
    height: 100px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
    margin-top: 0;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
    width: 27.5%;
    margin: 0 15px 15px;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn {
    display: block;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .slick-dots {
    margin-top: 0px;
    width: 100%;
    height: 10px;
    text-align: center;
    position: absolute;
    bottom: -40px;
    line-height: 0px;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0px 7px;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .slick-dots li button {
    width: 10px;
    height: 10px;
    font-size: 0px;
    background-color: #CBCBCB;
    padding: 0px;
    border-radius: 100%;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .slick-dots li button:before {
    display: none;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .slick-dots li:hover button, .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .slick-dots li.slick-active button {
    background: #665DC7;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .hmIndustryBox {
    height: 100px;
    background: #fff;
    border-radius: 10px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .hmIndustryBox img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 575px) {
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .hmIndustryBox {
    margin: 0 20px;
    padding: 10px 15px;
  }
}
@media (max-width: 450px) {
  .hmIndustry .hmIndustryLft {
    margin-bottom: 20px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo li img {
    height: 60px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo {
    margin-top: 0;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li img {
    height: 80px;
  }
  .hmIndustry .hmIndustryRgt .fvLogo.sxLogo li:last-child {
    margin-bottom: 0;
  }
  .hmIndustry .hmIndustryRgt .mobDisOn .hmIndustrySlider .hmIndustryBox {
    margin: 0 auto;
    padding: 20px;
    max-width: 300px;
    height: 120px;
  }
}

footer {
  background: #000D27;
}
footer .ftrTp {
  padding: 110px 0 50px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.3019607843);
}
footer .ftrTp .ftrLft h2 {
  font-weight: 300;
  font-size: 80px;
  line-height: 90px;
  color: #FFFFFF;
  margin-bottom: 40px;
}
footer .ftrTp .sclMda {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .ftrTp .sclMda li {
  margin-right: 30px;
}
footer .ftrTp .sclMda li img {
  transform: scale(1);
  transition: 0.5s ease-in-out all;
}
footer .ftrTp .sclMda li img:hover {
  transform: scale(1.2);
}
footer .ftrTp .ftrRgt .btmBrdr {
  border-bottom: 1px solid rgba(217, 217, 217, 0.3019607843);
  padding-bottom: 30px;
}
footer .ftrTp .ftrRgt .ftrCnctFlx {
  display: flex;
  flex-wrap: wrap;
}
footer .ftrTp .ftrRgt .ftrCnctFlx .ftrCnctLft {
  flex: 0 0 55%;
  max-width: 55%;
}
footer .ftrTp .ftrRgt .ftrCnctFlx .ftrCnctRgt {
  flex: 0 0 45%;
  max-width: 45%;
}
footer .ftrTp .ftrRgt .ftrCnct .lablePra {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 20px;
}
footer .ftrTp .ftrRgt .ftrCnct p {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #C2C2C2;
}
footer .ftrTp .ftrRgt .ftrCnct a, footer .ftrTp .ftrRgt .ftrCnct span {
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  color: #C2C2C2;
  transition: 0.5s ease-in-out all;
}
footer .ftrTp .ftrRgt .ftrCnct a:hover, footer .ftrTp .ftrRgt .ftrCnct span:hover {
  color: #FFFFFF;
}
footer .ftrTp .ftrRgt .ftrCnct .twoAnkr {
  margin-top: 30px;
}
footer .ftrTp .ftrRgt .ftrLnks {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .ftrTp .ftrRgt .ftrLnks li a {
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  transition: 0.5s ease-in-out all;
}
footer .ftrTp .ftrRgt .ftrLnks li:hover a, footer .ftrTp .ftrRgt .ftrLnks li.active a {
  color: #C2C2C2;
}
footer .ftrBt {
  padding: 32px 0 30px;
}
footer .ftrBt p {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: #777777;
}
footer .ftrBt .RgtTxt {
  text-align: right;
}
@media (min-width: 1500px) and (max-width: 1599px) {
  footer .ftrTp {
    padding: 70px 0 30px;
  }
  footer .ftrTp .ftrLft h2 {
    font-size: 65px;
    line-height: 75px;
    margin-bottom: 25px;
  }
  footer .ftrTp .sclMda li {
    margin-right: 20px;
  }
  footer .ftrTp .sclMda li a img {
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .ftrTp .ftrRgt .btmBrdr {
    padding-bottom: 20px;
  }
  footer .ftrTp .ftrRgt .ftrCnct .lablePra {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  footer .ftrTp .ftrRgt .ftrCnct p {
    font-size: 18px;
    line-height: 30px;
  }
  footer .ftrTp .ftrRgt .ftrCnct a, footer .ftrTp .ftrRgt .ftrCnct span {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrTp .ftrRgt .ftrCnct .twoAnkr {
    margin-top: 15px;
  }
  footer .ftrTp .ftrRgt .ftrLnks {
    padding-top: 30px;
  }
  footer .ftrTp .ftrRgt .ftrLnks li a {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrBt {
    padding: 24px 0 20px;
  }
  footer .ftrBt p {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 1500px) {
  footer .ftrTp {
    padding: 70px 0 30px;
  }
  footer .ftrTp .ftrLft h2 {
    font-size: 65px;
    line-height: 75px;
    margin-bottom: 25px;
  }
  footer .ftrTp .sclMda li {
    margin-right: 20px;
  }
  footer .ftrTp .sclMda li a img {
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .ftrTp .ftrRgt .btmBrdr {
    padding-bottom: 20px;
  }
  footer .ftrTp .ftrRgt .ftrCnct .lablePra {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  footer .ftrTp .ftrRgt .ftrCnct p {
    font-size: 18px;
    line-height: 30px;
  }
  footer .ftrTp .ftrRgt .ftrCnct a, footer .ftrTp .ftrRgt .ftrCnct span {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrTp .ftrRgt .ftrCnct .twoAnkr {
    margin-top: 15px;
  }
  footer .ftrTp .ftrRgt .ftrLnks {
    padding-top: 30px;
  }
  footer .ftrTp .ftrRgt .ftrLnks li a {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrBt {
    padding: 24px 0 20px;
  }
  footer .ftrBt p {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  footer .ftrTp {
    padding: 60px 0 20px;
  }
  footer .ftrTp .ftrLft h2 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 20px;
  }
  footer .ftrTp .sclMda {
    margin-bottom: 30px;
  }
  footer .ftrTp .ftrRgt .ftrLnks {
    padding-top: 20px;
  }
  footer .ftrTp .ftrRgt .ftrLnks li a {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrBt {
    padding: 24px 0 20px;
  }
}
@media (max-width: 767px) {
  footer {
    text-align: center;
  }
  footer .ftrTp {
    padding: 50px 0 20px;
  }
  footer .ftrTp .ftrLft h2 {
    font-size: 50px;
    line-height: 60px;
  }
  footer .ftrTp .sclMda {
    margin-bottom: 25px;
    justify-content: center;
  }
  footer .ftrTp .sclMda li {
    margin: 0 10px;
  }
  footer .ftrTp .ftrRgt .ftrCnctFlx .ftrCnctLft {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  footer .ftrTp .ftrRgt .ftrCnctFlx .ftrCnctRgt {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .ftrTp .ftrRgt .ftrCnct .lablePra {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  footer .ftrTp .ftrRgt .ftrCnct p {
    font-size: 18px;
    line-height: 30px;
  }
  footer .ftrTp .ftrRgt .ftrCnct a, footer .ftrTp .ftrRgt .ftrCnct span {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrTp .ftrRgt .ftrCnct .twoAnkr {
    margin-top: 15px;
  }
  footer .ftrTp .ftrRgt .ftrLnks {
    justify-content: flex-start;
  }
  footer .ftrTp .ftrRgt .ftrLnks li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 15px;
  }
  footer .ftrTp .ftrRgt .ftrLnks li:last-child, footer .ftrTp .ftrRgt .ftrLnks li:nth-child(3) {
    margin-bottom: 0;
  }
  footer .ftrTp .ftrRgt .ftrLnks li a {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrBt {
    padding: 20px;
  }
  footer .ftrBt .RgtTxt {
    margin-top: 10px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  footer .ftrTp {
    padding: 40px 0 20px;
  }
  footer .ftrTp .ftrLft h2 {
    font-size: 35px;
    line-height: 45px;
  }
  footer .ftrTp .sclMda li a img {
    height: 25px;
  }
  footer .ftrTp .ftrRgt .ftrCnct .lablePra {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  footer .ftrTp .ftrRgt .ftrCnct p {
    font-size: 18px;
    line-height: 30px;
  }
  footer .ftrTp .ftrRgt .ftrCnct a, footer .ftrTp .ftrRgt .ftrCnct span {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrTp .ftrRgt .ftrCnct .twoAnkr {
    margin-top: 15px;
  }
  footer .ftrTp .ftrRgt .ftrLnks {
    justify-content: center;
  }
  footer .ftrTp .ftrRgt .ftrLnks li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .ftrTp .ftrRgt .ftrLnks li:nth-child(3) {
    margin-bottom: 15px;
  }
  footer .ftrBt {
    padding: 20px;
  }
  footer .ftrBt p {
    font-size: 14px;
    line-height: 20px;
  }
}

.innerbanner {
  position: relative;
}
.innerbanner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(180deg, rgba(44, 30, 248, 0) 55.74%, #2C1EF8 110.11%);
  z-index: 0;
  height: 100%;
  width: 100%;
}
.innerbanner img {
  width: 100%;
}
.innerbanner .innerBlock {
  position: absolute;
  bottom: 50px;
}
.innerbanner .innerBlock .innerText {
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  color: #fff;
  margin: 0;
}
@media (max-width: 1500px) {
  .innerbanner .innerBlock {
    bottom: 30px;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .innerbanner {
    height: 250px;
  }
  .innerbanner img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 450px) {
  .innerbanner {
    height: 200px;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 40px;
    line-height: 40px;
  }
}

.cntctTpSc .cntctDts .cntctDv {
  margin-bottom: 30px;
}
.cntctTpSc .cntctDts .cntctDv .cntctLbl {
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: #666666;
  margin-bottom: 15px;
}
.cntctTpSc .cntctDts .cntctDv a {
  font-weight: 400;
  font-size: 26px;
  line-height: 26px;
  color: #232323;
  transition: 0.5s ease-in-out all;
}
.cntctTpSc .cntctDts .cntctDv a:hover {
  color: #0010D5;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .cntctTpSc .cntctDts .cntctDv {
    margin-bottom: 25px;
  }
  .cntctTpSc .cntctDts .cntctDv .cntctLbl {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .cntctTpSc .cntctDts .cntctDv a {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .cntctTpSc .cntctDts .cntctDv {
    margin-bottom: 20px;
  }
  .cntctTpSc .cntctDts .cntctDv .cntctLbl {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .cntctTpSc .cntctDts .cntctDv a {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1500px) {
  .cntctTpSc .cntctDts .cntctDv {
    margin-bottom: 20px;
  }
  .cntctTpSc .cntctDts .cntctDv .cntctLbl {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .cntctTpSc .cntctDts .cntctDv a {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .cntctTpSc .cntctDts .cntctDv {
    margin-bottom: 20px;
  }
  .cntctTpSc .cntctDts .cntctDv .cntctLbl {
    font-size: 16px;
    line-height: 16px;
  }
  .cntctTpSc .cntctDts .cntctDv .twoAnkr {
    display: flex;
    flex-direction: column;
  }
  .cntctTpSc .cntctDts .cntctDv .twoAnkr span {
    display: none;
  }
  .cntctTpSc .cntctDts .cntctDv .twoAnkr a {
    margin-bottom: 10px;
  }
  .cntctTpSc .cntctDts .cntctDv a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  .cntctTpSc .cntctHead {
    margin-bottom: 20px;
  }
  .cntctTpSc .cntctDts .cntctDv {
    margin-bottom: 15px;
  }
  .cntctTpSc .cntctDts .cntctDv .cntctLbl {
    font-size: 16px;
    line-height: 16px;
  }
  .cntctTpSc .cntctDts .cntctDv a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .cntctTpSc {
    text-align: center;
  }
  .cntctTpSc .cntctHead {
    margin-bottom: 20px;
  }
  .cntctTpSc .cntctDts {
    margin-bottom: 20px;
  }
}
@media (max-width: 450px) {
  .cntctTpSc .cntctHead {
    margin-bottom: 15px;
  }
  .cntctTpSc .cntctDts .cntctDv .cntctLbl {
    font-size: 14px;
    line-height: 14px;
  }
  .cntctTpSc .cntctDts .cntctDv a {
    font-size: 14px;
    line-height: 14px;
  }
}

.cntctMdSc .cntctMdMap iframe {
  height: 700px;
  border-radius: 60px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .cntctMdSc .cntctMdMap iframe {
    height: 500px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .cntctMdSc .cntctMdMap iframe {
    height: 500px;
  }
}
@media (max-width: 1500px) {
  .cntctMdSc .cntctMdMap iframe {
    height: 500px;
  }
}
@media (max-width: 1199px) {
  .cntctMdSc .cntctMdMap iframe {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .cntctMdSc .cntctMdMap iframe {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .cntctMdSc .cntctMdMap iframe {
    height: 300px;
  }
}
@media (max-width: 450px) {
  .cntctMdSc .cntctMdMap iframe {
    height: 250px;
  }
}

.getTch .row {
  align-items: center;
}
.getTch .getTchFrm .inquiryForm {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.getTch .getTchFrm .inquiryForm label {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #232323;
  margin-bottom: 10px;
}
.getTch .getTchFrm .inquiryForm label span {
  color: red;
}
.getTch .getTchFrm .inquiryForm .form-group {
  flex: 0 0 48.25%;
  max-width: 48.25%;
  margin-bottom: 30px;
  margin-right: 29px;
}
.getTch .getTchFrm .inquiryForm .form-group:nth-child(2n), .getTch .getTchFrm .inquiryForm .form-group.flx100 {
  margin-right: 0;
}
.getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
  background-color: #fff;
  border-radius: 10px;
  padding: 17px 20px;
  border: 1px solid #D9D9D9;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
  height: 50px;
}
.getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
}
.getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
}
.getTch .getTchFrm .inquiryForm .form-group textarea {
  height: 100px !important;
}
.getTch .getTchFrm .inquiryForm .form-group.cptcha {
  position: relative;
  margin-bottom: 0;
}
.getTch .getTchFrm .inquiryForm .form-group.cptcha img {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px !important;
  border-radius: 10px !important;
}
@media (max-width: 575px) {
  .getTch .getTchFrm .inquiryForm .form-group.cptcha {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 5px;
  }
}
.getTch .getTchFrm .inquiryForm .form-group.flxFrm {
  display: flex;
  flex-direction: column;
}
.getTch .getTchFrm .inquiryForm .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/select_drp.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 16px;
}
.getTch .getTchFrm .inquiryForm .form-group.flx100 {
  flex: 0 0 100%;
  max-width: 100%;
}
.getTch .getTchFrm .cntctBtn {
  margin-top: 40px;
}
.getTch .getTchImg {
  padding-right: 60px;
}
.getTch .getTchImg img {
  border-radius: 20px;
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .getTch .getTchFrm .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .getTch .getTchFrm .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 45px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group textarea {
    height: 90px !important;
  }
  .getTch .getTchFrm .inquiryForm .form-group.cptcha img {
    height: 45px !important;
  }
  .getTch .getTchFrm .cntctBtn {
    margin-top: 30px;
  }
  .getTch .getTchImg {
    padding-right: 50px;
  }
  .getTch .getTchImg img {
    height: 500px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .getTch .getTchFrm .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .getTch .getTchFrm .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 45px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group textarea {
    height: 80px !important;
  }
  .getTch .getTchFrm .inquiryForm .form-group.cptcha img {
    height: 45px !important;
  }
  .getTch .getTchFrm .cntctBtn {
    margin-top: 30px;
  }
  .getTch .getTchImg {
    padding-right: 40px;
  }
  .getTch .getTchImg img {
    height: 480px;
  }
}
@media (max-width: 1500px) {
  .getTch .getTchFrm .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .getTch .getTchFrm .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 45px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group textarea {
    height: 80px !important;
  }
  .getTch .getTchFrm .inquiryForm .form-group.cptcha img {
    height: 45px !important;
  }
  .getTch .getTchFrm .cntctBtn {
    margin-top: 30px;
  }
  .getTch .getTchImg {
    padding-right: 40px;
  }
  .getTch .getTchImg img {
    height: 480px;
  }
}
@media (max-width: 1299px) {
  .getTch .getTchFrm .inquiryForm .form-group {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .getTch .getTchFrm .inquiryForm label {
    font-size: 12px;
    line-height: 12px;
  }
  .getTch .getTchFrm .inquiryForm .form-group {
    margin-right: 18px;
    margin-bottom: 15px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 14px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  .getTch .getTchFrm .inquiryForm .form-group select {
    background-position: right 15px center;
  }
  .getTch .getTchFrm .cntctBtn {
    margin-top: 25px;
  }
  .getTch .getTchImg {
    padding-right: 30px;
  }
  .getTch .getTchImg img {
    height: 450px;
  }
}
@media (max-width: 991px) {
  .getTch .row {
    flex-direction: column-reverse;
  }
  .getTch .getTchFrm {
    margin-bottom: 30px;
  }
  .getTch .getTchImg {
    padding-right: 0;
    max-width: 80%;
    margin: 0 auto 0 0;
  }
}
@media (max-width: 991px) {
  .getTch .getTchImg {
    padding-right: 0;
    max-width: 100%;
    margin: 0 auto 0 0;
    height: 350px;
  }
  .getTch .getTchImg img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .getTch .getTchFrm .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
  }
  .getTch .getTchFrm .inquiryForm .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .getTch .getTchImg {
    max-width: 100%;
  }
}

.mgBtThrty {
  margin-bottom: 30px !important;
}
@media (max-width: 1500px) {
  .mgBtThrty {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 450px) {
  .mgBtThrty {
    margin-bottom: 15px !important;
  }
}

.visMis .visMisBx {
  background-color: #070162;
  border-radius: 40px;
  padding: 100px 84px;
  position: relative;
  overflow: hidden;
}
.visMis .visMisBx::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  background-image: url("../images/mission.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  height: 60%;
  width: 70%;
}
.visMis .visMisBx p {
  max-width: 64.5%;
}
.visMis .visMisBx.visImg::before {
  background-image: url("../images/vision.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  height: 60%;
  width: 70%;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .visMis .visMisBx {
    padding: 70px 60px;
  }
  .visMis .visMisBx p {
    max-width: 65.5%;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .visMis .visMisBx {
    padding: 70px 60px;
  }
  .visMis .visMisBx p {
    max-width: 65.5%;
  }
}
@media (max-width: 1500px) {
  .visMis .visMisBx {
    padding: 70px 60px;
  }
  .visMis .visMisBx p {
    max-width: 65.5%;
  }
}
@media (max-width: 1299px) {
  .visMis .visMisBx {
    padding: 50px 40px;
  }
  .visMis .visMisBx p {
    max-width: 79%;
  }
}
@media (max-width: 1199px) {
  .visMis .visMisBx {
    padding: 50px 40px;
  }
  .visMis .visMisBx p {
    max-width: 79%;
  }
}
@media (max-width: 991px) {
  .visMis .visMisBx {
    padding: 35px 30px;
  }
  .visMis .visMisBx::before {
    bottom: -20px;
  }
  .visMis .visMisBx p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .visMis .visMisBx {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  .visMis .visMisBx::before {
    bottom: -20px;
  }
}

.fwSmBld {
  font-weight: 500;
}

.qualityPlcy {
  position: relative;
}
.qualityPlcy::before {
  content: "";
  position: absolute;
  bottom: 36%;
  left: 0;
  right: 0;
  height: 1px;
  width: 80%;
  border: 1px dashed #CAC2C2;
  margin: auto;
}
.qualityPlcy .qualityPlcyInfo {
  display: flex;
  flex-wrap: wrap;
  margin-top: 300px;
}
.qualityPlcy .qualityPlcyInfo li {
  flex: 0 0 20%;
  max-width: 20%;
  text-align: center;
}
.qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx {
  position: relative;
}
.qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx::before {
  content: "";
  position: absolute;
  top: -69%;
  left: 0;
  right: 0;
  height: 340px;
  width: 59%;
  background: linear-gradient(0deg, #070162 0%, #7066D1 100%);
  z-index: -1;
  margin: auto;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
.qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .numbr {
  position: absolute;
  top: -49%;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 120px;
  line-height: 120px;
  font-weight: 400;
  opacity: 0.3;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon {
  margin-bottom: 45px;
}
.qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx p {
  font-size: 22px;
  line-height: 32px;
}
.qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth72 {
  max-width: 72%;
  margin: 0 auto;
}
.qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth66 {
  max-width: 66%;
  margin: 0 auto;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .qualityPlcy::before {
    bottom: 36%;
    width: 80%;
  }
  .qualityPlcy .qualityPlcyInfo {
    margin-top: 220px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx::before {
    top: -65%;
    height: 250px;
    width: 57%;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .numbr {
    top: -50%;
    font-size: 90px;
    line-height: 90px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon {
    margin-bottom: 30px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon img {
    height: 180px;
    width: 180px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx p {
    font-size: 16px;
    line-height: 26px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth72 {
    max-width: 60%;
    margin: 0 auto;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth66 {
    max-width: 53%;
    margin: 0 auto;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .qualityPlcy::before {
    bottom: 36%;
    width: 80%;
  }
  .qualityPlcy .qualityPlcyInfo {
    margin-top: 220px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx::before {
    top: -66%;
    height: 250px;
    width: 63%;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .numbr {
    top: -50%;
    font-size: 80px;
    line-height: 80px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon {
    margin-bottom: 30px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon img {
    height: 150px;
    width: 150px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx p {
    font-size: 16px;
    line-height: 26px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth72 {
    max-width: 73%;
    margin: 0 auto;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth66 {
    max-width: 67%;
    margin: 0 auto;
  }
}
@media (max-width: 1500px) {
  .qualityPlcy::before {
    bottom: 36%;
    width: 80%;
  }
  .qualityPlcy .qualityPlcyInfo {
    margin-top: 220px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx::before {
    top: -66%;
    height: 250px;
    width: 63%;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .numbr {
    top: -50%;
    font-size: 80px;
    line-height: 80px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon {
    margin-bottom: 30px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon img {
    height: 150px;
    width: 150px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx p {
    font-size: 16px;
    line-height: 26px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth72 {
    max-width: 73%;
    margin: 0 auto;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth66 {
    max-width: 67%;
    margin: 0 auto;
  }
}
@media (max-width: 1299px) {
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth72 {
    max-width: 80%;
    margin: 0 auto;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth66 {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 1199px) {
  .qualityPlcy .qualityPlcyInfo {
    margin-top: 200px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx::before {
    top: -66%;
    height: 230px;
    width: 63%;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .numbr {
    top: -50%;
    font-size: 65px;
    line-height: 65px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon {
    margin-bottom: 20px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon img {
    height: 130px;
    width: 130px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx p {
    font-size: 14px;
    line-height: 24px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth72 {
    max-width: 85%;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth66 {
    max-width: 72%;
  }
}
@media (max-width: 991px) {
  .qualityPlcy .qualityPlcyInfo {
    margin-top: 170px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx::before {
    top: -65%;
    height: 200px;
    width: 71%;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .numbr {
    top: -50%;
    font-size: 60px;
    line-height: 65px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon {
    margin-bottom: 20px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon img {
    height: 110px;
    width: 110px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx p {
    font-size: 14px;
    line-height: 24px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth72 {
    max-width: 86.61%;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth66 {
    max-width: 72%;
  }
}
@media (max-width: 767px) {
  .qualityPlcy {
    text-align: center;
  }
  .qualityPlcy::before {
    display: none;
  }
  .qualityPlcy .qualityPlcyHed {
    margin-bottom: 20px;
  }
  .qualityPlcy .qualityPlcyInfo {
    margin-top: 30px;
    justify-content: center;
  }
  .qualityPlcy .qualityPlcyInfo li {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx::before {
    display: none;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .numbr {
    display: none;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon {
    margin-bottom: 15px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon img {
    height: 110px;
    width: 110px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx p {
    font-size: 14px;
    line-height: 24px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth72 {
    max-width: 100%;
    text-align: center;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .mxWdth66 {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 450px) {
  .qualityPlcy .qualityPlcyHed {
    margin-bottom: 15px;
  }
  .qualityPlcy .qualityPlcyInfo {
    margin-top: 20px;
  }
  .qualityPlcy .qualityPlcyInfo li {
    flex: 0 0 100%;
    max-width: 300px;
    padding: 0;
    margin: 0 auto 20px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx .infoIcon img {
    height: 100px;
    width: 100px;
  }
  .qualityPlcy .qualityPlcyInfo li .qualityPlcyInfoBx p {
    font-size: 16px;
    line-height: 24px;
  }
}

.ourJrny {
  background: #F3F2FF;
}
.ourJrny .timeline {
  position: relative;
  margin-top: 60px;
}
.ourJrny .timeline::after {
  content: "";
  position: absolute;
  width: 13px;
  background-color: #9D9FC9;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 15px;
}
.ourJrny .timeline .timelineCntnr {
  position: relative;
  width: 50%;
  height: 235px;
}
.ourJrny .timeline .timelineCntnr.left {
  left: 0;
}
.ourJrny .timeline .timelineCntnr.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 30px;
  width: 0;
  z-index: 1;
  right: -25px;
  background: url("../images/timeline_left.png");
  height: 170px;
  width: 300px;
  background-size: contain;
  background-repeat: no-repeat;
}
.ourJrny .timeline .timelineCntnr.left .numbr {
  position: absolute;
  top: 23%;
  right: 15.1%;
  z-index: 11;
  background: radial-gradient(130.3% 130.3% at -5.23% 19.76%, #FFFFFF 0%, #D3D5ED 100%);
  height: 124px;
  width: 124px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ourJrny .timeline .timelineCntnr.left .numbr p {
  font-size: 40px;
  line-height: 32px;
  color: #232323;
  font-weight: 600;
}
.ourJrny .timeline .timelineCntnr.left .content {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 40%;
  direction: rtl;
}
.ourJrny .timeline .timelineCntnr.right {
  left: 50%;
}
.ourJrny .timeline .timelineCntnr.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 35px;
  width: 0;
  z-index: 1;
  left: -15px;
  background: url("../images/timeline_right.png");
  height: 170px;
  width: 300px;
  background-size: contain;
  background-repeat: no-repeat;
}
.ourJrny .timeline .timelineCntnr.right .numbr {
  position: absolute;
  top: 25%;
  left: 16.1%;
  z-index: 11;
  background: radial-gradient(130.3% 130.3% at -5.23% 19.76%, #FFFFFF 0%, #D3D5ED 100%);
  height: 124px;
  width: 124px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ourJrny .timeline .timelineCntnr.right .numbr p {
  font-size: 40px;
  line-height: 32px;
  color: #232323;
  font-weight: 600;
}
.ourJrny .timeline .timelineCntnr.right::after {
  left: -9px;
}
.ourJrny .timeline .timelineCntnr.right .content {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 40%;
}
.ourJrny .timeline .timelineCntnr .content {
  display: flex;
  align-items: center;
}
.ourJrny .timeline .timelineCntnr .content p {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #666666;
}
.ourJrny .midBtPara {
  max-width: 60%;
  margin: 50px auto 0;
  text-align: center;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .ourJrny .timeline {
    margin-top: 50px;
  }
  .ourJrny .timeline::after {
    width: 13px;
    background-color: #9D9FC9;
    top: 0;
  }
  .ourJrny .timeline .timelineCntnr {
    position: relative;
    width: 50%;
    height: 180px;
  }
  .ourJrny .timeline .timelineCntnr.left {
    left: 0;
  }
  .ourJrny .timeline .timelineCntnr.left::before {
    top: 20px;
    right: -40px;
    height: 150px;
    width: 270px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr {
    top: 24%;
    right: 14%;
    height: 104px;
    width: 104px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr p {
    font-size: 35px;
    line-height: 28px;
  }
  .ourJrny .timeline .timelineCntnr.left .content {
    right: 40%;
  }
  .ourJrny .timeline .timelineCntnr.right {
    left: 50%;
  }
  .ourJrny .timeline .timelineCntnr.right::before {
    top: 16px;
    left: -15px;
    height: 150px;
    width: 270px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr {
    top: 21%;
    left: 17%;
    height: 104px;
    width: 104px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr p {
    font-size: 35px;
    line-height: 28px;
  }
  .ourJrny .timeline .timelineCntnr.right::after {
    left: -9px;
  }
  .ourJrny .timeline .timelineCntnr.right .content {
    left: 40%;
  }
  .ourJrny .timeline .timelineCntnr .content p {
    font-size: 25px;
    line-height: 35px;
  }
  .ourJrny .midBtPara {
    max-width: 60%;
    margin: 50px auto 0;
    text-align: center;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .ourJrny .timeline {
    margin-top: 40px;
  }
  .ourJrny .timeline::after {
    width: 13px;
    background-color: #9D9FC9;
    top: 0;
  }
  .ourJrny .timeline .timelineCntnr {
    position: relative;
    width: 50%;
    height: 160px;
  }
  .ourJrny .timeline .timelineCntnr.left {
    left: 0;
  }
  .ourJrny .timeline .timelineCntnr.left::before {
    top: 20px;
    right: -40px;
    height: 130px;
    width: 250px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr {
    top: 24%;
    right: 16.5%;
    height: 94px;
    width: 94px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr p {
    font-size: 30px;
    line-height: 22px;
  }
  .ourJrny .timeline .timelineCntnr.left .content {
    right: 44%;
  }
  .ourJrny .timeline .timelineCntnr.right {
    left: 50%;
  }
  .ourJrny .timeline .timelineCntnr.right::before {
    top: 16px;
    left: -15px;
    height: 130px;
    width: 250px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr {
    top: 21%;
    left: 17.5%;
    height: 94px;
    width: 94px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr p {
    font-size: 30px;
    line-height: 22px;
  }
  .ourJrny .timeline .timelineCntnr.right::after {
    left: -9px;
  }
  .ourJrny .timeline .timelineCntnr.right .content {
    left: 44%;
  }
  .ourJrny .timeline .timelineCntnr .content p {
    font-size: 22px;
    line-height: 32px;
  }
  .ourJrny .midBtPara {
    max-width: 60%;
    margin: 50px auto 0;
    text-align: center;
  }
}
@media (max-width: 1500px) {
  .ourJrny .timeline {
    margin-top: 40px;
  }
  .ourJrny .timeline::after {
    width: 13px;
    background-color: #9D9FC9;
    top: 0;
  }
  .ourJrny .timeline .timelineCntnr {
    position: relative;
    width: 50%;
    height: 160px;
  }
  .ourJrny .timeline .timelineCntnr.left {
    left: 0;
  }
  .ourJrny .timeline .timelineCntnr.left::before {
    top: 20px;
    right: -40px;
    height: 130px;
    width: 250px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr {
    top: 24%;
    right: 16.5%;
    height: 94px;
    width: 94px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr p {
    font-size: 30px;
    line-height: 22px;
  }
  .ourJrny .timeline .timelineCntnr.left .content {
    right: 44%;
  }
  .ourJrny .timeline .timelineCntnr.right {
    left: 50%;
  }
  .ourJrny .timeline .timelineCntnr.right::before {
    top: 16px;
    left: -15px;
    height: 130px;
    width: 250px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr {
    top: 21%;
    left: 17.5%;
    height: 94px;
    width: 94px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr p {
    font-size: 30px;
    line-height: 22px;
  }
  .ourJrny .timeline .timelineCntnr.right::after {
    left: -9px;
  }
  .ourJrny .timeline .timelineCntnr.right .content {
    left: 44%;
  }
  .ourJrny .timeline .timelineCntnr .content p {
    font-size: 22px;
    line-height: 32px;
  }
  .ourJrny .midBtPara {
    max-width: 60%;
    margin: 50px auto 0;
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .ourJrny .timeline {
    margin-top: 30px;
  }
  .ourJrny .timeline::after {
    width: 13px;
    background-color: #9D9FC9;
    top: 0;
  }
  .ourJrny .timeline .timelineCntnr {
    position: relative;
    width: 50%;
    height: 160px;
  }
  .ourJrny .timeline .timelineCntnr.left {
    left: 0;
  }
  .ourJrny .timeline .timelineCntnr.left::before {
    top: 20px;
    right: -45px;
    height: 110px;
    width: 220px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr {
    top: 21%;
    right: 16.5%;
    height: 84px;
    width: 84px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr p {
    font-size: 28px;
    line-height: 20px;
  }
  .ourJrny .timeline .timelineCntnr.left .content {
    right: 44%;
  }
  .ourJrny .timeline .timelineCntnr.right {
    left: 50%;
  }
  .ourJrny .timeline .timelineCntnr.right::before {
    top: 16px;
    left: -15px;
    height: 110px;
    width: 220px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr {
    top: 18%;
    left: 17.5%;
    height: 84px;
    width: 84px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr p {
    font-size: 28px;
    line-height: 20px;
  }
  .ourJrny .timeline .timelineCntnr.right::after {
    left: -9px;
  }
  .ourJrny .timeline .timelineCntnr.right .content {
    left: 44%;
  }
  .ourJrny .timeline .timelineCntnr .content p {
    font-size: 20px;
    line-height: 30px;
  }
  .ourJrny .midBtPara {
    max-width: 60%;
    margin: 50px auto 0;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .ourJrny .timeline {
    margin-top: 25px;
  }
  .ourJrny .timeline .timelineCntnr {
    height: 130px;
  }
  .ourJrny .timeline .timelineCntnr.left {
    left: 0;
  }
  .ourJrny .timeline .timelineCntnr.left::before {
    top: 20px;
    right: -45px;
    height: 100px;
    width: 200px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr {
    top: 25%;
    right: 19.5%;
    height: 74px;
    width: 74px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr p {
    font-size: 25px;
    line-height: 15px;
  }
  .ourJrny .timeline .timelineCntnr.left .content {
    right: 52%;
  }
  .ourJrny .timeline .timelineCntnr.right::before {
    top: 16px;
    left: -15px;
    height: 100px;
    width: 200px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr {
    top: 22%;
    left: 21.5%;
    height: 74px;
    width: 74px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr p {
    font-size: 25px;
    line-height: 15px;
  }
  .ourJrny .timeline .timelineCntnr.right::after {
    left: -9px;
  }
  .ourJrny .timeline .timelineCntnr.right .content {
    left: 52%;
  }
  .ourJrny .timeline .timelineCntnr .content p {
    font-size: 16px;
    line-height: 24px;
  }
  .ourJrny .midBtPara {
    max-width: 60%;
    margin: 50px auto 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .ourJrny .timeline {
    margin-top: 25px;
  }
  .ourJrny .timeline .timelineCntnr {
    height: 120px;
  }
  .ourJrny .timeline .timelineCntnr.left {
    left: 0;
  }
  .ourJrny .timeline .timelineCntnr.left::before {
    top: 20px;
    right: -45px;
    height: 90px;
    width: 180px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr {
    top: 27.5%;
    right: 22.5%;
    height: 64px;
    width: 64px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr p {
    font-size: 20px;
    line-height: 15px;
  }
  .ourJrny .timeline .timelineCntnr.left .content {
    right: 60%;
    width: 70%;
  }
  .ourJrny .timeline .timelineCntnr.right::before {
    top: 16px;
    left: -15px;
    height: 90px;
    width: 180px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr {
    top: 24.5%;
    left: 25.5%;
    height: 64px;
    width: 64px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr p {
    font-size: 20px;
    line-height: 15px;
  }
  .ourJrny .timeline .timelineCntnr.right::after {
    left: -9px;
  }
  .ourJrny .timeline .timelineCntnr.right .content {
    left: 60%;
    width: 70%;
  }
  .ourJrny .timeline .timelineCntnr .content p {
    font-size: 14px;
    line-height: 22px;
  }
  .ourJrny .midBtPara {
    max-width: 100%;
    margin: 30px auto 0;
  }
}
@media (max-width: 575px) {
  .ourJrny .timeline {
    margin-top: 25px;
  }
  .ourJrny .timeline .timelineCntnr {
    height: 110px;
  }
  .ourJrny .timeline .timelineCntnr.left {
    left: 0;
  }
  .ourJrny .timeline .timelineCntnr.left::before {
    top: 20px;
    right: -45px;
    height: 80px;
    width: 165px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr {
    top: 29%;
    right: 19%;
    height: 54px;
    width: 54px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr p {
    font-size: 16px;
    line-height: 12px;
  }
  .ourJrny .timeline .timelineCntnr.left .content {
    right: 50%;
    width: 45%;
  }
  .ourJrny .timeline .timelineCntnr.right::before {
    top: 16px;
    left: -15px;
    height: 80px;
    width: 165px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr {
    top: 26.5%;
    left: 22%;
    height: 54px;
    width: 54px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr p {
    font-size: 16px;
    line-height: 12px;
  }
  .ourJrny .timeline .timelineCntnr.right::after {
    left: -9px;
  }
  .ourJrny .timeline .timelineCntnr.right .content {
    left: 50%;
    width: 45%;
  }
  .ourJrny .timeline .timelineCntnr .content p {
    font-size: 12px;
    line-height: 20px;
  }
  .ourJrny .midBtPara {
    margin: 20px auto 0;
  }
}
@media (max-width: 450px) {
  .ourJrny .timeline {
    margin-top: 20px;
  }
  .ourJrny .timeline::after {
    display: none;
  }
  .ourJrny .timeline .timelineCntnr {
    height: 100%;
    margin-bottom: 20px;
  }
  .ourJrny .timeline .timelineCntnr.left {
    left: inherit;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ourJrny .timeline .timelineCntnr.left::before {
    display: none;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr {
    top: inherit;
    right: inherit;
    height: 44px;
    width: 44px;
    padding: 35px;
    border: 10px solid #241D80;
    position: relative;
    margin-bottom: 10px;
  }
  .ourJrny .timeline .timelineCntnr.left .numbr p {
    font-size: 20px;
    line-height: 20px;
  }
  .ourJrny .timeline .timelineCntnr.left .content {
    right: inherit;
    width: 100%;
    position: relative;
    display: block;
    text-align: center;
    margin: 0;
  }
  .ourJrny .timeline .timelineCntnr.right {
    left: inherit;
    right: inherit;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ourJrny .timeline .timelineCntnr.right::before {
    display: none;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr {
    top: inherit;
    left: inherit;
    height: 60px;
    width: 60px;
    margin-bottom: 10px;
    border: 12px solid #665DC7;
    position: relative;
    padding: 35px;
  }
  .ourJrny .timeline .timelineCntnr.right .numbr p {
    font-size: 20px;
    line-height: 20px;
  }
  .ourJrny .timeline .timelineCntnr.right::after {
    left: inherit;
    position: relative;
  }
  .ourJrny .timeline .timelineCntnr.right .content {
    left: inherit;
    width: 100%;
    position: relative;
    display: block;
    text-align: center;
    margin: 0;
  }
  .ourJrny .timeline .timelineCntnr .content p {
    font-size: 16px;
    line-height: 24px;
    max-width: 70%;
    margin: 0 auto;
  }
  .ourJrny .midBtPara {
    margin: 20px auto 0;
  }
}

.choosSeppl .sectionTitle {
  max-width: 65%;
  margin: 0 auto 60px;
}
.choosSeppl .choosSepplLst {
  display: none;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .choosSeppl .sectionTitle {
    max-width: 70%;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .choosSeppl .sectionTitle {
    max-width: 90%;
  }
}
@media (max-width: 1500px) {
  .choosSeppl .sectionTitle {
    max-width: 80%;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .choosSeppl .sectionTitle {
    max-width: 90%;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .choosSeppl .sectionTitle {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .choosSeppl .mobNone {
    display: none;
  }
  .choosSeppl .choosSepplLst {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .choosSeppl .choosSepplLst li {
    text-align: center;
    margin-bottom: 20px;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
  }
  .choosSeppl .choosSepplLst li img {
    width: 120px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .choosSeppl .choosSepplLst {
    margin-top: 20px;
  }
  .choosSeppl .choosSepplLst li {
    margin-bottom: 15px;
  }
  .choosSeppl .choosSepplLst li img {
    width: 100px;
  }
}

.infraSc {
  background: #F3F2FF;
}
.infraSc .multiBx {
  margin: 60px 0 40px;
  display: flex;
  flex-wrap: wrap;
}
.infraSc .multiBx li {
  flex: 0 0 22.55%;
  max-width: 22.55%;
  background: #fff;
  border-radius: 120px;
  padding: 40px 65px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -55px;
}
.infraSc .multiBx li:first-child {
  margin-left: 0;
}
.infraSc .multiBx li:nth-child(even) {
  background: #CEC9FF;
}
.infraSc .multiBx li p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: #232323;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .infraSc .multiBx {
    margin: 50px 0 30px;
  }
  .infraSc .multiBx li {
    flex: 0 0 22.65%;
    max-width: 22.65%;
    padding: 30px 52px;
    min-height: 140px;
    margin-left: -50px;
  }
  .infraSc .multiBx li p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .infraSc .multiBx {
    margin: 40px 0 20px;
  }
  .infraSc .multiBx li {
    flex: 0 0 23.05%;
    max-width: 23.05%;
    padding: 25px 47px;
    min-height: 140px;
    margin-left: -45px;
  }
  .infraSc .multiBx li p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1500px) {
  .infraSc .multiBx {
    margin: 40px 0 20px;
  }
  .infraSc .multiBx li {
    flex: 0 0 23.05%;
    max-width: 23.05%;
    padding: 25px 47px;
    min-height: 140px;
    margin-left: -45px;
  }
  .infraSc .multiBx li p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1199px) {
  .infraSc .multiBx {
    margin: 30px 0 15px;
  }
  .infraSc .multiBx li {
    flex: 0 0 23.15%;
    max-width: 23.15%;
    padding: 20px 45px;
    min-height: 140px;
    margin-left: -45px;
  }
  .infraSc .multiBx li p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .infraSc .multiBx {
    margin: 20px 0 15px;
  }
  .infraSc .multiBx li {
    flex: 0 0 47%;
    max-width: 47%;
    margin: 0 15px;
    padding: 20px 40px;
    min-height: auto;
    margin-left: 0;
    margin-bottom: 20px;
    justify-content: flex-start;
  }
  .infraSc .multiBx li:last-child {
    margin-bottom: 0;
  }
  .infraSc .multiBx li p {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .infraSc .multiBx li {
    padding: 20px 30px;
  }
}
@media (max-width: 575px) {
  .infraSc {
    text-align: center;
  }
  .infraSc .multiBx {
    margin: 15px;
  }
  .infraSc .multiBx li {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto 15px;
    padding: 15px 30px;
  }
  .infraSc .multiBx li:first-child {
    margin: 0 auto 15px;
  }
  .infraSc .multiBx li p {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
  }
}

.prdtTop .prdtTopImg {
  padding-right: 160px;
}
.prdtTop .prdtTopImg img {
  width: 100%;
  background: #E8E7FF;
  border-radius: 20px;
}
.prdtTop .prdtTopImg.lsSpc {
  padding-right: 50px;
}
.prdtTop .prdtTopImg .fncyBxHvr {
  display: block;
  position: relative;
  overflow: hidden;
}
.prdtTop .prdtTopImg .fncyBxHvr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: #000;
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s ease-in-out all;
}
.prdtTop .prdtTopImg .fncyBxHvr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: url("../images/glass.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
  margin: auto;
  transition: 0.5s ease-in-out all;
}
.prdtTop .prdtTopImg .fncyBxHvr:hover::before {
  opacity: 0.6;
}
.prdtTop .prdtTopImg .fncyBxHvr:hover::after {
  opacity: 1;
}
.prdtTop .prdtTopTxt .btSpcSpn {
  display: flex;
  gap: 30px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .prdtTop .prdtTopImg {
    padding-right: 130px;
  }
  .prdtTop .prdtTopImg.lsSpc {
    padding-right: 40px;
  }
  .prdtTop .prdtTopImg .fncyBxHvr::after {
    height: 60px;
    width: 60px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .prdtTop .prdtTopImg {
    padding-right: 100px;
  }
  .prdtTop .prdtTopImg.lsSpc {
    padding-right: 30px;
  }
  .prdtTop .prdtTopImg .fncyBxHvr::after {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 1500px) {
  .prdtTop .prdtTopImg {
    padding-right: 100px;
  }
  .prdtTop .prdtTopImg.lsSpc {
    padding-right: 30px;
  }
  .prdtTop .prdtTopImg .fncyBxHvr::after {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 1199px) {
  .prdtTop .prdtTopImg {
    padding-right: 70px;
  }
  .prdtTop .prdtTopImg.lsSpc {
    padding-right: 20px;
  }
  .prdtTop .prdtTopTxt .btSpcSpn {
    gap: 10px;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .prdtTop .row {
    flex-direction: column-reverse;
  }
  .prdtTop .prdtTopImg {
    padding-right: 0;
    max-width: 500px;
    margin-top: 25px;
  }
  .prdtTop .prdtTopImg.lsSpc {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .prdtTop {
    text-align: center;
  }
  .prdtTop.mobLftTxt {
    text-align: left;
  }
  .prdtTop .prdtTopImg {
    margin: 20px auto 0;
  }
  .prdtTop .prdtTopImg .fncyBxHvr::after {
    height: 40px;
    width: 40px;
  }
}

.prdtBt.sectionPadding {
  padding-top: 60px !important;
}
.prdtBt .bluBx {
  background: #070162;
  border-radius: 20px;
  min-height: 230px;
  padding: 50px 35px;
  margin-bottom: 40px;
}
.prdtBt .bluBx p {
  color: #fff;
}
.prdtBt .bluBx .mrgn24 {
  margin-bottom: 24px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .prdtBt.sectionPadding {
    padding-top: 50px !important;
  }
  .prdtBt .bluBx {
    min-height: 200px;
    padding: 40px 30px;
    margin-bottom: 40px;
  }
  .prdtBt .bluBx .mrgn24 {
    margin-bottom: 20px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .prdtBt.sectionPadding {
    padding-top: 40px !important;
  }
  .prdtBt .bluBx {
    min-height: 175px;
    padding: 35px 25px;
    margin-bottom: 30px;
  }
  .prdtBt .bluBx .mrgn24 {
    margin-bottom: 18px;
  }
}
@media (max-width: 1500px) {
  .prdtBt.sectionPadding {
    padding-top: 40px !important;
  }
  .prdtBt .bluBx {
    min-height: 175px;
    padding: 35px 25px;
    margin-bottom: 30px;
  }
  .prdtBt .bluBx .mrgn24 {
    margin-bottom: 18px;
  }
}
@media (max-width: 1199px) {
  .prdtBt.sectionPadding {
    padding-top: 50px !important;
  }
  .prdtBt .bluBx {
    min-height: 175px;
    padding: 25px 20px;
    margin-bottom: 25px;
  }
  .prdtBt .bluBx .mrgn24 {
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) {
  .prdtBt.sectionPadding {
    padding-top: 50px !important;
  }
  .prdtBt .bluBx {
    min-height: auto;
    padding: 20px;
    margin-bottom: 20px;
  }
  .prdtBt .bluBx.mobMrgn {
    margin-bottom: 20px !important;
  }
  .prdtBt .bluBx .mrgn24 {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .prdtBt.sectionPadding {
    padding-top: 40px !important;
  }
  .prdtBt .bluBx.phnMrgn {
    margin-bottom: 20px !important;
  }
  .prdtBt .row {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .prdtBt .smplBx {
    text-align: center;
  }
  .prdtBt .smplBx .subTxt {
    font-size: 22px;
    line-height: 32px;
  }
  .prdtBt .bluBx {
    padding: 15px;
    max-width: 300px;
    margin: 0 auto 15px;
    text-align: center;
  }
  .prdtBt .bluBx.mobMrgn {
    margin-bottom: 15px !important;
  }
  .prdtBt .bluBx.phnMrgn {
    margin-bottom: 15px !important;
  }
  .prdtBt .bluBx .mrgn24 {
    margin-bottom: 10px;
  }
}

.fwMxBld {
  font-weight: 700;
}

.mgbtTwnty {
  margin-bottom: 20px;
}
@media (max-width: 1500px) {
  .mgbtTwnty {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .mgbtTwnty {
    margin-bottom: 10px;
  }
}

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

#exampleModal .inquiryForm {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
#exampleModal .inquiryForm label {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #232323;
  margin-bottom: 10px;
}
#exampleModal .inquiryForm label.error {
  color: red;
  margin-bottom: 0;
}
#exampleModal .inquiryForm label span {
  color: red;
}
#exampleModal .inquiryForm .error {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
}
#exampleModal .inquiryForm .form-group {
  flex: 0 0 48.25%;
  max-width: 48.25%;
  margin-bottom: 30px;
  margin-right: 29px;
}
#exampleModal .inquiryForm .form-group:nth-child(2n), #exampleModal .inquiryForm .form-group.flx100 {
  margin-right: 0;
}
#exampleModal .inquiryForm .form-group .form-control, #exampleModal .inquiryForm .form-group select {
  background: #fff;
  border-radius: 10px;
  padding: 17px 20px;
  border: 1px solid #D9D9D9;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
  height: 50px;
}
#exampleModal .inquiryForm .form-group .form-control::-moz-placeholder, #exampleModal .inquiryForm .form-group select::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
}
#exampleModal .inquiryForm .form-group .form-control::placeholder, #exampleModal .inquiryForm .form-group select::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
}
#exampleModal .inquiryForm .form-group .form-control:focus, #exampleModal .inquiryForm .form-group select:focus {
  border-color: #39B6FF;
}
#exampleModal .inquiryForm .form-group textarea.form-control {
  height: 100px !important;
}
#exampleModal .inquiryForm .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/select_drp.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 100%;
}
#exampleModal .inquiryForm .form-group.flx100 {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  #exampleModal .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  #exampleModal .inquiryForm .error {
    font-size: 14px;
    line-height: 14px;
  }
  #exampleModal .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  #exampleModal .inquiryForm .form-group .form-control, #exampleModal .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 45px;
  }
  #exampleModal .inquiryForm .form-group .form-control::-moz-placeholder, #exampleModal .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  #exampleModal .inquiryForm .form-group .form-control::placeholder, #exampleModal .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  #exampleModal .inquiryForm .form-group textarea.form-control {
    height: 90px !important;
  }
  #exampleModal .inquiryForm .cntctBtn {
    margin-top: 30px;
  }
}
@media (max-width: 1500px) {
  #exampleModal .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  #exampleModal .inquiryForm .error {
    font-size: 14px;
    line-height: 14px;
  }
  #exampleModal .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  #exampleModal .inquiryForm .form-group .form-control, #exampleModal .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 40px;
  }
  #exampleModal .inquiryForm .form-group .form-control::-moz-placeholder, #exampleModal .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  #exampleModal .inquiryForm .form-group .form-control::placeholder, #exampleModal .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  #exampleModal .inquiryForm .form-group textarea.form-control {
    height: 90px !important;
  }
  #exampleModal .inquiryForm .cntctBtn {
    margin-top: 30px;
  }
}
@media (max-width: 1299px) {
  #exampleModal .inquiryForm .form-group {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  #exampleModal .inquiryForm label {
    font-size: 12px;
    line-height: 12px;
  }
  #exampleModal .inquiryForm .error {
    font-size: 12px;
    line-height: 12px;
  }
  #exampleModal .inquiryForm .form-group {
    margin-right: 18px;
    margin-bottom: 15px;
  }
  #exampleModal .inquiryForm .form-group .form-control, #exampleModal .inquiryForm .form-group select {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 14px;
  }
  #exampleModal .inquiryForm .form-group .form-control::-moz-placeholder, #exampleModal .inquiryForm .form-group select::-moz-placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  #exampleModal .inquiryForm .form-group .form-control::placeholder, #exampleModal .inquiryForm .form-group select::placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  #exampleModal .inquiryForm .form-group select {
    background-position: right 15px center;
  }
  #exampleModal .inquiryForm .cntctBtn {
    margin-top: 25px;
  }
}
@media (max-width: 991px) {
  #exampleModal .inquiryForm .getTchFrm {
    margin-bottom: 30px;
  }
  #exampleModal .inquiryForm .getTchImg {
    padding-left: 0;
    max-width: 80%;
    margin: 0 auto 0 0;
  }
}
@media (max-width: 575px) {
  #exampleModal .inquiryForm .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
  #exampleModal .inquiryForm .form-group textarea.form-control {
    height: 70px !important;
  }
}
#exampleModal .modal-dialog {
  max-width: 60%;
}
#exampleModal .modal-dialog .modal-content {
  border-radius: 20px;
}
#exampleModal .modal-dialog .modal-content .modal-header {
  padding: 20px 25px;
}
#exampleModal .modal-dialog .modal-content .modal-header h3 {
  margin-bottom: 0;
}
#exampleModal .modal-dialog .modal-content .modal-body {
  padding: 25px;
}
@media (min-width: 768px) and (max-width: 990px) {
  #exampleModal .modal-dialog {
    max-width: 75%;
  }
  #exampleModal .modal-dialog .modal-content .modal-header {
    padding: 15px 20px;
  }
  #exampleModal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  #exampleModal .modal-dialog {
    max-width: 75%;
  }
  #exampleModal .modal-dialog .modal-content .modal-header {
    padding: 15px 20px;
  }
  #exampleModal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  #exampleModal .modal-dialog {
    max-width: 400px;
    margin: 0 auto;
  }
  #exampleModal .modal-dialog .modal-content .modal-header {
    padding: 15px 20px;
  }
  #exampleModal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}

.dispnon {
  display: none;
}

.error {
  color: red;
}

.dot {
  height: 10px;
  width: 10px;
  background: #fff;
  border-radius: 50%;
  margin: 0 5px;
  display: inline-block;
}
@media (max-width: 767px) {
  .dot {
    display: none;
  }
}

@media (max-width: 1024px) {
  .mobBrNone br {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobBrNone br {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobBrNone {
    display: flex;
    flex-direction: column;
  }
}

.prdtBtAnthr {
  background: #F3F2FF;
}
.prdtBtAnthr .prdtBtAnthrLst {
  display: flex;
  flex-wrap: wrap;
}
.prdtBtAnthr .prdtBtAnthrLst li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 15px;
}
.prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx {
  padding: 30px 25px;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  min-height: 370px;
}
.prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx img {
  width: 100%;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
.prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx img.hgT150 {
  height: 150px;
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .prdtBtAnthr .prdtBtAnthrLst li {
    padding: 10px;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx {
    padding: 25px 20px;
    min-height: 280px;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx img {
    height: 90px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx img.hgT150 {
    height: 110px;
  }
}
@media (max-width: 1500px) {
  .prdtBtAnthr .prdtBtAnthrLst li {
    padding: 10px;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx {
    padding: 25px 20px;
    min-height: 280px;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx img {
    height: 90px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx img.hgT150 {
    height: 110px;
  }
}
@media (max-width: 1199px) {
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx {
    padding: 20px 15px;
    min-height: 280px;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx img {
    height: 80px;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx img.hgT150 {
    height: 90px;
  }
}
@media (max-width: 991px) {
  .prdtBtAnthr .prdtBtAnthrLst li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx {
    min-height: 250px;
  }
}
@media (max-width: 767px) {
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx {
    min-height: 260px;
  }
}
@media (max-width: 450px) {
  .prdtBtAnthr .prdtBtAnthrLst li {
    flex: 0 0 100%;
    max-width: 300px;
    padding: 0;
    margin: 0 auto 20px;
  }
  .prdtBtAnthr .prdtBtAnthrLst li:last-child {
    margin-bottom: 0;
  }
  .prdtBtAnthr .prdtBtAnthrLst li .prdtBtAnthrBx {
    min-height: auto;
  }
}

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

.inchTbl {
  margin-bottom: 0;
  width: 100%;
  border: 1px solid #e7e7e7;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}
.inchTbl .blkBck {
  background: #000;
  color: #fff;
  text-align: center;
  border-right: 1px solid #e7e7e7;
}
.inchTbl .blkBck th {
  line-height: 35px;
  border: none;
}
.inchTbl thead tr th {
  border-color: #e7e7e7 !important;
}
.inchTbl thead tr:nth-child(2) th:first-child {
  border-right: none;
  border-left: none;
}
.inchTbl thead tr:nth-child(2) th {
  border-bottom: 1px solid #e7e7e7;
  line-height: 25px;
}
.inchTbl thead tr:nth-child(2) th:last-child {
  border-right: none;
}
.inchTbl tbody tr td:first-child {
  border-right: none;
  border-left: none;
}
.inchTbl tbody tr td:last-child {
  border-right: none;
}
.inchTbl tbody tr:last-child td {
  border-bottom: none;
}
.inchTbl tbody tr:last-child td:first-child {
  border-left: none;
}
.inchTbl tbody tr td {
  text-align: center;
  color: #7a7a7a;
  line-height: 25px;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
.inchTbl thead, .inchTbl tbody, .inchTbl tr, .inchTbl th, .inchTbl td {
  padding: 15px;
  font-size: 18px;
  line-height: 18px;
  border-color: #e7e7e7;
}
@media (max-width: 1500px) {
  .inchTbl thead, .inchTbl tbody, .inchTbl tr, .inchTbl th, .inchTbl td {
    padding: 10px;
    font-size: 15px;
    line-height: 15px;
  }
}/*# sourceMappingURL=style.css.map */