/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@media (max-width: 991px) {
  .logo {
    flex: 0 0 85%;
    max-width: 85%;
  }
}
@media (max-width: 767px) {
  .logo {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .logo img {
    max-height: 30px;
  }
}
.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: 44%;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  transform: rotate(135deg);
}
@media (max-width: 991px) {
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}

.carouselSection {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
@media (max-width: 991px) {
  .carouselSection {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .carouselSection {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .carouselSection {
    min-height: 400px;
  }
}
.carouselSection .carousel {
  perspective: 1000px;
  position: relative;
  width: 300px;
  height: 300px;
  transform: scale(1.12);
}
.carouselSection .carousel .carousel-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s;
}
.carouselSection .carousel .carousel-wrapper .carousel-item {
  position: absolute;
  padding: 0px;
  width: 95%;
  height: 95%;
  color: white;
  font-size: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  backface-visibility: visible;
}
.carouselSection .carousel .carousel-wrapper .carousel-item .itemBox {
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.carouselSection .carousel .carousel-wrapper .carousel-item .itemBox p {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  margin: 0;
  text-align: center;
  color: #002147;
  left: 0;
  right: 0;
}
.carouselSection .carousel .carousel-wrapper .carousel-item .itemBox img {
  max-width: 100%;
}
.carouselSection .carousel button.prev, .carouselSection .carousel button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
}
.carouselSection .carousel button.prev {
  left: -100%;
}
.carouselSection .carousel button.next {
  right: -100%;
}
@media (max-width: 767px) {
  .carouselSection .carousel {
    perspective: 1000px;
    position: relative;
    width: 320px;
    height: 320px;
    margin-left: 21%;
    margin-top: 13%;
    margin-bottom: 20px;
  }
  .carouselSection .carousel .carousel-wrapper {
    width: 86%;
    height: 86%;
  }
  .carouselSection .carousel .carousel-wrapper .carousel-item {
    width: 100%;
    height: 100%;
  }
  .carouselSection .carousel .carousel-wrapper .carousel-item .itemBox {
    position: relative;
  }
  .carouselSection .carousel .carousel-wrapper .carousel-item .itemBox img {
    width: 230px !important;
    border-radius: 10px;
  }
  .carouselSection .carousel .carousel-wrapper .carousel-item .itemBox p {
    border-radius: 0px 0px 10px 10px;
  }
  .carouselSection .carousel button.prev, .carouselSection .carousel button.next {
    background: rgba(0, 0, 0, 0.61);
  }
  .carouselSection .carousel button.prev {
    left: -69px;
  }
  .carouselSection .carousel button.next {
    right: 6px;
  }
}
@media (max-width: 670px) {
  .carouselSection .carousel button.prev {
    left: -70px;
  }
}
@media (max-width: 570px) {
  .carouselSection .carousel {
    margin-left: 15%;
  }
}
@media (max-width: 480px) {
  .carouselSection .carousel {
    perspective: 1000px;
    position: relative;
    width: 240px;
    height: 240px;
    margin-left: 21%;
    margin-top: 16%;
    margin-bottom: 0px;
  }
  .carouselSection .carousel .carousel-wrapper {
    width: 80%;
    height: 80%;
  }
  .carouselSection .carousel .carousel-wrapper .carousel-item .itemBox {
    position: relative;
  }
  .carouselSection .carousel .carousel-wrapper .carousel-item .itemBox img {
    width: 181px !important;
    border-radius: 10px;
  }
  .carouselSection .carousel button.prev, .carouselSection .carousel button.next {
    background: rgba(0, 0, 0, 0.61);
  }
  .carouselSection .carousel button.prev {
    left: -73px;
  }
  .carouselSection .carousel button.next {
    right: 10px;
  }
}
@media (max-width: 375px) {
  .carouselSection {
    height: 100%;
  }
  .carouselSection .carousel button.next {
    right: 8px;
  }
}
@media (max-width: 330px) {
  .carouselSection .carousel {
    width: 225px;
    height: 225px;
    margin-left: 25%;
  }
  .carouselSection .carousel .carousel-wrapper .carousel-item .itemBox img {
    width: 162px !important;
  }
}

/* Media Query for smaller devices */
@media (max-width: 600px) {
  .carousel {
    width: 60vw;
    height: 60vw;
  }
  .carousel button.prev {
    left: -30px;
  }
  .carousel button.next {
    right: -30px;
  }
  .carousel-item .itemBox p {
    font-size: 0.9rem;
  }
}
.sectionPadding.paddtop0 {
  padding-top: 0px;
}

.counterSection {
  background: url(../images/bg_counter.jpg) no-repeat center top !important;
  background-size: cover !important;
  position: relative;
}
.counterSection::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.78);
}
.counterSection .container {
  position: relative;
  z-index: 2;
}

.bgGreay {
  background: #efefef;
}

.hmWhyTrustUs .vinrox-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
.hmWhyTrustUs .letter {
  font-size: 40px;
  width: 80px;
  height: 80px;
  background-color: #002147;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hmWhyTrustUs .letter.show {
  background-color: #ffa31e;
}
.hmWhyTrustUs .letter:hover {
  background-color: #ffa31e;
}
.hmWhyTrustUs .info-box {
  max-width: 1170px;
  text-align: center;
  transition: all 0.4s ease;
  min-height: 120px;
  margin: 30px auto 0px auto;
}
.hmWhyTrustUs .info-box .tag-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  color: #002147;
}
.hmWhyTrustUs .info-box .description {
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-width: 700px;
  margin: 0 auto;
}
.hmWhyTrustUs .info-box.show .tag-title, .hmWhyTrustUs .info-box.show .description {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1366px) {
  .hmWhyTrustUs .letter {
    font-size: 30px;
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 1170px) {
  .hmWhyTrustUs .letter {
    font-size: 28px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 450px) {
  .hmWhyTrustUs .vinrox-container {
    gap: 12px;
  }
  .hmWhyTrustUs .letter {
    font-size: 26px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 360px) {
  .hmWhyTrustUs .vinrox-container {
    gap: 10px;
  }
  .hmWhyTrustUs .letter {
    font-size: 24px;
    width: 44px;
    height: 44px;
  }
  .hmWhyTrustUs .info-box .tag-title {
    font-size: 28px;
    line-height: 1;
  }
}

.productMainBox .rightProductBox .verticalScroll {
  max-height: 570px;
  overflow-y: auto;
}
.productMainBox .rightProductBox .verticalScroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ddd;
}
.productMainBox .rightProductBox .verticalScroll::-webkit-scrollbar {
  width: 4px;
  background-color: #ddd;
}
.productMainBox .rightProductBox .verticalScroll::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #003366;
}
@media (max-width: 767px) {
  .productMainBox .rightProductBox .verticalScroll {
    max-height: 100%;
    overflow-y: visible;
  }
}

@media (max-width: 450px) {
  .hmService .productMainBox .leftProductBox {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

#sidebarCollapse {
  z-index: 9999;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
}

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

.darkBlueBg {
  background-color: #002147 !important;
}

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

p {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #444;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  p {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  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;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-prev:before {
  content: "";
  background-image: url("../images/left-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 25px;
  width: 14px;
  position: absolute;
  left: 13px;
  top: 8px;
}

.slick-next:before {
  content: "";
  background-image: url("../images/right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 25px;
  width: 14px;
  position: absolute;
  left: 15px;
  top: 8px;
}

.slick-prev:before, .slick-next:before {
  font-size: 25px;
  line-height: 43px;
  opacity: 0.75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 42px;
  position: absolute;
  top: 50%;
  display: block;
  width: 42px;
  height: 42px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #fff !important;
  border-radius: 50%;
}
.slick-prev:hover, .slick-next:hover {
  background-color: #ffa31e;
}

.slick-dots {
  position: relative;
  bottom: inherit;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-dots li {
  margin: 0px;
  width: 17%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}
.slick-dots li.slick-active {
  height: 2px;
  width: 40%;
  background: #000;
}
.slick-dots li button {
  font-size: 0px;
  padding: 0px;
  width: 100%;
  height: inherit;
}
.slick-dots li button::before {
  display: none;
}
@media (max-width: 767px) {
  .slick-dots {
    margin-top: 25px;
  }
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.centreButton {
  text-align: center;
}

.defaultButton {
  background: #fff;
  padding: 10px 35px;
  color: #000;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  color: #000;
  box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
  border: none;
}
.defaultButton:hover, .defaultButton:focus {
  background: #fff;
  color: #000;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .defaultButton {
    font-size: 18px;
    padding: 10px 30px;
  }
}
@media (max-width: 991px) {
  .defaultButton {
    padding: 7px 25px;
    font-size: 14px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .defaultButton {
    padding: 7px 25px;
  }
}
@media (max-width: 450px) {
  .defaultButton {
    padding: 7px 25px;
    font-size: 14px;
    line-height: 30px;
  }
}
.defaultButton.blueBtn {
  background: #002147;
  color: #fff;
}

.sectionzeropadding {
  padding-bottom: 0px !important;
}

.bullets {
  list-style: none;
}
.bullets li {
  padding-left: 20px;
  position: relative;
  font-size: 20px;
  line-height: 25px;
  color: #444;
  margin-bottom: 10px;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #444;
  border-radius: 50%;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .bullets {
    list-style: none;
  }
  .bullets li {
    padding-left: 30px;
    position: relative;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .bullets li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
  }
}
@media (max-width: 991px) {
  .bullets li {
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 24px;
  }
  .bullets li::before {
    top: 6px;
  }
}
@media (max-width: 767px) {
  .bullets li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 22px;
  }
  .bullets li::before {
    top: 7px;
  }
}

@media (min-width: 1900px) and (max-width: 2500px) {
  .container {
    max-width: 1500px;
  }
}

.sectionTitle {
  font-size: 40px;
}
@media (max-width: 991px) {
  .sectionTitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sectionTitle {
    font-size: 18px;
  }
}

.sectionPadding {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 767px) {
  .sectionPadding {
    padding: 40px 0px;
  }
}

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

.titleHead {
  font-weight: 600;
  font-size: 60px;
  line-height: 65px;
  text-align: left;
  color: #000;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .titleHead {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .titleHead {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .titleHead {
    font-size: 30px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 450px) {
  .titleHead {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 15px;
  }
}

.textPara {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}
.textPara span {
  color: #f2940d;
  font-weight: 600;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .textPara {
    font-size: 23px;
    line-height: 33px;
  }
  .textPara.textThirty {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .textPara {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .textPara {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .textPara {
    font-size: 16px;
    line-height: 24px;
  }
}
.textPara.marginTopThirty {
  margin-top: 0px;
}
@media (max-width: 991px) {
  .textPara.marginTopThirty {
    margin-top: 0px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .textPara.marginTopThirty {
    margin-top: 0px;
  }
}

.textThirty {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  text-align: left;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .textThirty {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 991px) {
  .textThirty {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .textThirty {
    font-size: 20px;
    line-height: 26px;
  }
}

.twentyFiveHead {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  color: #171717;
}

.btn:focus {
  box-shadow: none;
  border: none;
}

.centerHead {
  text-align: center;
  position: relative;
  z-index: 1;
}
.centerHead .titleHead {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .centerHead .titleHead {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .centerHead .titleHead {
    margin-bottom: 15px;
  }
}

.leftHead {
  text-align: left;
  position: relative;
  z-index: 1;
}
.leftHead .titleHead {
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .leftHead .titleHead {
    margin-bottom: 15px;
  }
}

.mainHeader {
  padding: 25px 0;
  background: transparent;
  top: 0;
  left: 0;
  z-index: 1111;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.mainHeader .header .logo .stkLogo {
  display: none;
}
.mainHeader header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.mainHeader header .logo a {
  display: block;
}
.mainHeader header .logo a.stkLogo {
  display: none;
}
.mainHeader header .navbarLink ul {
  align-items: center;
}
.mainHeader header .navbarLink ul li {
  margin-left: 10px;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 0;
  }
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 3px;
  margin-left: -6px;
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
.mainHeader header .navbarLink ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px;
  display: inline-block;
  font-weight: 700;
  text-align: left;
  transition: 0.4s ease-in-out all;
}
@media (max-width: 1210px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 12px;
    padding: 0px 0px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px 12px;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px 12px;
  }
}
.mainHeader header .navbarLink ul li.dropdown {
  position: relative;
}
.mainHeader header .navbarLink ul li.dropdown::after {
  content: " ";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  bottom: 0px;
  left: 0px;
  position: absolute;
  height: 0;
  left: 25px;
  width: 0;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  margin: auto;
}
.mainHeader header .navbarLink ul li.dropdown:hover::after, .mainHeader header .navbarLink ul li.dropdown:focus::after {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.dropdown::after {
    display: none !important;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  color: #ffa31e;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #ffa31e;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #ffa31e;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  margin: 0;
  min-width: 550px;
  border-radius: 10px;
  border: 0px;
  transform: inherit !important;
  top: 100% !important;
  box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease-in-out;
  left: -100% !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    left: 0% !important;
    background: transparent;
    padding: 0px 20px;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .commonUl {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .commonUl li {
  flex: 0 0 50%;
  padding-left: 5px;
  position: relative;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .commonUl li::before {
  content: "\f0da";
  position: absolute;
  top: 5px;
  left: 0;
  font-family: "fontAwesome";
  width: 10px;
  height: 10px;
  color: #ffa31e;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .commonUl li a {
  padding: 7px 10px;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .commonUl li:hover a, .mainHeader header .navbarLink ul li > .dropdown-menu .commonUl li.active a {
  color: #ffa31e !important;
  background-color: transparent;
}
.mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  margin: 0;
  min-width: 700px;
  border-radius: 10px;
  border: 0px;
  transform: inherit !important;
  top: 100% !important;
  box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease-in-out;
  left: -71% !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop {
    left: 0% !important;
    background: transparent;
    padding: 0px 20px;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop::after {
  left: 26% !important;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop::after {
    left: 34% !important;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop .dropUl {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop .dropUl li {
  flex: 0 0 33.33%;
  padding-left: 5px;
  position: relative;
}
.mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop .dropUl li::before {
  content: "\f0da";
  position: absolute;
  top: 5px;
  left: 0;
  font-family: "fontAwesome";
  width: 10px;
  height: 10px;
  color: #ffa31e;
}
.mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop .dropUl li a {
  padding: 7px 10px;
}
.mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop .dropUl li:hover a, .mainHeader header .navbarLink ul li > .dropdown-menu.bigDrop .dropUl li.active a {
  color: #ffa31e !important;
  background-color: transparent;
}
.mainHeader header .navbarLink ul li > .dropdown-menu.dropdownMenu {
  display: none;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu.dropdownMenu {
    display: block;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #000;
  padding: 7px 15px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #fff;
    padding: 3px 5px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #fff;
    padding: 3px 5px;
    font-size: 14px;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #000 !important;
  background-color: #ffa31e;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
    color: #ffa31e !important;
    background-color: transparent;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
    color: #ffa31e !important;
    background-color: transparent;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
  transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
    transform: rotate(0deg);
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    background: transparent;
    padding: 5px 15px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu::after {
    border-bottom: 10px solid #000;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    padding: 0px;
    border: 0px !important;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li:last-child {
    border: 0px !important;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    padding: 10px;
  }
}
.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-in-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: #000 !important;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 18px;
  }
}
@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 ul li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }
  .mainHeader header .navbarLink ul li a {
    text-align: left;
  }
}
.mainHeader header .navbarLink.active {
  left: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink {
    background: #000;
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 1111 !important;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    padding-top: 15%;
  }
  .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: 80px;
  }
}
.mainHeader.scrolled {
  position: sticky;
  background: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  max-width: 90%;
  margin: 0 auto;
}
.mainHeader.scrolled header .logo .nmLogo {
  display: none;
}
.mainHeader.scrolled header .logo .stkLogo {
  display: inline-block;
}
.mainHeader.scrolled header .navbarLink ul > li:hover > a, .mainHeader.scrolled header .navbarLink ul > li.active > a {
  color: #ffa31e;
}
.mainHeader.scrolled header .navbarLink ul li a {
  color: #000;
  transition: 0.5s ease-in-out all;
}
.mainHeader.scrolled header .navbarLink ul li .dropdown-menu .dropUl li a {
  color: #000;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 1024px) {
  .mainHeader.scrolled header .logo .stkLogo img {
    height: 30px;
  }
}
@media (max-width: 991px) {
  .mainHeader.scrolled {
    position: absolute;
    background: transparent;
  }
  .mainHeader.scrolled header .logo .nmLogo {
    display: inline-block;
  }
  .mainHeader.scrolled header .logo .stkLogo {
    display: none;
  }
}

.videoBanner {
  text-align: center;
}
.videoBanner video {
  width: 100%;
}

.homebanner {
  position: relative;
}
.homebanner .bannerImage img {
  width: 100%;
}
.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 {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 30px;
  max-width: 490px;
  font-weight: 400;
}
.homebanner .bannerText .bannerDesc span {
  font-size: 33px;
  line-height: 43px;
  font-weight: 600;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 40px;
    line-height: 50px;
    max-width: 650px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 43px;
    line-height: 53px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerImage img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homebanner .bannerText .bannerDesc {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 32px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerImage img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homebanner .bannerText .bannerDesc {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 30px;
    max-width: 470px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerImage img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homebanner .bannerText .bannerDesc {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 450px) {
  .homebanner .bannerImage img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homebanner .videoBanner video {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homebanner .bannerText {
    top: inherit;
    bottom: 50px;
  }
  .homebanner .bannerText .bannerDesc {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 25px;
    max-width: 310px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 20px;
    line-height: 30px;
  }
}

.innerbanner {
  position: relative;
}
.innerbanner video {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: -7px;
  filter: brightness(0.7);
  position: relative;
  z-index: -1;
}
.innerbanner img {
  width: 100%;
}
.innerbanner .innerBlock {
  position: absolute;
  bottom: 10%;
  left: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerbanner .innerBlock .innerText {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 0px;
  font-weight: 600;
}
.innerbanner::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-image: url("../images/inbg_side.svg");
  top: 0;
  left: 0%;
  background-position: left;
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .innerbanner::before {
    left: -10%;
  }
}
@media (max-width: 450px) {
  .innerbanner::before {
    left: -30%;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .innerbanner .innerBlock {
    left: 12%;
  }
  .innerbanner .innerBlock .innerText {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .innerbanner .innerBlock {
    left: 15%;
  }
}
@media (max-width: 767px) {
  .innerbanner img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    left: 17%;
  }
}
@media (max-width: 575px) {
  .innerbanner img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .innerbanner .innerBlock {
    left: 3%;
  }
}

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

.bannerImage video {
  height: auto;
  width: 100%;
}

.shapebox {
  position: absolute;
  top: 0px;
  bottom: 0;
  height: 110%;
  right: 50%;
  animation: moveArrow 8.5s infinite;
}
.shapebox img {
  height: 100%;
  animation: moveArrowImage 10s infinite;
}

@keyframes moveArrow {
  0% {
    right: 50%;
  }
  40% {
    right: -30%;
  }
  100% {
    right: -30%;
  }
}
@keyframes moveArrowImage {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(4);
  }
  100% {
    transform: scale(3);
  }
}
.detailSet {
  padding-left: 40px;
  padding-top: 20px;
}
.detailSet.paddleft {
  padding-left: 0;
}
@media (max-width: 767px) {
  .detailSet {
    padding: 0 20px;
  }
}

.hmAbout {
  position: relative;
  background-image: url("../images/about_side_shape.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -53%;
}
.hmAbout.aboutSection .hmAboutside {
  top: 16%;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmAbout.aboutSection .hmAboutside {
    top: 14%;
  }
}
@media (max-width: 1199px) {
  .hmAbout.aboutSection .hmAboutside {
    top: 14%;
  }
}
@media (max-width: 991px) {
  .hmAbout.aboutSection .hmAboutside {
    top: 4%;
  }
}
@media (max-width: 767px) {
  .hmAbout.aboutSection .hmAboutside {
    top: 6%;
  }
}
.hmAbout.aboutSection .hmAboutside .aboutVideo {
  height: 350px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmAbout.aboutSection .hmAboutside .aboutVideo {
    height: 455px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmAbout.aboutSection .hmAboutside .aboutVideo {
    height: 400px;
  }
}
@media (max-width: 1199px) {
  .hmAbout.aboutSection .hmAboutside .aboutVideo {
    height: 405px;
  }
}
@media (max-width: 991px) {
  .hmAbout.aboutSection .hmAbouttext .textPara {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .hmAbout.aboutSection .hmAbouttext .textPara {
    margin-bottom: 0;
  }
}
.hmAbout .hmAbouttext .titleHead {
  margin-bottom: 20px;
  color: #000;
}
.hmAbout .hmAbouttext .textPara {
  margin-bottom: 30px;
  color: #000;
}
.hmAbout .defaultButton {
  background: #132a45;
  color: #fff;
}
.hmAbout .hmAboutside {
  position: absolute;
  top: 17%;
  right: 0;
}
.hmAbout .hmAboutside .aboutVideo {
  width: 550px;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmAbout .hmAboutside .aboutVideo {
    width: 800px;
    height: 468px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmAbout .hmAboutside .aboutVideo {
    height: 408px;
  }
}
@media (max-width: 991px) {
  .hmAbout .hmAboutside .aboutVideo {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hmAbout .hmAboutside .aboutVideo {
    height: 330px;
    width: 100%;
  }
}
.hmAbout .hmAboutside img {
  height: 379px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmAbout {
    background-position: -31%;
  }
  .hmAbout .hmAboutside {
    position: absolute;
    top: 16%;
    right: 0;
  }
  .hmAbout .hmAboutside img {
    height: 468px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmAbout .hmAboutside img {
    height: 410px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hmAbout {
    background-position: 50%;
    background-size: cover;
  }
  .hmAbout .hmAboutside {
    position: absolute;
    top: 18%;
    right: 0;
    display: flex;
    justify-content: center;
    margin-top: 0px;
    max-width: 40%;
  }
  .hmAbout .hmAboutside img {
    height: 390px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .hmAbout {
    background-position: 5px 0px;
    background-size: cover;
  }
  .hmAbout .hmAbouttext {
    text-align: center;
  }
  .hmAbout .hmAbouttext .titleHead {
    margin-bottom: 20px;
    text-align: center;
  }
  .hmAbout .hmAbouttext .textPara {
    margin-bottom: 25px;
    text-align: center;
  }
  .hmAbout .hmAboutside {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .hmAbout .hmAboutside img {
    height: 390px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .hmAbout {
    background-position: 5px 0px;
    background-size: cover;
  }
  .hmAbout .hmAbouttext .titleHead {
    margin-bottom: 15px;
  }
  .hmAbout .hmAbouttext .textPara {
    margin-bottom: 20px;
  }
  .hmAbout .hmAbouttext .defaultButton {
    margin-top: 0px;
  }
  .hmAbout .hmAboutside {
    position: relative;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-top: 0px;
  }
  .hmAbout .hmAboutside img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .hmAbout {
    background-image: none;
  }
  .hmAbout .hmAbouttext .titleHead {
    margin-bottom: 20px;
  }
  .hmAbout .hmAbouttext .textPara {
    margin-bottom: 15px;
  }
  .hmAbout .hmAboutside {
    position: relative;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-top: 0px;
  }
  .hmAbout .hmAboutside img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 450px) {
  .hmAbout .hmAbouttext .titleHead {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .hmAbout .hmAbouttext .textPara {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .hmAbout .hmAboutside {
    position: relative;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-top: 0px;
  }
  .hmAbout .hmAboutside img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.hmElectronic {
  position: relative;
  background-image: url("../images/electronic_background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.hmElectronic .row {
  align-items: center;
}
.hmElectronic::before {
  position: absolute;
  content: "";
  background-color: #002147;
  opacity: 0.9;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.hmElectronic::after {
  content: "";
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  background: #ffa31e;
  position: absolute;
  height: 100%;
  z-index: 0;
  right: 0;
  top: 0;
  width: 60%;
  left: inherit;
}
.hmElectronic .hmElectronictext {
  margin-top: 0%;
  position: relative;
  z-index: 1;
}
.hmElectronic .hmElectronictext .titleHead {
  color: #fff;
  margin-bottom: 30px;
  max-width: 100%;
  font-size: 55px;
  line-height: 60px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmElectronic .hmElectronictext .titleHead {
    max-width: 620px;
  }
}
@media (max-width: 991px) {
  .hmElectronic .hmElectronictext .titleHead {
    max-width: 100%;
    text-align: center;
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .hmElectronic .hmElectronictext .titleHead {
    font-size: 30px;
    line-height: 40px;
  }
}
.hmElectronic .hmElectronictext .textPara {
  color: #b2b2b2;
}
@media (max-width: 991px) {
  .hmElectronic .hmElectronictext .textPara {
    text-align: center;
  }
}
.hmElectronic .hmElectronictext .maxPara {
  max-width: 450px;
}
@media (max-width: 991px) {
  .hmElectronic .hmElectronictext .maxPara {
    max-width: 100%;
  }
}
.hmElectronic .hmElectronictext .moreText {
  display: none;
  color: #b2b2b2;
}
.hmElectronic .hmElectronictext .bottomButton {
  text-align: left;
}
.hmElectronic .hmElectronictext .bottomButton .moreless-button {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-align: left;
  color: #ffb13e;
  transition: 0.4s ease-in-out all;
}
.hmElectronic .hmElectronictext .bottomButton .moreless-button:hover {
  color: #ffa31e;
}
@media (max-width: 991px) {
  .hmElectronic .hmElectronictext .bottomButton {
    text-align: center;
  }
}
.hmElectronic .hmElectronicul {
  display: flex;
  list-style-type: none;
  position: relative;
  z-index: 1;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.hmElectronic .hmElectronicul li {
  flex: 0 0 40%;
}
.hmElectronic .hmElectronicul li .hmElectronicBox {
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}
.hmElectronic .hmElectronicul li .hmElectronicBox img {
  border-radius: 20px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
}
.hmElectronic .hmElectronicul li .hmElectronicBox .hmElectronicText {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
}
.hmElectronic .hmElectronicul li .hmElectronicBox .hmElectronicText .textPara {
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}
.hmElectronic .hmElectronicul li:nth-child(2) {
  margin-top: 10%;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmElectronic .hmElectronicul {
    justify-content: space-around;
  }
  .hmElectronic .hmElectronicul li {
    flex: 0 0 45%;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox {
    position: relative;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 0px;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox .hmElectronicText {
    bottom: 50px;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox .hmElectronicText .textPara {
    font-size: 30px;
    line-height: 36px;
  }
  .hmElectronic .hmElectronicul li:nth-child(2) {
    margin-top: 10%;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmElectronic .hmElectronictext {
    margin-top: 24%;
  }
  .hmElectronic .hmElectronicul {
    justify-content: space-around;
  }
  .hmElectronic .hmElectronicul li {
    flex: 0 0 45%;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox img {
    height: 290px;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox .hmElectronicText {
    bottom: 25px;
  }
}
@media (max-width: 1199px) {
  .hmElectronic .hmElectronictext {
    margin-top: 20%;
  }
  .hmElectronic .hmElectronicul {
    justify-content: space-between;
  }
  .hmElectronic .hmElectronicul li {
    flex: 0 0 48%;
  }
  .hmElectronic .hmElectronicul li:nth-child(2) {
    margin-top: 10%;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox .hmElectronicText {
    bottom: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hmElectronic .hmElectronictext {
    margin-top: 20%;
  }
  .hmElectronic .hmElectronicul {
    justify-content: space-between;
  }
  .hmElectronic .hmElectronicul li:nth-child(2) {
    margin-top: 10%;
  }
}
@media (max-width: 991px) {
  .hmElectronic::after {
    display: none;
  }
  .hmElectronic .hmElectronictext {
    margin-top: 0%;
    margin-bottom: 35px;
  }
  .hmElectronic .hmElectronictext .titleHead {
    color: #fff;
    margin-bottom: 15px;
  }
  .hmElectronic .hmElectronictext .textPara {
    margin-bottom: 25px;
  }
  .hmElectronic .hmElectronicul {
    justify-content: space-evenly;
  }
  .hmElectronic .hmElectronicul li {
    flex: 0 0 40%;
  }
  .hmElectronic .hmElectronicul li:nth-child(2) {
    margin-top: 10%;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox img {
    height: 300px;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox .hmElectronicText {
    bottom: 25px;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox .hmElectronicText .textPara {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .hmElectronic .hmElectronictext {
    margin-top: 0%;
  }
  .hmElectronic .hmElectronictext .titleHead {
    color: #fff;
    margin-bottom: 15px;
  }
  .hmElectronic .hmElectronictext .textPara {
    margin-bottom: 25px;
  }
  .hmElectronic .hmElectronicul {
    justify-content: space-evenly;
  }
  .hmElectronic .hmElectronicul li:nth-child(2) {
    margin-top: 10%;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox img {
    height: 235px;
  }
}
@media only screen and (max-width: 450px) {
  .hmElectronic::after {
    display: none;
  }
  .hmElectronic .hmElectronictext .titleHead {
    text-align: center;
  }
  .hmElectronic .hmElectronictext .textPara {
    text-align: center;
  }
  .hmElectronic .hmElectronicul {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .hmElectronic .hmElectronicul li {
    flex: 0 0 100%;
  }
  .hmElectronic .hmElectronicul li:nth-child(2) {
    margin-top: 0%;
  }
  .hmElectronic .hmElectronicul li .hmElectronicBox {
    max-width: 250px;
    margin: 0 auto 25px;
  }
}
.hmElectronic.aboutEthic {
  position: relative;
  padding-bottom: 0;
  padding-top: 60px;
}
.hmElectronic.aboutEthic::after {
  display: none;
}
.hmElectronic.aboutEthic .centerHead .titleHead {
  text-align: center;
  color: #fff;
}
.hmElectronic.aboutEthic .valueInfo {
  position: relative;
  z-index: 1;
}
.hmElectronic.aboutEthic .ethicUl {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hmElectronic.aboutEthic .ethicUl li {
  flex: 0 0 20%;
}
.hmElectronic.aboutEthic .ethicUl li .ethicBox {
  text-align: center;
  margin: 40px 0;
  transition: 0.4s ease-in-out all;
}
.hmElectronic.aboutEthic .ethicUl li .ethicBox img {
  transform: scale(0.9);
  transition: 1s ease-in-out all;
}
.hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText {
  margin-top: 20px;
}
.hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText .textPara {
  color: #fff;
  text-align: center;
}
.hmElectronic.aboutEthic .ethicUl li .ethicBox:hover img {
  transform: scale(1);
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmElectronic.aboutEthic::after {
    left: 53.2%;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox {
    margin: 50px 0;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText .textPara {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .hmElectronic.aboutEthic::after {
    left: 46.5%;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText .textPara {
    font-size: 19px;
    line-height: 29px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hmElectronic.aboutEthic::after {
    left: 35.3%;
  }
}
@media (max-width: 991px) {
  .hmElectronic.aboutEthic::after {
    display: none;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox {
    margin: 30px 0;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText .textPara {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .hmElectronic.aboutEthic .ethicUl {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .hmElectronic.aboutEthic .ethicUl li {
    flex: 0 0 33.33%;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox {
    text-align: center;
    margin: 25px 0;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText {
    margin-top: 20px;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText .textPara {
    color: #fff;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .hmElectronic.aboutEthic .ethicUl {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .hmElectronic.aboutEthic .ethicUl li {
    flex: 0 0 50%;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox {
    text-align: center;
    margin: 20px 0;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText {
    margin-top: 20px;
  }
  .hmElectronic.aboutEthic .ethicUl li .ethicBox .ethicText .textPara {
    color: #fff;
    text-align: center;
  }
}

.hmService {
  position: relative;
  background: #fff !important;
}
.hmService::after {
  content: "";
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #ffa31e;
  position: absolute;
  height: 65%;
  z-index: 0;
  left: 0;
  top: 0;
  width: 40%;
}
.hmService .hmServicehead {
  position: relative;
  z-index: 1;
}
.hmService .hmServicehead .titleHead {
  margin-bottom: 10px;
  text-align: center;
  color: #000;
}
@media (max-width: 991px) {
  .hmService .hmServicehead .titleHead {
    text-align: center;
  }
}
.hmService .productMainBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 3%;
}
.hmService .productMainBox .leftProductBox {
  flex: 0 0 40%;
  max-width: 40%;
  margin-top: -12px;
}
.hmService .productMainBox .leftProductBox .productContent {
  display: none;
  transition: all 0.5s ease-in-out;
}
.hmService .productMainBox .leftProductBox .productContent.active {
  display: block;
}
.hmService .productMainBox .leftProductBox .productContent img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmService .productMainBox .leftProductBox .productContent img {
    height: 500px;
  }
}
.hmService .productMainBox .leftProductBox .productContent .productText {
  max-width: 100%;
  margin: 25px 0 0px 0px;
}
.hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
  font-weight: normal;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-align: left;
  color: #000;
}
@media (max-width: 1199px) {
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
    font-size: 20px;
  }
}
.hmService .productMainBox .leftProductBox .productContent .productText .sliderPara {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 20px;
  text-align: left;
  color: #000;
  margin-bottom: 5px;
}
.hmService .productMainBox .leftProductBox .productContent .productText .productBtn {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #ffa31e;
  text-transform: uppercase;
  transition: 0.4s ease-in-out all;
}
@media (max-width: 991px) {
  .hmService .productMainBox .leftProductBox .productContent .productText {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 400px) {
  .hmService .productMainBox .leftProductBox .productContent {
    margin-bottom: 0;
  }
  .hmService .productMainBox .leftProductBox .productContent img {
    height: 250px;
  }
}
.hmService .productMainBox .rightProductBox {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0px 20px 30px 40px;
  display: flex;
  flex-direction: column;
}
.hmService .productMainBox .rightProductBox .productMainTitle:hover .sliderText, .hmService .productMainBox .rightProductBox .productMainTitle.active .sliderText {
  opacity: 1;
}
.hmService .productMainBox .rightProductBox .productMainTitle:hover .sliderText .sideWhite, .hmService .productMainBox .rightProductBox .productMainTitle.active .sliderText .sideWhite {
  color: #ffa31e;
}
.hmService .productMainBox .rightProductBox .productMainTitle:hover .sliderText .sideHead, .hmService .productMainBox .rightProductBox .productMainTitle.active .sliderText .sideHead {
  color: #ffa31e;
}
.hmService .productMainBox .rightProductBox .productMainTitle:hover .sliderText .sidePara, .hmService .productMainBox .rightProductBox .productMainTitle.active .sliderText .sidePara {
  color: #ffa31e;
}
.hmService .productMainBox .rightProductBox .productMainTitle .sliderText {
  display: flex;
  border-bottom: 1px solid #dcdcdc;
  padding: 30px 30px 30px 10px;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.hmService .productMainBox .rightProductBox .productMainTitle .sideWhite {
  transition: 0.5s ease-in-out all;
  display: inline-block;
  color: #000;
  background: transparent;
  text-align: center;
  line-height: 26px;
  font-size: 20px;
  margin-right: 0px;
  font-weight: 500;
}
.hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
  font-size: 21px;
  line-height: 26px;
  text-align: left;
  color: #000;
  margin-bottom: 5px;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-weight: 500 !important;
  font-weight: normal;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 17px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 400px) {
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 11px;
    padding-left: 10px;
    line-height: 17px;
    margin-bottom: 10px;
  }
}
.hmService .productMainBox .rightProductBox .productMainTitle .sidePara {
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  color: #000;
  padding-left: 30px;
  margin-bottom: 0px;
}
.hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead {
  transition: 0.3s ease-in-out all;
  color: #002147;
}
.hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
  width: 50px;
  left: -21px;
  top: 14px;
}
@media (max-width: 1199px) {
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
    width: 53px;
    left: -21px;
    top: 11px;
  }
}
@media only screen and (max-width: 400px) {
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
    width: 37px;
    left: -21px;
    top: 6px;
  }
}
.hmService .productMainBox .rightProductBox .productMainTitle:hover p, .hmService .productMainBox .rightProductBox .productMainTitle.active p {
  color: #002147;
}
.hmService .productMainBox .rightProductBox .sliderBtn {
  max-width: 200px;
  margin-top: 53px;
}
.hmService .productMainBox .rightProductBox .sliderBtn .defaultButton {
  text-align: left;
}
.hmService .productMainBox .sliderBtn {
  text-align: center;
  margin: 0 auto;
}
.hmService .productMainBox .defaultButton {
  background: #002147 !important;
  color: #fff !important;
}
@media (max-width: 767px) {
  .hmService .productMainBox {
    flex-direction: column-reverse;
  }
  .hmService .productMainBox .leftProductBox {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmService .productMainBox .rightProductBox {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmService .productMainBox .leftProductBox .productContent img {
    height: 100%;
  }
  .hmService .productMainBox .rightProductBox .sliderText .sideWhite {
    line-height: 70px;
    font-size: 40px;
  }
  .hmService .productMainBox .rightProductBox .sliderText .sideText .sideHead {
    font-size: 40px;
    line-height: 70px;
  }
  .hmService .productMainBox .rightProductBox .sliderText .sideText .sidePara {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hmService .productMainBox .rightProductBox {
    padding: 0px 20px 30px 60px;
  }
}
@media (max-width: 991px) {
  .hmService::after {
    display: none;
  }
  .hmService .hmServicehead .titleHead {
    margin-bottom: 25px;
  }
  .hmService .productMainBox {
    margin-top: 0%;
  }
  .hmService .productMainBox .leftProductBox .productContent img {
    height: auto;
  }
  .hmService .productMainBox .leftProductBox .productContent .productText {
    max-width: 100%;
    margin: 25px 0 0px 0px;
  }
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
    font-weight: normal;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
}
@media (max-width: 991px) and (max-width: 1199px) {
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
    font-size: 22px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderPara {
    font-weight: normal;
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 20px;
    text-align: left;
    color: #1c1c39;
    margin-bottom: 5px;
  }
  .hmService .productMainBox .leftProductBox .productContent .productText .productBtn {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-align: left;
    color: #ffa31e;
    text-transform: uppercase;
    transition: 0.4s ease-in-out all;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .hmService .productMainBox .leftProductBox .productContent .productText {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 400px) {
  .hmService .productMainBox .leftProductBox .productContent {
    margin-bottom: 0;
  }
  .hmService .productMainBox .leftProductBox .productContent img {
    height: 250px;
  }
}
@media (max-width: 991px) {
  .hmService .productMainBox .rightProductBox {
    padding: 0px 20px 30px 28px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText {
    display: flex;
    border-bottom: 1px solid #dcdcdc;
    padding: 15px 0;
    opacity: 1;
    transition: all 0.5s ease-in-out;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:hover, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText.active, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:active {
    opacity: 1;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:hover .sideWhite, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText.active .sideWhite, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:active .sideWhite {
    color: #ffa31e;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sideWhite {
    transition: 0.5s ease-in-out all;
    display: inline-block;
    color: #000;
    background: transparent;
    text-align: center;
    line-height: 26px;
    font-size: 20px;
    margin-right: 15px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 21px;
    line-height: 26px;
    text-align: left;
    color: #000;
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-weight: normal;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) and (max-width: 1199px) {
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 17px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 400px) {
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 11px;
    padding-left: 10px;
    line-height: 17px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .hmService .productMainBox .rightProductBox .productMainTitle .sidePara {
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #b7b7b7;
    padding-left: 30px;
    margin-bottom: 0px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead {
    transition: 0.3s ease-in-out all;
    color: #ffa31e;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
    width: 50px;
    left: -21px;
    top: 14px;
  }
}
@media (max-width: 991px) and (max-width: 1199px) {
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
    width: 53px;
    left: -21px;
    top: 11px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 400px) {
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
    width: 37px;
    left: -21px;
    top: 6px;
  }
}
@media (max-width: 991px) {
  .hmService .productMainBox .rightProductBox .sliderBtn {
    max-width: 200px;
    margin-top: 28px;
  }
  .hmService .productMainBox .rightProductBox .sliderBtn .defaultButton {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hmService .hmServicehead .titleHead {
    margin-bottom: 10px;
  }
  .hmService .productMainBox {
    margin-top: 0%;
  }
  .hmService .productMainBox .leftProductBox {
    margin-top: 3%;
  }
  .hmService .productMainBox .leftProductBox .productContent img {
    height: auto;
  }
  .hmService .productMainBox .leftProductBox .productContent .productText {
    max-width: 100%;
    margin: 25px 0 0px 0px;
  }
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
    font-weight: normal;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
}
@media (max-width: 767px) and (max-width: 1199px) {
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
    font-size: 22px;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderText {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hmService .productMainBox .leftProductBox .productContent .productText .sliderPara {
    font-weight: normal;
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 20px;
    text-align: left;
    color: #1c1c39;
    margin-bottom: 5px;
  }
  .hmService .productMainBox .leftProductBox .productContent .productText .productBtn {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-align: left;
    color: #ffa31e;
    text-transform: uppercase;
    transition: 0.4s ease-in-out all;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .hmService .productMainBox .leftProductBox .productContent .productText {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .hmService .productMainBox .leftProductBox .productContent {
    margin-bottom: 0;
  }
  .hmService .productMainBox .leftProductBox .productContent img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .hmService .productMainBox .rightProductBox {
    padding: 0px 20px 30px 20px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText {
    display: flex;
    border-bottom: 1px solid #dcdcdc;
    padding: 15px 0;
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:hover, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText.active, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:active {
    opacity: 1;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:hover .sideWhite, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText.active .sideWhite, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:active .sideWhite {
    color: #ffa31e;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sideWhite {
    transition: 0.5s ease-in-out all;
    display: inline-block;
    color: #000;
    background: transparent;
    text-align: center;
    line-height: 26px;
    font-size: 20px;
    margin-right: 15px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 21px;
    line-height: 26px;
    text-align: left;
    color: #000;
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-weight: normal;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) and (max-width: 1199px) {
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 17px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 11px;
    padding-left: 10px;
    line-height: 17px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .hmService .productMainBox .rightProductBox .productMainTitle .sidePara {
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #000;
    padding-left: 30px;
    margin-bottom: 0px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead {
    transition: 0.3s ease-in-out all;
    color: #ffa31e;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
    width: 50px;
    left: -21px;
    top: 14px;
  }
}
@media (max-width: 767px) and (max-width: 1199px) {
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
    width: 53px;
    left: -21px;
    top: 11px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .hmService .productMainBox .rightProductBox .productMainTitle:hover .sideHead::after, .hmService .productMainBox .rightProductBox .productMainTitle.active .sideHead::after {
    width: 37px;
    left: -21px;
    top: 6px;
  }
}
@media (max-width: 767px) {
  .hmService .productMainBox .rightProductBox .sliderBtn {
    max-width: 200px;
    margin-top: 28px;
  }
  .hmService .productMainBox .rightProductBox .sliderBtn .defaultButton {
    text-align: left;
  }
}
@media only screen and (max-width: 450px) {
  .hmService::after {
    display: none;
  }
  .hmService .hmServicehead .titleHead {
    text-align: center;
  }
  .hmService .productMainBox .rightProductBox {
    padding: 0px 20px 30px 20px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText {
    display: flex;
    border-bottom: 1px solid #dcdcdc;
    padding: 15px 0;
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:hover, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText.active, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:active {
    opacity: 1;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:hover .sideWhite, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText.active .sideWhite, .hmService .productMainBox .rightProductBox .productMainTitle .sliderText:active .sideWhite {
    color: #ffa31e;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sideWhite {
    line-height: 26px;
    font-size: 20px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sideHead {
    font-size: 18px;
    line-height: 26px;
    padding-left: 10px;
  }
  .hmService .productMainBox .rightProductBox .productMainTitle .sidePara {
    font-size: 14px;
    line-height: 22px;
    padding-left: 10px;
  }
}

.hmComponents {
  position: relative;
}
.hmComponents .centreButton {
  position: relative;
  z-index: 1;
}
.hmComponents .centreButton .defaultButton {
  background: #002147;
  color: #fff;
}
.hmComponents::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  left: inherit;
  background-image: url("../images/components_side.svg");
  top: 0;
  right: 0;
  background-position: right;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: none !important;
}
.hmComponents .hmServicehead .titleHead {
  text-align: center;
  margin-bottom: 0;
  color: #000;
}
.hmComponents .componentSlider {
  position: relative;
  z-index: 1;
}
.hmComponents .componentSlider .slick-slide {
  padding: 0 10px;
}
.hmComponents .componentSlider .componentBox {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  margin: 60px 0 30px 0;
  transform: translateY(0px);
  transition: 0.4s ease-in-out all;
  position: relative;
}
.hmComponents .componentSlider .componentBox::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42.56%, #002147 102.55%);
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.hmComponents .componentSlider .componentBox img {
  border-radius: 20px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hmComponents .componentSlider .componentBox .componentText {
  padding: 15px;
  min-height: 255px;
  position: absolute;
  height: 100%;
  bottom: 0;
  border-radius: 20px;
}
.hmComponents .componentSlider .componentBox .componentText.componentsTitle {
  min-height: auto;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.hmComponents .componentSlider .componentBox .componentText.componentsTitle .twentyFiveHead {
  margin-bottom: 0px !important;
}
.hmComponents .componentSlider .componentBox .componentText .twentyFiveHead {
  color: #fff;
}
.hmComponents .componentSlider .componentBox .componentText .thirtyHead {
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
}
.hmComponents .componentSlider .componentBox .componentText .textPara {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hmComponents .componentSlider .componentBox .componentText.onhover {
  opacity: 0;
  transition: 0.4s ease-in-out all;
}
.hmComponents .componentSlider .componentBox .componentText:hover.componentsTitle {
  transform: translateY(-10px);
}
.hmComponents .componentSlider .componentBox:hover {
  transform: translateY(-10px);
}
.hmComponents .componentSlider .componentBox:hover::before {
  background: rgba(0, 33, 71, 0.7);
}
.hmComponents .componentSlider .componentBox:hover .componentsTitle {
  opacity: 0;
  transition: 0.4s ease-in-out all;
}
.hmComponents .componentSlider .componentBox:hover .onhover {
  opacity: 1;
  transition: 0.4s ease-in-out all;
}
@media (max-width: 1199px) {
  .hmComponents .componentSlider {
    margin-bottom: 30px;
  }
}
.hmComponents .slick-prev {
  left: -50px;
}
.hmComponents .slick-next {
  right: -50px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmComponents::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    left: 55%;
    background-image: url("../images/components_side.svg");
    top: 0;
    right: inherit;
    background-position: left;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
  .hmComponents .componentSlider .componentBox .componentText {
    padding: 30px;
    min-height: 282px;
  }
  .hmComponents .componentSlider .componentBox .componentText .twentyFiveHead {
    font-size: 30px;
    line-height: 36px;
  }
  .hmComponents .componentSlider .componentBox .componentText .textPara {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
  }
}
@media (min-width: 1800px) and (max-width: 1899px) {
  .hmComponents::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    left: 43%;
    background-image: url("../images/components_side.svg");
    top: 0;
    right: inherit;
    background-position: left;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmComponents::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    left: 43%;
    background-image: url("../images/components_side.svg");
    top: 0;
    right: inherit;
    background-position: left;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .hmComponents::after {
    height: 100%;
    background-size: contain;
    left: 40%;
    top: 0;
    bottom: inherit;
    right: inherit;
  }
  .hmComponents .componentSlider .componentBox .componentText {
    min-height: 240px;
  }
  .hmComponents .componentSlider .componentBox .componentText .twentyFiveHead {
    font-size: 20px;
    line-height: 26px;
  }
  .hmComponents .componentSlider .componentBox .componentText .textPara {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hmComponents::after {
    top: -5px;
    left: 23%;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
  .hmComponents .slick-prev {
    left: 43%;
  }
  .hmComponents .slick-next {
    right: 44%;
  }
  .hmComponents .slick-prev, .hmComponents .slick-next {
    top: 100%;
  }
}
@media (max-width: 991px) {
  .hmComponents {
    padding: 40px 0 60px;
  }
  .hmComponents::after {
    left: 32%;
  }
  .hmComponents .hmServicehead .titleHead {
    text-align: center;
    margin-bottom: 0;
  }
  .hmComponents .componentSlider .componentBox {
    margin: 30px 0 40px;
  }
  .hmComponents .componentSlider .componentBox img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hmComponents .componentSlider .componentBox .componentText {
    min-height: 205px;
  }
  .hmComponents .componentSlider .componentBox .componentText .twentyFiveHead {
    margin-bottom: 10px;
    font-weight: 500;
  }
  .hmComponents .componentSlider .componentBox .componentText .textPara {
    font-size: 14px;
    line-height: 22px;
  }
  .hmComponents .slick-prev {
    left: 42%;
  }
  .hmComponents .slick-next {
    right: 42%;
  }
  .hmComponents .slick-prev, .hmComponents .slick-next {
    top: 100%;
  }
}
@media (max-width: 767px) {
  .hmComponents {
    padding: 40px 0 60px;
  }
  .hmComponents::after {
    display: none;
  }
  .hmComponents .hmServicehead .titleHead {
    text-align: center;
    margin-bottom: 0;
  }
  .hmComponents .componentSlider .componentBox {
    margin: 30px 0 40px;
  }
  .hmComponents .componentSlider .componentBox img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hmComponents .componentSlider .componentBox .componentText {
    min-height: 150px;
  }
  .hmComponents .componentSlider .componentBox .componentText .twentyFiveHead {
    margin-bottom: 10px;
    font-weight: 500;
  }
  .hmComponents .componentSlider .componentBox .componentText .textPara {
    font-size: 14px;
    line-height: 22px;
    color: #b7b7b7;
  }
  .hmComponents .slick-prev {
    left: 40%;
  }
  .hmComponents .slick-next {
    right: 40%;
  }
  .hmComponents .slick-prev, .hmComponents .slick-next {
    top: 100%;
  }
}
@media (max-width: 575px) {
  .hmComponents .componentSlider .componentBox {
    margin: 30px 0 40px;
  }
  .hmComponents .componentSlider .componentBox img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hmComponents .componentSlider .componentBox .componentText {
    min-height: 150px;
  }
  .hmComponents .componentSlider .componentBox .componentText .twentyFiveHead {
    margin-bottom: 10px;
    font-weight: 500;
  }
  .hmComponents .componentSlider .componentBox .componentText .textPara {
    font-size: 14px;
    line-height: 22px;
    color: #b7b7b7;
  }
}
@media only screen and (max-width: 450px) {
  .hmComponents .componentSlider .componentBox .componentText {
    min-height: 185px;
  }
  .hmComponents .slick-prev {
    left: 32%;
  }
  .hmComponents .slick-next {
    right: 38%;
  }
  .hmComponents .slick-prev, .hmComponents .slick-next {
    top: 100%;
  }
}
.hmComponents.componentSec::after {
  display: none;
}
.hmComponents.componentSec.vinroxBg::before {
  z-index: 1;
}
.hmComponents.componentSec .componentSlider .componentBox {
  margin: 0 0 40px;
}
.hmComponents.componentSec .componentSlider .componentBox .componentText {
  padding: 15px 20px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmComponents.componentSec .componentSlider .componentBox .componentText {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .hmComponents.componentSec .componentSlider .componentBox {
    max-width: 450px;
    margin: 0 auto 40px;
  }
}
@media (max-width: 575px) {
  .hmComponents.componentSec .componentSlider .componentBox {
    max-width: 400px;
    margin: 0 auto 40px;
  }
}

.hmFacility {
  background: #fff !important;
}
.hmFacility .hmServicehead .titleHead {
  text-align: center;
  margin-bottom: 50px;
}
.hmFacility .facultyFour {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
}
.hmFacility .facultyFour li {
  flex: 0 0 25%;
  transition: 0.4s ease-in-out all;
}
.hmFacility .facultyFour li .facultyBox {
  background-image: url("../images/testing.jpg");
  height: 500px;
  position: relative;
  border-right: 1px solid #fff;
  padding: 30px;
  transition: all 0.5s ease-in-out;
}
.hmFacility .facultyFour li .facultyBox.facultyImg2 {
  background-image: url("../images/production.jpg");
}
.hmFacility .facultyFour li .facultyBox.facultyImg3 {
  background-image: url("../images/tool_room.jpg");
}
.hmFacility .facultyFour li .facultyBox.facultyImg4 {
  background-image: url("../images/infrastructure.jpg");
}
.hmFacility .facultyFour li .facultyBox::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 33, 71, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hmFacility .facultyFour li .facultyBox .facultyText {
  font-weight: 500;
  font-size: 30px;
  line-height: 60px;
  text-align: left;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 30px;
  transition: all 0.5s ease-in-out;
}
.hmFacility .facultyFour li .facultyBox .facultyText.hoverNone {
  opacity: 1;
  transition: 0.4s ease-in-out all;
}
.hmFacility .facultyFour li .facultyBox .hoverBox {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 32px;
  opacity: 0;
  transition: 0.4s ease-in-out all;
}
.hmFacility .facultyFour li .facultyBox .hoverBox .facultyText {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  text-align: left;
  color: #fff;
  transition: all 0.5s ease-in-out;
  margin-bottom: 10px;
}
.hmFacility .facultyFour li .facultyBox .hoverBox .facultyText.hoverDisplay {
  opacity: 1;
  transition: 0.4s ease-in-out all;
}
.hmFacility .facultyFour li .facultyBox .hoverBox .hoverText {
  font-size: 14px;
  line-height: 22px;
  opacity: 0;
  transition: all 0.7s ease-in-out;
  text-align: justify;
  min-height: 350px;
  margin: 0;
}
@media (max-width: 1199px) {
  .hmFacility .facultyFour li .facultyBox .hoverBox .hoverText {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .hmFacility .facultyFour li .facultyBox .hoverBox .hoverText {
    font-size: 15px;
    line-height: 23px;
  }
}
.hmFacility .facultyFour li:hover .facultyBox .facultyText {
  left: 0;
}
.hmFacility .facultyFour li:hover .facultyBox .facultyText.hoverNone {
  opacity: 0;
}
.hmFacility .facultyFour li:hover .facultyBox .facultyText.wareText {
  bottom: 82%;
}
.hmFacility .facultyFour li:hover .facultyBox .facultyText.facultyHovernone {
  opacity: 0;
}
.hmFacility .facultyFour li:hover .facultyBox .hoverBox {
  opacity: 1;
  visibility: visible;
  bottom: -2%;
}
.hmFacility .facultyFour li:hover .facultyBox .hoverBox .facultyText.hoverDisplay {
  opacity: 1;
  position: relative;
  left: 0;
}
.hmFacility .facultyFour li:hover .facultyBox .hoverBox .hoverText {
  color: #fff;
  opacity: 1;
}
.hmFacility .facultyFour li:hover .facultyBox .hoverBox.wareBox {
  bottom: -4%;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg2 .facultyText {
  bottom: 75%;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg2 .facultyText.wareText {
  bottom: 80%;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg2 .facultyText.facultyHovernone {
  opacity: 0;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg2 .hoverBox {
  opacity: 1;
  visibility: visible;
  bottom: 26%;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg2 .hoverBox .hoverText {
  color: #fff;
  opacity: 1;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg2 .hoverBox.wareBox {
  bottom: -4%;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg4 .facultyText {
  bottom: 75%;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg4 .facultyText.wareText {
  bottom: 80%;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg4 .facultyText.facultyHovernone {
  opacity: 0;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg4 .hoverBox {
  opacity: 1;
  visibility: visible;
  bottom: 21%;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg4 .hoverBox .hoverText {
  color: #fff;
  opacity: 1;
}
.hmFacility .facultyFour li:hover .facultyBox.facultyImg4 .hoverBox.wareBox {
  bottom: -4%;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmFacility .facultyFour {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
  }
  .hmFacility .facultyFour li .facultyBox {
    background-image: url("../images/testing.jpg");
    height: 500px;
    position: relative;
    border-right: 1px solid #fff;
    padding: 30px;
    transition: all 0.5s ease-in-out;
  }
  .hmFacility .facultyFour li .facultyBox .facultyText {
    font-weight: 500;
    font-size: 40px;
    line-height: 70px;
    text-align: left;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 30px;
    transition: all 0.5s ease-in-out;
  }
  .hmFacility .facultyFour li .facultyBox::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .hmFacility .facultyFour li .facultyBox .hoverBox {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px;
    opacity: 0;
    transition: 0.4s ease-in-out all;
  }
  .hmFacility .facultyFour li .facultyBox .hoverBox .hoverText {
    font-size: 16px;
    line-height: 24px;
    opacity: 0;
    transition: all 0.7s ease-in-out;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) and (max-width: 1199px) {
  .hmFacility .facultyFour li .facultyBox .hoverBox .hoverText {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) and (max-width: 991px) {
  .hmFacility .facultyFour li .facultyBox .hoverBox .hoverText {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmFacility .facultyFour li:hover .facultyBox .facultyText {
    bottom: 68%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText.facultyHovernone {
    opacity: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox {
    opacity: 1;
    visibility: visible;
    bottom: -2%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox .hoverText {
    color: #fff;
    opacity: 1;
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 1199px) {
  .hmFacility .facultyFour li .facultyBox {
    height: 400px;
  }
  .hmFacility .facultyFour li .facultyBox .facultyText {
    font-weight: 500;
    font-size: 25px;
    line-height: 55px;
    text-align: left;
    color: #fff;
    position: absolute;
    bottom: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText {
    bottom: 66%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText.facultyHovernone {
    opacity: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox {
    opacity: 1;
    visibility: visible;
    bottom: 0%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox .hoverText {
    color: #fff;
    opacity: 1;
    font-size: 12px;
    line-height: 17px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hmFacility .facultyFour li .facultyBox {
    height: 400px;
  }
  .hmFacility .facultyFour li .facultyBox .facultyText {
    font-weight: 500;
    font-size: 25px;
    line-height: 55px;
    text-align: left;
    color: #fff;
    position: absolute;
    bottom: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText {
    bottom: 70%;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText.facultyHovernone {
    opacity: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox {
    opacity: 1;
    visibility: visible;
    bottom: -6%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox .hoverText {
    color: #fff;
    opacity: 1;
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  .hmFacility .facultyFour li {
    flex: 0 0 50%;
  }
  .hmFacility .facultyFour li .facultyBox .facultyText {
    font-weight: 500;
    font-size: 30px;
    line-height: 60px;
    text-align: left;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 30px;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText {
    bottom: 60%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText.facultyHovernone {
    opacity: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox {
    opacity: 1;
    visibility: visible;
    bottom: 0%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox .hoverText {
    color: #fff;
    opacity: 1;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .hmFacility .facultyFour li {
    flex: 0 0 100%;
  }
  .hmFacility .facultyFour li .facultyBox {
    margin: 0 auto 30px;
    max-width: 500px;
    height: 450px;
  }
  .hmFacility .facultyFour li .facultyBox .facultyText {
    font-weight: 500;
    font-size: 30px;
    line-height: 60px;
    text-align: left;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 30px;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText {
    bottom: 60%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText.facultyHovernone {
    opacity: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox {
    opacity: 1;
    visibility: visible;
    bottom: 0%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox .hoverText {
    color: #fff;
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .hmFacility .facultyFour li {
    flex: 0 0 100%;
  }
  .hmFacility .facultyFour li .facultyBox {
    margin: 0 auto 30px;
    max-width: 450px;
    height: 400px;
  }
  .hmFacility .facultyFour li .facultyBox .facultyText {
    font-weight: 500;
    font-size: 30px;
    line-height: 60px;
    text-align: left;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 30px;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText {
    bottom: 65%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText.facultyHovernone {
    opacity: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox {
    opacity: 1;
    visibility: visible;
    bottom: 0%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox .hoverText {
    color: #fff;
    opacity: 1;
  }
}
@media (max-width: 450px) {
  .hmFacility .facultyFour li .facultyBox {
    margin: 0 auto 30px;
    max-width: 320px;
    height: 400px;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText {
    bottom: 67%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .facultyText.facultyHovernone {
    opacity: 0;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox {
    opacity: 1;
    visibility: visible;
    bottom: -12%;
  }
  .hmFacility .facultyFour li:hover .facultyBox .hoverBox .hoverText {
    color: #fff;
    opacity: 1;
    font-size: 13px;
    line-height: 21px;
  }
}

.hmNews .hmNewshead {
  margin-bottom: 40px;
}
.hmNews .newsSlider .row:last-child .col-lg-4 .newsBox {
  margin-bottom: 0;
}
.hmNews .newsSlider .newsBox {
  transform: translateY(0);
  transition: 0.4s ease-in-out all;
}
.hmNews .newsSlider .newsBox.marginFix {
  margin: 10px 0 0;
}
.hmNews .newsSlider .newsBox:hover {
  transform: translateY(-10px);
}
.hmNews .newsSlider .newsBox .newsImg img {
  width: 100%;
}
.hmNews .newsSlider .newsBox .newsText {
  margin-top: 10px;
}
.hmNews .newsSlider .newsBox .newsText.newsDetailmargin {
  margin-top: 20px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmNews .newsSlider .newsBox .newsText.newsDetailmargin {
    margin-top: 40px;
  }
}
.hmNews .newsSlider .newsBox .newsText .subTitle {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: #565656;
  margin-bottom: 5px;
}
.hmNews .newsSlider .newsBox .newsText .twentyFiveHead {
  font-size: 22px;
  line-height: 28px;
}
.hmNews .newsSlider .newsBox .newsText .textPara {
  font-size: 16px;
  line-height: 26px;
  color: #b7b7b7;
  margin-bottom: 6px;
}
.hmNews .newsSlider .newsBox .newsText .textLink {
  color: #f2940d;
  transition: 0.4s ease-in-out all;
}
.hmNews .newsSlider .newsBox .newsText .textLink:hover {
  color: #000;
}
.hmNews .newsSlider .newsBox .newsText .defaultButton {
  background: transparent;
  padding: 0px;
  color: #ffa31e;
  box-shadow: none;
  transition: 0.4s ease-in-out;
}
.hmNews .newsSlider .newsBox .newsText .defaultButton:hover {
  color: #000;
}
.hmNews .newsSlider .slick-slide {
  padding: 0 15px;
}
.hmNews .newsSlider .slick-prev {
  left: 91%;
}
.hmNews .newsSlider .slick-next {
  right: 0%;
}
.hmNews .newsSlider .slick-prev, .hmNews .newsSlider .slick-next {
  top: -25%;
}
.hmNews .enoughBox {
  margin-top: 65px;
  background: #211f1f;
  position: relative;
  box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.16);
}
.hmNews .enoughBox .enoughText {
  max-width: 600px;
  padding: 40px 80px;
}
.hmNews .enoughBox .enoughText .titleHead {
  color: #979797;
}
.hmNews .enoughBox .enoughText .titleHead span {
  font-weight: normal;
  font-size: 50px;
  line-height: 60px;
  color: #979797;
  font-style: italic;
}
.hmNews .enoughBox .enoughText .defaultButton {
  margin-top: 25px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmNews .newsSlider .slick-prev {
    left: 93%;
  }
  .hmNews .newsSlider .slick-prev, .hmNews .newsSlider .slick-next {
    top: -31%;
  }
  .hmNews .newsSlider .newsBox .newsUpper .subTitle {
    font-size: 16px;
    line-height: 36px;
  }
  .hmNews .newsSlider .newsBox .newsText .twentyFiveHead {
    font-size: 30px;
    line-height: 36px;
  }
  .hmNews .newsSlider .newsBox .newsText .textPara {
    font-size: 20px;
    line-height: 30px;
    color: #b7b7b7;
  }
  .hmNews .newsSlider .newsBox .newsText .defaultButton {
    font-size: 18px;
  }
  .hmNews .enoughBox .enoughText {
    padding: 64px 80px;
    max-width: 700px;
  }
  .hmNews .enoughBox .enoughText .titleHead {
    font-size: 80px;
    line-height: 100px;
  }
  .hmNews .enoughBox .enoughText .titleHead span {
    font-size: 70px;
    line-height: 80px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmNews .enoughBox .enoughText {
    padding: 80px 80px;
  }
}
@media (max-width: 1199px) {
  .hmNews .newsSlider .slick-prev {
    left: 88%;
  }
  .hmNews .newsSlider .slick-prev, .hmNews .newsSlider .slick-next {
    top: -22%;
  }
  .hmNews .newsSlider .newsBox .newsText .twentyFiveHead {
    font-size: 20px;
    line-height: 26px;
  }
  .hmNews .enoughBox .enoughText {
    padding: 24px 80px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hmNews .newsSlider .slick-prev {
    left: 88%;
  }
  .hmNews .newsSlider .slick-prev, .hmNews .newsSlider .slick-next {
    top: -22%;
  }
  .hmNews .enoughBox .enoughText {
    padding: 24px 80px;
  }
}
@media (max-width: 991px) {
  .hmNews .hmNewshead {
    margin-bottom: 20px;
  }
  .hmNews .newsSlider .newsBox .newsUpper {
    border-bottom: 1px solid #c4c4c4;
    margin-bottom: 30px;
  }
  .hmNews .newsSlider .newsBox .newsUpper .subTitle {
    font-weight: bold;
    font-size: 14px;
    line-height: 34px;
    text-align: left;
    color: #565656;
    margin-bottom: 0px;
  }
  .hmNews .newsSlider .newsBox .newsText .twentyFiveHead {
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 7px;
  }
  .hmNews .newsSlider .newsBox .newsText .textPara {
    font-size: 16px;
    line-height: 26px;
    color: #b7b7b7;
  }
  .hmNews .newsSlider .slick-prev {
    left: 82%;
  }
  .hmNews .newsSlider .slick-next {
    right: 0%;
  }
  .hmNews .newsSlider .slick-prev, .hmNews .newsSlider .slick-next {
    top: -60px;
  }
  .hmNews .enoughBox {
    margin-top: 60px;
  }
  .hmNews .enoughBox .enoughText {
    max-width: 100%;
    padding: 40px 80px;
  }
  .hmNews .enoughBox .enoughText .titleHead {
    color: #979797;
    font-size: 58px;
    line-height: 65px;
  }
  .hmNews .enoughBox .enoughText .titleHead span {
    font-size: 55px;
    line-height: 55px;
  }
  .hmNews .enoughBox .enoughText .defaultButton {
    margin-top: 15px;
  }
  .hmNews .enoughBox .enoughImg {
    display: none;
  }
  .hmNews .enoughBox .enoughImg img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hmNews {
    padding-bottom: 60px;
  }
  .hmNews .hmNewshead {
    margin-bottom: 20px;
  }
  .hmNews .newsSlider .newsBox .newsUpper {
    border-bottom: 1px solid #c4c4c4;
    margin-bottom: 30px;
  }
  .hmNews .newsSlider .newsBox .newsUpper .subTitle {
    font-weight: bold;
    font-size: 14px;
    line-height: 34px;
    text-align: left;
    color: #565656;
    margin-bottom: 0px;
  }
  .hmNews .newsSlider .newsBox .newsText .twentyFiveHead {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 7px;
  }
  .hmNews .newsSlider .newsBox .newsText .textPara {
    font-size: 16px;
    line-height: 26px;
    color: #b7b7b7;
  }
  .hmNews .newsSlider .slick-prev {
    left: 82%;
  }
  .hmNews .newsSlider .slick-next {
    right: 0%;
  }
  .hmNews .newsSlider .slick-prev, .hmNews .newsSlider .slick-next {
    top: -55px;
  }
  .hmNews .enoughBox {
    margin-top: 60px;
  }
  .hmNews .enoughBox .enoughText {
    max-width: 100%;
    padding: 40px 80px;
  }
  .hmNews .enoughBox .enoughText .titleHead {
    color: #979797;
    font-size: 48px;
    line-height: 58px;
  }
  .hmNews .enoughBox .enoughText .titleHead span {
    font-size: 42px;
    line-height: 52px;
  }
  .hmNews .enoughBox .enoughText .defaultButton {
    margin-top: 15px;
  }
  .hmNews .enoughBox .enoughImg {
    display: none;
  }
  .hmNews .enoughBox .enoughImg img {
    width: 100%;
  }
}
@media only screen and (max-width: 450px) {
  .hmNews .newsSlider .newsBox .newsText .subTitle {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 5px;
  }
  .hmNews .newsSlider .newsBox .newsText .twentyFiveHead {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
  }
  .hmNews .newsSlider .newsBox .newsText .textPara {
    font-size: 14px;
    line-height: 22px;
    color: #b7b7b7;
  }
  .hmNews .newsSlider .newsBox .newsText .defaultButton {
    font-size: 14px;
    line-height: 32px;
  }
  .hmNews .newsSlider .slick-prev {
    left: 72%;
  }
  .hmNews .newsSlider .slick-next {
    right: 0%;
  }
  .hmNews .newsSlider .slick-prev, .hmNews .newsSlider .slick-next {
    top: -50px;
  }
  .hmNews .enoughBox .enoughText {
    padding: 40px;
  }
  .hmNews .enoughBox .enoughText .titleHead {
    font-size: 38px;
    line-height: 43px;
  }
  .hmNews .enoughBox .enoughText .titleHead span {
    font-size: 32px;
    line-height: 42px;
  }
  .hmNews .enoughBox .enoughText .defaultButton {
    margin-top: 15px;
  }
  .hmNews .enoughBox .enoughImg {
    display: none;
  }
  .hmNews .enoughBox .enoughImg img {
    width: 100%;
  }
}
.hmNews.newsSection .newsBox {
  margin-bottom: 50px;
  max-width: 500px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmNews.newsSection .newsBox {
    margin-bottom: 100px;
    max-width: 650px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmNews.newsSection .newsBox {
    max-width: 550px;
  }
}
@media (max-width: 991px) {
  .hmNews.newsSection .newsBox {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .hmNews.newsSection .newsBox {
    max-width: 500px;
    margin: 0 auto 40px;
  }
}
.hmNews.newsDetail {
  padding-bottom: 100px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .hmNews.newsDetail {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .hmNews.newsDetail {
    padding-bottom: 30px;
  }
}
.hmNews.newsDetail .newsBox {
  max-width: 670px;
}
.hmNews.newsDetail .newsBox:hover {
  transform: translateY(0);
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmNews.newsDetail .newsBox {
    max-width: 850px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .hmNews.newsDetail .newsBox {
    max-width: 800px;
  }
}
@media (max-width: 1199px) {
  .hmNews.newsDetail .newsBox {
    max-width: 600px;
  }
}
@media (max-width: 991px) {
  .hmNews.newsDetail .newsBox {
    max-width: 600px;
    margin: 0 auto;
  }
}
.hmNews.newsDetail .newsSide {
  list-style-type: none;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.hmNews.newsDetail .newsSide li {
  border-bottom: 1px solid #E4E4E4;
}
.hmNews.newsDetail .newsSide li a {
  transition: 0.4s ease-in-out all;
}
.hmNews.newsDetail .newsSide li:hover .newsText .sideText, .hmNews.newsDetail .newsSide li.active .newsText .sideText {
  color: #ffa31e;
}
.hmNews.newsDetail .newsSide li:hover .newsText .subTitle, .hmNews.newsDetail .newsSide li.active .newsText .subTitle {
  color: #ffa31e;
}
.hmNews.newsDetail .newsSide li .newsText {
  padding: 10px 20px;
}
.hmNews.newsDetail .newsSide li .newsText .sideText {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
  color: #171717;
  transition: 0.4s ease-in-out all;
}
.hmNews.newsDetail .newsSide li .newsText .subTitle {
  font-weight: bold;
  font-size: 12px;
  line-height: 32px;
  text-align: left;
  color: #565656;
  margin-bottom: 0px;
  transition: 0.4s ease-in-out all;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmNews.newsDetail .newsSide {
    max-width: 450px;
  }
  .hmNews.newsDetail .newsSide li .newsText .sideText {
    font-size: 18px;
    line-height: 26px;
  }
  .hmNews.newsDetail .newsSide li .newsText .subTitle {
    font-size: 14px;
    line-height: 34px;
  }
}
@media (max-width: 1199px) {
  .hmNews.newsDetail .newsSide {
    margin-top: 30px;
  }
  .hmNews.newsDetail .newsSide li .newsText {
    padding: 10px 15px;
  }
  .hmNews.newsDetail .newsSide li .newsText .sideText {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
    color: #171717;
  }
  .hmNews.newsDetail .newsSide li .newsText .subTitle {
    font-weight: bold;
    font-size: 10px;
    line-height: 30px;
    text-align: left;
    color: #565656;
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .hmNews.newsDetail .newsSide {
    max-width: 500px;
    margin: 30px auto 0;
  }
}
@media (max-width: 767px) {
  .hmNews.newsDetail .newsSide {
    max-width: 450px;
    margin: 30px auto 0;
  }
}

.hmPartner .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.hmPartner .row {
  align-items: center;
}
.hmPartner .hmPartnerhead {
  max-width: 300px;
}
.hmPartner .hmPartnerhead .titleHead {
  margin-bottom: 0;
  color: #000;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmPartner .hmPartnerhead {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .hmPartner .hmPartnerhead {
    max-width: 100%;
  }
}
.hmPartner .clientSlider li.clientBox {
  background-color: #fff;
  padding: 15px 30px;
  margin: 0 15px 15px 7px;
  text-align: center;
  max-width: 230px;
  border-radius: 20px;
  transition: 0.4s ease-in-out all;
  min-height: 110px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}
.hmPartner .clientSlider li.clientBox img {
  margin: 0 auto;
  text-align: center;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmPartner .clientSlider li.clientBox {
    max-width: 300px;
    min-height: 130px;
  }
  .hmPartner .clientSlider li.clientBox img {
    height: 125px;
  }
}
@media (max-width: 1199px) {
  .hmPartner .clientSlider .slick-slide {
    padding: 0 5px;
  }
}
@media (max-width: 991px) {
  .hmPartner .hmPartnerhead .titleHead {
    text-align: center;
    margin-bottom: 25px;
  }
  .hmPartner .clientSlider li.clientBox {
    background-color: #fff;
    padding: 15px 30px;
    margin: 0 15px 15px 7px;
    text-align: center;
    max-width: 230px;
    border-radius: 20px;
    transition: 0.4s ease-in-out all;
    min-height: 110px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  }
  .hmPartner .clientSlider li.clientBox img {
    margin: 0 auto;
    text-align: center;
    height: 105px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hmPartner .clientSlider .slick-slide {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .hmPartner .hmPartnerhead .titleHead {
    text-align: center;
    margin-bottom: 25px;
  }
  .hmPartner .clientSlider li.clientBox {
    background-color: #fff;
    padding: 15px 30px;
    margin: 0 15px 15px 7px;
    text-align: center;
    max-width: 230px;
    border-radius: 20px;
    transition: 0.4s ease-in-out all;
    min-height: 110px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  }
  .hmPartner .clientSlider li.clientBox img {
    margin: 0 auto;
    text-align: center;
    height: 105px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 575px) {
  .hmPartner .hmPartnerhead .titleHead {
    text-align: center;
    margin-bottom: 25px;
  }
  .hmPartner .clientSlider li.clientBox {
    margin: 0;
  }
}
@media only screen and (max-width: 450px) {
  .hmPartner .clientSlider li.clientBox {
    max-width: 100%;
  }
}

.hmWhyInfo .mobileImg {
  display: none;
}
@media (max-width: 575px) {
  .hmWhyInfo .desktopImg {
    display: none;
  }
  .hmWhyInfo .mobileImg {
    display: block;
  }
}

.counterSection {
  background: #002147;
}
.counterSection .titleHead {
  color: #fff;
}
.counterSection .counterBox .counterRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.counterSection .counterBox .counterRow .stats {
  flex: 0 0 30.33%;
  max-width: 100%;
  text-align: center;
}
.counterSection .counterBox .counterRow .stats .counting {
  font-size: 100px;
  font-weight: 800;
  line-height: 100px;
  color: #fff;
}
.counterSection .counterBox .counterRow .stats .counterDigit {
  font-size: 50px;
  font-weight: 800;
  line-height: 50px;
  color: #fff;
}
.counterSection .counterBox .counterRow .stats p {
  color: #b7b7b7;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 991px) {
  .counterSection .counterBox .counterRow .stats .counting {
    font-size: 50px;
    line-height: 50px;
  }
  .counterSection .counterBox .counterRow .stats .counterDigit {
    font-size: 50px;
    line-height: 50px;
  }
  .counterSection .counterBox .counterRow .stats p {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .counterSection .counterBox .counterRow .stats {
    flex: inherit;
  }
}
@media (max-width: 767px) {
  .counterSection .titleHead {
    font-size: 35px;
    line-height: 45px;
  }
  .counterSection .counterBox .counterRow {
    justify-content: center;
  }
  .counterSection .counterBox .counterRow .stats {
    flex: 0 0 50%;
    margin: 0 0 30px;
  }
  .counterSection .counterBox .counterRow .stats:last-child {
    margin: 0;
  }
}
@media (max-width: 450px) {
  .counterSection .titleHead {
    font-size: 30px;
    line-height: 40px;
  }
  .counterSection .counterBox .counterRow {
    flex-direction: column;
  }
  .counterSection .counterBox .counterRow .stats p {
    margin-bottom: 0;
  }
}

.hmTestimonial .hmTestimonialhead .titleHead {
  text-align: center;
  margin-bottom: 50px;
}
.hmTestimonial .testimonialSlider .slick-dots {
  margin-top: 0px;
}
.hmTestimonial .testimonialSlider .slick-slide {
  padding: 0 10px;
}
.hmTestimonial .testimonialSlider .testimonialBox {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 50px 35px;
  margin: 45px 0;
  position: relative;
  min-height: 332px;
}
.hmTestimonial .testimonialSlider .testimonialBox .textPara {
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  color: #444;
  margin-bottom: 0;
}
.hmTestimonial .testimonialSlider .testimonialBox .testimonialLower {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.hmTestimonial .testimonialSlider .testimonialBox .testimonialLower .lowertext {
  padding-top: 15px;
}
.hmTestimonial .testimonialSlider .testimonialBox .testimonialLower .lowertext .lowerHead {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  color: #ffa31e;
  margin-bottom: 5px;
}
.hmTestimonial .testimonialSlider .testimonialBox .testimonialLower .lowertext .lowerPara {
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  margin-bottom: 0;
  color: #444;
}
.hmTestimonial .testimonialSlider .testimonialBox::before {
  position: absolute;
  content: "";
  background-image: url(../images/testimonial_icon.svg);
  background-repeat: no-repeat;
  top: -20px;
  left: 30px;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.hmTestimonial .testimonialSlider .slick-dots li.slick-active {
  height: 2px;
  width: 18%;
  background: #ffa31e;
}
@media (max-width: 1199px) {
  .hmTestimonial .testimonialSlider .testimonialBox {
    min-height: 392px;
  }
  .hmTestimonial .testimonialSlider .testimonialBox .textPara {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .hmTestimonial .hmTestimonialhead .titleHead {
    margin-bottom: 10px;
  }
  .hmTestimonial .testimonialSlider .testimonialBox {
    padding: 50px 35px;
    margin: 45px 0;
    position: relative;
  }
}
@media (max-width: 767px) {
  .hmTestimonial .hmTestimonialhead .titleHead {
    margin-bottom: 10px;
  }
  .hmTestimonial .testimonialSlider .testimonialBox {
    padding: 50px 35px;
    margin: 45px 0;
    position: relative;
    min-height: 290px;
  }
  .hmTestimonial .testimonialSlider .testimonialBox .textPara {
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 22px;
    text-align: left;
    color: #5b5b5b;
    margin-bottom: 0;
  }
  .hmTestimonial .testimonialSlider .testimonialBox .testimonialLower {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .hmTestimonial .testimonialSlider .testimonialBox .testimonialLower .lowertext {
    padding-left: 25px;
    padding-top: 5px;
  }
  .hmTestimonial .testimonialSlider .testimonialBox .testimonialLower .lowertext .lowerHead {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    color: #ffa31e;
    margin-bottom: 5px;
  }
  .hmTestimonial .testimonialSlider .testimonialBox .testimonialLower .lowertext .lowerPara {
    font-weight: 500;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    margin-bottom: 0;
    color: #444;
  }
  .hmTestimonial .testimonialSlider .testimonialBox::before {
    position: absolute;
    content: "";
    background-image: url(../images/testimonial_icon.svg);
    background-repeat: no-repeat;
    top: -20px;
    left: 30px;
    right: 0;
    bottom: 0;
  }
  .hmTestimonial .testimonialSlider .slick-dots li.slick-active {
    height: 2px;
    width: 18%;
    background: #ffa31e;
  }
}
@media only screen and (max-width: 450px) {
  .hmTestimonial .testimonialSlider .testimonialBox {
    min-height: auto;
  }
}

footer .footerSec {
  padding: 40px 0;
  background: #002147;
}
footer .footerSec .footerLeft .footerLogo {
  margin-bottom: 40px;
  display: block;
}
footer .footerSec .footerLeft .footerLogo img {
  width: 300px;
}
footer .footerSec .footerLeft .footerContact {
  max-width: 300px;
}
footer .footerSec .footerLeft .footerContact .contactUl {
  list-style-type: none;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactAddress {
  position: relative;
  padding-left: 25px;
  text-align: left;
  color: #b7b7b7;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 20px;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactAddress::before {
  position: absolute;
  content: "\f041";
  font-family: "fontAwesome";
  color: #ffa31e;
  left: 0;
  font-size: 20px;
  line-height: 20px;
}
footer .footerSec .footerLeft .footerContact .contactUl li .flabel {
  margin: 15px 0px 5px 0px;
  color: #e8e8e8;
  text-decoration: underline;
  font-size: 16px;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactPhone {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactPhone a {
  text-align: left;
  color: #b7b7b7;
  font-weight: 800;
  font-size: 16px;
  transition: 0.4s ease-in-out all;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactPhone a:hover {
  color: #ffa31e;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactPhone::before {
  content: "\f095";
  position: absolute;
  font-family: "fontAwesome";
  color: #ffa31e;
  left: 0;
  font-size: 18px;
  line-height: 18px;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactMail {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactMail a {
  text-align: left;
  color: #b7b7b7;
  font-weight: 800;
  font-size: 16px;
  transition: 0.4s ease-in-out all;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactMail a:hover {
  color: #ffa31e;
}
footer .footerSec .footerLeft .footerContact .contactUl li .contactMail::before {
  content: "\f0e0";
  position: absolute;
  font-family: "fontAwesome";
  color: #ffa31e;
  left: 0;
  font-size: 18px;
  line-height: 18px;
}
footer .footerSec .footerLeft .socialUl {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
footer .footerSec .footerLeft .socialUl li .socialIcon {
  height: 30px;
  width: 30px;
  position: relative;
  border-radius: 50%;
  transition: 0.4s ease-in-out all;
  transform: scale(1);
}
footer .footerSec .footerLeft .socialUl li .socialIcon.instagram {
  background: linear-gradient(45deg, #FFD600, #FF7A00, #FF0069, #D300C5, #7638FA);
}
footer .footerSec .footerLeft .socialUl li .socialIcon.facebook {
  background-color: #3b5998;
}
footer .footerSec .footerLeft .socialUl li .socialIcon.twitter {
  background-color: #2CA8D2;
}
footer .footerSec .footerLeft .socialUl li .socialIcon.linkedin {
  background-color: #0A66C2;
}
footer .footerSec .footerLeft .socialUl li .socialIcon.youtube {
  background-color: #CD201F;
}
footer .footerSec .footerLeft .socialUl li .socialIcon.whatsapp {
  background-color: #2fc965;
}
footer .footerSec .footerLeft .socialUl li .socialIcon i {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footerSec .footerLeft .socialUl li .socialIcon:hover {
  transform: scale(1.1);
}
footer .footerSec .footerNav {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}
footer .footerSec .footerNav li {
  transition: 0.4s ease-in-out all;
}
footer .footerSec .footerNav li:hover a, footer .footerSec .footerNav li.active a {
  color: #ffa31e;
}
footer .footerSec .footerNav li a {
  font-weight: 800;
  font-size: 12px;
  text-align: left;
  color: #b7b7b7;
  transition: 0.4s ease-in-out all;
  text-transform: uppercase;
}
footer .footerSec .lowerNav {
  margin-top: 30px;
}
footer .footerSec .lowerNav .navTitle {
  font-weight: 300;
  font-size: 23px;
  text-align: left;
  color: #ffa31e;
}
footer .footerSec .lowerNav .lowerUl {
  list-style-type: none;
}
footer .footerSec .lowerNav .lowerUl li {
  margin-bottom: 10px;
  transition: 0.4s ease-in-out all;
}
footer .footerSec .lowerNav .lowerUl li a {
  font-weight: normal;
  font-size: 16px;
  line-height: 15px;
  text-align: left;
  color: #b7b7b7;
  transition: 0.4s ease-in-out all;
  text-transform: capitalize;
}
footer .footerSec .lowerNav .lowerUl li a:hover {
  color: #ffa31e;
}
footer .footerSec .lowerNav .lowerUl li:hover a, footer .footerSec .lowerNav .lowerUl li.active a {
  color: #ffa31e;
}
footer .footerCopyright {
  padding: 15px 0;
  background: #003366;
}
footer .footerCopyright .copyrightLeft p {
  font-weight: normal;
  font-size: 14px;
  color: #b7b7b7;
  margin-bottom: 0;
  text-align: left;
}
footer .footerCopyright .copyrightRight p {
  font-weight: normal;
  font-size: 14px;
  color: #b7b7b7;
  margin-bottom: 0;
  text-align: right;
}
@media (max-width: 1199px) {
  footer .footerSec .lowerNav .navTitle {
    font-size: 19px;
  }
  footer .footerSec .footerNav li a {
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  footer .footerSec {
    padding: 60px 0;
  }
  footer .footerSec .footerLeft .footerLogo {
    margin-bottom: 30px;
    text-align: center;
  }
  footer .footerSec .footerLeft .footerContact {
    max-width: 270px;
    margin: 0 auto;
  }
  footer .footerSec .footerLeft .footerContact .contactUl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactAddress {
    position: relative;
    padding-left: 20px;
    text-align: center;
    color: #b7b7b7;
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 230px;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactAddress::before {
    position: absolute;
    content: "\f041";
    font-family: "fontAwesome";
    color: #ffa31e;
    left: 10px;
    font-size: 20px;
    line-height: 20px;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactPhone {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactMail {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactMail::before {
    content: "\f0e0";
    position: absolute;
    font-family: "fontAwesome";
    color: #ffa31e;
    left: 0;
    font-size: 18px;
    line-height: 18px;
  }
  footer .footerSec .footerLeft .socialUl {
    margin-top: 10px;
    justify-content: flex-end;
  }
  footer .footerSec .footerNav {
    display: flex;
    align-items: center;
    margin-top: 40px;
  }
  footer .footerSec .footerNav li a {
    font-size: 14px;
    text-align: left;
    color: #b7b7b7;
    transition: 0.4s ease-in-out all;
  }
  footer .footerSec .footerNav li:hover a, footer .footerSec .footerNav li.active a {
    color: #ffa31e;
  }
  footer .footerSec .lowerNav {
    margin-top: 30px;
  }
  footer .footerSec .lowerNav .navTitle {
    text-align: center;
  }
  footer .footerSec .lowerNav .lowerUl {
    list-style-type: none;
    text-align: center;
  }
  footer .footerSec .lowerNav .lowerUl li {
    margin-bottom: 10px;
  }
  footer .footerSec .lowerNav .lowerUl li a {
    font-weight: normal;
    font-size: 16px;
    line-height: 15px;
    text-align: left;
    color: #b7b7b7;
    transition: 0.4s ease-in-out all;
  }
  footer .footerSec .lowerNav .lowerUl li a:hover {
    color: #ffa31e;
  }
  footer .footerCopyright {
    padding: 20px 0;
    background: #003366;
  }
  footer .footerCopyright .copyrightLeft {
    margin-bottom: 10px;
  }
  footer .footerCopyright .copyrightLeft p {
    font-weight: normal;
    font-size: 14px;
    color: #b7b7b7;
    margin-bottom: 0;
    text-align: center;
  }
  footer .footerCopyright .copyrightRight p {
    font-weight: normal;
    font-size: 14px;
    color: #b7b7b7;
    margin-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 30px;
  }
  footer .footerSec {
    padding: 40px 0;
  }
  footer .footerSec .footerLeft .footerLogo {
    margin-bottom: 30px;
    text-align: center;
  }
  footer .footerSec .footerLeft .footerLogo img {
    width: 250px;
  }
  footer .footerSec .footerLeft .footerContact {
    max-width: 270px;
    margin: 0 auto;
  }
  footer .footerSec .footerLeft .footerContact .contactUl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactAddress {
    position: relative;
    padding-left: 20px;
    text-align: center;
    color: #b7b7b7;
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 230px;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactAddress::before {
    position: absolute;
    content: "\f041";
    font-family: "fontAwesome";
    color: #ffa31e;
    left: 10px;
    font-size: 20px;
    line-height: 20px;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactPhone {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactMail {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactMail a {
    text-align: left;
    color: #b7b7b7;
    font-weight: normal;
    font-size: 16px;
    transition: 0.4s ease-in-out all;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactMail a:hover {
    color: #ffa31e;
  }
  footer .footerSec .footerLeft .footerContact .contactUl li .contactMail::before {
    content: "\f0e0";
    position: absolute;
    font-family: "fontAwesome";
    color: #ffa31e;
    left: 0;
    font-size: 18px;
    line-height: 18px;
  }
  footer .footerSec .footerLeft .socialUl {
    margin-top: 10px;
    justify-content: flex-end;
  }
  footer .footerSec .footerNav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    text-align: center;
  }
  footer .footerSec .footerNav li {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
  footer .footerSec .footerNav li a {
    font-size: 16px;
    text-align: left;
    color: #b7b7b7;
    transition: 0.4s ease-in-out all;
  }
  footer .footerSec .footerNav li a:hover {
    color: #ffa31e;
  }
  footer .footerSec .lowerNav {
    margin-top: 30px;
  }
  footer .footerSec .lowerNav .navTitle {
    text-align: center;
  }
  footer .footerSec .lowerNav .lowerUl {
    list-style-type: none;
    text-align: center;
  }
  footer .footerSec .lowerNav .lowerUl li {
    margin-bottom: 10px;
  }
  footer .footerSec .lowerNav .lowerUl li a {
    font-weight: normal;
    font-size: 16px;
    line-height: 15px;
    text-align: left;
    color: #b7b7b7;
    transition: 0.4s ease-in-out all;
  }
  footer .footerSec .lowerNav .lowerUl li a:hover {
    color: #ffa31e;
  }
  footer .footerCopyright {
    padding: 20px 0;
    background: #003366;
  }
  footer .footerCopyright .copyrightLeft {
    margin-bottom: 10px;
  }
  footer .footerCopyright .copyrightLeft p {
    font-weight: normal;
    font-size: 14px;
    color: #b7b7b7;
    margin-bottom: 0;
    text-align: center;
  }
  footer .footerCopyright .copyrightRight p {
    font-weight: normal;
    font-size: 14px;
    color: #b7b7b7;
    margin-bottom: 0;
    text-align: center;
  }
}

.rowCenter {
  display: flex;
  align-items: center;
}

.mgmbtm40 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .mgmbtm40 {
    margin-bottom: 20px;
  }
}

.vinroxBg {
  position: relative;
}
.vinroxBg::before {
  content: "";
  background: url(../images/vinrox_shape.svg) no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: -25%;
  top: 0;
  z-index: -1;
  background-size: contain;
  max-width: 50%;
}
@media (max-width: 767px) {
  .vinroxBg::before {
    display: none;
  }
}

.yellow_triangle {
  position: relative;
}
.yellow_triangle::before {
  content: "";
  background: url(../images/service_side.svg) no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0%;
  top: 0;
  z-index: -1;
  background-size: contain;
  max-width: 42%;
}
@media (max-width: 991px) {
  .yellow_triangle::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .yellow_triangle .textPara {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .yellow_triangle .titleHead {
    text-align: center;
  }
}

.curveImage img {
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .curveImage {
    max-width: 450px;
    margin: 0 auto 35px;
  }
}
@media (max-width: 767px) {
  .curveImage {
    max-width: 400px;
    margin: 0 auto 30px;
  }
}

.serviceListing {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.serviceListing li {
  flex: 0 0 33.3%;
  max-width: 33.3%;
  padding: 15px;
}
.serviceListing li .serviceBox {
  margin-bottom: 40px;
  display: block;
  transform: translateY(0px);
  transition: 0.4s ease-in-out all;
}
.serviceListing li .serviceBox img {
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  width: 100%;
  transition: 0.4s ease-in-out all;
}
.serviceListing li .serviceBox .textThirty {
  text-align: center;
  color: #000;
  margin-top: 30px;
  margin-bottom: 0px;
  transition: 0.4s ease-in-out all;
  transform: scale(1);
}
.serviceListing li:hover .serviceBox {
  transform: translateY(-10px);
}
.serviceListing li:hover .serviceBox img {
  box-shadow: 0px 10px 30px rgba(255, 198, 114, 0.35);
}
.serviceListing li:hover .serviceBox .textThirty {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .serviceListing li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .serviceListing li .serviceBox {
    margin-bottom: 20px;
  }
  .serviceListing li .serviceBox .textThirty {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .serviceListing li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .serviceListing li .serviceBox {
    max-width: 400px;
    margin: 0 auto;
  }
  .serviceListing li .serviceBox .textThirty {
    margin-top: 15px;
  }
}

.serviceDetailContent {
  margin-top: 25px;
}
.serviceDetailContent .textPara {
  margin-bottom: 25px;
  font-size: 26px;
  line-height: 36px;
  font-weight: 800;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .serviceDetailContent .textPara {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .serviceDetailContent .textPara {
    margin-bottom: 20px;
    font-size: 23px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .serviceDetailContent .textPara {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}
.serviceDetailContent .marginTopTwenty {
  margin-top: 20px;
}
.serviceDetailContent .serviceHead {
  font-size: 22px;
  line-height: 32px;
}
.serviceDetailContent .servicePara {
  font-size: 18px;
  line-height: 30px;
  color: #b7b7b7;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .serviceDetailContent .marginTopTwenty {
    margin-top: 30px;
  }
  .serviceDetailContent .serviceHead {
    font-size: 30px;
    line-height: 36px;
  }
  .serviceDetailContent .servicePara {
    font-size: 25px;
    line-height: 35px;
    color: #b7b7b7;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .serviceDetailContent .marginTopTwenty {
    margin-top: 25px;
  }
  .serviceDetailContent .serviceHead {
    font-size: 25px;
    line-height: 30px;
  }
  .serviceDetailContent .servicePara {
    font-size: 20px;
    line-height: 30px;
    color: #b7b7b7;
  }
}
@media (max-width: 1199px) {
  .serviceDetailContent {
    margin-top: 35px;
  }
}
@media (max-width: 991px) {
  .serviceDetailContent {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .serviceDetailContent {
    margin-top: 20px;
  }
}

.col2 {
  -moz-column-count: 2;
       column-count: 2;
}
@media (max-width: 767px) {
  .col2 {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.aboutCerti .centerHead {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .aboutCerti .centerHead {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .aboutCerti .centerHead {
    margin-bottom: 20px;
  }
}
.aboutCerti .certiBox {
  position: relative;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
}
.aboutCerti .certiBox img {
  width: 100%;
  border-radius: 20px;
}
.aboutCerti .certiBox .fixButton {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
}
.aboutCerti .certiBox .fixButton:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.16);
}
@media (max-width: 991px) {
  .aboutCerti .certiBox {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .aboutCerti .certiBox {
    margin: 0 auto 30px;
    max-width: 400px;
  }
}
.aboutCerti .galleryBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.aboutCerti .galleryBlock li {
  list-style: none;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 15px;
}
.aboutCerti .galleryBlock li a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
  display: block;
  overflow: hidden;
}
.aboutCerti .galleryBlock li a::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  height: 0%;
  margin: auto;
  width: 0%;
  background: rgba(0, 33, 71, 0.3);
  transition: 0.5s;
  z-index: 1;
}
.aboutCerti .galleryBlock li a::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  background: url("../images/zoom.png") center center no-repeat;
  height: 100%;
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  visibility: hidden;
  z-index: 2;
  transition: 1s ease-in-out;
}
.aboutCerti .galleryBlock li a img {
  transition: 0.5s all ease-in-out;
}
.aboutCerti .galleryBlock li a:hover::before {
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
}
.aboutCerti .galleryBlock li a:hover::after {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.aboutCerti .galleryBlock li a:hover img {
  filter: grayscale(1);
  transform: scale(1.1);
}
.aboutCerti .galleryBlock li img {
  width: 100%;
}
@media (max-width: 991px) {
  .aboutCerti .galleryBlock li {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .aboutCerti .galleryBlock li {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .aboutCerti .galleryBlock li .galleryImg {
    max-width: 350px;
    margin: 0 auto 25px;
  }
}
@media (max-width: 450px) {
  .aboutCerti .galleryBlock li .galleryImg {
    max-width: 250px;
    margin: 0 auto 25px;
  }
}

.aboutCeo .ceoImage {
  max-width: 330px;
  margin-top: 0;
  float: left;
  margin-right: 40px;
  margin-bottom: 30px;
}
.aboutCeo .ceoImage img {
  width: 100%;
  border-radius: 20px;
}
.aboutCeo .ceoText h2 {
  color: #444;
  font-style: italic;
  margin-bottom: 15px;
  padding-top: 10px;
}
.aboutCeo .ceoText.ceoTextMg {
  margin-top: 23px;
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .aboutCeo .ceoText.ceoTextMg {
    margin-top: 15px;
  }
}
@media (max-width: 1199px) {
  .aboutCeo .ceoText.ceoTextMg {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .aboutCeo .ceoText.ceoTextMg {
    margin-top: 0;
  }
}
.aboutCeo .ceoText .desktopNone {
  display: none;
}
.aboutCeo .ceoText p {
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #444;
  margin-bottom: 10px;
}
.aboutCeo .ceoText .ceoName {
  margin-top: 20px;
}
.aboutCeo .ceoText .ceoName .nameText {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  text-align: left;
  color: #002147;
  margin-bottom: 5px;
  font-style: normal;
}
.aboutCeo .ceoText .ceoName .namePara {
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  color: #6e6e6e;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .aboutCeo .ceoImage {
    max-width: 450px;
    margin-top: 5px;
  }
  .aboutCeo .ceoText {
    padding-top: 0px;
  }
  .aboutCeo .ceoText p {
    font-size: 23px;
    line-height: 34px;
  }
  .aboutCeo .ceoText .ceoName {
    margin-top: 30px;
  }
  .aboutCeo .ceoText .ceoName .nameText {
    font-size: 30px;
    line-height: 40px;
  }
  .aboutCeo .ceoText .ceoName .namePara {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .aboutCeo .ceoImage {
    max-width: 350px;
  }
  .aboutCeo .ceoText p {
    font-size: 25px;
    line-height: 35px;
  }
  .aboutCeo .ceoText .ceoName {
    margin-top: 20px;
  }
  .aboutCeo .ceoText .ceoName .nameText {
    font-size: 33px;
    line-height: 43px;
  }
  .aboutCeo .ceoText .ceoName .namePara {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 1199px) {
  .aboutCeo .ceoImage {
    max-width: 276px;
  }
  .aboutCeo .ceoText p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .aboutCeo .ceoImage {
    max-width: 250px;
    margin-top: 6px;
  }
  .aboutCeo .ceoText .mobileNone {
    display: none;
  }
  .aboutCeo .ceoText .desktopNone {
    display: block;
  }
  .aboutCeo .ceoText p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .aboutCeo .leftHead .titleHead {
    text-align: center;
  }
  .aboutCeo .ceoImage {
    max-width: 300px;
    float: inherit;
    margin: 0 auto 25px;
  }
  .aboutCeo .ceoText p {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    margin-bottom: 5px;
  }
  .aboutCeo .ceoText .ceoName {
    margin-top: 10px;
  }
  .aboutCeo .ceoText .ceoName .nameText {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .aboutCeo .ceoText .ceoName .namePara {
    font-size: 12px;
    line-height: 18px;
  }
}

.aboutTeam.paddingBottom {
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .aboutTeam.paddingBottom {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .aboutTeam.paddingBottom {
    padding-bottom: 10px;
  }
}
.aboutTeam .teamBox {
  margin-bottom: 40px;
  transform: translateY(0px);
  transition: 0.4s ease-in-out all;
  position: relative;
}
.aboutTeam .teamBox::after {
  position: absolute;
  display: block;
  content: "";
  z-index: 1;
  display: block;
  width: 0;
  height: 3px;
  background: #ffa31e;
  inset: auto auto 0 0;
  transition: width 0.5s ease-in;
}
.aboutTeam .teamBox img {
  width: 100%;
}
.aboutTeam .teamBox .teamImage {
  position: relative;
}
.aboutTeam .teamBox .teamImage::after {
  position: absolute;
  display: block;
  content: "";
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.aboutTeam .teamBox .teamText {
  padding: 20px 40px 20px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.aboutTeam .teamBox .teamText .textPara {
  color: #000;
  margin-bottom: 0;
  text-align: left;
}
.aboutTeam .teamBox .teamText .smallText {
  margin-bottom: 0;
  font-weight: normal;
  font-style: italic;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  color: #000;
}
.aboutTeam .teamBox .teamText::after {
  content: "";
  background: url(../images/arrow-right.png) no-repeat;
  height: 20px;
  width: 15px;
  display: block;
  background-size: contain;
  z-index: 1;
  position: absolute;
  right: 20px;
  bottom: 26px;
  background-position: center bottom;
}
.aboutTeam .teamBox:hover::after {
  width: 100%;
}
.aboutTeam .teamBox:hover .teamImage::after {
  opacity: 1;
}
.aboutTeam .teamBox:hover .teamText {
  background: #000;
}
.aboutTeam .teamBox:hover .teamText .textPara, .aboutTeam .teamBox:hover .teamText .smallText {
  color: #fff;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .aboutTeam .teamBox .teamText .textPara {
    font-size: 25px;
    line-height: 35px;
  }
  .aboutTeam .teamBox .teamText .smallText {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1199px) {
  .aboutTeam .teamBox .teamText {
    padding: 12px;
  }
}
@media (max-width: 767px) {
  .aboutTeam {
    padding-top: 25px;
  }
  .aboutTeam .leftHead .titleHead {
    text-align: center;
  }
  .aboutTeam .teamBox {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .aboutTeam .teamBox .teamText .textPara {
    font-size: 18px;
    line-height: 26px;
  }
  .aboutTeam .teamBox .teamText .smallText {
    font-size: 10px;
    line-height: 16px;
  }
}

.uploadresume .input-group-btn {
  position: absolute;
  right: 0;
}
.uploadresume .btn-file {
  position: relative;
  overflow: hidden;
  border: 1px solid #ced4da;
  border-radius: 6px;
  border-left: 0;
  height: 50px;
  display: flex;
  background: #ffa31e;
  justify-content: center;
  align-items: center;
}
.uploadresume .btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block;
}
.uploadresume input[readonly] {
  background-color: white !important;
  cursor: text !important;
}
.uploadresume .form-control {
  border-right: 0;
}
.uploadresume img {
  height: 25px;
}
.uploadresume .sizeFile {
  float: right;
}

.aboutInfa {
  background: #f2f2f2;
}
.aboutInfa .infaPara p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #444;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .aboutInfa .infaPara p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .aboutInfa .leftHead .titleHead {
    text-align: center;
  }
  .aboutInfa .infaPara p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }
}

.contactSec .reachSide .titleHead {
  margin-bottom: 30px;
}
.contactSec .reachSide .reachLeft .reachContact {
  max-width: 300px;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl {
  list-style-type: none;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl .flabel {
  text-decoration: underline;
  font-size: 16px;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachAddress {
  position: relative;
  padding-left: 25px;
  text-align: left;
  color: #444;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 24px;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachAddress::before {
  position: absolute;
  content: "\f041";
  font-family: "fontAwesome";
  color: #ffa31e;
  left: 0;
  font-size: 20px;
  line-height: 20px;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachPhone {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachPhone a {
  text-align: left;
  color: #444;
  font-weight: normal;
  font-size: 16px;
  transition: 0.4s ease-in-out all;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachPhone a:hover {
  color: #ffa31e;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachPhone::before {
  content: "\f095";
  position: absolute;
  font-family: "fontAwesome";
  color: #ffa31e;
  left: 0;
  font-size: 18px;
  line-height: 18px;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachMail {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachMail a {
  text-align: left;
  color: #444;
  font-weight: normal;
  font-size: 16px;
  transition: 0.4s ease-in-out all;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachMail a:hover {
  color: #ffa31e;
}
.contactSec .reachSide .reachLeft .reachContact .reachUl li .reachMail::before {
  content: "\f0e0";
  position: absolute;
  font-family: "fontAwesome";
  color: #ffa31e;
  left: 0;
  font-size: 18px;
  line-height: 18px;
}
.contactSec .reachSide .reachLeft .socialUl {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 25px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.contactSec .reachSide .reachLeft .socialUl li .socialIcon {
  height: 30px;
  width: 30px;
  background-color: #ffa31e;
  position: relative;
  border-radius: 50%;
  transition: 0.4s ease-in-out all;
  transform: scale(1);
}
.contactSec .reachSide .reachLeft .socialUl li .socialIcon i {
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactSec .reachSide .reachLeft .socialUl li .socialIcon:hover {
  transform: scale(1.1);
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .contactSec .reachSide .reachLeft .reachContact {
    max-width: 300px;
  }
  .contactSec .reachSide .reachLeft .reachContact .reachUl li .reachAddress {
    font-size: 20px;
    line-height: 30px;
  }
  .contactSec .reachSide .reachLeft .reachContact .reachUl li .reachPhone a {
    font-size: 20px;
    line-height: 30px;
  }
  .contactSec .reachSide .reachLeft .reachContact .reachUl li .reachMail a {
    font-size: 20px;
    line-height: 30px;
  }
  .contactSec .reachSide .reachLeft .reachContact .socialUl li .socialIcon {
    height: 35px;
    width: 35px;
  }
}
@media (max-width: 991px) {
  .contactSec .reachSide .reachLeft .reachContact .socialUl {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .contactSec .reachSide {
    margin-bottom: 40px;
  }
  .contactSec .reachSide .titleHead {
    margin-bottom: 20px;
  }
  .contactSec .reachSide .reachLeft .reachContact {
    max-width: 100%;
  }
  .contactSec .reachSide .reachLeft .reachContact .socialUl {
    margin-top: 25px;
  }
}
@media (max-width: 450px) {
  .contactSec .reachSide .titleHead {
    margin-bottom: 20px;
  }
  .contactSec .reachSide .reachLeft .reachContact {
    max-width: 270px;
  }
  .contactSec .reachSide .reachLeft .reachContact .socialUl {
    margin-top: 25px;
  }
}
.contactSec .mailSide .titleHead {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .contactSec .mailSide .titleHead {
    margin-bottom: 20px;
  }
}

.inquiryForm .form-group {
  margin-bottom: 20px;
}
.inquiryForm .form-group select {
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #444;
  line-height: 24px;
}
.inquiryForm .form-group select option {
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #444;
  line-height: 24px;
}
.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: #f2940d;
  border-radius: 0 20px 20px 0;
}
.inquiryForm .form-group .roboto label.text-right img {
  border-radius: 0 20px 20px 0;
}
.inquiryForm .form-group .form-control {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #c1c1c1;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.1);
  padding: 12px 15px;
  transition: 0.4s ease-in-out all;
  border-radius: 20px !important;
}
.inquiryForm .form-group .form-control:focus, .inquiryForm .form-group .form-control:hover {
  color: #212529;
  outline: 0;
}
.inquiryForm .form-group .form-control::-moz-placeholder {
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #444;
  line-height: 24px;
}
.inquiryForm .form-group .form-control::placeholder {
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #444;
  line-height: 24px;
}
.inquiryForm .form-group label.error {
  font-size: 14px;
  padding-left: 15px;
}
.inquiryForm .form-group textarea.form-control {
  height: calc(6.5rem + 2px);
}
.inquiryForm .defaultButton {
  padding: 8px 50px;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .inquiryForm .inquiryHead {
    font-size: 100px;
    line-height: 83px;
  }
}
@media (max-width: 991px) {
  .inquiryForm .inquiryHead {
    font-size: 80px;
    line-height: 71px;
  }
}
@media (max-width: 767px) {
  .inquiryForm .inquiryHead {
    font-size: 60px;
    line-height: 51px;
    margin-bottom: 20px;
  }
}

.contactMap {
  margin-bottom: -7px;
}

.printed_circuits {
  padding: 65px 0 30px;
}
@media (max-width: 991px) {
  .printed_circuits {
    padding: 50px 0 0;
  }
}
@media (max-width: 767px) {
  .printed_circuits {
    padding: 40px 0 0;
  }
}
@media (max-width: 450px) {
  .printed_circuits {
    padding: 30px 0 0;
  }
}
.printed_circuits .row {
  align-items: center;
}
.printed_circuits .printed_circuits_box {
  max-width: 700px;
  padding-right: 30px;
}
.printed_circuits .printed_circuits_box img {
  border-radius: 20px;
}
.printed_circuits .printed_circuits_text {
  min-height: auto;
}
.printed_circuits .printed_circuits_text p {
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .printed_circuits .printed_circuits_box {
    max-width: 100%;
  }
  .printed_circuits .printed_circuits_text p {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .printed_circuits .printed_circuits_box {
    max-width: 850px;
  }
}
@media (max-width: 1199px) {
  .printed_circuits .printed_circuits_box {
    max-width: 650px;
  }
  .printed_circuits .printed_circuits_text p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .printed_circuits .leftHead .titleHead {
    text-align: center;
  }
  .printed_circuits .printed_circuits_box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px !important;
    padding-right: 0px !important;
  }
  .printed_circuits .printed_circuits_text {
    margin-top: 3%;
    min-height: auto;
  }
  .printed_circuits .printed_circuits_text p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .printed_circuits .leftHead .titleHead {
    text-align: center;
  }
  .printed_circuits .printed_circuits_box {
    max-width: 400px;
    margin: 0 auto;
  }
  .printed_circuits .printed_circuits_text {
    margin-top: 3%;
    min-height: auto;
  }
  .printed_circuits .printed_circuits_text p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}

.printed_list .serviceDetailContent {
  margin-top: 0;
}
.printed_list .serviceDetailContent .serviceHead {
  font-weight: 600;
}
.printed_list p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: #444;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .printed_list p {
    font-size: 25px;
    line-height: 35px;
  }
  .printed_list p.textThirty {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .printed_list p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .printed_list p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .printed_list p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .printed_list p {
    font-size: 16px;
    line-height: 24px;
  }
}
.printed_list .col-lg-4, .printed_list .col-md-6 {
  padding-bottom: 30px;
}
.printed_list .printed_list_box {
  padding: 25px;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 20px;
  margin-bottom: 0px;
  height: 100%;
  margin-top: 20px;
}
.printed_list .printed_list_box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10px;
  background: #ffa31e;
  border-radius: 20px 20px 0 0px;
}
.printed_list .printed_list_box .textPara {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 20px;
}
.printed_list .printed_list_box .bullets li {
  font-size: 15px;
  line-height: 20px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .printed_list .printed_list_box {
    margin-top: 30px;
  }
  .printed_list .printed_list_box .bullets li {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .printed_list .row {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .printed_list .printed_list_box {
    max-width: 350px;
    margin: 30px auto 30px;
  }
  .printed_list .printed_list_box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 7px;
    background: #ffa31e;
    border-radius: 20px 20px 0 0px;
  }
  .printed_list .printed_list_box .textPara {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .printed_list .printed_list_box .bullets li {
    font-size: 13px;
    line-height: 19px;
  }
}

.gallerySection .galleryBlock {
  display: flex;
  flex-wrap: wrap;
}
.gallerySection .galleryBlock li {
  list-style: none;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 15px;
}
.gallerySection .galleryBlock li a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
  display: block;
  overflow: hidden;
}
.gallerySection .galleryBlock li a::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  height: 0%;
  margin: auto;
  width: 0%;
  background: rgba(0, 33, 71, 0.3);
  transition: 0.5s;
  z-index: 1;
}
.gallerySection .galleryBlock li a::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  background: url("../images/zoom.png") center center no-repeat;
  height: 100%;
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  visibility: hidden;
  z-index: 2;
  transition: 1s ease-in-out;
}
.gallerySection .galleryBlock li a img {
  transition: 0.5s all ease-in-out;
}
.gallerySection .galleryBlock li a:hover::before {
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
}
.gallerySection .galleryBlock li a:hover::after {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.gallerySection .galleryBlock li a:hover img {
  filter: grayscale(1);
  transform: scale(1.1);
}
.gallerySection .galleryBlock li img {
  width: 100%;
}
@media (max-width: 991px) {
  .gallerySection .galleryBlock li {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 8px;
  }
}
@media (max-width: 575px) {
  .gallerySection .galleryBlock li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.brochureSection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.brochureSection .boxBrochure {
  list-style: none;
  flex: 0 0 30%;
  max-width: 30%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 55px rgba(128, 88, 88, 0.36);
  margin: 0px 15px 40px;
  transform: translateY(0px);
  transition: 0.4s ease-in-out all;
}
.brochureSection .boxBrochure img {
  max-height: 100px;
}
.brochureSection .boxBrochure .brochureLink {
  padding: 30px;
  width: 100%;
  display: block;
}
.brochureSection .boxBrochure .brochureContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.brochureSection .boxBrochure .brochureContent p {
  margin-bottom: 0px;
  max-width: 325px;
  font-size: 17px;
  line-height: 27px;
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .brochureSection .boxBrochure .brochureContent p {
    font-size: 20px;
    line-height: 30px;
  }
}
.brochureSection .boxBrochure:hover {
  transform: translateY(-10px);
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .brochureSection .boxBrochure .brochureLink {
    padding: 40px;
  }
  .brochureSection .boxBrochure .brochureContent .textPara {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .brochureSection .boxBrochure {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .brochureSection .boxBrochure .brochureContent {
    flex-wrap: nowrap;
    padding-top: 15px;
  }
  .brochureSection .boxBrochure .brochureLink img {
    max-width: 40px;
  }
}
@media (max-width: 767px) {
  .brochureSection .boxBrochure {
    flex: 0 0 45%;
    max-width: 45%;
    margin: 0px 10px 30px;
  }
}
@media (max-width: 450px) {
  .brochureSection .boxBrochure {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .brochureSection .boxBrochure .brochureLink img {
    max-width: 40px;
  }
}

.careerForm {
  background: #f2f2f2;
  position: relative;
}
.careerForm::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  top: 0;
  right: -29%;
  background-image: url("../images/electronic_side.svg");
  background-position: right;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.careerForm .careerImage {
  position: relative;
  z-index: 1;
  margin-top: 30%;
}
.careerForm .careerImage img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
}
.careerForm .inquiryForm {
  max-width: 650px;
  position: relative;
  z-index: 1;
}
.careerForm .inquiryForm .uploadresume {
  position: relative;
}
.careerForm .inquiryForm .uploadresume label.error {
  position: absolute;
  bottom: -25px;
  left: 0;
}
.careerForm .inquiryForm .uploadresume .input-group .form-control:focus {
  box-shadow: none;
}
.careerForm .inquiryForm .uploadresume i {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}
.careerForm .inquiryForm .uploadresume .input-group-btn {
  position: absolute;
  right: 0;
  top: 0px;
  height: 100%;
  z-index: 3;
}
.careerForm .inquiryForm .uploadresume label.error {
  top: 100% !important;
}
.careerForm .inquiryForm .btn-file {
  position: relative;
  overflow: hidden;
}
.careerForm .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;
  cursor: inherit;
  display: block;
}
.careerForm .inquiryForm .career_btn {
  display: flex;
  align-items: center;
  height: 100%;
  background: transparent;
  border-radius: 6px;
  padding: 5px 15px;
}
.careerForm .inquiryForm .career_btn img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.careerForm .inquiryForm .defaultButton {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .careerForm .inquiryForm .defaultButton {
    margin-top: 7px;
  }
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .careerForm::after {
    right: -32%;
  }
  .careerForm .careerImage {
    max-width: 400px;
    margin: 26% auto 0;
  }
  .careerForm .careerImage img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .careerForm .inquiryForm {
    max-width: 900px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .careerForm::after {
    right: -26%;
  }
  .careerForm .careerImage {
    margin-top: 26%;
  }
  .careerForm .careerImage img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .careerForm .inquiryForm {
    max-width: 760px;
  }
}
@media (max-width: 1199px) {
  .careerForm::after {
    right: -22%;
  }
  .careerForm .careerImage {
    margin-top: 33%;
  }
  .careerForm .careerImage img {
    height: 390px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .careerForm .inquiryForm {
    max-width: 580px;
  }
}
@media (max-width: 991px) {
  .careerForm::after {
    right: -22%;
  }
  .careerForm .careerImage {
    position: absolute;
    margin-top: 7%;
    max-width: 370px;
  }
  .careerForm .inquiryForm {
    max-width: 370px;
  }
}
@media (max-width: 767px) {
  .careerForm::after {
    display: none;
  }
  .careerForm .titleHead {
    text-align: center;
  }
  .careerForm .inquiryForm {
    max-width: 430px;
    margin: 0 auto;
  }
  .careerForm .careerImage {
    position: relative;
    max-width: 450px;
    margin: 8% auto 0;
  }
}

.hmServe {
  background-color: #E6E6E6;
}
@media (max-width: 991px) {
  .hmServe {
    margin-top: 0;
  }
}
.hmServe .titleHead {
  text-align: center;
}
.hmServe .serveList {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.hmServe .serveList li {
  flex: 0 0 25%;
  padding: 0 10px;
}
.hmServe .serveList li .serveBox {
  position: relative;
  z-index: 1;
  padding: 25px 20px;
  border-radius: 20px;
  margin-bottom: 25px;
  background: #002147;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.16);
  transition: all 0.4s ease-out;
}
.hmServe .serveList li .serveBox::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #EAAC54 52%, #F2940D 53%);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
  border-radius: 20px;
}
.hmServe .serveList li .serveBox .imgWhite {
  display: block;
  transition: all 0.4s ease-out;
  opacity: 0.8;
}
.hmServe .serveList li .serveBox .imgBlack {
  display: none;
  transition: all 0.4s ease-out;
}
.hmServe .serveList li .serveBox p {
  color: #b7b7b7;
  margin: 10px 0 0;
  transition: 0.4s ease-in-out all;
  font-size: 20px;
  line-height: 25px;
}
.hmServe .serveList li .serveBox:hover {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$orangeColor", endColorstr="#ffb13e",GradientType=1 );
}
.hmServe .serveList li .serveBox:hover::before {
  opacity: 1;
}
.hmServe .serveList li .serveBox:hover .imgWhite {
  display: block;
  opacity: 1;
}
.hmServe .serveList li .serveBox:hover .imgBlack {
  display: none;
}
.hmServe .serveList li .serveBox:hover p {
  color: #fff;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .hmServe .serveList {
    margin-top: 70px;
  }
  .hmServe .serveList li .serveBox {
    padding: 40px 20px;
  }
  .hmServe .serveList li .serveBox p {
    font-size: 30px;
    line-height: 36px;
    padding: 20px 0 0;
  }
}
@media (max-width: 1199px) {
  .hmServe .serveList li {
    flex: 0 0 33.33%;
  }
}
@media (max-width: 991px) {
  .hmServe .serveList li {
    flex: 0 0 50%;
  }
  .hmServe .serveList li .serveBox {
    padding: 30px 20px;
  }
  .hmServe .serveList li .serveBox p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .hmServe .serveList li {
    flex: 0 0 100%;
  }
  .hmServe .serveList li .serveBox {
    max-width: 300px;
    margin: 0 auto 30px;
    padding: 30px 20px;
  }
  .hmServe .serveList li .serveBox p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 450px) {
  .hmServe .serveList li .serveBox p {
    font-size: 16px;
    line-height: 22px;
  }
}

.whySection {
  background-color: #fff;
}
.whySection.yellowBack {
  background-color: #f2f2f2;
}
.whySection .whyInfo .desktopImg {
  display: block;
}
.whySection .whyInfo .mobileImg {
  display: none;
}
@media (max-width: 575px) {
  .whySection .whyInfo .desktopImg {
    display: none;
  }
  .whySection .whyInfo .mobileImg {
    display: block;
    max-width: 350px;
    margin: 0 auto;
  }
}

.inquiryBox.floating_btn {
  position: fixed;
  bottom: 135px;
  right: 30px;
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
@media (max-width: 991px) {
  .inquiryBox.floating_btn {
    bottom: 50px;
  }
}
@media (max-width: 767px) {
  .inquiryBox.floating_btn {
    bottom: 0;
  }
}

.inquiryBox .contact_icon {
  font-size: 27px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
  background-color: #ffa31e;
  border-radius: 15px;
  position: fixed;
  right: 25px;
  transform: translateY(-50%);
  z-index: 9;
  width: 90px;
  padding: 10px 1px;
}
.inquiryBox .contact_icon::before {
  content: "";
  width: 0;
  height: 0;
  border-right: 15px solid #ffa31e;
  border-top: 17px solid transparent;
  border-bottom: 30px solid transparent;
  position: absolute;
  bottom: -25px;
  left: 60%;
  transform: translateX(-50%) rotate(40deg);
}
@media (max-width: 767px) {
  .inquiryBox .contact_icon {
    right: 0;
    width: 100%;
    border-radius: 0px;
    padding: 6px !important;
  }
  .inquiryBox .contact_icon p {
    max-width: 100% !important;
    font-size: 12px;
    line-height: 14px;
  }
  .inquiryBox .contact_icon::before {
    display: none;
  }
}

.inquiryBox .contact_icon p {
  margin-bottom: 0;
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  max-width: 60px;
}

.newsLetter {
  padding: 35px 0;
  background: #ffa31e;
}
.newsLetter .titleHead {
  font-weight: 100;
  color: #002147;
}
.newsLetter .nlUl {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.newsLetter .nlUl li:first-child {
  flex: 0 0 70%;
}
.newsLetter .nlUl li:last-child {
  flex: 0 0 30%;
  text-align: right;
}
.newsLetter .nlUl li .titleHead {
  margin-bottom: 0;
}
.newsLetter .nlUl li .defaultButton {
  background-color: #565656;
  color: #fff;
}
.newsLetter .nlUl li .defaultButton:hover {
  background-color: #000;
}
.newsLetter .nlUl li .inquiryForm .form-group {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .newsLetter .nlUl li .inquiryForm .form-group {
    width: 350px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 360px) {
  .newsLetter .nlUl li .inquiryForm .form-group {
    width: 300px;
    margin: 0 auto;
  }
}
.newsLetter .nlUl li .inquiryForm .uploadresume .input-group-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 50px;
  z-index: 3;
  width: 50px;
}
.newsLetter .nlUl li .inquiryForm .uploadresume .input-group-btn .blackBtn {
  background: #000000;
  border-radius: 0 20px 20px 0;
  justify-content: center;
  padding: 0.75rem 0.75rem;
}
@media (max-width: 991px) {
  .newsLetter {
    padding: 30px 0;
  }
  .newsLetter .nlUl li:first-child {
    flex: 0 0 100%;
  }
  .newsLetter .nlUl li:last-child {
    flex: 0 0 100%;
    text-align: center;
  }
  .newsLetter .nlUl li .titleHead {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .newsLetter {
    padding: 30px 0;
  }
  .newsLetter .nlUl li:first-child {
    flex: 0 0 100%;
  }
  .newsLetter .nlUl li:last-child {
    flex: 0 0 100%;
    text-align: center;
  }
  .newsLetter .nlUl li .titleHead {
    margin-bottom: 20px;
    text-align: center;
  }
}

.modal {
  z-index: 1111;
}
.modal .modal-dialog {
  max-width: 650px;
}
.modal .modal-dialog .modal-body {
  padding: 30px 15px 35px;
}
@media (max-width: 767px) {
  .modal .modal-dialog {
    max-width: 500px;
  }
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}

@media (max-width: 991px) {
  .marginAbout {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .marginAbout {
    margin-top: 45px;
  }
}
@media (max-width: 575px) {
  .marginAbout {
    margin-top: 50px;
  }
}

.teamModal .modal-dialog {
  max-width: 950px;
}
.teamModal .modal-dialog .modal-content {
  border-radius: 20px;
}
.teamModal .modal-dialog .modal-header {
  padding: 0;
  border-bottom: none;
}
.teamModal .modal-dialog .modal-header .btn-close {
  padding: 0.75rem;
  margin: 0 0 0 auto;
}
.teamModal .modal-dialog .modal-body {
  padding: 0px 15px 15px;
}
.teamModal .modal-dialog .modal-body .modalBoximg img {
  width: 100%;
}
.teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead .textHead {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 0;
  color: #000;
}
.teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead .textPara {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 700;
}
.teamModal .modal-dialog .modal-body .teamModalbox .boxTextPara .textPara {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .teamModal .modal-dialog {
    max-width: 1200px;
  }
  .teamModal .modal-dialog .modal-body {
    padding: 0px 25px 15px;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead .textHead {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 5px;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead .textPara {
    font-size: 18px;
    line-height: 26px;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextPara .textPara {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .teamModal .modal-dialog {
    max-width: 630px;
    margin: 0 auto;
  }
  .teamModal .modal-dialog .modal-body .modalBoximg {
    max-width: 350px;
    margin: 0 auto;
  }
  .teamModal .modal-dialog .modal-body .modalBoximg img {
    width: 100%;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead {
    margin-top: 15px;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead .textHead {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 5px;
    text-align: center;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead .textPara {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextPara .textPara {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
}
@media (max-width: 450px) {
  .teamModal .modal-dialog {
    max-width: 100%;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead {
    margin-top: 15px;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead .textHead {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextHead .textPara {
    font-size: 12px;
    line-height: 18px;
  }
  .teamModal .modal-dialog .modal-body .teamModalbox .boxTextPara .textPara {
    font-size: 14px;
    line-height: 20px;
  }
}

.newsBread {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 500px;
  margin: 0 0 20px;
}
.newsBread li {
  margin: 0 10px;
}
.newsBread li .breadBtn {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}
.newsBread li .breadBtn.colorOrange {
  color: #f2940d;
}
.newsBread li a {
  color: #000;
  font-weight: 500;
  transition: 0.4s ease-in-out all;
}
.newsBread li span {
  color: #f2940d;
}
.newsBread li:hover a, .newsBread li.active a {
  color: #f2940d;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .newsBread li .breadBtn {
    font-size: 20px;
    line-height: 24px;
  }
  .newsBread li span {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .newsBread {
    margin: 0 6% 20px;
  }
}
@media (max-width: 450px) {
  .newsBread {
    margin: 0 0 20px;
  }
  .newsBread li {
    margin: 0 5px;
  }
}

.newsSlider {
  margin: 0 -15px;
}
.newsSlider .slick-track {
  margin-left: 0 !important;
}
@media (max-width: 767px) {
  .newsSlider {
    margin: 0px;
  }
}

.caseStudies #accordionId .accordion-item .accordion-header .accordion-button {
  border-radius: 10px 10px 0 0;
  background: #002147;
}
.caseStudies #accordionId .accordion-item .accordion-header .accordion-button::after {
  right: 20px;
  top: 20px;
  background-color: transparent;
  box-shadow: none;
}
.caseStudies #accordionId .accordion-item .accordion-header .accordion-button.collapsed {
  background: #002147;
  color: #fff;
}
.caseStudies #accordionId .accordion-item .accordion-collapse .accordion-body {
  max-width: 100%;
  background: rgba(0, 33, 71, 0.05);
  border-radius: 0 0 10px 10px;
  padding: 30px;
}
.caseStudies #accordionId .accordion-item .accordion-collapse .accordion-body .accordion-ul li {
  line-height: 22px;
}
.caseStudies #accordionId .accordion-item .accordion-collapse .accordion-body .accordion-ul li strong {
  color: #000;
}
@media (min-width: 1900px) and (max-width: 2500px) {
  .caseStudies #accordionId .accordion-item .accordion-header .accordion-button {
    height: 80px;
  }
  .caseStudies #accordionId .accordion-item .accordion-header .accordion-button::after {
    right: 10px;
    top: 15px;
  }
  .caseStudies #accordionId .accordion-item .accordion-collapse .accordion-body .accordion-ul li {
    line-height: 25px;
  }
}

.topSpace {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .topSpace {
    margin-top: 0;
    padding: 0;
    text-align: center;
  }
  .topSpace.textPara {
    text-align: center;
  }
}

.sideSocial {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 1;
}
.sideSocial li a {
  background: #fff;
  padding: 10px 15px;
  display: inline-block;
  width: 100%;
  border-radius: 10px 0 0 10px;
  transition: 0.4s ease-in-out all;
}
.sideSocial li a.twitter {
  background-color: #2CA8D2;
}
.sideSocial li a.twitter i {
  color: #fff;
  transition: 0.4s ease-in-out all;
}
.sideSocial li a.twitter:hover {
  background-color: #fff;
}
.sideSocial li a.twitter:hover i {
  color: #2CA8D2;
}
.sideSocial li a.instagram {
  background: linear-gradient(45deg, #FFD600, #FF7A00, #FF0069, #D300C5, #7638FA);
}
.sideSocial li a.instagram i {
  color: #fff;
  transition: 0.4s ease-in-out all;
}
.sideSocial li a.instagram:hover {
  background: #fff;
}
.sideSocial li a.instagram:hover i {
  color: #7638FA;
}
.sideSocial li a.facebook {
  background-color: #3b5998;
}
.sideSocial li a.facebook i {
  color: #fff;
  transition: 0.4s ease-in-out all;
}
.sideSocial li a.facebook:hover {
  background-color: #fff;
}
.sideSocial li a.facebook:hover i {
  color: #3b5998;
}
.sideSocial li a.youtube {
  background-color: #CD201F;
}
.sideSocial li a.youtube i {
  color: #fff;
  transition: 0.4s ease-in-out all;
}
.sideSocial li a.youtube:hover {
  background-color: #fff;
}
.sideSocial li a.youtube:hover i {
  color: #CD201F;
}
.sideSocial li a.linkedin {
  background-color: #0A66C2;
}
.sideSocial li a.linkedin i {
  color: #fff;
  transition: 0.4s ease-in-out all;
}
.sideSocial li a.linkedin:hover {
  background-color: #fff;
}
.sideSocial li a.linkedin:hover i {
  color: #0A66C2;
}
.sideSocial li a.whatsapp {
  background-color: #2fc965;
}
.sideSocial li a.whatsapp i {
  color: #fff;
  transition: 0.4s ease-in-out all;
}
.sideSocial li a.whatsapp:hover {
  background-color: #fff;
}
.sideSocial li a.whatsapp:hover i {
  color: #2fc965;
}
.sideSocial li a i {
  color: #fff;
}
@media (max-width: 1199px) {
  .sideSocial li a {
    padding: 8px 12px;
    transform: translateX(2px);
  }
}
@media (max-width: 991px) {
  .sideSocial li a {
    padding: 5px 7px;
    transform: translateX(2px);
  }
}

.searchicon i::before {
  font-size: 20px;
  color: #fff;
  padding-left: 15px;
}

#toTop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #ffa31e;
  color: #000;
  text-align: center;
  padding: 5px;
  position: fixed;
  bottom: 50px;
  right: 30px;
  cursor: pointer;
  display: none;
  font-size: 26px;
  line-height: 26px;
  z-index: 9;
}

.search-icon {
  color: white;
  cursor: pointer;
}

#searchInput {
  padding: 10px;
  border: transparent;
  border-radius: 5px;
  position: absolute;
  top: 0px;
  right: 25px;
  width: 40%;
}

.hidden {
  display: none;
}

.search-container {
  display: flex;
  flex-direction: row-reverse;
}

.deskNone {
  display: none;
}
@media (max-width: 767px) {
  .deskNone {
    display: block;
  }
}

.mobileNone {
  display: block;
}
@media (max-width: 767px) {
  .mobileNone {
    display: none;
  }
}

.aboutusMission {
  background-color: #132a45;
  color: white;
  overflow: hidden;
}
.aboutusMission .aboutvisioncard {
  position: relative;
  text-align: left;
}
@media (max-width: 767px) {
  .aboutusMission .aboutvisioncard {
    text-align: center;
  }
}
.aboutusMission .aboutvisioncard::before {
  content: " ";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 100px;
  background: white;
  top: 33%;
  left: -8%;
}
@media (min-width: 1800px) and (max-width: 1899px) {
  .aboutusMission .aboutvisioncard::before {
    top: 39%;
  }
}
@media (max-width: 991px) {
  .aboutusMission .aboutvisioncard::before {
    left: -30%;
  }
}
@media (max-width: 767px) {
  .aboutusMission .aboutvisioncard::before {
    display: none;
  }
}
.aboutusMission .aboutvisioncard::after {
  content: " ";
  position: absolute;
  height: 1px;
  width: 100%;
  background: white;
  top: 38%;
  left: -108%;
}
@media (min-width: 1800px) and (max-width: 1899px) {
  .aboutusMission .aboutvisioncard::after {
    top: 44%;
  }
}
@media (max-width: 991px) {
  .aboutusMission .aboutvisioncard::after {
    left: -129%;
  }
}
@media (max-width: 767px) {
  .aboutusMission .aboutvisioncard::after {
    display: none;
  }
}
.aboutusMission .aboutvisioncard p {
  color: white;
}
@media (max-width: 767px) {
  .aboutusMission .aboutvisioncard p {
    text-align: center;
  }
}
.aboutusMission .aboutvisioncard img {
  padding-bottom: 10px;
}
.aboutusMission .aboutmissioncard {
  position: relative;
  margin-top: 150px;
  text-align: right;
}
@media (max-width: 767px) {
  .aboutusMission .aboutmissioncard {
    margin-top: 0;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .aboutusMission .aboutmissioncard {
    margin-top: 35px;
  }
}
.aboutusMission .aboutmissioncard p {
  color: white;
  text-align: right !important;
}
@media (max-width: 767px) {
  .aboutusMission .aboutmissioncard p {
    text-align: center !important;
  }
}
.aboutusMission .aboutmissioncard::before {
  content: " ";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 100px;
  background: white;
  bottom: 33%;
  right: -12%;
}
@media (min-width: 1800px) and (max-width: 1899px) {
  .aboutusMission .aboutmissioncard::before {
    bottom: 47%;
  }
}
@media (max-width: 1199px) {
  .aboutusMission .aboutmissioncard::before {
    bottom: 51%;
  }
}
@media (max-width: 991px) {
  .aboutusMission .aboutmissioncard::before {
    right: -30%;
  }
}
@media (max-width: 767px) {
  .aboutusMission .aboutmissioncard::before {
    display: none;
  }
}
.aboutusMission .aboutmissioncard::after {
  content: " ";
  position: absolute;
  height: 1px;
  width: 100%;
  background: white;
  top: 62%;
  right: -111%;
}
@media (min-width: 1800px) and (max-width: 1899px) {
  .aboutusMission .aboutmissioncard::after {
    top: 48%;
  }
}
@media (max-width: 1199px) {
  .aboutusMission .aboutmissioncard::after {
    top: 44%;
  }
}
@media (max-width: 991px) {
  .aboutusMission .aboutmissioncard::after {
    right: -128%;
  }
}
@media (max-width: 767px) {
  .aboutusMission .aboutmissioncard::after {
    display: none;
  }
}
.aboutusMission .aboutmissioncard img {
  padding-bottom: 10px;
}

.milstone {
  background-color: #f2f2f2;
}
.milstone .textPara {
  text-align: center;
}

.whatwedo .defaultButton {
  color: white;
  background-color: #132a45;
}
.whatwedo .whatwedoImg {
  margin: auto;
}
.whatwedo .whatwedoImg img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .whatwedo .whatwedoImg {
    margin-top: 30px;
  }
}

.whatsnext {
  background: #f2f2f2;
  text-align: center;
}
.whatsnext .defaultButton {
  color: white;
  background-color: #132a45;
  margin-top: 20px;
}
.whatsnext .titleHead {
  text-align: center;
  margin-bottom: 20px;
  max-width: 1000px;
  margin: 12px auto;
}
.whatsnext .infaPara {
  text-align: center;
  font-size: 22px;
  line-height: 32px;
  max-width: 1000px;
  margin: 12px auto;
}
@media (max-width: 991px) {
  .whatsnext .infaPara {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .whatsnext .infaPara {
    font-size: 16px;
    line-height: 24px;
  }
}

.componentdetails .contentBox {
  margin: 20px 0px;
  font-size: 20px;
  line-height: 30px;
}
.componentdetails .contentBox h2 {
  margin-bottom: 20px;
}
.componentdetails .contentBox ul {
  list-style: none;
  margin-bottom: 20px;
}
.componentdetails .contentBox ul li {
  padding-left: 20px;
  position: relative;
  font-size: 20px;
  line-height: 25px;
  color: #444;
  margin-bottom: 10px;
}
.componentdetails .contentBox ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #444;
  border-radius: 50%;
}
.componentdetails .contentBox ul li ul {
  padding-top: 10px;
  padding-left: 30px;
}
.componentdetails .contentBox ul li ul li {
  list-style: circle;
  padding: 0px;
}
.componentdetails .contentBox ul li ul li::before {
  display: none;
}
@media (max-width: 991px) {
  .componentdetails .contentBox {
    padding: 10px 0px;
    margin: 0px;
  }
  .componentdetails .contentBox h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .componentdetails .contentBox ul li {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .componentdetails .contentBox h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .componentdetails .contentBox ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 6px;
  }
}

.industryDetail {
  display: flex;
  margin-top: 50px;
  border-radius: 20px;
  box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.16);
}
.industryDetail .contentBox {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 30px 50px;
  margin: 0 !important;
}
.industryDetail .contentBox:nth-child(2) {
  border-left: 1px solid #e3e3e3;
}
@media (max-width: 991px) {
  .industryDetail .contentBox {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .industryDetail {
    flex-wrap: wrap;
  }
  .industryDetail .contentBox {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid #e3e3e3;
  }
  .industryDetail .contentBox:nth-child(2) {
    border: 0px;
  }
}

.tabdetailContent {
  margin-top: 50px;
}
.tabdetailContent .nav-tabs {
  list-style: none;
  justify-content: flex-start;
}
.tabdetailContent .nav-tabs li.nav-item {
  list-style: none;
}
.tabdetailContent .nav-tabs li.nav-item .nav-link {
  font-size: 24px;
  line-height: 30px;
  color: #000;
  border-radius: 10px 10px 0px 0px;
  padding: 15px 30px;
  border-color: #dee2e6 #dee2e6 transparent;
  margin: 0 5px;
}
.tabdetailContent .nav-tabs li.nav-item .nav-link.active {
  background: #002147;
  color: #fff;
  border-color: #002147 #002147 transparent;
}
@media (max-width: 991px) {
  .tabdetailContent .nav-tabs li.nav-item .nav-link {
    font-size: 18px;
    line-height: 24px;
    padding: 10px 20px;
  }
}
.tabdetailContent .tab-content {
  padding: 20px;
}

.industryListing {
  display: flex;
  flex-wrap: wrap;
}
.industryListing li {
  flex: 0 0 33.3%;
  max-width: 33.3%;
  padding: 15px;
}
.industryListing li .industryBox {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  margin: 0;
  transform: translateY(0px);
  transition: 0.4s ease-in-out all;
  position: relative;
  display: block;
  overflow: hidden;
}
.industryListing li .industryBox img {
  width: 100%;
}
.industryListing li .industryBox::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42.56%, #002147 102.55%);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  bottom: 0;
}
.industryListing li .industryBox p {
  position: absolute;
  color: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 20px;
  margin: 0;
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 1199px) {
  .industryListing li .industryBox p {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .industryListing li {
    padding: 10px;
  }
  .industryListing li .industryBox p {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .industryListing li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.sealSec .row {
  align-items: center;
}
.sealSec p {
  margin-bottom: 0;
}
.sealSec .sealTxt {
  padding-left: 40px;
}
.sealSec .sealTxt .sectionTitle {
  font-weight: 600;
}
.sealSec .sealTxt .smallTxt {
  color: #292929;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 0;
}
.sealSec .sealTxt .sealBx {
  margin-top: 30px;
}
.sealSec .sealTxt .sealBx h3 {
  margin: 20px 0 5px;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #0A66C2;
}
@media (max-width: 1199px) {
  .sealSec .sealTxt .smallTxt {
    font-size: 18px;
    line-height: 26px;
  }
  .sealSec .sealTxt .sealBx {
    margin-top: 20px;
  }
  .sealSec .sealTxt .sealBx h3 {
    margin: 15px 0 5px;
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .sealSec .sealImg {
    max-width: 250px;
    margin: 0 auto 25px;
  }
  .sealSec .sealTxt {
    text-align: center;
    padding: 0;
  }
  .sealSec .sealTxt p {
    text-align: center;
  }
  .sealSec .sealTxt .sealBx {
    margin-top: 10px;
  }
  .sealSec .sealTxt .sealBx h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 450px) {
  .sealSec .sealImg {
    max-width: 200px;
    margin: 0 auto 20px;
  }
  .sealSec .sealTxt .sealBx {
    margin-top: 5px;
  }
  .sealSec .sealTxt .sealBx h3 {
    font-size: 18px;
    line-height: 28px;
  }
}/*# sourceMappingURL=style.css.map */