/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Afacad:ital,wght@0,400..700;1,400..700&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: #fff;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  transition: 0.5s ease-in-out;
}
.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;
}

* {
  margin: 0;
  padding: 0;
}

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

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

button {
  cursor: pointer;
}

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

p {
  font-weight: 600;
  font-size: 25px;
  line-height: 32px;
  color: #9E9E9E;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  p {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 1699px) {
  p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 1199px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

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

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.comnBtn {
  background: #FAD102;
  padding: 15px 25px;
  border-radius: 50px;
  color: #000;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  border: none;
}
.comnBtn:hover, .comnBtn:focus {
  background: #000;
  color: #FAD102;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .comnBtn {
    font-size: 18px;
    line-height: 18px;
    padding: 12px 24px;
  }
}
@media (max-width: 1699px) {
  .comnBtn {
    font-size: 16px;
    line-height: 16px;
    padding: 11px 24px;
  }
}
@media (max-width: 991px) {
  .comnBtn {
    font-size: 14px;
    line-height: 14px;
    padding: 10px 20px;
  }
}

.bullets {
  list-style-type: none;
}
.bullets li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.bullets li:last-child {
  margin-bottom: 0;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #D56A1A 0%, #E49310 100%);
}
.bullets li p {
  font-weight: 500;
  font-size: 25px;
  line-height: 32px;
  color: #323232;
  margin-bottom: 0;
}
@media (max-width: 1699px) {
  .bullets li p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 1199px) {
  .bullets li p {
    font-size: 16px;
    line-height: 24px;
  }
}

.sectionPadding {
  padding: 150px 0px;
}
.sectionPadding.paddingBtmZro {
  padding-bottom: 0;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .sectionPadding {
    padding: 120px 0;
  }
}
@media (max-width: 1699px) {
  .sectionPadding {
    padding: 80px 0px;
  }
}
@media (max-width: 1199px) {
  .sectionPadding {
    padding: 65px 0px;
  }
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 575px) {
  .sectionPadding {
    padding: 40px 0px;
  }
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1250px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1720px;
  }
}
.sectionTitle {
  font-weight: 600;
  font-size: 50px;
  line-height: 55px;
  color: #565959;
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .sectionTitle {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1699px) {
  .sectionTitle {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .sectionTitle {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .sectionTitle {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}
@media (max-width: 450px) {
  .sectionTitle {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

.mainHeader {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 10px auto 0;
  z-index: 111;
}
.mainHeader header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.mainHeader header .logo a {
  display: block;
}
.mainHeader header .logo a img {
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1699px) {
  .mainHeader header .logo a img {
    height: 110px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .logo a img {
    height: 100px;
  }
}
@media (max-width: 450px) {
  .mainHeader header .logo a img {
    height: 90px;
  }
}
.mainHeader header .navbarLink ul {
  align-items: center;
}
.mainHeader header .navbarLink ul li {
  margin-left: 70px;
}
@media (max-width: 1699px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 50px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 40px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 0px;
    padding: 12px 0;
  }
}
@media (max-width: 450px) {
  .mainHeader header .navbarLink ul li {
    padding: 8px 0;
  }
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 10px 3px;
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.dropdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .mainHeader header .navbarLink ul li.dropdown .nav-link {
    padding-right: 5px;
  }
}
.mainHeader header .navbarLink ul li.lstBtn:hover .comnBtn {
  background: #000;
  color: #FAD102;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.lstBtn:hover .comnBtn {
    background: #e68020;
    color: #000;
  }
}
.mainHeader header .navbarLink ul li a {
  color: #fff;
  font-size: 25px;
  line-height: 25px;
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  transition: 0.5s ease-in-out all;
}
.mainHeader header .navbarLink ul li a.dskNone {
  display: none;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a.dskNone {
    display: inline-block;
  }
}
.mainHeader header .navbarLink ul li a.comnBtn {
  padding: 15px 25px;
  color: #000;
  background: #FAD102;
}
@media (max-width: 1699px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    color: #fff;
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 450px) {
  .mainHeader header .navbarLink ul li a.comnBtn {
    padding: 10px 20px;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  color: #FAD102;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #FAD102;
    background: none;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: #fff;
  padding: 0;
  margin: 0;
  min-width: 220px;
  right: 0 !important;
  transform: inherit !important;
  top: 100% !important;
  left: -60% !important;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 4px 25px 5px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 1699px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    left: -50% !important;
    min-width: 160px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    left: -55% !important;
    min-width: 160px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    left: inherit !important;
    min-width: 100%;
    background: transparent;
    border: none;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav {
  position: relative;
}
@media (max-width: 450px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav {
    margin-top: 0;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
  background-image: url("../images/dropup_icn.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 12px;
  width: 12px;
  margin: auto;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav::before {
    display: none;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li {
  margin-left: 0;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li {
    padding: 5px 0px 10px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:last-child {
    padding-bottom: 0;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
  color: #000;
  padding: 20px 40px;
  font-size: 25px;
  line-height: 20px;
  display: block;
  font-weight: 700;
  text-transform: capitalize;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 1699px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
    font-size: 18px;
    line-height: 12px;
    padding: 15px 32px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
    font-size: 22px;
    line-height: 20px;
    color: #fff;
    padding: 5px 0px;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
    font-size: 20px;
    line-height: 20px;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active a, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover a {
  background: #FAD102;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active a, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover a {
    color: #FAD102 !important;
    background: transparent;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active:last-child, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover > a {
  color: #000 !important;
  background: #FAD102;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover > a {
    color: #FAD102 !important;
    background: transparent;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.submenu .dropdown-toggle {
  transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.submenu .dropdown-toggle {
    transform: rotate(0deg);
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    text-align: center;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #fff;
    text-align: center;
    padding: 3px 5px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    box-shadow: none;
  }
}
.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: linear-gradient(285.63deg, #328068 -5.82%, #163E45 86.6%);
    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: 70px;
  }
  .mainHeader header .navbarLink .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}

.homebanner {
  position: relative;
  background: linear-gradient(285.63deg, #328068 -5.82%, #163E45 86.6%);
}
.homebanner .bannerBox {
  display: block !important;
  margin-bottom: 0;
  height: 100vh;
}
.homebanner .bannerBox .bannerBxFx {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  height: 100%;
}
.homebanner .bannerBox .bannerBxFx .bannerText {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 100px;
  display: flex;
  align-items: flex-start;
  flex: 0 0 50%;
  max-width: 750px;
  justify-content: center;
  margin: auto;
  flex-direction: column;
  margin-top: 20px;
}
.homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc {
  font-weight: 600;
  color: #FFFFFF;
  font-size: 100px;
  line-height: 110px;
  text-align: left;
  margin-bottom: 40px;
}
.homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc span {
  color: #163E45;
  position: relative;
  z-index: 1;
  word-spacing: 10px;
  padding: 0 10px;
}
.homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc span::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #E68020;
  border-radius: 10px;
  transform: skew(-18deg, 0deg);
  z-index: -1;
  height: 90%;
  width: 100%;
  margin-top: 12px;
}
.homebanner .bannerBox .bannerBxFx .bannerImage {
  position: relative;
  text-align: right;
  z-index: 1;
  height: 100%;
  flex: 0 0 50%;
  max-width: 50%;
}
.homebanner .bannerBox .bannerBxFx .bannerImage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banner_back.png");
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: left;
  z-index: -1;
  background-size: cover;
}
.homebanner .bannerBox .bannerBxFx .bannerImage img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: -135px 100px 0 auto;
  -o-object-position: bottom;
     object-position: bottom;
  width: 730px;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .homebanner .bannerBox .bannerBxFx .bannerText {
    left: 100px;
    flex: 0 0 50%;
    max-width: 550px;
    margin-top: 0px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 30px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc span {
    padding: 0 10px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage::before {
    background-position: left;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage img {
    margin: -80px 100px 0 auto;
    width: 580px;
  }
}
@media (max-width: 1699px) {
  .homebanner .bannerBox .bannerBxFx .bannerText {
    left: 60px;
    flex: 0 0 50%;
    max-width: 500px;
    margin-top: 0px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc {
    font-size: 65px;
    line-height: 75px;
    margin-bottom: 25px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc span {
    padding: 0 10px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage::before {
    background-position: left;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage img {
    margin: -80px 60px 0 auto;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .homebanner .bannerBox {
    height: 630px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText {
    left: 40px;
    max-width: 480px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc {
    font-size: 60px;
    line-height: 70px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage img {
    width: 600px;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerBox {
    height: 550px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText {
    left: 130px;
    max-width: 480px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc {
    font-size: 60px;
    line-height: 70px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage img {
    width: 500px;
    margin: -70px 140px 0 auto;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerBox {
    height: 650px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText {
    left: 0;
    max-width: 100%;
    flex: 0 0 100%;
    right: 0;
    z-index: 11;
    align-items: center;
    margin-top: -24%;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc {
    font-size: 45px;
    line-height: 55px;
    max-width: 70%;
    margin: 0 auto 20px;
    text-align: center;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc span::before {
    margin-top: 10px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage img {
    width: 400px;
    margin: -50px auto 0;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerBox {
    height: 600px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText {
    margin: -25% auto 0;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 25px;
    max-width: 75%;
    margin: 0 auto 25px;
    text-align: center;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc span::before {
    margin-top: 7px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage img {
    width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerBox .bannerBxFx .bannerImage img {
    width: 350px;
  }
}
@media (max-width: 450px) {
  .homebanner .bannerBox {
    height: 500px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText {
    margin-top: 0;
    bottom: inherit;
    top: 24%;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
    max-width: 80%;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .bannerDesc span::before {
    margin-top: 5px;
  }
  .homebanner .bannerBox .bannerBxFx .bannerText .comnBtn {
    margin: auto;
  }
  .homebanner .bannerBox .bannerBxFx .bannerImage img {
    width: 300px;
    margin: 0 auto;
  }
}

.innerBanner {
  position: relative;
  height: 400px;
  background: linear-gradient(285.63deg, #328068 -5.82%, #163E45 86.6%);
}
.innerBanner::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0;
  margin: auto;
  width: 100%;
  height: 300px;
  background: url("../images/dark_effect.png");
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.innerBanner .banner-text {
  position: absolute;
  text-align: center;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 20px;
}
.innerBanner .banner-text .bannerTitle {
  color: #FFFFFF;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 100px;
  line-height: 120px;
  text-align: center;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .innerBanner {
    height: 380px;
  }
  .innerBanner .banner-text {
    bottom: 20px;
  }
  .innerBanner .banner-text .bannerTitle {
    font-size: 85px;
    line-height: 85px;
  }
}
@media (max-width: 1699px) {
  .innerBanner {
    height: 350px;
  }
  .innerBanner .banner-text {
    bottom: 15px;
  }
  .innerBanner .banner-text .bannerTitle {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 1199px) {
  .innerBanner {
    height: 300px;
  }
  .innerBanner .banner-text .bannerTitle {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .innerBanner {
    height: 250px;
  }
  .innerBanner .banner-text {
    bottom: 10px;
  }
  .innerBanner .banner-text .bannerTitle {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .innerBanner .banner-text .bannerTitle {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 450px) {
  .innerBanner {
    height: 200px;
  }
  .innerBanner .banner-text .bannerTitle {
    font-size: 35px;
    line-height: 35px;
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-position: center right 20px;
}

.hmAbt .hmForm {
  margin-top: -140px;
  position: relative;
  z-index: 1;
}
.hmAbt .hmForm .hmFormBx {
  box-shadow: 0px 4px 80px 10px rgba(0, 0, 0, 0.2509803922);
  background: #fff;
  padding: 40px 100px;
  border-radius: 50px;
}
.hmAbt .hmForm .hmFormBx .form-control {
  border: none;
  border-bottom: 1px solid #D9D9D9;
  font-weight: 400;
  font-size: 25px;
  line-height: 25px;
  color: #B7B7B7;
  border-radius: 0;
}
.hmAbt .hmForm .hmFormBx .form-control::-moz-placeholder {
  font-weight: 400;
  font-size: 25px;
  line-height: 25px;
  color: #B7B7B7;
}
.hmAbt .hmForm .hmFormBx .form-control::placeholder {
  font-weight: 400;
  font-size: 25px;
  line-height: 25px;
  color: #B7B7B7;
}
.hmAbt .hmForm .hmFormBx .form-control:focus {
  box-shadow: none;
  border-color: none;
}
.hmAbt .hmForm .hmFormBx .hmFormBtn {
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .hmAbt .hmForm {
    margin-top: -110px;
  }
  .hmAbt .hmForm .sectionTitle {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 25px;
  }
  .hmAbt .hmForm .hmFormBx {
    padding: 35px 75px;
  }
  .hmAbt .hmForm .hmFormBx .form-control {
    font-size: 22px;
    line-height: 22px;
  }
  .hmAbt .hmForm .hmFormBx .form-control::-moz-placeholder {
    font-size: 22px;
    line-height: 22px;
  }
  .hmAbt .hmForm .hmFormBx .form-control::placeholder {
    font-size: 22px;
    line-height: 22px;
  }
  .hmAbt .hmForm .hmFormBx .hmFormBtn {
    margin-top: 25px;
  }
}
@media (max-width: 1699px) {
  .hmAbt .hmForm {
    margin-top: -100px;
  }
  .hmAbt .hmForm .sectionTitle {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .hmAbt .hmForm .hmFormBx {
    padding: 30px 70px;
  }
  .hmAbt .hmForm .hmFormBx .form-control {
    font-size: 18px;
    line-height: 18px;
  }
  .hmAbt .hmForm .hmFormBx .form-control::-moz-placeholder {
    font-size: 18px;
    line-height: 18px;
  }
  .hmAbt .hmForm .hmFormBx .form-control::placeholder {
    font-size: 18px;
    line-height: 18px;
  }
  .hmAbt .hmForm .hmFormBx .hmFormBtn {
    margin-top: 20px;
  }
}
@media (max-width: 1199px) {
  .hmAbt .hmForm {
    margin-top: -80px;
  }
  .hmAbt .hmForm .hmFormBx {
    padding: 20px 50px;
  }
  .hmAbt .hmForm .hmFormBx .form-control {
    font-size: 16px;
    line-height: 16px;
  }
  .hmAbt .hmForm .hmFormBx .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .hmAbt .hmForm .hmFormBx .form-control::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .hmAbt .hmForm .hmFormBx .hmFormBtn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .hmAbt .hmForm {
    margin-top: -80px;
  }
  .hmAbt .hmForm .sectionTitle {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  .hmAbt .hmForm .hmFormBx {
    padding: 20px 40px;
  }
  .hmAbt .hmForm .hmFormBx .hmFormBtn {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .hmAbt .hmForm {
    margin-top: 0;
    padding: 50px 0 15px;
  }
  .hmAbt .hmForm .sectionTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .hmAbt .hmForm .hmFormBx {
    padding: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }
  .hmAbt .hmForm .hmFormBx .frmGrp {
    margin-bottom: 20px;
  }
  .hmAbt .hmForm .hmFormBx .frmGrp .form-control {
    border: 1px solid #565959;
  }
  .hmAbt .hmForm .hmFormBx .form-control {
    background: transparent;
    border-color: #565959;
    color: #565959;
  }
  .hmAbt .hmForm .hmFormBx .form-control::-moz-placeholder {
    color: #565959;
  }
  .hmAbt .hmForm .hmFormBx .form-control::placeholder {
    color: #565959;
  }
  .hmAbt .hmForm .hmFormBx .hmFormBtn {
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .hmAbt .hmForm {
    margin-top: 0;
    padding: 40px 0 10px;
  }
  .hmAbt .hmForm .hmFormBx .frmGrp {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .hmAbt .hmForm {
    padding: 35px 0 10px;
  }
  .hmAbt .hmForm .hmFormBx .frmGrp {
    max-width: 300px;
    margin-bottom: 10px;
  }
}
.hmAbt .hmAbtFlx {
  display: flex;
  flex-wrap: wrap;
}
.hmAbt .hmAbtFlx .hmAbtLft {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 100px;
}
.hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg {
  display: flex;
}
.hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 25px 0 0;
}
.hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li:last-child {
  margin-top: 100px;
  padding: 0;
}
.hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li img {
  border-radius: 50px;
  width: 100%;
}
.hmAbt .hmAbtFlx .hmAbtRgt {
  flex: 0 0 50%;
  max-width: 50%;
}
.hmAbt .hmAbtFlx .hmAbtRgt h3 {
  font-weight: 600;
  font-size: 45px;
  line-height: 55px;
  color: #565959;
  margin-bottom: 40px;
}
.hmAbt .hmAbtFlx .hmAbtRgt p {
  margin-bottom: 40px;
}
.hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .count, .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .counterDigit {
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  background: linear-gradient(180deg, #D56A1A 0%, #E49310 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts p {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 0;
  color: #9E9E9E;
}
.hmAbt .hmAbtFlx .hmAbtRgt .comnBtn {
  margin-top: 60px;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .hmAbt .hmAbtFlx .hmAbtLft {
    padding-right: 75px;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li {
    padding: 0 20px 0 0;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li:last-child {
    margin-top: 80px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt h3 {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 35px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt p {
    margin-bottom: 35px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .count, .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .counterDigit {
    font-size: 55px;
    line-height: 55px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts p {
    font-size: 16px;
    line-height: 16px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .comnBtn {
    margin-top: 60px;
  }
}
@media (max-width: 1699px) {
  .hmAbt .hmAbtFlx .hmAbtLft {
    padding-right: 70px;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li {
    padding: 0 18px 0 0;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li:last-child {
    margin-top: 70px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt h3 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt p {
    margin-bottom: 30px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .count, .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .counterDigit {
    font-size: 50px;
    line-height: 50px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts p {
    font-size: 14px;
    line-height: 14px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .comnBtn {
    margin-top: 50px;
  }
}
@media (max-width: 1199px) {
  .hmAbt .hmAbtFlx {
    align-items: center;
  }
  .hmAbt .hmAbtFlx .hmAbtLft {
    padding-right: 50px;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li {
    padding: 0 15px 0 0;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li:last-child {
    margin-top: 50px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 25px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt p {
    margin-bottom: 25px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .count, .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .counterDigit {
    font-size: 45px;
    line-height: 45px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts p {
    font-size: 12px;
    line-height: 12px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .comnBtn {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .hmAbt .hmAbtFlx .hmAbtLft {
    padding-right: 30px;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li {
    padding: 0 10px 0 0;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li:last-child {
    margin-top: 40px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt h3 {
    font-size: 23px;
    line-height: 33px;
    margin-bottom: 15px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt p {
    margin-bottom: 15px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts {
    margin-bottom: 10px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .count, .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .counterDigit {
    font-size: 35px;
    line-height: 35px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .comnBtn {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .hmAbt {
    position: relative;
  }
  .hmAbt.noBfr::before {
    display: none;
  }
  .hmAbt .hmAbtFlx .hmAbtLft {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .count, .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .counterDigit {
    font-size: 30px;
    line-height: 30px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .comnBtn {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .hmAbt .hmAbtFlx {
    justify-content: center;
    text-align: center;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .count, .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .counterDigit {
    font-size: 40px;
    line-height: 40px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts p {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 450px) {
  .hmAbt::before {
    height: 17.5%;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg {
    flex-wrap: wrap;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmAbt .hmAbtFlx .hmAbtLft .hmAbtImg li:last-child {
    margin-top: 20px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts {
    margin-bottom: 15px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .count, .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts .counterDigit {
    font-size: 45px;
    line-height: 45px;
  }
  .hmAbt .hmAbtFlx .hmAbtRgt .counterBox .counterCnts p {
    font-size: 16px;
    line-height: 16px;
  }
}

.ourServices {
  background: linear-gradient(285.63deg, #328068 -5.82%, #163E45 86.6%);
}
.ourServices .sectionTitle {
  color: #fff;
}
.ourServices .servicesCards {
  display: flex;
  flex-wrap: wrap;
}
.ourServices .serviceCard {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 50px;
  flex: 0 0 47%;
  max-width: 47%;
  margin: 0 15px;
  position: relative;
  box-shadow: 0px 4px 50px 5px rgba(0, 0, 0, 0.1019607843);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  transform: translateY(0);
  transition: 0.5s ease-in-out all;
}
.ourServices .serviceCard:hover {
  transform: translateY(-10px);
}
.ourServices .cardTitle {
  font-weight: 500;
  font-size: 70px;
  line-height: 55px;
  margin-bottom: 20px;
}
.ourServices .orangeText {
  color: #E68020;
}
.ourServices .blackText {
  color: #000000;
}
.ourServices .fundTypes {
  display: flex;
  flex-wrap: wrap;
  max-width: 82%;
  margin-top: 30px;
}
.ourServices .fundTag {
  background: #F5F5F5;
  border: 1px solid #C0C0C0;
  color: #818181;
  padding: 10px 18px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
}
.ourServices .fundLst {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.ourServices .fundLst .cardIllustration {
  text-align: right;
  margin-top: -35px;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .ourServices .serviceCard {
    padding: 40px;
    flex: 0 0 47%;
    max-width: 47%;
    margin: 0 20px;
  }
  .ourServices .cardTitle {
    font-size: 55px;
    line-height: 45px;
    margin-bottom: 20px;
  }
  .ourServices .fundTypes {
    max-width: 84%;
    margin-top: 25px;
  }
  .ourServices .fundTag {
    padding: 8px 14px;
    font-size: 16px;
    line-height: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .ourServices .fundLst .cardIllustration {
    margin-top: -35px;
  }
  .ourServices .fundLst .cardIllustration img {
    height: 220px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1699px) {
  .ourServices .serviceCard {
    padding: 35px;
    flex: 0 0 47%;
    max-width: 47%;
    margin: 0 15px;
  }
  .ourServices .cardTitle {
    font-size: 50px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .ourServices .fundTypes {
    max-width: 84%;
    margin-top: 20px;
  }
  .ourServices .fundTag {
    padding: 7px 12px;
    font-size: 14px;
    line-height: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .ourServices .fundLst .cardIllustration {
    margin-top: -25px;
  }
  .ourServices .fundLst .cardIllustration img {
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1199px) {
  .ourServices .serviceCard {
    padding: 30px;
    flex: 0 0 48%;
    max-width: 48%;
    margin: 0 8px;
  }
  .ourServices .cardTitle {
    font-size: 45px;
    line-height: 35px;
    margin-bottom: 12px;
  }
  .ourServices .fundTypes {
    max-width: 84%;
    margin-top: 20px;
  }
  .ourServices .fundTag {
    padding: 7px 10px;
    margin-right: 6px;
    margin-bottom: 6px;
  }
  .ourServices .fundLst .cardIllustration {
    margin-top: -25px;
  }
  .ourServices .fundLst .cardIllustration img {
    height: 160px;
  }
}
@media (max-width: 991px) {
  .ourServices .serviceCard {
    padding: 25px;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .ourServices .serviceCard:last-child {
    margin-bottom: 0;
  }
  .ourServices .cardTitle {
    font-size: 40px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .ourServices .fundTypes {
    max-width: 70%;
    margin-top: 15px;
  }
  .ourServices .fundTag {
    margin-right: 6px;
    margin-bottom: 6px;
  }
  .ourServices .fundLst .cardIllustration {
    margin-top: -70px;
  }
  .ourServices .fundLst .cardIllustration img {
    height: 150px;
  }
}
@media (max-width: 450px) {
  .ourServices .serviceCard {
    padding: 20px;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .ourServices .cardTitle {
    font-size: 35px;
    line-height: 25px;
  }
  .ourServices .fundTypes {
    max-width: 100%;
    margin-top: 15px;
    justify-content: center;
  }
  .ourServices .fundTag {
    margin: 0 5px;
    margin-bottom: 10px;
  }
  .ourServices .fundLst {
    flex-direction: column-reverse;
    align-items: center;
  }
  .ourServices .fundLst .cardIllustration {
    margin: 20px 0;
  }
  .ourServices .fundLst .cardIllustration img {
    height: 140px;
  }
}

.slick-dots {
  position: relative;
  bottom: inherit;
  max-width: 550px;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-dots li {
  margin: 0 5px;
  width: 20px;
  height: 20px;
}
.slick-dots li.slick-active button, .slick-dots li:hover button {
  background: #FAD102;
}
.slick-dots li button {
  font-size: 0px;
  padding: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #D9D9D9;
  transition: 0.4s ease-in-out all;
}
.slick-dots li button::before {
  display: none;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .slick-dots {
    max-width: 450px;
    margin-top: 30px;
  }
  .slick-dots li {
    width: 15px;
    height: 15px;
  }
  .slick-dots li button {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 1699px) {
  .slick-dots {
    max-width: 450px;
    margin-top: 30px;
  }
  .slick-dots li {
    width: 15px;
    height: 15px;
  }
  .slick-dots li button {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 450px) {
  .slick-dots {
    margin-top: 20px;
  }
  .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

.hmCompanies .clientLogoSlider .clientBox .clientFix {
  padding: 25px 60px;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hmCompanies .clientLogoSlider .clientBox .clientFix img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .hmCompanies .clientLogoSlider .clientBox .clientFix {
    padding: 20px 50px;
    min-height: 140px;
  }
}
@media (max-width: 1699px) {
  .hmCompanies .clientLogoSlider .clientBox .clientFix {
    padding: 15px 40px;
    min-height: 120px;
  }
}
@media (max-width: 1199px) {
  .hmCompanies .clientLogoSlider .clientBox .clientFix {
    padding: 15px 35px;
    min-height: 90px;
  }
}
@media (max-width: 991px) {
  .hmCompanies .clientLogoSlider .clientBox .clientFix {
    padding: 10px 30px;
    min-height: 120px;
  }
}
@media (max-width: 450px) {
  .hmCompanies .clientLogoSlider .clientBox .clientFix {
    padding: 10px 30px;
    min-height: 100px;
    max-width: 300px;
    margin: 0 auto;
  }
}

.subTitle {
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  color: #E68020;
  margin-bottom: 0;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .subTitle {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (max-width: 1699px) {
  .subTitle {
    font-size: 22px;
    line-height: 22px;
  }
}

.hmTestimnl {
  background: #F9F9F9;
}
.hmTestimnl .sectionTitle {
  margin-bottom: 0;
}
.hmTestimnl .testimnlSlider .slick-dots {
  margin-top: 10px;
}
.hmTestimnl .testimnlSlider .slick-list {
  padding: 0 25% !important;
}
.hmTestimnl .testimnlSlider .testimnlBox {
  margin: 50px 0 60px;
}
.hmTestimnl .testimnlSlider .testimnlBox .testimnlFix {
  padding: 50px;
  box-shadow: 0px 4px 40px 5px rgba(0, 0, 0, 0.1019607843);
  border-radius: 30px;
  margin: 0 15px;
}
.hmTestimnl .testimnlSlider .testimnlBox .testimnlFix p {
  font-weight: 400;
  font-style: Italic;
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 0;
}
.hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .subTitle {
  margin-top: 50px;
}
.hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .minHgt {
  min-height: 150px;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .hmTestimnl .testimnlSlider .testimnlBox {
    margin: 45px 0 55px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix {
    padding: 55px;
    margin: 0 12px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix p {
    font-size: 25px;
    line-height: 35px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .subTitle {
    margin-top: 35px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .minHgt {
    min-height: 140px;
  }
}
@media (max-width: 1699px) {
  .hmTestimnl .testimnlSlider .testimnlBox {
    margin: 40px 0 50px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix {
    padding: 53px;
    margin: 0 10px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix p {
    font-size: 20px;
    line-height: 30px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .subTitle {
    margin-top: 30px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .minHgt {
    min-height: 120px;
  }
}
@media (max-width: 1199px) {
  .hmTestimnl .testimnlSlider .testimnlBox {
    margin: 30px 0 40px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix {
    padding: 45px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix p {
    font-size: 18px;
    line-height: 28px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .subTitle {
    margin-top: 25px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .minHgt {
    min-height: 110px;
  }
}
@media (max-width: 991px) {
  .hmTestimnl .testimnlSlider .testimnlBox {
    margin: 25px 0 35px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix {
    padding: 30px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix p {
    font-size: 16px;
    line-height: 26px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .subTitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .hmTestimnl .testimnlSlider .testimnlBox {
    margin: 25px 0 30px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix {
    padding: 25px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix p {
    font-size: 14px;
    line-height: 24px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .subTitle {
    margin-top: 15px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .minHgt {
    min-height: 120px;
  }
}
@media (max-width: 575px) {
  .hmTestimnl .testimnlSlider .slick-list {
    padding: inherit !important;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix {
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 450px) {
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix {
    max-width: 300px;
    padding: 20px;
  }
  .hmTestimnl .testimnlSlider .testimnlBox .testimnlFix .subTitle {
    margin-top: 10px;
  }
}

.hmContact .hmContactTxt .sectionTitle {
  text-align: left;
}
.hmContact .hmContactTxt .hmContactImp {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.hmContact .hmContactTxt .hmContactImp .hmContactImpBx {
  flex: 0 0 47%;
  max-width: 47%;
  margin-right: 30px;
  border: 1px solid #353535;
  border-radius: 20px;
  padding: 22px 38px;
}
.hmContact .hmContactTxt .hmContactImp .hmContactImpBx .subTitle {
  margin-bottom: 5px;
}
.hmContact .hmContactTxt .hmContactImp .hmContactImpBx a {
  font-weight: 500;
  font-size: 26px;
  line-height: 26px;
  color: #9E9E9E;
  transition: 0.5s ease-in-out all;
}
.hmContact .hmContactTxt .hmContactImp .hmContactImpBx a:hover {
  color: #000;
}
.hmContact .hmContactImg {
  text-align: right;
  padding-right: 100px;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .hmContact .hmContactTxt .hmContactImp {
    margin-top: 35px;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx {
    margin-right: 25px;
    padding: 20px 25px;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx a {
    font-size: 20px;
    line-height: 20px;
  }
  .hmContact .hmContactImg {
    padding-right: 75px;
  }
  .hmContact .hmContactImg img {
    height: 450px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1699px) {
  .hmContact .hmContactTxt .hmContactImp {
    margin-top: 30px;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx {
    margin-right: 20px;
    padding: 15px 20px;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx a {
    font-size: 16px;
    line-height: 16px;
  }
  .hmContact .hmContactImg {
    padding-right: 70px;
  }
  .hmContact .hmContactImg img {
    height: 400px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1199px) {
  .hmContact .hmContactTxt .hmContactImp {
    margin-top: 25px;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx {
    margin-right: 10px;
    padding: 12px 15px;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx .subTitle {
    margin-bottom: 0;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx a {
    font-size: 14px;
    line-height: 14px;
  }
  .hmContact .hmContactImg {
    padding-right: 0px;
  }
  .hmContact .hmContactImg img {
    height: 430px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 991px) {
  .hmContact .hmContactTxt {
    margin-bottom: 30px;
    text-align: center;
  }
  .hmContact .hmContactTxt .sectionTitle {
    text-align: center;
  }
  .hmContact .hmContactTxt .hmContactImp {
    margin-top: 20px;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx {
    margin: 0 10px;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx a {
    font-size: 16px;
    line-height: 16px;
  }
  .hmContact .hmContactImg {
    text-align: center;
  }
  .hmContact .hmContactImg img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .hmContact .hmContactImg img {
    height: 350px;
  }
}
@media (max-width: 450px) {
  .hmContact .hmContactTxt .hmContactImp {
    flex-wrap: wrap;
  }
  .hmContact .hmContactTxt .hmContactImp .hmContactImpBx {
    flex: 0 0 100%;
    max-width: 300px;
    margin: 0 auto 10px;
  }
}

.mainFooter {
  background: #0D2D32;
  color: #fff;
}
.mainFooter .footerTopSection {
  padding: 70px 0 40px 0;
}
.mainFooter .footerTopSection .footerLogo img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mainFooter .footerTopSection .socialMediaIcons {
  display: flex;
  margin-top: 50px;
  justify-content: flex-start;
}
.mainFooter .footerTopSection .socialMediaIcons li {
  margin: 0 40px 0 0;
}
.mainFooter .footerTopSection .socialMediaIcons li:last-child {
  margin-right: 0;
}
.mainFooter .footerTopSection .socialMediaIcons a {
  display: inline-block;
  transform: scale(1);
  transition: 0.5s ease-in-out all;
}
.mainFooter .footerTopSection .socialMediaIcons a:hover {
  transform: scale(1.1);
}
.mainFooter .footerTopSection .socialMediaIcons img {
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mainFooter .footerTopSection .navigationMenu {
  margin-bottom: 80px;
}
.mainFooter .footerTopSection .navigationMenu .ftNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mainFooter .footerTopSection .navigationMenu .ftNav li {
  padding-right: 52px;
}
.mainFooter .footerTopSection .navigationMenu .ftNav li:last-child {
  padding: 0;
}
.mainFooter .footerTopSection .navigationMenu .ftNav li:hover a, .mainFooter .footerTopSection .navigationMenu .ftNav li.active a {
  color: #FAD102;
}
.mainFooter .footerTopSection .navigationMenu .navLink {
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  transition: 0.5s ease-in-out all;
}
.mainFooter .footerTopSection .navigationMenu .navLink:hover {
  color: #FAD102;
}
.mainFooter .footerTopSection .footerCntct {
  display: flex;
  justify-content: flex-end;
}
.mainFooter .footerTopSection .footerCntct li {
  margin-right: 100px;
}
.mainFooter .footerTopSection .footerCntct li:last-child {
  margin-right: 0;
}
.mainFooter .footerTopSection .footerCntct li .footerCntctBx .footerCntctHd {
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #E68020;
}
.mainFooter .footerTopSection .footerCntct li .footerCntctBx p {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: #C5C5C5;
  margin: 0;
}
.mainFooter .footerTopSection .footerCntct li .footerCntctBx a {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: #C5C5C5;
  transition: 0.5s ease-in-out all;
}
.mainFooter .footerTopSection .footerCntct li .footerCntctBx a:hover {
  color: #FAD102;
}
.mainFooter .footerBottomSection {
  background: #072428;
  padding: 12px 0;
}
.mainFooter .copyrightText {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.mainFooter .websiteDesignedBy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-align: right;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .mainFooter .footerTopSection {
    padding: 50px 0 30px 0;
  }
  .mainFooter .footerTopSection .footerLogo img {
    height: 190px;
  }
  .mainFooter .footerTopSection .socialMediaIcons {
    margin-top: 40px;
  }
  .mainFooter .footerTopSection .socialMediaIcons li {
    margin: 0 35px 0 0;
  }
  .mainFooter .footerTopSection .navigationMenu {
    margin-bottom: 70px;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav li {
    padding-right: 38px;
  }
  .mainFooter .footerTopSection .navigationMenu .navLink {
    font-size: 20px;
    line-height: 20px;
  }
  .mainFooter .footerTopSection .footerCntct li {
    margin-right: 100px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx .footerCntctHd {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx p {
    font-size: 22px;
    line-height: 32px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx a {
    font-size: 22px;
    line-height: 32px;
  }
  .mainFooter .copyrightText {
    font-size: 18px;
    line-height: 22px;
  }
  .mainFooter .websiteDesignedBy {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1699px) {
  .mainFooter .footerTopSection {
    padding: 50px 0 30px 0;
  }
  .mainFooter .footerTopSection .footerLogo img {
    height: 160px;
  }
  .mainFooter .footerTopSection .socialMediaIcons {
    margin-top: 30px;
  }
  .mainFooter .footerTopSection .socialMediaIcons li {
    margin: 0 22px 0 0;
  }
  .mainFooter .footerTopSection .navigationMenu {
    margin-bottom: 60px;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav li {
    padding-right: 32px;
  }
  .mainFooter .footerTopSection .navigationMenu .navLink {
    font-size: 18px;
    line-height: 18px;
  }
  .mainFooter .footerTopSection .footerCntct li {
    margin-right: 55px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx .footerCntctHd {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx p {
    font-size: 18px;
    line-height: 28px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx a {
    font-size: 18px;
    line-height: 28px;
  }
  .mainFooter .copyrightText {
    font-size: 16px;
    line-height: 20px;
  }
  .mainFooter .websiteDesignedBy {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1199px) {
  .mainFooter .footerTopSection {
    padding: 40px 0 20px 0;
  }
  .mainFooter .footerTopSection .footerLogo img {
    height: 150px;
  }
  .mainFooter .footerTopSection .socialMediaIcons {
    margin-top: 25px;
  }
  .mainFooter .footerTopSection .socialMediaIcons li {
    margin: 0 25px 0 0;
  }
  .mainFooter .footerTopSection .navigationMenu {
    margin-bottom: 50px;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav li {
    padding-right: 28px;
  }
  .mainFooter .footerTopSection .navigationMenu .navLink {
    font-size: 16px;
    line-height: 16px;
  }
  .mainFooter .footerTopSection .footerCntct li {
    margin-right: 28px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx .footerCntctHd {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx p {
    font-size: 16px;
    line-height: 26px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx a {
    font-size: 16px;
    line-height: 26px;
  }
  .mainFooter .copyrightText {
    font-size: 14px;
    line-height: 18px;
  }
  .mainFooter .websiteDesignedBy {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 991px) {
  .mainFooter .footerTopSection {
    text-align: center;
  }
  .mainFooter .footerTopSection .footerLogo img {
    height: 140px;
  }
  .mainFooter .footerTopSection .socialMediaIcons {
    justify-content: center;
  }
  .mainFooter .footerTopSection .navigationMenu {
    margin-bottom: 35px;
    margin-top: 35px;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav {
    justify-content: center;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav li {
    padding-right: 28px;
  }
  .mainFooter .footerTopSection .navigationMenu .navLink {
    font-size: 16px;
    line-height: 16px;
  }
  .mainFooter .footerTopSection .footerCntct li {
    margin-right: 28px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx .footerCntctHd {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx p {
    font-size: 16px;
    line-height: 26px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx a {
    font-size: 16px;
    line-height: 26px;
  }
  .mainFooter .copyrightText {
    font-size: 14px;
    line-height: 18px;
  }
  .mainFooter .websiteDesignedBy {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .mainFooter .footerTopSection .footerLogo img {
    height: 130px;
  }
  .mainFooter .footerTopSection .navigationMenu {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav li {
    padding-right: 25px;
  }
  .mainFooter .footerTopSection .footerCntct {
    flex-wrap: wrap;
  }
  .mainFooter .footerTopSection .footerCntct li {
    margin-right: 25px;
    flex: 0 0 46%;
    max-width: 46%;
  }
  .mainFooter .footerTopSection .footerCntct li:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx .footerCntctHd {
    margin-bottom: 10px;
  }
  .mainFooter .copyrightText {
    font-size: 14px;
    line-height: 18px;
  }
  .mainFooter .websiteDesignedBy {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 575px) {
  .mainFooter .copyrightText {
    text-align: center;
    margin-bottom: 10px;
  }
  .mainFooter .websiteDesignedBy {
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 450px) {
  .mainFooter .footerTopSection {
    padding-top: 30px;
  }
  .mainFooter .footerTopSection .footerLogo img {
    height: 125px;
  }
  .mainFooter .footerTopSection .socialMediaIcons li {
    margin: 0 10px;
  }
  .mainFooter .footerTopSection .socialMediaIcons li img {
    height: 20px;
  }
  .mainFooter .footerTopSection .navigationMenu {
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav {
    flex-direction: column;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav li {
    padding-right: 0;
    padding-bottom: 10px;
  }
  .mainFooter .footerTopSection .navigationMenu .ftNav li:last-child {
    padding: 0;
  }
  .mainFooter .footerTopSection .footerCntct li {
    margin-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .mainFooter .footerTopSection .footerCntct li:first-child {
    margin-bottom: 10px;
  }
  .mainFooter .footerTopSection .footerCntct li .footerCntctBx .footerCntctHd {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 5px;
  }
  .mainFooter .copyrightText {
    font-size: 14px;
    line-height: 18px;
  }
  .mainFooter .websiteDesignedBy {
    font-size: 14px;
    line-height: 18px;
  }
}

.contactDt .sectionTitle {
  text-align: left;
  color: #565959;
}
.contactDt .contactDtFlx {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contactDt .contactDtFlx .contactDtLft {
  flex: 0 0 50%;
  max-width: 50%;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx {
  margin-bottom: 30px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx.mgBtZro {
  margin-bottom: 0;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location {
  position: relative;
  font-weight: 500;
  font-size: 25px;
  line-height: 36px;
  padding-left: 25px;
  color: #000;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location span {
  font-weight: 700;
  display: block;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  background-image: url("../images/locate.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 15px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location.email {
  padding-left: 30px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location.email::before {
  top: 13px;
  background-image: url("../images/mail.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  width: 20px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location.call {
  padding-left: 30px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location.call::before {
  background-image: url("../images/call.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location.whatsApp {
  padding-left: 35px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx .location.whatsApp::before {
  background-image: url("../images/whatsapp.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 5px;
  height: 25px;
  width: 25px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx a {
  display: block;
  font-weight: 500;
  font-size: 25px;
  line-height: 36px;
  color: #323232;
  margin-bottom: 20px;
  transition: 0.5s ease-in-out all;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx a:hover {
  color: #D56A1A;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx.othNum {
  margin-bottom: 50px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx.othNum li {
  margin-bottom: 15px;
}
.contactDt .contactDtFlx .contactDtLft .contactDtBx.othNum .subTitle {
  color: #000;
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 30px;
}
.contactDt .contactDtFlx .contactDtLft .socialMediaIcons {
  display: flex;
  list-style-type: none;
}
.contactDt .contactDtFlx .contactDtLft .socialMediaIcons li {
  margin: 0 20px;
}
.contactDt .contactDtFlx .contactDtLft .socialMediaIcons li a img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1);
  transition: 0.5s ease-in-out all;
}
.contactDt .contactDtFlx .contactDtLft .socialMediaIcons li a img:hover {
  transform: scale(1.1);
}
.contactDt .contactDtFlx .contactDtRgt {
  flex: 0 0 50%;
  max-width: 50%;
}
.contactDt .contactDtFlx .contactDtRgt .inquiryForm .sectionTitle {
  margin-bottom: 50px;
}
.contactDt .contactDtFlx .contactDtRgt .inquiryForm .fromLbl {
  color: #000000;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
}
.contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group {
  margin-bottom: 30px;
}
.contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control {
  border: 1px solid #C9C9C9;
  border-radius: 5px;
  padding: 22px 15px;
}
.contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::-moz-placeholder {
  font-weight: 500;
  font-size: 20px;
  line-height: 16px;
  color: #9E9E9E;
  text-transform: capitalize;
}
.contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::placeholder {
  font-weight: 500;
  font-size: 20px;
  line-height: 16px;
  color: #9E9E9E;
  text-transform: capitalize;
}
.contactDt .contactDtFlx .contactDtRgt .inquiryForm .comnBtn {
  margin-top: 50px;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .contactDt .contactDtFlx .contactDtLft .contactDtBx {
    margin-bottom: 20px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location {
    font-size: 20px;
    line-height: 30px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location::before {
    height: 22px;
    width: 17px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.email::before {
    top: 8px;
    height: 17px;
    width: 22px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.call::before {
    top: 5px;
    height: 22px;
    width: 22px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.person::before {
    top: 6px;
    height: 22px;
    width: 19px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx a {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .contactDt .contactDtFlx .contactDtRgt {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .fromLbl {
    font-size: 22px;
    line-height: 27px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .sectionTitle {
    margin-bottom: 40px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group {
    margin-bottom: 25px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control {
    padding: 17px 15px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::-moz-placeholder {
    font-size: 18px;
    line-height: 16px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::placeholder {
    font-size: 18px;
    line-height: 16px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .comnBtn {
    margin-top: 40px;
  }
}
@media (max-width: 1699px) {
  .contactDt .contactDtFlx .contactDtLft .contactDtBx {
    margin-bottom: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location {
    font-size: 18px;
    line-height: 28px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location::before {
    height: 20px;
    width: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.email::before {
    top: 8px;
    height: 15px;
    width: 20px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.call::before {
    top: 5px;
    height: 20px;
    width: 20px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.whatsApp::before {
    top: 2px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.person::before {
    top: 6px;
    height: 20px;
    width: 17px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx a {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx.othNum {
    margin-bottom: 30px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx.othNum li {
    margin-bottom: 10px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx.othNum .subTitle {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 25px;
  }
  .contactDt .contactDtFlx .contactDtRgt {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .fromLbl {
    font-size: 20px;
    line-height: 25px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .sectionTitle {
    margin-bottom: 30px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group {
    margin-bottom: 20px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control {
    padding: 15px 12px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 12px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::placeholder {
    font-size: 16px;
    line-height: 12px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .comnBtn {
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .contactDt .contactDtFlx .contactDtLft .contactDtBx {
    margin-bottom: 10px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location {
    font-size: 18px;
    line-height: 28px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location::before {
    height: 20px;
    width: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.email::before {
    top: 8px;
    height: 15px;
    width: 20px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.call::before {
    top: 5px;
    height: 20px;
    width: 20px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.person::before {
    top: 6px;
    height: 20px;
    width: 17px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx a {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx.othNum {
    margin-bottom: 25px;
  }
  .contactDt .contactDtFlx .contactDtRgt {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .fromLbl {
    font-size: 20px;
    line-height: 25px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .sectionTitle {
    margin-bottom: 30px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group {
    margin-bottom: 20px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control {
    padding: 15px 12px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 12px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::placeholder {
    font-size: 16px;
    line-height: 12px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .comnBtn {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .contactDt .contactDtFlx .contactDtLft {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dbdbdb;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.whatsApp {
    padding-left: 33px;
  }
  .contactDt .contactDtFlx .contactDtLft .socialMediaIcons li {
    margin: 0 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .socialMediaIcons li a img {
    height: 30px;
  }
  .contactDt .contactDtFlx .contactDtRgt {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .fromLbl {
    font-size: 18px;
    line-height: 24px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .sectionTitle {
    margin-bottom: 15px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group {
    margin-bottom: 15px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control {
    padding: 12px 10px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::-moz-placeholder {
    font-size: 14px;
    line-height: 10px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .form-group .form-control::placeholder {
    font-size: 14px;
    line-height: 10px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .comnBtn {
    margin-top: 25px;
  }
}
@media (max-width: 450px) {
  .contactDt .contactDtFlx .contactDtLft {
    margin-bottom: 20px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .blue20 {
    margin-bottom: 10px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location {
    margin-bottom: 5px;
    padding-left: 20px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location::before {
    height: 15px;
    width: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.email {
    padding-left: 25px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.email::before {
    top: 9px;
    height: 15px;
    width: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.call {
    padding-left: 25px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.call::before {
    height: 15px;
    width: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.whatsApp {
    padding-left: 25px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.whatsApp::before {
    top: 5px;
    height: 20px;
    width: 20px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.person {
    padding-left: 25px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx .location.person::before {
    height: 15px;
    width: 15px;
  }
  .contactDt .contactDtFlx .contactDtLft .contactDtBx.othNum {
    margin-bottom: 20px;
  }
  .contactDt .contactDtFlx .contactDtRgt .inquiryForm .comnBtn {
    margin-top: 15px;
  }
}

.mapSec {
  margin-bottom: -8px;
}

.whyChoose .whyChooseFlx {
  display: flex;
  flex-wrap: wrap;
}
.whyChoose .whyChooseFlx .whyChooseLft {
  flex: 0 0 60%;
  max-width: 60%;
  padding-right: 30px;
}
.whyChoose .whyChooseFlx .whyChooseRgt {
  flex: 0 0 40%;
  max-width: 40%;
}
.whyChoose .whyChooseFlx .whyChooseRgt img {
  border-radius: 30px;
}
@media (max-width: 767px) {
  .whyChoose .whyChooseFlx .whyChooseLft {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 20px;
  }
  .whyChoose .whyChooseFlx .whyChooseRgt {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
  }
}

.certiSec .certiUl {
  display: flex;
  flex-wrap: wrap;
}
.certiSec .certiUl li {
  flex: 0 0 18.25%;
  max-width: 18.25%;
  padding: 15px 20px;
  margin: 0 14px;
  box-shadow: 0px 4px 50px 5px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  border-radius: 10px;
}
.certiSec .certiUl li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .certiSec .certiUl li {
    margin: 0 12px;
  }
}
@media (max-width: 1699px) {
  .certiSec .certiUl li {
    flex: 0 0 17.8%;
    max-width: 17.8%;
    padding: 10px 12px;
    margin: 0 12px;
  }
}
@media (max-width: 1199px) {
  .certiSec .certiUl li {
    margin: 0 10px;
  }
}
@media (max-width: 991px) {
  .certiSec .certiUl {
    justify-content: center;
  }
  .certiSec .certiUl li {
    margin: 0 10px 20px;
    flex: 0 0 28%;
    max-width: 28%;
  }
}
@media (max-width: 767px) {
  .certiSec .certiUl li {
    margin: 0 10px 15px;
    flex: 0 0 29.33%;
    max-width: 29.33%;
  }
}
@media (max-width: 575px) {
  .certiSec .certiUl li {
    margin: 0 10px 15px;
    flex: 0 0 46%;
    max-width: 46%;
  }
}
@media (max-width: 450px) {
  .certiSec .certiUl li {
    margin: 0 auto 15px;
    flex: 0 0 100%;
    max-width: 300px;
  }
}
.certiSec.awardSec .certiUl li {
  margin-bottom: 20px;
}
.certiSec.awardSec .certiUl li a img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mutualFund .mutualFundFlx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mutualFund .mutualFundFlx .mutualFundLft {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 100px;
  padding-right: 170px;
}
.mutualFund .mutualFundFlx .mutualFundLft .sectionTitle {
  text-align: left;
}
.mutualFund .mutualFundFlx .mutualFundLft p {
  margin-bottom: 20px;
}
.mutualFund .mutualFundFlx .mutualFundLft .comnBtn {
  margin-top: 50px;
}
.mutualFund .mutualFundFlx .mutualFundRgt {
  flex: 0 0 60%;
  max-width: 60%;
}
.mutualFund .mutualFundFlx .mutualFundRgt img {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 100%;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .mutualFund .mutualFundFlx .mutualFundLft {
    padding-right: 100px;
  }
}
@media (max-width: 1699px) {
  .mutualFund .mutualFundFlx .mutualFundLft {
    flex: 0 0 45%;
    max-width: 45%;
    padding-left: 80px;
    padding-right: 100px;
  }
  .mutualFund .mutualFundFlx .mutualFundLft p {
    margin-bottom: 15px;
  }
  .mutualFund .mutualFundFlx .mutualFundLft .comnBtn {
    margin-top: 30px;
  }
  .mutualFund .mutualFundFlx .mutualFundRgt {
    flex: 0 0 55%;
    max-width: 55%;
  }
}
@media (max-width: 991px) {
  .mutualFund .mutualFundFlx .mutualFundLft {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 60px;
    padding-right: 70px;
  }
  .mutualFund .mutualFundFlx .mutualFundLft p {
    margin-bottom: 10px;
  }
  .mutualFund .mutualFundFlx .mutualFundLft .comnBtn {
    margin-top: 25px;
  }
  .mutualFund .mutualFundFlx .mutualFundRgt {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 991px) {
  .mutualFund .mutualFundFlx .mutualFundLft {
    flex: 0 0 100%;
    max-width: 80%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto 30px;
  }
  .mutualFund .mutualFundFlx .mutualFundLft .comnBtn {
    margin-top: 10px;
  }
  .mutualFund .mutualFundFlx .mutualFundLft .sectionTitle {
    text-align: center;
  }
  .mutualFund .mutualFundFlx .mutualFundRgt {
    flex: 0 0 100%;
    max-width: 500px;
    margin: auto;
  }
  .mutualFund .mutualFundFlx .mutualFundRgt img {
    border-radius: 50px;
  }
}
@media (max-width: 450px) {
  .mutualFund .mutualFundFlx .mutualFundRgt {
    max-width: 300px;
  }
}

.typeMf {
  background: linear-gradient(285.63deg, #328068 -5.82%, #163E45 86.6%);
}
.typeMf.typeMfExtSpcUp {
  padding-top: 200px;
}
.typeMf.typeMfExtSpcUp .sectionTitle {
  text-align: center;
}
.typeMf .sectionTitle {
  text-align: left;
  color: #fff;
}
.typeMf ul {
  display: flex;
  flex-wrap: wrap;
}
.typeMf ul li {
  flex: 0 0 20%;
  max-width: 20%;
  padding-right: 30px;
  transform: translateY(0);
  transition: 0.5s ease-in-out all;
}
.typeMf ul li:hover {
  transform: translateY(-10px);
}
.typeMf ul li .mfBx {
  background: #fff;
  box-shadow: 0px 4px 50px 5px rgba(0, 0, 0, 0.1019607843);
  border-radius: 30px;
  min-height: 350px;
  padding: 50px 30px;
}
.typeMf ul li .mfBx img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.typeMf ul li .mfBx h5 {
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
}
.typeMf ul li .mfBx p {
  color: #9E9E9E;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 1699px) {
  .typeMf.typeMfExtSpcUp {
    padding-top: 150px;
  }
  .typeMf ul li {
    padding-right: 20px;
  }
  .typeMf ul li .mfBx {
    min-height: 250px;
    padding: 20px 20px;
  }
  .typeMf ul li .mfBx img {
    height: 60px;
    margin-bottom: 15px;
  }
  .typeMf ul li .mfBx h5 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1199px) {
  .typeMf.typeMfExtSpcUp {
    padding-top: 130px;
  }
  .typeMf ul li {
    padding-right: 15px;
  }
  .typeMf ul li .mfBx {
    min-height: 220px;
    padding: 15px;
  }
  .typeMf ul li .mfBx img {
    height: 50px;
    margin-bottom: 10px;
  }
  .typeMf ul li .mfBx h5 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .typeMf.typeMfExtSpcUp {
    padding-top: 100px;
  }
  .typeMf .sectionTitle {
    text-align: center;
  }
  .typeMf ul {
    justify-content: center;
  }
  .typeMf ul li {
    padding-right: 0;
    padding: 0 10px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 20px;
  }
  .typeMf ul li .mfBx {
    min-height: 190px;
    padding: 15px;
  }
  .typeMf ul li .mfBx img {
    height: 50px;
    margin-bottom: 10px;
  }
  .typeMf ul li .mfBx h5 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .typeMf.typeMfExtSpcUp {
    padding-top: 50px;
  }
  .typeMf ul li {
    padding: 0 10px;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
  .typeMf ul li .mfBx {
    min-height: 190px;
    padding: 15px;
    text-align: center;
  }
  .typeMf ul li .mfBx img {
    height: 50px;
    margin-bottom: 10px;
  }
  .typeMf ul li .mfBx h5 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .typeMf.typeMfExtSpcUp {
    padding-top: 40px;
  }
  .typeMf ul li {
    padding: 0;
    flex: 0 0 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }
  .typeMf ul li .mfBx {
    min-height: 150px;
    padding: 12px;
  }
  .typeMf ul li .mfBx img {
    height: 40px;
  }
  .typeMf ul li .mfBx h5 {
    font-size: 18px;
    line-height: 18px;
  }
}

.lstTwoSec .lstTwoFlx {
  display: flex;
  flex-wrap: wrap;
}
.lstTwoSec .lstTwoFlx .lstTwoHlf {
  flex: 0 0 49%;
  max-width: 49%;
  padding: 50px;
  margin-right: 30px;
  border-radius: 50px;
  box-shadow: 0px 4px 50px 5px rgba(0, 0, 0, 0.1019607843);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}
.lstTwoSec .lstTwoFlx .lstTwoHlf:last-child {
  margin: 0;
}
.lstTwoSec .lstTwoFlx .lstTwoHlf .sectionTitle {
  text-align: left;
  color: #565959;
}
.lstTwoSec .lstTwoFlx .lstTwoHlf .bullets li {
  margin-bottom: 20px;
}
.lstTwoSec .lstTwoFlx .lstTwoHlf .bullets li p {
  color: #818181;
}
@media (min-width: 1700px) and (max-width: 1899px) {
  .lstTwoSec .lstTwoFlx .lstTwoHlf {
    margin-right: 25px;
  }
}
@media (max-width: 1699px) {
  .lstTwoSec .lstTwoFlx .lstTwoHlf {
    flex: 0 0 49%;
    max-width: 49%;
    padding: 30px;
    margin-right: 20px;
  }
  .lstTwoSec .lstTwoFlx .lstTwoHlf .bullets li {
    margin-bottom: 10px;
  }
}
@media (max-width: 1199px) {
  .lstTwoSec .lstTwoFlx .lstTwoHlf {
    padding: 25px;
    margin-right: 18px;
  }
}
@media (max-width: 991px) {
  .lstTwoSec .lstTwoFlx .lstTwoHlf {
    padding: 20px;
    margin-right: 13px;
  }
}
@media (max-width: 767px) {
  .lstTwoSec .lstTwoFlx .lstTwoHlf {
    padding: 25px;
    margin-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .lstTwoSec .lstTwoFlx .lstTwoHlf:last-child {
    margin: 0;
  }
}

.visionSec {
  position: relative;
  max-width: 75%;
  margin: 0 auto -130px;
}
.visionSec .visionBx {
  background: linear-gradient(180deg, #D56A1A 0%, #E49310 100%);
  padding: 50px;
  border-radius: 50px;
}
.visionSec .visionBx .sectionTitle {
  color: #fff;
  margin-bottom: 30px;
}
.visionSec .visionBx p {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 1699px) {
  .visionSec {
    margin-bottom: -100px;
  }
  .visionSec .visionBx {
    padding: 30px 40px;
  }
  .visionSec .visionBx .sectionTitle {
    margin-bottom: 20px;
  }
  .visionSec .visionBx p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 1199px) {
  .visionSec {
    margin-bottom: -80px;
  }
  .visionSec .visionBx {
    padding: 25px 35px;
  }
  .visionSec .visionBx .sectionTitle {
    margin-bottom: 15px;
  }
  .visionSec .visionBx p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .visionSec {
    margin-bottom: -70px;
  }
  .visionSec .visionBx {
    padding: 22px 32px;
  }
  .visionSec .visionBx .sectionTitle {
    margin-bottom: 12px;
  }
  .visionSec .visionBx p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .visionSec {
    margin-bottom: 0;
    background: linear-gradient(180deg, #D56A1A 0%, #E49310 100%);
    max-width: 100%;
  }
  .visionSec .visionBx {
    padding: 18px 0;
  }
  .visionSec .visionBx .sectionTitle {
    margin-bottom: 10px;
  }
  .visionSec .visionBx p {
    font-size: 16px;
    line-height: 26px;
  }
}

.timelineSec {
  text-align: center;
  /* Arrows */
  /* Dots */
}
.timelineSec .timeline-slider {
  width: 100%;
  margin: auto;
  position: relative;
}
.timelineSec .timeline-slider::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  height: 6px;
  width: 100%;
  background: #D9D9D9;
  margin: auto;
}
.timelineSec .timeline-slider .slick-list {
  padding: 0 25% 0 0 !important;
}
.timelineSec .slick-slide .timeline-item {
  filter: grayscale(1);
}
.timelineSec .slick-slide.slick-current .timeline-item {
  filter: grayscale(0);
}
.timelineSec .timeline-item {
  text-align: center;
  padding: 0;
  position: relative;
}
.timelineSec .year {
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #D56A1A 0%, #E49310 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.timelineSec .midIcn {
  background: linear-gradient(180deg, #D56A1A 0%, #E49310 100%);
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  margin: auto;
}
.timelineSec .content {
  font-weight: 500;
  font-size: 25px;
  line-height: 32px;
  text-align: center;
  max-width: 90%;
  margin: 10px auto 0;
  color: #000;
}
.timelineSec .slick-dots {
  bottom: -40px;
}
.timelineSec .slick-dots li button:before {
  font-size: 12px;
  color: #2276d2;
}
.timelineSec .slick-dots li.slick-active button:before {
  color: #2276d2;
}
@media (max-width: 1699px) {
  .timelineSec .timeline-slider::before {
    top: 39%;
  }
  .timelineSec .year {
    font-size: 60px;
    line-height: 60px;
  }
  .timelineSec .midIcn {
    height: 35px;
    width: 35px;
  }
  .timelineSec .content {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .timelineSec .year {
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 10px;
  }
  .timelineSec .content {
    font-size: 14px;
    line-height: 22px;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .timelineSec .timeline-slider::before {
    top: 38%;
  }
  .timelineSec .timeline-slider .slick-list {
    padding: 0 !important;
  }
  .timelineSec .timeline-slider .midIcn {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 575px) {
  .timelineSec .timeline-slider::before {
    top: 50%;
  }
  .timelineSec .content {
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .timelineSec .timeline-slider::before {
    top: 40%;
  }
  .timelineSec .year {
    font-size: 35px;
    line-height: 35px;
  }
  .timelineSec .midIcn {
    height: 30px;
    width: 30px;
  }
}

.founderSec .founderFlx {
  display: flex;
  flex-wrap: wrap;
  padding: 100px 50px;
  border-radius: 50px;
  box-shadow: 0px 4px 50px 5px rgba(0, 0, 0, 0.1019607843);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}
.founderSec .founderFlx .founderLft {
  flex: 0 0 30%;
  max-width: 30%;
  padding-right: 50px;
}
.founderSec .founderFlx .founderLft .founderImg img {
  border-radius: 50px;
}
.founderSec .founderFlx .founderRgt {
  flex: 0 0 70%;
  max-width: 70%;
}
.founderSec .founderFlx .founderRgt .founderDt .sectionTitle {
  text-align: left;
  margin-bottom: 30px;
}
.founderSec .founderFlx .founderRgt .founderDt .subTitle {
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 0;
}
.founderSec .founderFlx .founderRgt .founderDt .smlFnt {
  font-weight: 500;
  font-style: Italic;
  font-size: 20px;
  line-height: 20px;
  color: #7B7B7B;
  margin-bottom: 25px;
}
@media (max-width: 1699px) {
  .founderSec .founderFlx {
    padding: 60px 40px;
  }
  .founderSec .founderFlx .founderLft {
    padding-right: 30px;
  }
  .founderSec .founderFlx .founderRgt .founderDt .sectionTitle {
    margin-bottom: 20px;
  }
  .founderSec .founderFlx .founderRgt .founderDt .subTitle {
    font-size: 22px;
    line-height: 24px;
  }
  .founderSec .founderFlx .founderRgt .founderDt .smlFnt {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 15px;
  }
  .founderSec .founderFlx .founderRgt .founderDt p {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .founderSec .founderFlx {
    padding: 50px 30px;
  }
  .founderSec .founderFlx .founderLft {
    padding-right: 20px;
  }
  .founderSec .founderFlx .founderRgt .founderDt .sectionTitle {
    margin-bottom: 15px;
  }
  .founderSec .founderFlx .founderRgt .founderDt .subTitle {
    font-size: 20px;
    line-height: 22px;
  }
  .founderSec .founderFlx .founderRgt .founderDt .smlFnt {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 12px;
  }
  .founderSec .founderFlx .founderRgt .founderDt p {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .founderSec .founderFlx {
    padding: 40px 30px;
  }
  .founderSec .founderFlx .founderLft {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .founderSec .founderFlx .founderRgt {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .founderSec .founderFlx {
    padding: 30px;
    text-align: center;
  }
  .founderSec .founderFlx .founderLft {
    max-width: 300px;
    margin: 0 auto 20px;
  }
  .founderSec .founderFlx .founderRgt .founderDt .sectionTitle {
    text-align: center;
  }
}
@media (max-width: 450px) {
  .founderSec .founderFlx {
    padding: 25px;
  }
  .founderSec .founderFlx .founderLft {
    margin: 0 auto 15px;
  }
  .founderSec .founderFlx .founderRgt .founderDt .smlFnt {
    margin-bottom: 15px;
  }
  .founderSec .founderFlx .founderRgt .founderDt p {
    margin-bottom: 10px;
  }
}

.lognFrm .modal-dialog {
  max-width: 650px;
}
.lognFrm .modal-dialog .modal-content {
  border-radius: 50px;
  box-shadow: 0px 4px 50px 5px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  padding: 30px 35px;
}
.lognFrm .modal-dialog .modal-content .modal-header {
  padding: 0 0 30px !important;
  border-bottom: 1px solid #cfcfcf !important;
}
.lognFrm .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 35px !important;
  line-height: 35px;
}
.lognFrm .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-label {
  font-size: 25px !important;
  line-height: 28px !important;
  margin-bottom: 10px !important;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-check {
  display: flex !important;
  justify-content: space-between !important;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-check .frmChk .form-check-input:checked {
  background-color: #E68020;
  border-color: #E68020;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-check .frmChk .form-check-input:focus {
  box-shadow: none;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-check .frmChk .form-check-label {
  font-size: 18px !important;
  line-height: 24px !important;
  color: #000 !important;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-check .frgtTxt {
  font-size: 18px !important;
  line-height: 26px !important;
  color: #E68020;
  transition: 0.5s ease-in-out all;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-check .frgtTxt:hover {
  color: #163E45;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-control {
  padding: 15px;
  height: 50px;
  border-radius: 20px;
  font-size: 18px;
  line-height: 18px;
  color: #8f8f8f;
  margin-bottom: 0;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-control::-moz-placeholder {
  font-size: 18px;
  line-height: 18px;
  color: #8f8f8f;
}
.lognFrm .modal-dialog .modal-content .modal-body .form-control::placeholder {
  font-size: 18px;
  line-height: 18px;
  color: #8f8f8f;
}
.lognFrm .modal-dialog .modal-content .modal-body .lgnBtn {
  margin: auto;
  text-align: center;
}
.lognFrm .modal-dialog .modal-content .modal-body .lstTxt {
  font-size: 18px !important;
  line-height: 26px !important;
  margin-bottom: 0;
}
.lognFrm .modal-dialog .modal-content .modal-body .lstTxt .btn {
  padding-left: 5px;
  font-size: 20px !important;
  line-height: 18px !important;
  color: #E68020;
  transition: 0.5s ease-in-out all;
}
.lognFrm .modal-dialog .modal-content .modal-body .lstTxt .btn:hover {
  color: #163E45;
}
@media (max-width: 1699px) {
  .lognFrm .modal-dialog {
    max-width: 550px;
  }
  .lognFrm .modal-dialog .modal-content {
    padding: 25px 30px;
  }
  .lognFrm .modal-dialog .modal-content .modal-header {
    padding: 0 0 20px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 28px !important;
    line-height: 28px;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-label {
    font-size: 18px !important;
    line-height: 22px !important;
    margin-bottom: 8px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-check .frmChk .form-check-label {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-check .frgtTxt {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-control {
    padding: 12px;
    height: 40px;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-control::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .lstTxt {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .lstTxt .btn {
    font-size: 16px !important;
    line-height: 14px !important;
  }
  .lognFrm .modal-dialog .form-control:focus {
    border-color: none;
    box-shadow: none;
  }
}
@media (max-width: 450px) {
  .lognFrm .modal-dialog {
    max-width: 300px;
    margin: auto;
  }
  .lognFrm .modal-dialog .modal-content {
    padding: 20px;
  }
  .lognFrm .modal-dialog .modal-content .modal-header {
    padding: 0 0 15px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 24px !important;
    line-height: 24px;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-label {
    font-size: 16px !important;
    line-height: 20px !important;
    margin-bottom: 6px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-check .frmChk .form-check-label {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-check .frgtTxt {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-control {
    padding: 10px;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-control::-moz-placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .form-control::placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .lstTxt {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .lognFrm .modal-dialog .modal-content .modal-body .lstTxt .btn {
    font-size: 14px !important;
    line-height: 12px !important;
  }
  .lognFrm .modal-dialog .form-control:focus {
    border-color: none;
    box-shadow: none;
  }
}

.certiUl li {
  position: relative;
}
.certiUl li img {
  transition: 0.5s ease-in-out all;
}
.certiUl li .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  font-size: 30px;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  opacity: 0;
  transition: 0.5s ease-in-out all;
  pointer-events: none;
}
.certiUl li:hover img {
  filter: blur(3px) brightness(0.3);
  transform: scale(1.05);
}
.certiUl li:hover .icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.captchaGrp {
  position: relative;
  gap: 0 !important;
  background: #634434;
  border-radius: 5px;
}
.captchaGrp input {
  border-radius: 5px 0 0 5px;
}
.captchaGrp img {
  border: none !important;
}

.globalexpertSec {
  background: #F9F9F9;
}
@media (max-width: 991px) {
  .globalexpertSec .mapImg {
    display: block !important;
  }
}
.globalexpertSec .sectionTitle {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 1199px) {
  .globalexpertSec .sectionTitle {
    display: block;
  }
}
@media (max-width: 991px) {
  .globalexpertSec .mrg50 {
    margin-top: 50px;
  }
}

.map-container {
  position: relative;
  max-width: 1500px;
  margin: auto;
}
@media (max-width: 1699px) {
  .map-container {
    max-width: 1000px;
  }
}
@media (max-width: 991px) {
  .map-container {
    display: none;
  }
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

.pin {
  position: absolute;
  width: 27px;
  height: 35px;
  background: url(../images/map_pin.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1699px) {
  .pin {
    width: 20px;
    height: 28px;
  }
}
.pin.canada {
  top: 35%;
  left: 16%;
}
.pin.usa {
  top: 46%;
  left: 18%;
}
.pin.uk {
  top: 38%;
  left: 45.5%;
}
.pin.japan {
  top: 46%;
  left: 84.5%;
}
.pin.india {
  top: 53%;
  left: 67%;
}
.pin.westafrica {
  top: 56%;
  left: 43%;
}
.pin.kenya {
  top: 61%;
  left: 57%;
}
.pin.dubai {
  top: 54%;
  left: 62%;
}
.pin.qatar {
  top: 54%;
  left: 61%;
}
.pin.oman {
  top: 56%;
  left: 61%;
}

.pin::after {
  content: attr(data-name);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  padding: 5px 7px;
  font-weight: 400;
  font-size: 22px;
  line-height: 18px;
  white-space: nowrap;
  display: none;
  border-radius: 5px;
  z-index: 1;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 1699px) {
  .pin::after {
    font-size: 16px;
    line-height: 12px;
    padding: 3px 5px;
  }
}

.pin:hover::after {
  display: block;
}

.error {
  color: red;
  font-size: 14px;
}

.dispnon {
  display: none;
}

.newsLetter .newsLetterLst .newsLetterCat {
  font-size: 60px;
  line-height: 70px;
  font-weight: 500;
  color: #000;
  margin-bottom: 50px;
}
.newsLetter .newsLetterLst .newsLetterBx {
  padding: 25px 40px;
  background: #328068;
  border-radius: 10px;
  color: #fff;
  width: 100%;
  display: inline-block;
  transition: 0.5s ease-in-out all;
  font-size: 20px;
  line-height: 25px;
}
.newsLetter .newsLetterLst .newsLetterBx:hover {
  background: #000;
}
@media (max-width: 1699px) {
  .newsLetter .newsLetterLst .newsLetterCat {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
  }
  .newsLetter .newsLetterLst .newsLetterBx {
    padding: 20px 35px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .newsLetter .newsLetterLst .newsLetterCat {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 25px;
    text-align: center;
  }
  .newsLetter .newsLetterLst .newsLetterBx {
    padding: 15px 25px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .newsLetter .newsLetterLst .newsLetterCat {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 450px) {
  .newsLetter .newsLetterLst .newsLetterBx {
    padding: 12px 20px;
    max-width: 300px;
    margin: 0 auto 20px;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 14px;
    line-height: 18px;
  }
}

.pdfBtn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .pdfBtn {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */