/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.crossLine {
  background: transparent;
  position: relative;
  display: inline-block;
  padding: 0px;
  width: 45px;
  height: 25px;
  cursor: pointer;
  border: inherit;
}
.crossLine:focus, .crossLine:hover {
  border: inherit;
  outline: none;
}
.crossLine .line {
  display: block;
  background: #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 .line.crossLine3 {
    bottom: 0px;
    transition: 0.5s ease-in-out;
  }
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}
@media (max-width: 767px) {
  .crossLine .line.crossLine3 {
    bottom: 0px;
    transition: 0.5s ease-in-out;
  }
}
@media (max-width: 575px) {
  .crossLine .line.crossLine3 {
    bottom: -2px;
    transition: 0.5s ease-in-out;
  }
}
@media (max-width: 450px) {
  .crossLine .line.crossLine3 {
    bottom: 0px;
    transition: 0.5s ease-in-out;
  }
}

#sidebarCollapse {
  z-index: 5555;
}

* {
  margin: 0;
  padding: 0;
}

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

a {
  cursor: pointer;
  text-decoration: none;
  transition: 0.4s ease-in-out all;
}
a:hover {
  text-decoration: none;
  color: #F37801;
}

p {
  font-size: 16px;
  line-height: 20px;
}

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

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

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.defaultButton {
  position: relative;
  padding: 10px 15px 10px 50px;
  color: #F37801;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
}
.defaultButton:hover, .defaultButton:focus {
  color: #000;
  padding: 10px 15px 10px 55px;
}
.defaultButton:hover::before, .defaultButton:focus::before {
  background: #000;
}
.defaultButton::before {
  position: absolute;
  top: 20px;
  left: 0;
  content: "";
  width: 40px;
  height: 1px;
  background: #F37801;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .defaultButton {
    font-size: 25px;
  }
  .defaultButton::before {
    top: 25px;
  }
}
@media (max-width: 767px) {
  .defaultButton {
    padding: 5px 10px 5px 40px;
    font-size: 14px;
  }
  .defaultButton::before {
    width: 30px;
    top: 15px;
    transition: all 0.5s ease-in-out;
  }
  .defaultButton:hover {
    padding: 5px 10px 5px 45px;
  }
}
@media (max-width: 575px) {
  .defaultButton {
    padding: 5px 10px 5px 40px;
    font-size: 14px;
  }
  .defaultButton::before {
    width: 30px;
    top: 15px;
    transition: all 0.5s ease-in-out;
  }
  .defaultButton:hover {
    padding: 5px 10px 5px 45px;
  }
}

.bullets {
  list-style: none;
}
.bullets li {
  position: relative;
  padding-left: 20px;
}
.bullets li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  background: #F37801;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .bullets li p {
    margin-bottom: 5px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .bullets li::before {
    top: 7px;
  }
}
@media (max-width: 767px) {
  .bullets li::before {
    top: 8px;
    height: 8px;
    width: 8px;
  }
}
@media (max-width: 450px) {
  .bullets li::before {
    top: 4px;
  }
}
.bullets.flexList {
  display: flex;
  flex-wrap: wrap;
}
.bullets.flexList li {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .bullets.flexList li {
    flex: 0 0 100%;
  }
}

.sectionTitle {
  font-size: 60px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .sectionTitle {
    font-size: 75px;
    line-height: 75px;
  }
}
@media (max-width: 991px) {
  .sectionTitle {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .sectionTitle {
    font-size: 40px;
  }
}
@media (max-width: 450px) {
  .sectionTitle {
    font-size: 35px;
  }
}

.sectionPadding {
  padding: 60px 0px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .sectionPadding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 767px) {
  .sectionPadding {
    padding: 30px 0px;
  }
}

.commonTitle {
  font-weight: 400;
  font-size: 33px;
  line-height: 43px;
  letter-spacing: -0.02em;
  color: #F37801;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .commonTitle {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .commonTitle {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1199px) {
  .commonTitle {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .commonTitle {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .commonTitle {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 575px) {
  .commonTitle {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 450px) {
  .commonTitle {
    font-size: 26px;
    line-height: 36px;
  }
}

.commonPara {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #707070;
}
.commonPara span {
  font-weight: 800;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .commonPara {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .commonPara {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 991px) {
  .commonPara {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .commonPara {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 450px) {
  .commonPara {
    font-size: 14px;
    line-height: 20px;
  }
}

.middleTitle {
  font-weight: 600;
  font-size: 25px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .middleTitle {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 991px) {
  .middleTitle {
    font-size: 20px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .middleTitle {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 450px) {
  .middleTitle {
    font-size: 20px;
    line-height: 35px;
  }
}

.middleText {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #707070;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .middleText {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .middleText {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 450px) {
  .middleText {
    font-size: 20px;
    line-height: 30px;
  }
}

.bigPara {
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -0.03em;
  color: #707070;
  margin-bottom: 5px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .bigPara {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .bigPara {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1199px) {
  .bigPara {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 991px) {
  .bigPara {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .bigPara {
    font-size: 23px;
    line-height: 33px;
  }
}
@media (max-width: 575px) {
  .bigPara {
    font-size: 23px;
    line-height: 33px;
  }
}
@media (max-width: 450px) {
  .bigPara {
    font-size: 20px;
    line-height: 30px;
  }
}

.smallPara {
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #707070;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .smallPara {
    font-size: 19px;
    line-height: 24px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .smallPara {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .smallPara {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .smallPara {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 450px) {
  .smallPara {
    font-size: 12px;
    line-height: 18px;
  }
}

.extraSmallpara {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #707070;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .extraSmallpara {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .extraSmallpara {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .extraSmallpara {
    font-size: 12px;
    line-height: 18px;
  }
}

.fontBold {
  font-weight: 600;
}

.colorOrange {
  color: #F37801;
}

.colorWhite {
  color: #fff;
}

.colorGrey {
  color: #707070;
}

.marginTop {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .marginTop {
    margin-top: 0;
  }
}

.marginExtra {
  margin-bottom: 20px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .marginExtra {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .marginExtra {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .marginExtra {
    margin-bottom: 15px;
  }
}

.titleMargin {
  margin-bottom: 40px;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .titleMargin {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .titleMargin {
    margin-bottom: 20px;
  }
}

.paddingBottom {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .paddingBottom {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .paddingBottom {
    padding-bottom: 30px;
  }
}

.workUl li {
  display: flex;
  margin-bottom: 15px;
  align-items: baseline;
}
.workUl li span {
  padding-right: 15px;
}
@media (max-width: 767px) {
  .workUl li span img {
    width: 16px;
  }
}
.workUl li .workText {
  display: flex;
  flex-direction: column;
}
.workUl li .workLinks .smallPara {
  color: #fff;
  transition: 0.4 ease-in-out all;
}
.workUl li .workLinks .smallPara:hover {
  color: #F37801;
}
.workUl li .workLinks .smallPara.mailBtn {
  color: #F37801;
  transition: 0.4 ease-in-out all;
  text-decoration: underline;
}
.workUl li .workLinks .smallPara.mailBtn:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .workUl li .workLinks span img {
    width: 16px;
  }
}
.workUl li .callLink.linkSeperate {
  display: flex;
  flex-direction: column;
}

.sideLine {
  position: relative;
  padding: 20px 0 20px 20px;
  margin-bottom: 30px;
}
.sideLine::before {
  position: absolute;
  top: 0px;
  left: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #f37801;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .sideLine {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sideLine {
    padding: 20px 0 20px 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .sideLine {
    padding: 20px 0 20px 15px;
    margin-bottom: 30px;
  }
}

.mainHeader {
  padding: 18px 0;
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 111;
}
.mainHeader header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 991px) {
  .mainHeader header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.mainHeader header .logo a {
  display: block;
}
.mainHeader header .logo a img {
  max-width: 400px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .mainHeader header .logo a img {
    width: 450px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .logo a img {
    width: 310px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .logo a img {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .mainHeader header .logo a img {
    width: 280px;
  }
}
@media (max-width: 450px) {
  .mainHeader header .logo a img {
    width: 265px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink .navi_mobile {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.mainHeader header .navbarLink .navbar-collapse {
  justify-content: right;
}
.mainHeader header .navbarLink ul {
  align-items: center;
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 3px;
  display: none;
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li .dropdown-toggle {
    display: inline-block;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  color: #F37801;
}
.mainHeader header .navbarLink ul li a {
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  padding: 10px;
  display: inline-block;
  font-weight: 500;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 17px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 12px;
    padding: 6px 10px 6px 10px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px 12px 10px 12px;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  background: none;
  border-radius: 0;
  color: #F37801;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #F37801;
    background: none;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: rgba(255, 255, 255, 0.9);
  padding: 5px;
  margin: 0;
  max-width: 290px;
  transform: inherit !important;
  top: 100% !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu.fixDrop {
  max-width: 150px;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #707070;
  padding: 6px 10px;
  font-size: 14px;
  text-transform: capitalize;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover {
  background: transparent;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #F37801 !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
  transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
    transform: rotate(0deg);
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    padding: 0;
    margin-bottom: 5px;
    background: #002530;
  }
  .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: 5px 5px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
.mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
  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: #F37801 !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: #002530;
    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: 100px;
  }
  .mainHeader header .navbarLink .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink {
    padding-top: 100px;
  }
}

.homebanner {
  position: relative;
}
.homebanner .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.homebanner .slick-dots {
  bottom: 10px;
  right: auto;
  left: auto;
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: 2;
  margin-top: 0px;
}
.homebanner .slick-dots li {
  margin: 0px 3px;
  width: auto;
  height: auto;
}
.homebanner .slick-dots li button {
  width: 11px;
  height: 11px;
  font-size: 0px;
  background-color: transparent;
  border: #f37801 solid 2px;
  padding: 0px;
  border-radius: 100%;
}
.homebanner .slick-dots li button:before {
  display: none;
}
.homebanner .slick-dots li.slick-active {
  width: auto;
}
.homebanner .slick-dots li.slick-active button {
  background: #F37801;
  width: 45px;
  border-color: #F37801;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .homebanner .slick-dots {
    bottom: 10px;
    right: -40%;
    left: inherit;
  }
}
@media (max-width: 450px) {
  .homebanner .slick-dots {
    bottom: 10px;
    right: -35%;
    left: inherit;
  }
}
.homebanner .bannerImage {
  height: 600px;
}
.homebanner .bannerImage img {
  width: 100%;
  filter: brightness(0.6);
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .homebanner .bannerImage {
    height: 750px;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerImage {
    height: 510px;
  }
  .homebanner .bannerImage img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerImage {
    height: 450px;
  }
  .homebanner .bannerImage img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerImage {
    height: 450px;
  }
  .homebanner .bannerImage img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.homebanner .bannerBox {
  display: block !important;
}
.homebanner .bannerText {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.homebanner .bannerText .bannerDesc {
  max-width: 80%;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.homebanner .bannerText .smlBnTxt {
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}
.homebanner .bannerText .defaultButton {
  color: #f37801;
  font-weight: 500;
  transition: 0.5s ease-in-out all;
}
.homebanner .bannerText .defaultButton:hover {
  color: #fff;
}
.homebanner .bannerText .defaultButton:hover::before {
  background: #fff;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .homebanner .bannerText .bannerDesc {
    max-width: 80%;
    font-size: 40px;
    line-height: 50px;
  }
  .homebanner .bannerText .smlBnTxt {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .homebanner .bannerText .knwMr {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 25px;
    line-height: 35px;
  }
  .homebanner .bannerText .smlBnTxt {
    font-size: 16px;
    line-height: 24px;
  }
  .homebanner .bannerText .knwMr {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText .bannerDesc {
    max-width: 80%;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .homebanner .bannerText .smlBnTxt {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .homebanner .bannerText .knwMr {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerText .bannerDesc {
    max-width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .homebanner .bannerText .smlBnTxt {
    font-size: 12px;
    line-height: 20px;
  }
  .homebanner .bannerText .knwMr {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 16px;
    line-height: 24px;
  }
}
.homebanner .endBox {
  max-width: 620px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: -10%;
  z-index: 1;
}
.homebanner .endBox .orangeBox {
  background-color: #F37801;
  margin: 0 20px 0 0;
  padding: 30px;
  max-width: 290px;
  min-height: 175px;
  min-width: 180px;
}
.homebanner .endBox .orangeBox .endBigtxt {
  font-weight: 300;
  font-size: 50px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}
.homebanner .endBox .orangeBox .endBigtxt span {
  font-size: 18px;
  line-height: 45px;
  letter-spacing: -0.02em;
}
.homebanner .endBox .orangeBox .endSmalltxt {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .homebanner .endBox .orangeBox {
    padding: 45px 35px;
    max-width: 330px;
    min-height: 220px;
    min-width: 220px;
  }
  .homebanner .endBox .orangeBox .endBigtxt {
    margin-bottom: 10px;
  }
  .homebanner .endBox .orangeBox .endSmalltxt {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1199px) {
  .homebanner .endBox {
    bottom: -15%;
  }
}
@media (max-width: 991px) {
  .homebanner .endBox {
    bottom: -15%;
  }
}
@media (max-width: 767px) {
  .homebanner .endBox {
    bottom: -10%;
  }
}
@media (max-width: 450px) {
  .homebanner .endBox {
    bottom: -10%;
  }
  .homebanner .endBox .orangeBox {
    margin: 0 20px 0 0;
    padding: 30px 20px 20px;
    max-width: 190px;
    min-height: 160px;
    min-width: 160px;
  }
  .homebanner .endBox .orangeBox .endBigtxt {
    font-size: 40px;
    line-height: 20px;
  }
  .homebanner .endBox .orangeBox .endBigtxt span {
    font-size: 16px;
    line-height: 45px;
  }
  .homebanner .endBox .orangeBox .endSmalltxt {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .homebanner .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
  }
}

.innerbanner {
  position: relative;
}
.innerbanner img {
  width: 100%;
}
.innerbanner .innerBlock {
  position: absolute;
  bottom: 30%;
  left: 9%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerbanner .innerBlock .innerText {
  color: #fff;
  font-size: 45px;
  margin-bottom: 0px;
}
.innerbanner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .innerbanner .innerBlock {
    left: 16%;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 75px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .innerbanner .innerBlock {
    left: 5%;
  }
}
@media (max-width: 1199px) {
  .innerbanner img {
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    bottom: 35%;
    left: 11%;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .innerbanner img {
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    bottom: 35%;
    left: 3%;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .innerbanner img {
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    bottom: 32%;
    left: 15%;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .innerbanner img {
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    bottom: 32%;
    left: 18%;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .innerbanner img {
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    bottom: 35%;
    left: 4%;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 40px;
  }
}
@media (max-width: 450px) {
  .innerbanner img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    bottom: 35%;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 30px;
  }
}

.hmProduct {
  padding-top: 130px;
  background-color: #f5f5f5;
  position: relative;
}
.hmProduct::after {
  position: absolute;
  content: "";
  top: 0;
  background-image: url(../images/product_background.png);
  background-size: cover;
  height: 1200px;
  opacity: 0.1;
  background-repeat: no-repeat;
  left: 9%;
  right: 0;
}
.hmProduct.sasSec {
  padding-top: 60px;
}
.hmProduct.sasSec::after {
  display: none;
}
.hmProduct.sasSec .sasText .commonPara {
  margin: 25px 0 0;
}
.hmProduct.sasSec .sasText .bullets {
  margin-top: 30px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmProduct.sasSec {
    padding-top: 100px;
  }
}
@media (max-width: 1199px) {
  .hmProduct.sasSec .sasText .bullets {
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .hmProduct.sasSec {
    padding-top: 40px;
  }
  .hmProduct.sasSec .sasText .commonPara {
    margin: 15px 0 0;
  }
  .hmProduct.sasSec .sasText .bullets {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .hmProduct.sasSec {
    padding-top: 40px;
  }
  .hmProduct.sasSec::after {
    display: none;
  }
  .hmProduct.sasSec .sasText .commonPara {
    margin: 15px 0 0;
  }
  .hmProduct.sasSec .sasText .bullets {
    margin-top: 15px;
  }
}
.hmProduct .sectionTitle {
  color: #F37801;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 85px;
}
.hmProduct .productList {
  padding-top: 35px;
}
.hmProduct .productList .productUl {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hmProduct .productList .productUl li {
  flex: 0 0 48%;
  max-width: 48%;
}
.hmProduct .productList .productUl li .productBox {
  position: relative;
  padding: 20px 0 20px 20px;
  margin-bottom: 55px;
  z-index: 11;
}
.hmProduct .productList .productUl li .productBox.noMargin {
  margin-bottom: 0;
}
.hmProduct .productList .productUl li .productBox .commonPara {
  margin-top: 20px;
}
.hmProduct .productList .productUl li .productBox::before {
  position: absolute;
  top: 0px;
  left: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #f37801;
  transition: all 0.5s ease-in-out;
}
.hmProduct .productList .productUl li:nth-child(even) {
  margin-top: 5%;
}
@media (max-width: 767px) {
  .hmProduct .productList .productUl li:nth-child(even) {
    margin-top: 8%;
  }
}
@media (max-width: 450px) {
  .hmProduct .productList .productUl li:nth-child(even) {
    margin-top: 6%;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmProduct {
    padding-top: 150px;
  }
  .hmProduct::after {
    top: -4%;
    height: 1400px;
    left: 16.5%;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .hmProduct::after {
    left: 4%;
  }
}
@media (max-width: 1199px) {
  .hmProduct::after {
    height: 1260px;
    left: 11%;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hmProduct::after {
    left: 3%;
  }
}
@media (max-width: 991px) {
  .hmProduct {
    padding-top: 100px;
  }
  .hmProduct::after {
    height: 880px;
    left: 15%;
  }
  .hmProduct .sectionTitle {
    line-height: 70px;
  }
  .hmProduct .productList {
    padding-top: 20px;
  }
  .hmProduct .productList .productUl li .productBox {
    padding: 15px 0 15px 15px;
  }
  .hmProduct .productList .productUl li .productBox.noMargin {
    margin-bottom: 0;
  }
  .hmProduct .productList .productUl li .productBox .commonPara {
    margin-top: 15px;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .hmProduct {
    padding-top: 65px;
  }
  .hmProduct::after {
    display: none;
  }
  .hmProduct .sectionTitle {
    line-height: 75px;
  }
  .hmProduct .productList {
    padding-top: 10px;
  }
  .hmProduct .productList .productUl li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmProduct .productList .productUl li .productBox {
    padding: 10px 0 10px 10px;
    margin-bottom: 40px;
  }
  .hmProduct .productList .productUl li .productBox.noMargin {
    margin-bottom: 0;
  }
  .hmProduct .productList .productUl li .productBox .commonPara {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .hmProduct {
    padding-top: 65px;
  }
  .hmProduct .sectionTitle {
    line-height: 75px;
  }
  .hmProduct .productList {
    padding-top: 10px;
  }
  .hmProduct .productList .productUl li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmProduct .productList .productUl li .productBox {
    padding: 10px 0 10px 10px;
    margin-bottom: 40px;
  }
  .hmProduct .productList .productUl li .productBox .commonPara {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .hmProduct .productList .productUl li .productBox {
    margin-bottom: 20px;
  }
}

.hmAbout {
  background-image: url("../images/about_us.jpg");
  background-size: cover;
  height: 575px;
  position: relative;
}
.hmAbout .hmAbouttext {
  position: relative;
  max-width: 830px;
  margin-left: 30%;
  margin-top: 7%;
}
.hmAbout .hmAbouttext .aboutText {
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 25px;
}
.hmAbout .hmAbouttext .aboutText span {
  color: #F37801;
}
.hmAbout .hmAbouttext .aboutTextsmall {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.hmAbout .hmAbouttext .defaultButton::before {
  top: 22px;
}
.hmAbout .hmAbouttext .defaultButton:hover {
  color: #fff;
}
.hmAbout .hmAbouttext .defaultButton:hover::before {
  background: #fff;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmAbout {
    height: 822px;
  }
  .hmAbout .hmAbouttext {
    max-width: 1065px;
    margin-left: 20%;
    margin-top: 8%;
  }
  .hmAbout .hmAbouttext .aboutText {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 45px;
  }
  .hmAbout .hmAbouttext .aboutTextsmall {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 35px;
  }
}
@media (max-width: 1199px) {
  .hmAbout {
    height: 550px;
  }
  .hmAbout .hmAbouttext {
    max-width: 555px;
    margin-left: 38%;
    margin-top: 3%;
  }
  .hmAbout .hmAbouttext .aboutText {
    font-size: 26px;
    line-height: 32px;
  }
  .hmAbout .hmAbouttext .aboutTextsmall {
    font-size: 13px;
    line-height: 17px;
  }
}
@media (max-width: 991px) {
  .hmAbout {
    height: 575px;
  }
  .hmAbout .hmAbouttext {
    margin-left: 35%;
    margin-top: 6%;
  }
  .hmAbout .hmAbouttext .aboutText {
    font-size: 25px;
    line-height: 30px;
  }
  .hmAbout .hmAbouttext .aboutTextsmall {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .hmAbout {
    height: 425px;
  }
  .hmAbout .hmAbouttext {
    max-width: 85%;
    margin-left: 0%;
    margin: 0 auto;
  }
  .hmAbout .hmAbouttext .aboutText {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
  }
  .hmAbout .hmAbouttext .aboutTextsmall {
    font-weight: 600;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: #ffffff;
  }
  .hmAbout .hmAbouttext .defaultButton::before {
    top: 15px;
  }
}
@media (max-width: 575px) {
  .hmAbout {
    height: 425px;
  }
  .hmAbout .hmAbouttext {
    max-width: 85%;
    margin-left: 0%;
    margin: 0 auto;
  }
  .hmAbout .hmAbouttext .aboutText {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
  }
  .hmAbout .hmAbouttext .aboutTextsmall {
    font-weight: 600;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: #ffffff;
  }
  .hmAbout .hmAbouttext .defaultButton::before {
    top: 15px;
  }
}
@media (max-width: 450px) {
  .hmAbout {
    height: 560px;
  }
  .hmAbout .hmAbouttext .aboutText {
    font-size: 20px;
    line-height: 25px;
  }
  .hmAbout .hmAbouttext .aboutTextsmall {
    font-size: 12px;
    line-height: 16px;
  }
}

.serviceSec {
  position: relative;
}
.serviceSec::after {
  position: absolute;
  content: "";
  top: 0;
  background: #00252e;
  width: 100%;
  height: 180px;
  z-index: -1;
}
.serviceSec .hmService {
  background: #f8f8f8;
  padding: 50px 60px;
  max-width: 1116px;
  margin: 0 auto;
}
.serviceSec .hmService .serviceUl {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  flex-wrap: wrap;
  align-items: center;
}
.serviceSec .hmService .serviceUl li:nth-child(1) {
  flex: 0 0 55%;
}
.serviceSec .hmService .serviceUl li:nth-child(2) {
  flex: 0 0 40%;
}
.serviceSec .hmService .serviceUl li .serviceBox .sectionTitle {
  margin-bottom: 25px;
  color: #F37801;
}
.serviceSec .hmService .serviceUl li .serviceBox .serviceText {
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #F37801;
  margin-bottom: 0;
}
.serviceSec .hmService .serviceUl li .serviceBox .defaultButton {
  text-align: right;
  margin-bottom: 11%;
  margin-top: 5%;
}
.serviceSec .hmService .serviceUl li .serviceBox .serviceSmall {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #707070;
  text-align: left;
  margin-bottom: 0;
}
.serviceSec .hmService .serviceUl li .serviceBox.rightText {
  text-align: right;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .serviceSec .hmService {
    padding: 65px 75px 90px;
    max-width: 1295px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .sectionTitle {
    margin-bottom: 30px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceText {
    font-size: 35px;
    line-height: 40px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .defaultButton {
    margin-bottom: 12%;
    margin-top: 2%;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .defaultButton::before {
    top: 21px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceSmall {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 1199px) {
  .serviceSec .hmService {
    padding: 40px 50px;
  }
  .serviceSec .hmService .serviceUl {
    align-items: center;
  }
  .serviceSec .hmService .serviceUl li:nth-child(1) {
    flex: 0 0 53%;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) {
    flex: 0 0 40%;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceText {
    font-size: 25px;
    line-height: 30px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .defaultButton {
    margin-bottom: 11%;
    margin-top: 5%;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceSmall {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .serviceSec .hmService {
    padding: 40px 50px;
  }
  .serviceSec .hmService .serviceUl {
    align-items: center;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .sectionTitle {
    margin-bottom: 15px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceText {
    font-size: 23px;
    line-height: 27px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .defaultButton {
    margin-bottom: 12%;
    margin-top: 5%;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceSmall {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .serviceSec {
    margin-top: 20px;
  }
  .serviceSec::after {
    display: none;
  }
  .serviceSec .hmService {
    padding: 30px 40px;
  }
  .serviceSec .hmService .serviceUl li:nth-child(1) {
    flex: 0 0 100%;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) {
    flex: 0 0 100%;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) .serviceBox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) .serviceBox.rightText {
    margin-top: 15px;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) .serviceBox .defaultButton {
    text-align: left;
    margin-bottom: 0%;
    margin-top: 3%;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .sectionTitle {
    margin-bottom: 15px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceText {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .serviceSec .hmService {
    padding: 30px 40px;
  }
  .serviceSec .hmService .serviceUl li:nth-child(1) {
    flex: 0 0 100%;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) {
    flex: 0 0 100%;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) .serviceBox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) .serviceBox.rightText {
    margin-top: 15px;
  }
  .serviceSec .hmService .serviceUl li:nth-child(2) .serviceBox .defaultButton {
    text-align: left;
    margin-bottom: 0%;
    margin-top: 3%;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .sectionTitle {
    margin-bottom: 15px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceText {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 450px) {
  .serviceSec::after {
    display: none;
  }
  .serviceSec .hmService {
    padding: 20px 25px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .sectionTitle {
    margin-bottom: 10px;
  }
  .serviceSec .hmService .serviceUl li .serviceBox .serviceText {
    font-size: 20px;
    line-height: 25px;
  }
}

.colorWhite {
  color: #fff;
}

.hmvideo .row {
  align-items: center;
}
.hmvideo .videoBox {
  position: relative;
}
.hmvideo .videoBox iframe {
  width: 100%;
  height: 295px;
  display: block;
}
.hmvideo .videoText {
  max-width: 100%;
  min-height: 289px;
  padding: 30px;
  background: #002530;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hmvideo .videoText .textPerson {
  display: flex;
  align-items: center;
}
.hmvideo .videoText .textPerson .personName .smallPara {
  margin-bottom: 0;
}
.hmvideo .videoText .textPerson .personName .extraSmallpara {
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
}
.hmvideo .videoText .textPerson .personName .extraSmallpara::before {
  position: absolute;
  top: 11px;
  left: 0;
  content: "";
  width: 20px;
  height: 1px;
  background: #F37801;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmvideo .videoText {
    min-height: 335px;
  }
  .hmvideo .videoText .smallMargin {
    margin-bottom: 0px;
  }
  .hmvideo .videoText .personName .extraSmallpara::before {
    top: 13px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .hmvideo .videoText {
    min-height: 335px;
  }
  .hmvideo .videoText .smallMargin {
    margin-bottom: 0px;
  }
  .hmvideo .videoText .personName .extraSmallpara::before {
    top: 13px;
  }
}
@media (max-width: 1199px) {
  .hmvideo .videoBox img {
    height: 265px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hmvideo .videoText {
    min-height: 265px;
    padding: 25px;
  }
  .hmvideo .videoText .smallMargin {
    margin-bottom: 15px;
  }
  .hmvideo .videoText .smallPara {
    font-size: 14px;
    line-height: 20px;
  }
  .hmvideo .videoText .personName .extraSmallpara {
    font-size: 12px;
    line-height: 18px;
  }
  .hmvideo .videoText .personName .extraSmallpara::before {
    top: 12px;
  }
}
@media (max-width: 991px) {
  .hmvideo .videoBox::before {
    background-size: 80px;
  }
  .hmvideo .videoBox img {
    height: 100%;
  }
  .hmvideo .videoText {
    max-width: 100%;
    padding: 20px;
    margin-top: 15px;
    text-align: center;
    min-height: 200px;
    justify-content: center;
  }
  .hmvideo .videoText .textPerson {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hmvideo .videoText .textPerson .personName {
    padding-left: 0;
    text-align: center;
  }
  .hmvideo .videoText .textPerson .personName .smallPara {
    margin-bottom: 0;
    text-align: center;
  }
  .hmvideo .videoText .textPerson .personName .extraSmallpara {
    margin-bottom: 0;
  }
  .hmvideo .videoText .textPerson .personName .extraSmallpara::before {
    top: 10px;
  }
}
@media (max-width: 767px) {
  .hmvideo .videoBox::before {
    background-size: 65px;
  }
}
@media (max-width: 575px) {
  .hmvideo .videoBox::before {
    background-size: 65px;
  }
}
@media (max-width: 450px) {
  .hmvideo .videoBox::before {
    background-size: 55px;
  }
}

footer {
  background: #002530;
}
footer .footerSec {
  position: relative;
  padding-bottom: 0;
}
footer .footerSec .row {
  align-items: center;
}
footer .footerSec .row.footerBorder {
  position: relative;
  padding-bottom: 50px;
}
footer .footerSec .row.footerBorder::after {
  position: absolute;
  content: "";
  bottom: 0;
  opacity: 0.26;
  background: #fff;
  width: 100%;
  height: 1px;
}
footer .footerSec .footerContact a {
  font-size: 14px;
  color: #fff;
  transition: 0.4s ease-in-out all;
}
footer .footerSec .footerContact a span {
  padding-right: 10px;
}
footer .footerSec .footerContact a span i {
  color: #F37801;
}
footer .footerSec .footerContact a:hover {
  color: #F37801;
}
footer .footerSec .footerContact:nth-child(1) {
  margin-bottom: 5px;
}
footer .footerSec .footerLinks {
  list-style-type: none;
}
footer .footerSec .footerLinks li {
  margin: 5px 0;
}
footer .footerSec .footerLinks li a {
  display: block;
  color: #fff;
  transition: 0.4s ease-in-out all;
}
footer .footerSec .footerLinks li:hover a, footer .footerSec .footerLinks li.active a {
  color: #F37801;
}
footer .footerBottom {
  padding: 25px 0;
}
footer .footerBottom .bootomUl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .footerBottom .bootomUl li {
  flex: 0 0 33.33%;
}
footer .footerBottom .bootomUl li .footerCr p {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #afafaf;
  margin-bottom: 0;
}
footer .footerBottom .bootomUl li .footerIcons {
  text-align: center;
}
footer .footerBottom .bootomUl li .footerIcons .iconUl {
  display: flex;
  justify-content: center;
  list-style-type: none;
}
footer .footerBottom .bootomUl li .footerIcons .iconUl li {
  flex: 0 0 8%;
}
footer .footerBottom .bootomUl li .footerIcons .iconUl li i {
  color: #fff;
  transition: 0.4s ease-in-out all;
}
footer .footerBottom .bootomUl li .footerIcons .iconUl li:hover i {
  color: #F37801;
}
footer .footerBottom .bootomUl li .meghLogo {
  text-align: right;
}
footer .footerBottom .bootomUl li .meghLogo p {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #afafaf;
  margin-bottom: 0;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  footer .footerSec .footerContact a {
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    font-weight: 300;
  }
  footer .footerSec .footerContact:nth-child(1) {
    margin-bottom: 10px;
  }
  footer .footerSec .footerLinks li {
    margin: 3px 0;
  }
  footer .footerSec .footerLinks li a {
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    font-weight: 300;
  }
}
@media (max-width: 1199px) {
  footer .footerSec .footerContact {
    margin-bottom: 10px;
  }
  footer .footerSec .footerContact a {
    font-size: 13px;
  }
  footer .footerSec .footerContact:nth-child(1) {
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  footer .footerSec .row.footerBorder {
    padding-bottom: 25px;
  }
  footer .footerSec .footerLogo {
    text-align: center;
    margin-bottom: 20px;
  }
  footer .footerSec .footerContact {
    text-align: center;
    margin-bottom: 10px;
  }
  footer .footerSec .footerContact:nth-child(1) {
    margin-bottom: 5px;
  }
  footer .footerSec .footerLinks {
    text-align: center;
  }
  footer .footerSec .footerLinks li {
    margin: 3px 0;
  }
  footer .footerSec .footerLinks li a {
    padding: 5px 0;
  }
  footer .footerBottom {
    padding: 15px 0;
  }
  footer .footerBottom .bootomUl li {
    flex: 0 0 100%;
    margin: 5px 0;
  }
  footer .footerBottom .bootomUl li .footerCr {
    text-align: center;
  }
  footer .footerBottom .bootomUl li .footerIcons .iconUl li {
    flex: 0 0 6%;
  }
  footer .footerBottom .bootomUl li .meghLogo {
    text-align: center;
  }
}
@media (max-width: 767px) {
  footer .footerSec .row.footerBorder {
    padding-bottom: 25px;
  }
  footer .footerSec .footerLogo {
    text-align: center;
    margin-bottom: 20px;
  }
  footer .footerSec .footerContact {
    text-align: center;
    margin-bottom: 10px;
  }
  footer .footerSec .footerContact:nth-child(1) {
    margin-bottom: 5px;
  }
  footer .footerSec .footerLinks {
    text-align: center;
  }
  footer .footerSec .footerLinks a {
    padding: 5px 0;
  }
  footer .footerBottom {
    padding: 15px 0;
  }
  footer .footerBottom .bootomUl li {
    flex: 0 0 100%;
    margin: 5px 0;
  }
  footer .footerBottom .bootomUl li .footerCr {
    text-align: center;
  }
  footer .footerBottom .bootomUl li .footerIcons .iconUl li {
    flex: 0 0 6%;
  }
  footer .footerBottom .bootomUl li .meghLogo {
    text-align: center;
  }
}
@media (max-width: 575px) {
  footer .footerSec .row.footerBorder {
    padding-bottom: 25px;
  }
  footer .footerSec .footerLogo {
    text-align: center;
    margin-bottom: 20px;
  }
  footer .footerSec .footerContact {
    text-align: center;
    margin-bottom: 10px;
  }
  footer .footerSec .footerContact:nth-child(1) {
    margin-bottom: 5px;
  }
  footer .footerSec .footerLinks {
    text-align: center;
  }
  footer .footerSec .footerLinks a {
    padding: 5px 0;
  }
  footer .footerBottom {
    padding: 15px 0;
  }
  footer .footerBottom .bootomUl li {
    flex: 0 0 100%;
    margin: 5px 0;
  }
  footer .footerBottom .bootomUl li .footerCr {
    text-align: center;
  }
  footer .footerBottom .bootomUl li .footerIcons .iconUl li {
    flex: 0 0 8%;
  }
  footer .footerBottom .bootomUl li .meghLogo {
    text-align: center;
  }
}

.serviceContact {
  background-color: #002530;
}
.serviceContact .commonTitle {
  margin-bottom: 20px;
}
.serviceContact .contactul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
.serviceContact .contactul.ulLeftspace {
  align-items: baseline;
  margin-top: 50px;
}
.serviceContact .contactul li {
  flex: 0 0 40%;
}
.serviceContact .contactul li .workBox .middleTitle {
  margin-bottom: 30px;
}
.serviceContact .contactul li .workBox .workContact .commonPara {
  color: #fff;
}
.serviceContact .contactul li .workBox .workContact .designation {
  color: #fff;
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-top: -15px;
}
.serviceContact .contactul li .workBox .workContact .workUl li {
  display: flex;
  margin-bottom: 15px;
}
.serviceContact .contactul li .workBox .workContact .workUl li span {
  padding-right: 15px;
}
.serviceContact .contactul li .workBox .workContact .workUl li .workLinks.flexLink {
  display: flex;
  flex-direction: column;
}
.serviceContact .contactul li .workBox .workContact .workUl li .workLinks a {
  color: #fff;
  transition: 0.4 ease-in-out all;
}
.serviceContact .contactul li .workBox .workContact .workUl li .workLinks a:hover {
  color: #F37801;
}
.serviceContact .contactul li .workBox .workContact .workUl li .workLinks a.mailBtn {
  color: #F37801;
  transition: 0.4 ease-in-out all;
  text-decoration: underline;
  font-size: 14px;
  line-height: 20px;
}
.serviceContact .contactul li .workBox .workContact .workUl li .workLinks a.mailBtn:hover {
  color: #fff;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .serviceContact .contactul li .workBox .workContact .workUl li .workLinks a.mailBtn {
    font-size: 16px;
    line-height: 22px;
  }
}
.serviceContact .contactul li .workBox .workContact .smallPara {
  font-weight: 400;
}
.serviceContact.serviceCenter {
  background-color: #fff;
}
.serviceContact.serviceCenter .contactul {
  align-items: baseline;
}
.serviceContact.serviceCenter .contactul li.downBox {
  margin-top: 5%;
}
.serviceContact.serviceCenter .contactul li .workBox .workContact .commonPara {
  color: #707070;
}
.serviceContact.serviceCenter .contactul li .workBox .workContact .workUl li .workLinks {
  display: flex;
  flex-direction: column;
}
.serviceContact.serviceCenter .contactul li .workBox .workContact .workUl li .workLinks a {
  color: #707070;
}
.serviceContact.serviceCenter .contactul li .workBox .workContact .workUl li .workLinks p {
  font-weight: 600;
}
.serviceContact.serviceCenter .contactul li .workBox .workContact .workUl li .workLinks .mailBtn {
  color: #F37801;
  transition: 0.4 ease-in-out all;
  text-decoration: underline;
}
.serviceContact.serviceCenter .contactul li .workBox .workContact .workUl li .workLinks .mailBtn:hover {
  color: #707070;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .serviceContact .contactul li {
    flex: 0 0 45%;
  }
  .serviceContact .contactul li .workBox .middleTitle {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .serviceContact .commonTitle {
    margin-bottom: 20px;
  }
  .serviceContact .contactul li {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .serviceContact .contactul li .workBox .middleTitle {
    margin-bottom: 20px;
  }
  .serviceContact .contactul.ulLeftspace {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .serviceContact .contactul li {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .serviceContact.sectionPadding {
    padding: 50px 0px 30px;
  }
  .serviceContact .commonTitle {
    margin-bottom: 20px;
  }
  .serviceContact .contactul li {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
  .serviceContact .contactul li .workBox .middleTitle {
    margin-bottom: 15px;
  }
  .serviceContact .contactul li .workBox .workContact .workUl li .workLinks.workFlex {
    display: flex;
    flex-direction: column;
  }
  .serviceContact .contactul.ulLeftspace {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .serviceContact.sectionPadding {
    padding: 30px 0px;
  }
  .serviceContact .commonTitle {
    margin-bottom: 20px;
  }
  .serviceContact .contactul li {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  .serviceContact .contactul li .workBox .middleTitle {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 35px;
  }
  .serviceContact .contactul li .workBox .workContact .workUl li .workLinks.workFlex {
    display: block;
  }
  .serviceContact .contactul.ulLeftspace {
    margin-top: 0;
  }
}

.infraSec .infraUl {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.infraSec .infraUl .commonTitle {
  margin-bottom: 15px;
}
.infraSec .infraUl li {
  flex: 0 0 48%;
}
.infraSec .infraUl li .infraBox.sideLine {
  margin-bottom: 0;
}
.infraSec .infraUl li .infraBox .smallPara {
  margin-top: 20px;
}
.infraSec .infraUl li:nth-child(2) {
  margin-top: 6%;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .infraSec .infraUl .commonTitle {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .infraSec .infraUl li {
    flex: 0 0 46%;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .infraSec .infraUl li {
    flex: 0 0 100%;
    margin-bottom: 25px;
  }
  .infraSec .infraUl li:nth-child(2) {
    margin-top: 0%;
    margin-bottom: 0;
  }
}

.productDetail .detailBox {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
.productDetail .detailBox li {
  flex: 0 0 50%;
}
.productDetail .detailBox li .detailText {
  max-width: 560px;
  padding-left: 50px;
}
.productDetail .noDesktop {
  display: none;
}
.productDetail .detailSides {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.productDetail .detailSides li {
  flex: 0 0 50%;
  margin-bottom: 10px;
}
.productDetail .detailSides li .commonPara {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .productDetail .detailSides li {
    flex: 0 0 100%;
    margin-bottom: 0px;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .productDetail .detailBox li .detailText {
    max-width: 620px;
    padding-left: 15px;
  }
  .productDetail .detailBox li .detailText .commonTitle {
    margin-bottom: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .productDetail .detailBox li .detailText {
    max-width: 560px;
    padding-left: 20px;
  }
  .productDetail .detailBox li .detailText .commonTitle {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .productDetail .detailBox li .detailText {
    padding-left: 30px;
  }
  .productDetail .detailBox li .detailText .noMobile {
    display: none;
  }
  .productDetail .noDesktop {
    display: block;
  }
}
@media (max-width: 991px) {
  .productDetail.sectionPadding {
    padding: 30px 0px 15px;
  }
  .productDetail .detailBox {
    list-style-type: none;
    display: flex;
  }
  .productDetail .detailBox li {
    flex: 0 0 100%;
  }
  .productDetail .detailBox li .detailText {
    margin-top: 15px;
    max-width: 100%;
    padding-left: 0px;
  }
  .productDetail .detailBox li .detailText .noMobile {
    display: block;
  }
  .productDetail .noDesktop {
    display: none;
  }
}
@media (max-width: 767px) {
  .productDetail.sectionPadding {
    padding: 30px 0px 20px;
  }
}
@media (max-width: 450px) {
  .productDetail .detailBox li .detailText .commonTitle {
    font-size: 25px;
    line-height: 35px;
  }
}

.filedSec .commonPara {
  margin: 25px 0 15px;
}
.filedSec .bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.filedSec .bullets li {
  flex: 0 0 33.33%;
  max-width: 320px;
}
.filedSec.dutyList .bullets {
  display: block;
}
.filedSec.listProper .bullets {
  justify-content: flex-start;
}
.filedSec.listProper .bullets li {
  flex: 0 0 33.33%;
  padding-right: 20px;
  max-width: 33.33%;
}
@media (max-width: 767px) {
  .filedSec.listProper .bullets li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .filedSec.listProper .bullets li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .filedSec .commonPara {
    margin: 25px 0 20px;
  }
  .filedSec .bullets li {
    flex: 0 0 33.33%;
    max-width: 340px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .filedSec .commonPara {
    margin: 25px 0 20px;
  }
  .filedSec .bullets li {
    flex: 0 0 33.33%;
    max-width: 340px;
  }
}
@media (max-width: 991px) {
  .filedSec .commonPara {
    margin: 15px 0;
  }
  .filedSec .bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .filedSec .bullets li {
    flex: 0 0 50%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .filedSec .commonPara {
    margin: 15px 0;
  }
  .filedSec .bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .filedSec .bullets li {
    flex: 0 0 50%;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .filedSec .commonTitle {
    font-size: 25px;
    line-height: 35px;
  }
  .filedSec .commonPara {
    margin: 15px 0;
  }
  .filedSec .bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .filedSec .bullets li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.transSec {
  background-color: #F2F2F2;
}
.transSec.backWhite {
  background-color: #fff;
}
.transSec .commonPara {
  margin-top: 40px;
  margin-bottom: 0;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .transSec .commonPara {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  .transSec .commonPara {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 450px) {
  .transSec .commonTitle {
    font-size: 25px;
    line-height: 35px;
  }
}

.serviceCenter .centerList .middleTitle {
  color: #707070;
}
.serviceCenter .centerList.sideLine:nth-child(5) {
  margin-bottom: 0px;
}
.serviceCenter .centerList.sideAdjust {
  margin-left: 33%;
}
.serviceCenter .centerList.sideAdjust .workUl li {
  flex: 0 0 50%;
}
.serviceCenter .centerList .workUl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.serviceCenter .centerList .workUl li {
  flex-direction: column;
  flex: 0 0 33.33%;
}
.serviceCenter .centerList .workUl li .workText .commonPara {
  margin-bottom: 10px;
}
.serviceCenter .centerList .workUl li .workLinks {
  display: flex;
  margin-bottom: 12px;
}
.serviceCenter .centerList .workUl li .workLinks .linkSide {
  display: flex;
  flex-direction: column;
}
.serviceCenter .centerList .workUl li .workLinks .linkSide a {
  color: #707070;
  padding: 2px 0;
  transition: 0.4s ease-in-out all;
}
.serviceCenter .centerList .workUl li .workLinks .linkSide a:hover {
  color: #F37801;
}
.serviceCenter .centerList .workUl li .workLinks .linkSide .mailLink {
  color: #F37801;
  transition: 0.4 ease-in-out all;
  text-decoration: underline;
  font-size: 14px;
  line-height: 20px;
}
.serviceCenter .centerList .workUl li .workLinks .linkSide .mailLink:hover {
  color: #707070;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .serviceCenter .centerList .workUl li .workLinks .linkSide .mailLink {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .serviceCenter .centerList .middleTitle {
    margin-bottom: 25px;
  }
}
@media (max-width: 1199px) {
  .serviceCenter .centerList.sideLine {
    margin-bottom: 40px;
  }
  .serviceCenter .centerList.sideAdjust {
    margin-left: 0%;
  }
  .serviceCenter .centerList.sideAdjust .workUl {
    justify-content: flex-start;
  }
  .serviceCenter .centerList.sideAdjust .workUl li {
    flex: 0 0 45%;
  }
  .serviceCenter .centerList .workUl {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .serviceCenter .centerList .workUl li {
    flex-direction: column;
    flex: 0 0 45%;
  }
  .serviceCenter .centerList .workUl li .workText .commonPara {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .serviceCenter.sectionPadding {
    padding: 30px 0px 50px;
  }
  .serviceCenter .centerList.sideLine {
    margin-bottom: 35px;
    padding: 15px 0 15px 15px;
  }
  .serviceCenter .centerList.sideAdjust {
    margin-left: 0%;
  }
  .serviceCenter .centerList.sideAdjust .workUl li {
    flex: 0 0 48%;
  }
  .serviceCenter .centerList .workUl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .serviceCenter .centerList .workUl li {
    flex-direction: column;
    flex: 0 0 48%;
  }
  .serviceCenter .centerList .workUl li .workText .commonPara {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .serviceCenter.sectionPadding {
    padding: 30px 0px 50px;
  }
  .serviceCenter .centerList.sideLine {
    margin-bottom: 35px;
    padding: 15px 0 15px 15px;
  }
  .serviceCenter .centerList.sideAdjust {
    margin-left: 0%;
  }
  .serviceCenter .centerList.sideAdjust .workUl li {
    flex: 0 0 100%;
  }
  .serviceCenter .centerList .workUl {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .serviceCenter .centerList .workUl li {
    flex-direction: column;
    flex: 0 0 100%;
  }
  .serviceCenter .centerList .workUl li .workText .commonPara {
    margin-bottom: 10px;
  }
}

.investorDropdown .container .investorLists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.investorDropdown .container .investorLists .listMenu {
  flex: 0 0 27%;
}
.investorDropdown .container .investorLists .listDetails {
  flex: 0 0 71%;
}
@media (max-width: 991px) {
  .investorDropdown .container .investorLists .listMenu {
    flex: 0 0 100%;
  }
  .investorDropdown .container .investorLists .listDetails {
    flex: 0 0 100%;
    margin-top: 30px;
  }
}
.investorDropdown .container .row-offcanvas {
  background: #F37801;
  position: sticky;
  top: 0;
}
@media (max-width: 991px) {
  .investorDropdown .container .row-offcanvas .btn-primary {
    background: #002530 !important;
  }
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas {
  border: none;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap {
  padding: 25px 0;
  background-color: #F37801;
  color: #fff;
  border: none;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li {
  padding: 0px;
  border-bottom: none;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li.active a, .investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li:hover a {
  background-color: #fff;
  color: #707070;
  font-weight: 600;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li a {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  color: #fff;
  padding: 12px 25px;
  cursor: pointer;
  max-width: 93%;
  margin: 0 0 0 auto;
  transition: 0.4s ease-in-out all;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li a span .fa-minus {
  display: none;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li a span .fa-plus {
  display: block;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li a span.active .fa-minus {
  display: block;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li a span.active .fa-plus {
  display: none;
}
.investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li a.active {
  background-color: #fff;
  color: #707070;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li a {
    padding: 15px 15px;
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap {
    padding: 0;
  }
  .investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion {
    padding: 0;
  }
  .investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li a {
    max-width: 100%;
  }
  .investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li.active a, .investorDropdown .container .row-offcanvas .sidebar-offcanvas .pageWrap .accordion li:hover a {
    background-color: #707070;
    color: #fff;
    font-weight: 600;
  }
}
.investorDropdown .container .listPadding {
  padding: 0px 20px 60px;
}
.investorDropdown .container .listPadding .commonTitle {
  color: #707070;
  margin-bottom: 20px;
}
.investorDropdown .container .listPadding .listYear {
  margin-bottom: 25px;
}
.investorDropdown .container .listPadding .listYear .commonPara {
  margin-bottom: 8px;
}
.investorDropdown .container .listPadding .listYear .listUl {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.investorDropdown .container .listPadding .listYear .listUl li {
  flex: 0 0 48%;
  margin-right: 10px;
  margin-bottom: 20px;
}
.investorDropdown .container .listPadding .listYear .listUl li:last-child {
  margin-right: 0;
}
.investorDropdown .container .listPadding .listYear .listUl li .listBox {
  display: flex;
  background-color: #F2F2F2;
  transition: 0.4s ease-in-out all;
  padding: 8px 15px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.investorDropdown .container .listPadding .listYear .listUl li .listBox img {
  padding-left: 10px;
}
.investorDropdown .container .listPadding .listYear .listUl li .listBox .smallPara {
  margin-bottom: 0;
}
.investorDropdown .container .listPadding .listYear .listUl li .listBox .whitePdf {
  display: none;
}
.investorDropdown .container .listPadding .listYear .listUl li .listBox img {
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
.investorDropdown .container .listPadding .listYear .listUl li:hover .listBox {
  background-color: #F37801;
}
.investorDropdown .container .listPadding .listYear .listUl li:hover .listBox .smallPara {
  color: #fff;
}
.investorDropdown .container .listPadding .listYear .listUl li:hover .listBox .redPdf {
  display: none;
}
.investorDropdown .container .listPadding .listYear .listUl li:hover .listBox .whitePdf {
  display: block;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .investorDropdown .container .listPadding .listYear .listUl li {
    flex: 0 0 48%;
    margin-right: 15px;
  }
  .investorDropdown .container .listPadding .listYear .listUl li .listBox {
    padding: 15px 15px;
  }
  .investorDropdown .container .listPadding .listYear .listUl li .listBox img {
    height: 25px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .investorDropdown .container .listPadding .listYear .listUl li {
    flex: 0 0 48%;
    margin-right: 15px;
  }
  .investorDropdown .container .listPadding .listYear .listUl li .listBox {
    padding: 10px 15px;
  }
  .investorDropdown .container .listPadding .listYear .listUl li .listBox img {
    height: 25px;
  }
}
@media (max-width: 1199px) {
  .investorDropdown .container .listPadding {
    padding: 0;
  }
  .investorDropdown .container .listPadding .listYear {
    margin-bottom: 15px;
  }
  .investorDropdown .container .listPadding .listYear .listUl li {
    flex: 0 0 48%;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .investorDropdown .container .listPadding {
    padding: 0;
  }
  .investorDropdown .container .listPadding .listYear {
    margin-bottom: 15px;
  }
  .investorDropdown .container .listPadding .listYear .listUl li {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .investorDropdown .container .listPadding {
    padding: 0;
  }
  .investorDropdown .container .listPadding .listYear {
    margin-bottom: 15px;
  }
  .investorDropdown .container .listPadding .listYear .listUl li {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .investorDropdown .container .listPadding {
    padding: 0;
  }
  .investorDropdown .container .listPadding .listYear {
    margin-bottom: 15px;
  }
  .investorDropdown .container .listPadding .listYear .listUl li {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .investorDropdown .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .investorDropdown .container-fluid .row-offcanvas .d-lg-none {
    display: none;
  }
  .investorDropdown .container-fluid .row-offcanvas .sidebar-offcanvas {
    border: none;
    display: block;
  }
  .investorDropdown .container-fluid .row-offcanvas .sidebar-offcanvas .pageWrap {
    padding: 5px 0;
    border: none;
    max-height: 100%;
  }
  .investorDropdown .container-fluid .projectPadding {
    padding: 60px 15px;
  }
}

.aboutSec {
  padding-bottom: 0;
}
.aboutSec .commonTitle {
  font-weight: 600;
  color: #707070;
}
.aboutSec .aboutSide {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aboutSec .aboutSide .aboutText {
  flex: 0 0 48%;
  padding: 20px 0 20px;
}
.aboutSec .aboutSide .aboutImg {
  flex: 0 0 48%;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .aboutSec .aboutSide .aboutImg img {
    height: 525px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .aboutSec {
    padding-bottom: 30px;
  }
  .aboutSec .aboutSide {
    margin-top: 0px;
  }
  .aboutSec .aboutSide .aboutText {
    flex: 0 0 100%;
    padding: 20px 0 10px;
  }
  .aboutSec .aboutSide .aboutImg {
    flex: 0 0 100%;
  }
  .aboutSec .aboutSide .aboutImg.sideLine {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .aboutSec {
    padding-bottom: 30px;
  }
  .aboutSec .aboutSide {
    margin-top: 0px;
  }
  .aboutSec .aboutSide .aboutText {
    flex: 0 0 100%;
    padding: 20px 0 10px;
  }
  .aboutSec .aboutSide .aboutImg {
    flex: 0 0 100%;
  }
  .aboutSec .aboutSide .aboutImg.sideLine {
    margin-bottom: 0;
  }
}

.aboutBottom .bullets li {
  margin-bottom: 10px;
}
.aboutBottom .bottomUl {
  list-style-type: none;
  margin-top: 30px;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.aboutBottom .bottomUl li {
  flex: 0 0 48%;
}
@media (max-width: 991px) {
  .aboutBottom .bullets li:last-child {
    margin-bottom: 0;
  }
  .aboutBottom .bullets li:last-child .smallPara {
    margin-bottom: 0;
  }
  .aboutBottom .bottomUl {
    margin-top: 20px;
  }
  .aboutBottom .bottomUl li {
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .aboutBottom .bullets li {
    margin-bottom: 10px;
  }
  .aboutBottom .bullets li:last-child {
    margin-bottom: 0;
  }
  .aboutBottom .bullets li:last-child .smallPara {
    margin-bottom: 0;
  }
  .aboutBottom .bottomUl {
    margin-top: 20px;
  }
  .aboutBottom .bottomUl li {
    flex: 0 0 100%;
  }
}
@media (max-width: 575px) {
  .aboutBottom .bottomUl li {
    flex: 0 0 100%;
  }
}

.greySec {
  background-color: #F2F2F2;
}

.switchGear {
  position: relative;
}
.switchGear::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  background-color: #F37801;
  height: 70px;
  z-index: -1;
}
.switchGear .accordion-body {
  padding: 0;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .switchGear::after {
    height: 90px;
  }
  .switchGear .tabStructure .nav-tabs li {
    margin-bottom: 0px;
  }
  .switchGear .tabStructure .nav-tabs li a {
    font-size: 25px;
    line-height: 30px;
    padding: 30px;
  }
  .switchGear .accordion-body {
    padding: 70px 0 40px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .switchGear .switchImage img {
    height: 365px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .switchGear .accordion-body .row {
    align-items: center;
  }
}
@media (max-width: 991px) {
  .switchGear .switchImage {
    max-width: 400px;
    margin: 20px auto 0;
  }
}
@media (max-width: 767px) {
  .switchGear .accordion-body {
    padding: 15px;
  }
  .switchGear::after {
    display: none;
  }
  .switchGear .switchImage {
    max-width: 350px;
    margin: 20px auto 0;
  }
}

.careerList .commonTitle {
  font-weight: 600;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .careerList .bullets li::before {
    top: 13px;
  }
}

.noBackground {
  background-color: transparent;
}

.inquiryForm .commonTitle {
  font-size: 27px;
  line-height: 37px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .inquiryForm .commonTitle {
    font-size: 42px;
    line-height: 52px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .inquiryForm .commonTitle {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .inquiryForm .commonTitle {
    font-size: 25px;
    line-height: 35px;
  }
}
.inquiryForm .form-group {
  margin-bottom: 20px;
}
.inquiryForm .form-group textarea.form-control {
  min-height: calc(7.7em + 0.75rem + 2px);
}
.inquiryForm .form-group .form-control {
  padding: 1rem 0.75rem;
  transition: 0.4s ease-in-out all;
}
.inquiryForm .form-group .form-control::-moz-placeholder {
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  padding-left: 10px;
  -moz-transition: 0.4s ease-in-out all;
  transition: 0.4s ease-in-out all;
}
.inquiryForm .form-group .form-control::placeholder {
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  padding-left: 10px;
  transition: 0.4s ease-in-out all;
}
@media (max-width: 1199px) {
  .inquiryForm .form-group .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .inquiryForm .form-group .form-control::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 1199px) {
  .inquiryForm .form-group .form-control::-moz-placeholder {
    font-size: 12px;
    line-height: 12px;
    padding-left: 5px;
  }
  .inquiryForm .form-group .form-control::placeholder {
    font-size: 12px;
    line-height: 12px;
    padding-left: 5px;
  }
}
@media (max-width: 991px) {
  .inquiryForm .form-group .form-control::-moz-placeholder {
    font-size: 12px;
    line-height: 12px;
    padding-left: 5px;
  }
  .inquiryForm .form-group .form-control::placeholder {
    font-size: 12px;
    line-height: 12px;
    padding-left: 5px;
  }
}
@media (max-width: 767px) {
  .inquiryForm .form-group .form-control::-moz-placeholder {
    font-size: 14px;
    line-height: 14px;
    padding-left: 10px;
  }
  .inquiryForm .form-group .form-control::placeholder {
    font-size: 14px;
    line-height: 14px;
    padding-left: 10px;
  }
}
.inquiryForm .form-group .form-control:hover, .inquiryForm .form-group .form-control:focus {
  box-shadow: 0px 0px 10px #F37801 !important;
  border-color: #F37801 !important;
  color: none;
  background-color: none;
  outline: 0;
}
.inquiryForm .form-group .form-control:hover::-moz-placeholder, .inquiryForm .form-group .form-control:focus::-moz-placeholder {
  color: #171717;
}
.inquiryForm .form-group .form-control:hover::placeholder, .inquiryForm .form-group .form-control:focus::placeholder {
  color: #171717;
}
.inquiryForm .form-group .roboto {
  display: flex;
  flex-direction: row-reverse;
  border-radius: 0 8px 0 8px;
  position: relative;
}
.inquiryForm .form-group .roboto .pull-left {
  position: absolute;
  height: 58px;
  background: #343434;
  display: flex;
  align-items: center;
  border-radius: 6px;
}
.inquiryForm .form-group .roboto {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  margin-bottom: 30px;
}
.inquiryForm .form-group .roboto label.error {
  position: absolute;
  bottom: -25px;
  left: 0;
}
.inquiryForm .form-group .roboto label.text-right {
  float: left;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0px;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  background: #f37801;
  border-radius: 0;
}
.inquiryForm .form-group .roboto label.text-right img {
  border-radius: 0;
}
.inquiryForm .careerBtn .submitButton {
  background: #F37801;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  color: #fff;
  padding: 18px 50px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: 0.4s ease-in-out all;
}
.inquiryForm .careerBtn .submitButton:hover {
  background-color: #002530;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .inquiryForm .careerBtn .submitButton {
    padding: 25px 65px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .inquiryForm .careerBtn .submitButton {
    padding: 15px 40px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .inquiryForm .careerBtn .submitButton {
    padding: 15px 30px;
  }
}
.inquiryForm .uploadresume {
  position: relative;
}
.inquiryForm .uploadresume label.error {
  position: absolute;
  bottom: -25px;
  left: 0;
}
.inquiryForm .uploadresume .input-group .form-control:focus {
  box-shadow: none;
}
.inquiryForm .uploadresume .input-group .form-control:disabled,
.inquiryForm .uploadresume .input-group .form-control[readonly] {
  background-color: #ffffff;
  opacity: 1;
}
.inquiryForm .uploadresume i {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}
.inquiryForm .uploadresume .input-group-btn {
  position: absolute;
  right: 0;
  top: 0px;
  height: 100%;
  z-index: 3;
}
.inquiryForm .uploadresume label.error {
  top: 100% !important;
}
.inquiryForm .btn-file {
  position: relative;
  overflow: hidden;
}
.inquiryForm .btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block;
}
.inquiryForm .career_btn {
  display: flex;
  align-items: center;
  height: 100%;
  background: #F37801;
  border-radius: 6px;
  padding: 5px 15px;
}
.inquiryForm .career_btn img {
  height: 22px;
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.careerForm {
  background: #F2F2F2;
}
.careerForm.inquiryForm .form-group .form-control {
  padding: 1rem 0.75rem;
}
.careerForm.inquiryForm .form-group .form-control:focus {
  box-shadow: none;
  color: none;
  background-color: none;
  border-color: #F37801;
  outline: 0;
  box-shadow: none;
}
@media (max-width: 767px) {
  .careerForm .commonTitle {
    text-align: center;
    font-size: 27px;
    line-height: 37px;
  }
}
@media (max-width: 575px) {
  .careerForm .commonTitle {
    text-align: center;
  }
}

.contactSec .sideLine {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .contactSec .sideLine {
    margin-bottom: 30px;
  }
}
.contactSec .contactList .contactDetail .workUl li .callLinks a {
  color: #707070;
  transition: 0.4 ease-in-out all;
}
.contactSec .contactList .contactDetail .workUl li .callLinks a:hover {
  color: #F37801;
}
.contactSec .contactList .contactDetail .workUl li .mailLink a.mailBtn {
  color: #F37801;
  transition: 0.4s ease-in-out all;
}
.contactSec .contactList .contactDetail .workUl li .mailLink a.mailBtn:hover {
  color: #707070;
}

.textUndeline {
  text-decoration: underline;
  color: #F37801;
  transition: 0.4s ease-in-out all;
}
.textUndeline:hover {
  text-decoration: underline;
  color: #707070;
}

.careerSec .careerStarting.sideLine {
  margin-bottom: 0;
}
.careerSec .careerStarting .middleText {
  margin-bottom: 0;
}

.contactMap .contactMapInfoSec {
  display: flex;
}
.contactMap .contactMapInfoSec .contactInfoSec {
  flex: 0 0 35%;
  max-width: 35%;
}
.contactMap .contactMapInfoSec .contactInfoSec .contactDetail {
  display: none;
}
.contactMap .contactMapInfoSec .contactInfoSec .contactDetail.active {
  display: block;
}
.contactMap .contactMapInfoSec .contactInfoSec .contactDetail .middleTitle {
  font-size: 22px;
  line-height: 36px;
}
.contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLinks {
  max-width: 290px;
}
.contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLinks .smallPara {
  margin-bottom: 0;
}
.contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLink .smallPara {
  margin-bottom: 0;
}
.contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLink.linkCall {
  max-width: 265px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLink.linkCall {
    max-width: 180px;
  }
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLink.linkCall {
    max-width: 160px;
  }
}
@media (max-width: 991px) {
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLink.linkCall {
    max-width: 250px;
  }
}
.contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .mailLink {
  max-width: 300px;
}
.contactMap .contactMapInfoSec .contactMapSec {
  flex: 0 0 65%;
  max-width: 65%;
  position: relative;
}
@media (max-width: 1199px) {
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLinks {
    max-width: 260px;
  }
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .mailLink {
    max-width: 250px;
  }
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .mailLink .smallPara {
    font-size: 13px;
    line-height: 19px;
  }
}
@media (max-width: 991px) {
  .contactMap .contactMapInfoSec {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .contactMap .contactMapInfoSec .contactInfoSec {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail {
    margin-top: 30px;
  }
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail.sideLine {
    margin-bottom: 20px;
  }
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLinks {
    max-width: 400px;
  }
  .contactMap .contactMapInfoSec .contactMapSec {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .contactMap .contactMapInfoSec {
    flex-direction: column-reverse;
  }
  .contactMap .contactMapInfoSec .contactInfoSec {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail {
    margin-top: 30px;
  }
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail.sideLine {
    margin-bottom: 20px;
  }
  .contactMap .contactMapInfoSec .contactInfoSec .contactDetail .workUl li .callLinks {
    max-width: 425px;
  }
  .contactMap .contactMapInfoSec .contactMapSec {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}

.presenceList li {
  position: absolute;
  display: inline-block;
  cursor: pointer;
}
.presenceList li .presenceName {
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  z-index: -1;
  color: #d63300;
  position: absolute;
  bottom: -60px;
  left: -100%;
  right: -100%;
  transform: translate(0, 10px);
  background-color: #fff;
  padding: 10px 15px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  min-width: -moz-max-content;
  min-width: max-content;
  text-align: center;
}
@media (max-width: 767px) {
  .presenceList li .presenceName {
    font-size: 12px;
    padding: 5px 10px;
    bottom: -50px;
  }
}
.presenceList li:hover .presenceName, .presenceList li.active .presenceName {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.presenceList li:hover i, .presenceList li.active i {
  color: #f37801;
}
.presenceList li i {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .presenceList li i {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .presenceList li i {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .presenceList li i {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .presenceList li i {
    font-size: 18px;
  }
}
.presenceList li#markerrajsathe {
  left: 19%;
  top: 33%;
}
.presenceList li#marker2 {
  top: 18%;
  left: 29%;
}
.presenceList li#marker3 {
  top: 44%;
  left: 14%;
}
.presenceList li#marker4 {
  top: 57.8%;
  left: 14.4%;
}
.presenceList li#marker5 {
  top: 60.6%;
  left: 17.5%;
}
.presenceList li#marker6 {
  top: 86.7%;
  left: 30%;
}
.presenceList li#marker7 {
  top: 66.7%;
  left: 36%;
}
.presenceList li#marker8 {
  top: 84%;
  left: 38.5%;
}
.presenceList li#marker9 {
  top: 52%;
  left: 36%;
}
.presenceList li#marker10 {
  top: 44%;
  left: 57%;
}
.presenceList li#marker11 {
  top: 54.5%;
  left: 59.5%;
}
.presenceList li#marker12 {
  top: 44%;
  left: 70%;
}
.presenceList li#marker13 {
  top: 31.5%;
  left: 81%;
}
.presenceList li#marker14 {
  top: 79.5%;
  left: 30%;
}
.presenceList li#marker15 {
  top: 61%;
  left: 36%;
}
.presenceList li#vadodara {
  left: 17%;
  top: 47%;
}
.presenceList li#newdelhi {
  left: 29%;
  top: 23%;
}
.presenceList li#raipur {
  left: 39%;
  top: 52%;
}
.presenceList li#indore {
  left: 28%;
  top: 44%;
}
.presenceList li .myMarker {
  position: relative;
}

.plantSec .detailBox {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
.plantSec .detailBox li {
  flex: 0 0 50%;
}
.plantSec .detailBox li .detailText {
  max-width: 560px;
  padding-right: 55px;
}
.plantSec .detailBox li .detailText.noDesktop {
  display: none;
}
.plantSec .detailBox li .sideLine {
  margin-bottom: 25px;
}
.plantSec .detailBox li.fullWidth {
  flex: 0 0 100%;
}
.plantSec .detailBox li.fullWidth .detailText {
  max-width: 100%;
  padding-right: 0px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .plantSec .detailBox li .detailImg img {
    height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .plantSec .detailBox li .sideLine {
    margin-bottom: 10px;
  }
  .plantSec .detailBox li .detailText.noMobile {
    display: none;
  }
  .plantSec .detailBox li .detailText.noDesktop {
    display: block;
  }
}
@media (max-width: 991px) {
  .plantSec .detailBox li {
    flex: 0 0 100%;
  }
  .plantSec .detailBox li .detailText {
    max-width: 100%;
    padding-right: 0;
  }
  .plantSec .detailBox li .detailText.noMobile {
    display: block;
  }
  .plantSec .detailBox li .detailText.noDesktop {
    display: none;
  }
  .plantSec .detailBox li .sideLine {
    margin-bottom: 25px;
  }
  .plantSec .detailBox li.fullWidth {
    flex: 0 0 100%;
  }
  .plantSec .detailBox li.fullWidth .detailText {
    max-width: 100%;
    padding-right: 0px;
  }
}

.paraMargin {
  margin-bottom: 0;
}

.maxPara {
  max-width: 400px;
}

.accordion-body .switchBtn {
  display: flex;
  flex-wrap: wrap;
}
.accordion-body .switchBtn a {
  flex: 0 0 48%;
}
.accordion-body .switchBtn a .productBrochure {
  margin: 0 20px 0 0;
  background-color: #707070;
  padding: 20px 30px;
  margin-bottom: 30px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  transition: 0.4s ease-in-out all;
}
.accordion-body .switchBtn a .productBrochure .commonPara {
  margin-bottom: 0;
  margin-top: 15px;
  color: #fff;
}
.accordion-body .switchBtn a .productBrochure:hover {
  background-color: #002530;
  transform: translateY(-10px);
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .accordion-body .switchBtn a .productBrochure {
    padding: 25px 35px;
  }
  .accordion-body .switchBtn a .productBrochure .commonPara {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .accordion-body .switchBtn a {
    flex: 0 0 100%;
  }
  .accordion-body .switchBtn a .productBrochure {
    max-width: 250px;
    margin: 0 auto 30px;
  }
}

.nodalBar {
  background: #dfdfdf;
  padding: 30px 0px;
}
.nodalBar .commonPara {
  margin-top: 15px;
}
.nodalBar .bullets {
  display: flex;
  flex-wrap: wrap;
}
.nodalBar .bullets li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 15px;
  font-size: 16px;
}
.nodalBar .bullets li::before {
  width: 7px;
  height: 7px;
}
.nodalBar .bullets li span {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 2px;
}
.nodalBar .bullets li a {
  color: #F37801;
  font-size: 16px;
}
@media (max-width: 767px) {
  .nodalBar .bullets li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.certiList {
  display: flex;
  list-style: none;
  max-width: 100% !important;
  justify-content: center;
  align-items: center;
  flex: 0 0 25%;
  max-width: 25%;
}
.certiList li {
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.2);
  margin: 10px;
}
.certiList li .certibox {
  padding: 10px;
  border: 2px solid #f8f8f8;
  text-align: center;
  height: 100%;
  display: flex;
  position: relative;
}
.certiList li .certibox:hover {
  opacity: 1;
}
.certiList li .certibox img {
  max-height: 330px;
  -o-object-fit: contain;
     object-fit: contain;
}
.certiList li .certibox .fixButton {
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.5s ease;
}
.certiList li .certibox .fixButton .fa-search:before {
  color: #fff;
}
.certiList li .certibox .fixButton:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .certiList {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.flex33 li {
  flex: 0 0 33.33% !important;
  max-width: 33.33% !important;
}
.flex33 li .workUl li {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.font20 {
  font-size: 20px;
  font-weight: 800;
}

.mrg10 {
  margin-bottom: 10px !important;
}

.font18 {
  font-size: 18px;
  line-height: 24px;
}/*# sourceMappingURL=style.css.map */