@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

body {
  max-width: 100%;
  height: 100%;
  font-size: 18px;
  font-family: var(--main-font-family);
  color: var(--main-black);
}

ul {
  list-style-type: none;
}

p:not(:last-child) {
  margin-bottom: 20px;
}

a,
a:hover {
  text-decoration: none;
}

:root {
  --main-font-family: "Heebo", sans-serif;
  --main-black: #000;
  --main-white: #fff;
  --main-red: #E30011;
  --sec-bg-F5EFEF: #F5EFEF;
  --sec-bg-BB0010: #BB0010;
}

.lhyRel {
  position: relative;
}

.lhyAic {
  align-items: center;
}

.lhyjcsb {
  justify-content: space-between;
}

.lhyTac {
  text-align: center;
}

.bg_F5EFEF {
  background-color: var(--sec-bg-F5EFEF);
}

.bg_BB0010 {
  background-color: var(--sec-bg-BB0010);
}

.imgWrap {
  img {
    width: 100%;
    height: 100%;
  }
}

.lhyBtn {
  a {
    display: inline-block;
    padding: 10px 20px;
    color: var(--main-black);
    border-radius: 6px;
    background-color: var(--main-white);
    transition: .4s;

    &:hover {
      background-color: var(--main-black);
      color: var(--main-white);
    }
  }
}

.lhyCommnPadding {
  padding: 100px 0;
}

h2.enquiryHead {
  font-size: 65px;
  font-weight: 500;
  font-family: var(--main-font-family);
}

h3.headBig {
  font-family: var(--main-font-family);
  font-size: 40px;
  color: var(--main-black);
  font-weight: 700;
  margin-bottom: 20px;
}

h4 {
  font-size: 25px;
  font-weight: 500;
}

h6.headShort {
  color: var(--main-red);
  font-weight: 400;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #00000025;
  font-size: 0;
  background-color: unset;
  z-index: 10;
  transition: .4s;

  &.slick-prev {
    left: -48px;

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--main-black);
      font-family: fontawesome;
      background-image: url(../images/lhy-powertrain-landing/Arrow-left.png);
      width: 16px;
      height: 16px;
      background-repeat: no-repeat;
    }
  }

  &.slick-next {
    right: -48px;

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--main-black);
      font-family: fontawesome;
      background-image: url(../images/lhy-powertrain-landing/Arrow-right.png);
      width: 16px;
      height: 16px;
      background-repeat: no-repeat;
    }
  }

  &:hover {
    &::after {
      filter: brightness(0) saturate(100%) invert(10%) sepia(100%) saturate(7269%) hue-rotate(347deg) brightness(86%) contrast(108%);
    }
  }
}

/* start main page */

.lhyOverLft {
  h6.headShort {
    margin-bottom: 8px;
  }
}

.lhyOverImgWrap {
  border-radius: 15px;

  figure {
    margin-bottom: 0;
    width: 100%;

    img {
      border-radius: 15px;
    }
  }

  .overInnImgWrap {
    position: absolute;
    bottom: -50px;
    right: 22px;
    width: 175px;
  }
}

/* lhy tab section */
.lhyProdTab {
  margin-top: 60px;

  .lhyTabLstWrap {
    ul {
      li {
        color: var(--main-black);
        padding: 10px 0;
        transition: .4s;
        border-bottom: 1px solid #00000025;

        h4 {
          position: relative;
          font-size: 20px;
          color: var(--main-black);
          padding: 20px;
          font-weight: 600;

          &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--sec-bg-BB0010);
            border-radius: 8px;
            transition: .4s;
          }

          &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 100px;
            width: 0%;
            height: 1px;
            background-color: var(--main-white);
            border-radius: 8px;
            transform: translateY(-50%);
            transition: .4s;
          }
        }

        &.active,
        &:hover {
          h4 {
            z-index: 9;
            color: var(--main-white);

            &::before {
              width: 100%;
              z-index: -1;
            }

            &::after {
              width: 58%;
              z-index: -1;
            }
          }

        }
      }
    }
  }

  .lhyTablstContBx {
    .lhyTablstCont {
      display: none;

      &.active {
        display: block;
      }
    }

    .lhyTablst {
      .eachlhyProdSlide {
        padding: 0;
        display: block;

        .lhyProdCard {
          margin: 0 15px;
          transition: .4s;

          .lhyProdCardInn {
            height: 420px;
            background-color: #fff;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;

            .lhyProdCardImg {
              img {
                width: 100%;
                height: 100%;
              }
            }
          }

          .lhyProdCardTitle {
            margin: 20px 0;
            transition: .4s;

            h3 {
              font-size: 22px;
              font-weight: 600;
              color: var(--sec-bg-BB0010);
            }
          }

          .lhyProdOver {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: var(--sec-bg-BB0010);
            padding: 30px 20px;
            border-radius: 15px;
            color: var(--main-white);
            transform: scale(0);
            transition: .4s;

            h3 {
              margin-bottom: 10px;
              font-weight: 700;
            }

            .lhyPara {
              height: 244px;
              overflow: auto;
              overflow-x: hidden;

              p {
                color: var(--main-white) !important;

                br {
                  display: none;
                }
              }


              &::-webkit-scrollbar-track {
                background-color: #F5F5F5;
                border-radius: 20px;
              }

              &::-webkit-scrollbar {
                width: 6px;
                background-color: #F5F5F5;
                border-radius: 20px;
              }

              &::-webkit-scrollbar-thumb {
                background-color: #000000;
                border-radius: 20px;
              }
            }

            .lhyTabBtn {
              margin-top: 10px;

              a:focus {
                color: var(--main-black);
              }
            }
          }

          &:hover {
            .lhyProdOver {
              transform: scale(1);

              .lhyTabBtn {
                a:focus {
                  color: var(--main-black);
                }

                a:hover {
                  background-color: var(--main-white);
                  color: var(--main-black);
                }
              }

            }

            .lhyProdCardTitle {
              opacity: 0;
            }
          }
        }
      }
    }
  }
}

.lhyAccTrigger {
  display: none;
}

/* end tab section */

/* start slider */
.lhyInformationWrap {
  margin-top: 20px;

  .lhyInformationSlider {
    .eachLhyInformation {
      display: block;
      padding: 0;

      .lhyInformationInn {
        border-radius: 12px;
        background-color: var(--sec-bg-F5EFEF);
        margin: 0 15px;

        ul {
          li {
            padding: 20px;

            span {
              display: inline-block;
              font-size: 18px;
              font-size: 500;
              color: var(--sec-bg-BB0010);
              margin-bottom: 6px;
            }

            p {
              a {
                display: inline-block;
                color: var(--main-black);
              }
            }

            &:not(:last-child) {
              border-bottom: 1px solid #00000020;
            }
          }
        }
      }
    }

  }
}

.lhyProdAccImg {
  display: none;
}

/* end slider */


/* start section enquiry 4 */
.lhy-powertrainSec4 {
  padding: 70px 0;

  .lhyEnquiryLft {
    h2 {
      color: var(--main-white);
    }
  }

  .lhyEnquiryRgt {
    text-align: right;

    h4 {
      color: var(--main-white);
    }

    a {
      display: inline-block;
      line-height: normal;
      color: var(--main-white);
      font-size: 60px;
    }
  }
}

/* end section 3 */

/* start enquiry form */
.lhyEnquiryFromWrap {
  width: 600px;
  margin: 0 auto;
  border: 1px solid #dee2e6;
  background-color: var(--main-white);
  border-radius: 15px;
  padding: 20px;

  .lhyEnquiryFromInn {
    h5 {
      color: var(--main-black);
      font-family: var(--main-font-family);
      font-size: 24px;
      padding: 0 0 20px;
    }

    .frmWrap {
      .inputTxt {
        border: 2px solid #e9e9e9;
        padding: 12px;
        width: 100%;
        color: #9b9b9b;
        font-size: 13px;
        margin-bottom: 15px;
        border-radius: 5px;
        resize: none;
      }

      input[type="submit"] {
        display: inline-block;
        padding: 10px 28px;
        color: var(--main-white);
        border-radius: 6px;
        background-color: var(--main-black);
        font-size: 18px;
        text-transform: capitalize;
        transition: .4s;
      }
    }
  }
}

/* end enquiry form */

/* start responsive */
@media(max-width: 1366px) {

  h3.headBig {
    font-size: 36px;
  }

  p {
    font-size: 16px;
  }

  /* start product */
  .lhyProdTab {
    & .lhyTablstContBx {
      & .lhyTablst {
        & .lhyProdCard {
          .lhyProdCardInn {
            height: 360px;
          }

          & .lhyProdOver {
            .lhyPara {
              height: 194px;
            }

            .lhyTabBtn {
              &.lhyBtn {
                a {
                  padding: 7px 16px;
                  font-size: 16px;
                }
              }
            }
          }
        }
      }
    }

    & .lhyTabLstWrap {
      & ul {
        & li {
          h4 {
            padding: 14px;
            font-size: 18px;
          }
        }
      }
    }
  }



  /* end product */

  /* start enquiry */
  h2.enquiryHead {
    font-size: 52px;
  }

  .lhy-powertrainSec3 {
    & .lhyEnquiryRgt {
      a {
        font-size: 56px;
      }
    }
  }

  /* end enquiry */

  /* enquiry */
  .lhyEnquiryFromWrap {
    & .lhyEnquiryFromInn {
      & .frmWrap {
        .inputTxt {
          padding: 5px 8px;
        }

        textarea.inputTxt {
          height: 100px;
        }
      }
    }
  }
}

@media(max-width: 1280px) {
  .lhyCommnPadding {
    padding: 80px 0;
  }

  h2.enquiryHead {
    font-size: 48px;
  }

  .lhy-powertrainSec3 {
    & .lhyEnquiryRgt {
      a {
        font-size: 50px;
      }
    }
  }
}

@media(max-width: 1240px) {
  .slick-arrow {
    &.slick-prev {
      left: -25px;
    }

    &.slick-next {
      right: -25px;
    }
  }

  .lhyProdTab {
    & .lhyTabLstWrap {
      & ul {
        & li {

          &.active,
          &:hover {
            & h4 {
              &::after {
                width: 50%;
              }
            }
          }
        }
      }
    }
  }
}

@media(max-width: 1199px) {
  .lhy-powertrainSec2 {
    .lhyProdSlider {
      padding-bottom: 50px;
    }

    .slick-arrow {
      top: auto;
      transform: unset;
      bottom: 0;

      &.slick-prev {
        left: calc(50% - 50px);
      }

      &.slick-next {
        right: calc(50% - 50px);
      }
    }

  }

  /* start enquiry */
  .lhy-powertrainSec4 {
    & .lhyEnquiryRgt {
      a {
        font-size: 48px;
      }
    }
  }

  /* end enquiry */
}

@media(max-width: 991px) {

  .lhyOverRgt {
    margin-top: 20px;


  }

  /* start product */
  .lhyTabLstWrap {
    display: none;
  }

  .lhyAccTrigger {
    display: block;
    position: relative;
    transition: all 0.4s;
    background-color: var(--main-white);
    padding: 15px 20px;
    padding-right: 30px;
    font-size: 20px !important;
    font-weight: 600;
    width: 100%;
    border-radius: 20px;
    transition: .4s;
    color: var(--main-black);

    &::after {
      content: "";
      position: absolute;
      top: 10px;
      right: 20px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-image: url(../images/lhy-powertrain-landing/downA.png);
      background-color: var(--sec-bg-BB0010);
      padding: 10px;
      color: var(--main-white);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s;
      background-size: 100%;
      background-repeat: no-repeat;
    }
  }

  .lhyAccCont {
    display: none;
    padding: 20px;

    .mobTle {
      display: none;
    }
  }

  .lhyProdAccImg {
    display: block;
  }

  .lhyProdTab {
    margin-top: 20px;

    & .lhyTablstContBx {
      .lhyTablstCont {
        display: block;
        background-color: #fbfbfb;
        box-shadow: 1px 1px 13px 1px #ffc2c25c;
        border-radius: 20px;
        margin: 20px 0;

        &.active {
          & .lhyAccTrigger {
            &::after {
              background-image: url(../images/lhy-powertrain-landing/upA.png);
              /* transform: rotate(180deg); */
            }
          }

        }
      }

      & .lhyTablst {
        & .eachlhyProdSlide {
          & .lhyProdCard {
            margin: 0;

            .lhyProdOver {
              position: static;
              transform: scale(1);
              text-align: center;

              h3 {
                margin-bottom: 18px;
              }

              .lhyProdAccImg {
                display: flex;
                align-items: center;
                justify-content: center;
              }

              .lhyPara {
                margin-top: 18px;
                height: auto;
              }
            }

            .lhyProdCardInn {
              height: auto;
              padding: 0;

              & .lhyProdCardImg {
                & img {
                  width: 0;
                }
              }
            }
          }
        }

      }
    }
  }

  /* start enduiry */
  .lhyEnquiryLft {
    text-align: center;
  }

  .lhy-powertrainSec4 {
    padding: 50px 0;

    .lhyEnquiryRgt {
      margin-top: 20px;
      text-align: center;
    }
  }


  /* end enquiry */
}

@media(max-width: 600px) {
  .slick-arrow {
    top: auto;
    transform: unset;
    bottom: 0;

    &.slick-prev {
      left: calc(50% - 50px);
    }

    &.slick-next {
      right: calc(50% - 50px);
    }
  }

  .lhyInformationWrap {
    .lhyInformationSlider {
      padding-bottom: 50px;
    }
  }

  .lhyEnquiryFromWrap {
    width: 90%;
  }
}

@media(max-width: 575px) {
  h3.headBig {
    font-size: 30px;
  }

  /* sec1 */
  .lhyOverImgWrap {
    .overInnImgWrap {
      width: 120px;
    }
  }

  /* start product */
  .lhyProdTab {
    & .lhyTablstContBx {
      & .lhyTablst {
        & .eachlhyProdSlide {
          & .lhyProdCard {
            & .lhyProdOver {
              .lhyProdAccImg {
                width: 200px;
                margin: 0 auto;

                img {
                  width: 100%;
                }
              }
            }
          }
        }

      }
    }
  }
}

@media(max-width: 480px) {

  .lhyCommnPadding {
    padding: 54px 0;
  }

  h2.enquiryHead {
    font-size: 38px;
  }

  .lhy-powertrainSec4 {
    & .lhyEnquiryRgt {
      a {
        font-size: 40px;
      }
    }
  }

  .lhyProdTab {
    & .lhyTablstContBx {
      .lhyTablst {
        padding-top: 0;
      }
    }
  }

  .lhyAccTrigger {
    &::after {
      width: 27px;
      height: 27px;
    }
  }
}

/* end responsive */