@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,700&display=swap");
html {
  scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.3em; }

p {
  color: #666;
  margin: 0 0 10px;
  line-height: 1.3em; }

section {
  padding: 30px 0; }
  @media (max-width: 767px) {
    section {
      padding: 20px 0; } }

h1,
h2,
h3,
h4 {
  line-height: 1.5;
  margin: 0px; }

a {
  text-decoration: none; }

ul {
  list-style: none;
  margin: 0px;
  padding: 0; }

* {
  box-sizing: border-box; }

.grayBg {
  background: #f8f9fa; }

.button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: 1px;
  left: 0;
  transition: 0.3s ease left;
  -webkit-transition: 0.3s ease left;
  -moz-transition: 0.3s ease left;
  -ms-transition: 0.3s ease left;
  -o-transition: 0.3s ease left; }
  .button--default {
    background: #ad3800;
    color: #fff;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    padding: 20px;
    font-size: 25px;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 40px;
    max-width: 450px;
    transition: 0.3s ease background-color;
    -webkit-transition: 0.3s ease background-color;
    -moz-transition: 0.3s ease background-color;
    -ms-transition: 0.3s ease background-color;
    -o-transition: 0.3s ease background-color; }
    @media (max-width: 767px) {
      .button--default {
        max-width: 100%; } }
    .button--default:hover {
      background: #8e3002; }
    .button--default i {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      top: 0px;
      left: 0;
      transition: 0.3s ease left;
      -webkit-transition: 0.3s ease left;
      -moz-transition: 0.3s ease left;
      -ms-transition: 0.3s ease left;
      -o-transition: 0.3s ease left; }
    .button--default:hover i {
      left: 5px; }

.rightArrow {
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

.container {
  max-width: 1175px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0 15px; }

header {
  padding: 15px 0px;
  border-bottom: 5px solid #fe3d08; }
  @media (max-width: 767px) {
    header {
      padding: 10px 0px; } }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }

@media (max-width: 767px) {
  .logoHeader {
    width: 100%;
    text-align: left; } }

.logoHeader img {
  max-width: 312px; }
  @media (max-width: 767px) {
    .logoHeader img {
      max-width: 150px; } }

.menuHeader ul {
  display: flex;
  flex-direction: row; }

.menuHeader ul li a {
  text-transform: uppercase;
  margin: 0px 20px;
  color: #9c9c9c;
  font-weight: 400;
  font-size: 14px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all; }
  .menuHeader ul li a i {
    display: none; }

.menuHeader ul li a:hover, .menuHeader ul li a.active {
  color: #f15b06; }

@media (max-width: 767px) {
  .menuToggle {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 10; }
  .menuToggle span {
    width: 28px;
    height: 3px;
    background: #fe3d08;
    display: block;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    position: relative; }
  .menuToggle span:nth-child(2) {
    width: 22px; } }

/* MenuTggle */
@media (min-width: 768px) {
  .menuToggle {
    display: none; } }

@media (max-width: 767px) {
  .menuToggle {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 10; }
    .menuToggle span {
      width: 28px;
      height: 3px;
      background: #f1671c;
      display: block;
      transition: 0.3s ease all;
      -webkit-transition: 0.3s ease all;
      -moz-transition: 0.3s ease all;
      -ms-transition: 0.3s ease all;
      -o-transition: 0.3s ease all;
      position: relative; }
      .menuToggle span:nth-child(2) {
        width: 22px; }
  body .menuHeader {
    display: flex;
    position: fixed;
    background: #fe3d08;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: 0.3s ease width, 0.3s ease all;
    -webkit-transition: 0.3s ease width, 0.3s ease all;
    -moz-transition: 0.3s ease width, 0.3s ease all;
    -ms-transition: 0.3s ease width, 0.3s ease all;
    -o-transition: 0.3s ease width, 0.3s ease all;
    width: 28px;
    height: 22px;
    overflow: hidden;
    top: 15px;
    right: 15px;
    left: auto;
    opacity: 0;
    visibility: hidden; }
  body.menuActive {
    overflow: hidden; }
  .menuActive .menuToggle {
    position: fixed;
    right: 15px; }
    .menuActive .menuToggle span {
      background: #fff; }
      .menuActive .menuToggle span:first-child {
        transform: rotate(45deg);
        top: 10px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg); }
      .menuActive .menuToggle span:last-child {
        transform: rotate(-45deg);
        top: -9px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg); }
      .menuActive .menuToggle span:nth-child(2) {
        opacity: 0;
        visibility: hidden; }
  .menuActive .menuHeader {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    overflow: auto;
    padding-top: 80px; }
  .menuHeader ul {
    display: flex;
    flex-direction: column;
    position: relative;
    top: -22px;
    transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    opacity: 0;
    width: 100%;
    padding: 0px; }
    .menuHeader ul li {
      margin: 0px;
      border-top: 1px solid #ff8850;
      padding: 15px 10px; }
      .menuHeader ul li:hover {
        background: #ff6821; }
      .menuHeader ul li:last-child {
        border-bottom: 1px solid #ff8850; }
      .menuHeader ul li a {
        color: #fff;
        margin: 0;
        letter-spacing: 1px;
        font-size: 16px;
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center; }
        .menuHeader ul li a i {
          font-size: 30px;
          display: block; }
        .menuHeader ul li a:hover, .menuHeader ul li a.active {
          color: #ffffff; }
  .menuHeader ul.slideDownAnimation {
    top: 0;
    opacity: 1; } }

.linkButton {
  display: block;
  border: 1px solid #fe3d08;
  padding: 15px 30px;
  max-width: 192px;
  width: 100%;
  margin: 20px auto;
  text-align: center;
  color: #fe3d08;
  font-size: 16px;
  transition: 1s; }
  .linkButton i {
    margin-left: 10px; }
  .linkButton:hover {
    background-color: #fe3d08;
    color: #fff; }

#myBtn {
  display: none;
  position: fixed;
  bottom: 45px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #41a7ff;
  color: white;
  cursor: pointer;
  padding: 10px 13px;
  border-radius: 4px; }

#myBtn:hover {
  background-color: #0a85f1; }

#slideshow {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: 1% 1% 37.25% 1%;
  box-sizing: border-box;
  height: auto; }

#slideshow > div {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: row; }

#slideshow > div > img {
  width: 100%;
  height: 100%; }

#slideshow:hover i, #slideshow:hover .slider-dots {
  opacity: 1; }

.slidebtn {
  z-index: 0;
  background: transparent;
  outline: none;
  border: none;
  transition: all 0.3s;
  padding: 0 10px 0 10px; }

.slidebtn:active,
.slidedtn:focus {
  outline: none; }

.slidebtn i {
  color: #FFF;
  font-size: 72px;
  opacity: 0.2;
  transition: all 0.3s; }

.prev {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px; }

.next {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px; }

.slider-dots {
  opacity: 0.2;
  list-style: none;
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translate(-50%, 0);
  z-index: 0;
  transition: all 0.3s; }

.slider-dots li {
  color: #000;
  display: inline;
  font-size: 48px;
  margin-right: 5px;
  cursor: pointer; }

.slider-dots li.active-dot {
  color: #fff; }

.container {
  display: flex;
  flex-direction: column; }

.homeAbout {
  text-align: left; }
  .homeAbout h2 {
    padding: 0px 0;
    border-bottom: 1px solid #f00;
    display: block;
    margin: 20px 0px;
    color: #0f4c81;
    font-weight: 300;
    font-size: 30px; }
    .homeAbout h2 span {
      font-weight: 600;
      color: #fe3d08; }
      .homeAbout h2 span i {
        font-style: normal;
        color: #0f4c81; }
  .homeAbout p {
    font-weight: 400;
    font-size: 16px;
    text-align: left; }
  .homeAbout__list {
    margin: 10px 0 15px 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    .homeAbout__list li {
      text-align: left;
      padding: 0px 15px;
      margin: 5px;
      flex: 0 0 30%;
      max-width: 30%;
      font-size: 16px;
      position: relative;
      font-weight: 500;
      color: #0f4c81; }
      .homeAbout__list li i {
        margin-right: 0px;
        position: absolute;
        left: -10px;
        color: #fe3d08; }

.homeBanner {
  padding: 0; }

.whyChooseUs__title, .ourServices__title {
  padding: 0px 0;
  border-bottom: 1px solid #f00;
  display: block;
  margin: 20px 0px;
  color: #0f4c81;
  font-weight: 300;
  font-size: 30px; }
  .whyChooseUs__title span, .ourServices__title span {
    font-weight: 600; }

.whyChooseUs__details, .ourServices__details {
  font-weight: 400;
  font-size: 16px;
  text-align: left; }

.whyChooseUs__usp, .ourServices__usp {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0px auto 40px auto;
  flex-wrap: wrap; }
  .whyChooseUs__usp--col, .ourServices__usp--col {
    flex: 0 0 32%;
    max-width: 32%;
    border: 1px solid #f4f4f4;
    background-color: #fff;
    text-align: center;
    padding-bottom: 10px;
    transition: all 0.4s ease 0s;
    transform: translate3d(0px, 0px, 0px);
    padding-top: 60px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px 0px rgba(233, 233, 233, 0.75);
    position: relative;
    margin: 100px 0 20px 0px; }
    .whyChooseUs__usp--col:hover, .ourServices__usp--col:hover {
      transform: translateY(-5px); }
    .whyChooseUs__usp--col h3, .ourServices__usp--col h3 {
      padding: 10px 0;
      color: #0f4c81;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 16px; }
    .whyChooseUs__usp--col p, .ourServices__usp--col p {
      font-weight: 400;
      font-size: 16px;
      text-align: center;
      padding: 0px 15px; }
    .whyChooseUs__usp--col.col-2, .ourServices__usp--col.col-2 {
      flex: 0 0 49.5%;
      max-width: 49.5%; }

.whyChooseUs .picBlock, .ourServices .picBlock {
  width: 100px;
  height: 100px;
  background-color: #fe3d08;
  margin: 0 auto;
  position: absolute;
  top: -50px;
  z-index: 9000;
  left: 0;
  right: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .whyChooseUs .picBlock i, .ourServices .picBlock i {
    font-size: 50px;
    color: #fff; }

.whyChooseUs .picForServices, .ourServices .picForServices {
  width: 93%;
  height: 150px;
  position: absolute;
  top: -81px;
  border-radius: 10px;
  left: 4%; }
  .whyChooseUs .picForServices.defence, .ourServices .picForServices.defence {
    background: url(../images/defence.png); }
  .whyChooseUs .picForServices.railways, .ourServices .picForServices.railways {
    background: url(../images/railways.png); }
  .whyChooseUs .picForServices.automotive, .ourServices .picForServices.automotive {
    background: url(../images/automotive.png); }
  .whyChooseUs .picForServices.consumerelectronics, .ourServices .picForServices.consumerelectronics {
    background: url(../images/consumerelectronics.png); }
  .whyChooseUs .picForServices.testandverification, .ourServices .picForServices.testandverification {
    background: url(../images/testandverification.png); }
  .whyChooseUs .picForServices.energy, .ourServices .picForServices.energy {
    background: url(../images/energy.png); }
  .whyChooseUs .picForServices.aero, .ourServices .picForServices.aero {
    background: url(../images/aero.png); }
  .whyChooseUs .picForServices.factoryAutomation, .ourServices .picForServices.factoryAutomation {
    background: url(../images/factoryAutomation.png); }
  .whyChooseUs .picForServices.iiot, .ourServices .picForServices.iiot {
    background: url(../images/iiot.png); }
  .whyChooseUs .picForServices.labautomation, .ourServices .picForServices.labautomation {
    background: url(../images/labautomation.png); }
  .whyChooseUs .picForServices svg, .ourServices .picForServices svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    left: 0; }

.aboutUsImg {
  background: url(../images/aboutus.png) no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 150px;
  padding: 10px 0px;
  background-color: #0f4c81;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff; }
  .aboutUsImg h1 {
    font-weight: 300; }

/*contact Us*/
.contactUsImg {
  background: url(../images/contactus-bg.png) no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 150px;
  padding: 10px 0px;
  background-color: #0f4c81;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff; }
  .contactUsImg h1 {
    font-weight: 300; }

.contactUsSection__title {
  font-size: 30px; }

.contactUs {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between; }
  @media (max-width: 767px) {
    .contactUs {
      flex-direction: column; } }
  .contactUs__locationMap {
    flex: 0 0 65%;
    max-width: 65%;
    overflow: hidden;
    padding-bottom: 36.25%;
    position: relative;
    padding-left: 20px;
    height: 0; }
    @media (max-width: 767px) {
      .contactUs__locationMap {
        flex: 0 0 100%;
        max-width: 100%;
        padding-bottom: 50%;
        padding-left: 100%; } }
    .contactUs__locationMap iframe {
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      position: absolute; }
  .contactUs__getInTouch {
    flex: 0 0 30%;
    max-width: 30%; }
    @media (max-width: 767px) {
      .contactUs__getInTouch {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 20px; } }
    .contactUs__getInTouch--title {
      font-size: 40px;
      font-weight: 300;
      line-height: 1;
      color: #0f4c81; }
      @media (max-width: 767px) {
        .contactUs__getInTouch--title {
          font-size: 30px; } }
      .contactUs__getInTouch--title span {
        display: block;
        font-size: 80px;
        font-weight: 500; }
        @media (max-width: 767px) {
          .contactUs__getInTouch--title span {
            display: inline-block;
            font-size: 30px; } }
    .contactUs__getInTouch--address {
      padding: 20px 0; }
      .contactUs__getInTouch--address strong {
        display: block; }

.contactPhone p i {
  transform: rotate(90Deg);
  margin-right: 10px; }

.contactPhone p a {
  color: #0f4c81; }
  .contactPhone p a:hover {
    color: #fe3d08; }

.queryForm {
  background: url(../images/contactus.jpg);
  margin-bottom: 0px;
  min-height: 400px;
  background-size: cover; }
  .queryForm .contactUsForm {
    max-width: 800px;
    width: 100%;
    margin: 0 auto; }
    .queryForm .contactUsForm__letsTalk h2 {
      font-size: 40px;
      color: #fff; }
    .queryForm .contactUsForm__letsTalk p {
      color: #fff; }
  .queryForm .contactUsFormFields__row input[type="text"] {
    background-color: transparent;
    color: #fff;
    border: 1px solid #dfdfdf;
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    font-size: 16px; }
  .queryForm .contactUsFormFields__row input[type="submit"] {
    width: 100%;
    background-color: red;
    border: 0;
    padding: 15px 0;
    color: #fff;
    cursor: pointer; }
  .queryForm .contactUsFormFields__row textarea {
    background-color: transparent;
    color: #fff;
    border: 1px solid #dfdfdf;
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    font-size: 16px; }
  .queryForm .contactUsFormFields__row.col-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .queryForm .contactUsFormFields__row.col-2 input {
      flex: 0 0 49.3%;
      max-width: 49.3%; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
  font-weight: 400; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  font-weight: 400; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
  font-weight: 400; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  font-weight: 400; }

.trainingFocus {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .trainingFocus li a {
    color: #fff;
    border: 1px solid #dfdfdf;
    padding: 10px 15px;
    background: #fe3d08;
    border-radius: 5px;
    margin-right: 10px; }
    .trainingFocus li a:hover {
      background: #0f4c81; }

.trainingImg {
  background: url(../images/training-banner.png) no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 150px;
  padding: 10px 0px;
  background-color: #0f4c81;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff; }
  .trainingImg h1 {
    font-weight: 300; }

.training h3 {
  color: #0f4c81;
  font-size: 20px;
  font-weight: 400;
  padding: 10px 0; }

.fromInitiator {
  display: flex; }

.fromInitiatorImg {
  padding-right: 30px;
  text-align: center; }

.fromInitiatorImg .aniPhoto {
  text-align: center; }

.fromInitiatorImg img {
  width: 150px; }

.fromInitiatorLinks a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  background: #fe3d08;
  color: #fff;
  border-radius: 50%; }
  .fromInitiatorLinks a:hover {
    background: #0f4c81; }

.ourBelief {
  margin-top: 30px; }

.quote {
  background: #f1f1f1;
  padding: 10px;
  border-left: 3px solid #fe3d08;
  text-align: center;
  font-size: 20px;
  color: #fe3d08;
  margin-top: 10px;
  font-weight: 600; }

footer {
  background: #0f4c81;
  border-top: 5px solid #fe3d08;
  padding: 15px 0; }
  footer .footerSection {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px; }
    footer .footerSection .footerBdr {
      border-left: 1px solid #0166a9;
      padding-left: 20px; }
    footer .footerSection__col .enggiText {
      color: #fff;
      font-weight: 300; }
    footer .footerSection__col .letsChat {
      font-weight: 400;
      color: #fe3d08;
      font-size: 20px; }
    footer .footerSection__col .mail {
      display: inline-block;
      margin: 5px 0;
      color: #fff;
      font-weight: 300;
      font-size: 15px; }
      footer .footerSection__col .mail:hover {
        color: #fe3d08; }
    footer .footerSection__col .socialMedia a {
      margin: 0px 5px;
      color: #fff;
      font-size: 20px; }
      footer .footerSection__col .socialMedia a:hover {
        color: #fe3d08; }

/*# sourceMappingURL=styles.css.map */
