.products {
  width: 100%;
  height: auto;
}

.products .container {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}

.products .heading-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.products .heading-wrap .heading {
  font-size: 40px;
  font-weight: bolder;
  color: var(--primary);
  margin: 0;
  text-align: left;
  line-height: 1.2;
  font-family: var(--font-semibold);
}

.product-card-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 60px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  width: calc(50% - 20px);
  height: 280px;
  position: relative;
  overflow: hidden;
  margin-right: 40px;
  margin-bottom: 40px;
  border-radius: 10px;
}

.product-card:nth-child(2n) {
  margin-right: 0;
}

.product-card .media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: black;
}

.product-card:hover .media img {
  transform: scale(1.1);
}

.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  appearance: none;
  transition: all 0.3s ease-in;
  opacity: .8;
}

.product-card .content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}

.product-card .content .text {
  color: white;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: var(--font-regular);
  margin: 0;
  text-align: left;
}

.product-card .content .wrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}

.products .card-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.products .card-item {
  width: calc(50% - 20px);
  height: auto;
  position: relative;
  overflow: hidden;
  margin-right: 40px;
  margin-bottom: 40px;
  text-decoration: none;
}

.products .card-item:hover .media img {
  transform: scale(1.1);
}

.products .card-item:nth-child(2n) {
  margin-right: 0;
}

.products .card-item .media {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: black;
}

.products .card-item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  appearance: none;
  transition: all 0.3s ease-in;
  opacity: 0.7;
}

.products .card-item .content {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.products .card-item .content .text {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-9);
  font-family: var(--font-regular);
}

.product-media-wrapper {
  width: 100%;
  height: calc(100vh - 131px);
  background: white;
}

.product-media {
  width: 100%;
  height: auto;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  appearance: none;
}

.products .wrap {
  width: 100%;
  height: auto;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.product-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}

.product-wrap {
  margin-top: 100px;
  height: auto;
}

.products .wrap {
  margin-top: 100px;
}

.product-row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 80px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.product-row .heading-wrapper {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.product-row .heading-wrapper.w-100 {
width: 100%;
}

.product-row .heading-wrapper.w-100 .paragraph {
  max-width: 100%;
}

.product-features .row .wrap {
  width: 25%;
  height: auto;
  margin-right: 50px;
  margin-left: 0;
  margin-top: 0;
}

.product-features .row .wrap .list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  padding-left: 18px;
  grid-gap: 0;
}

.product-features .row .wrap .list li {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-9);
  font-family: var(--font-light);
  margin-bottom: 15px;
}

.product-features .row .wrap .list li::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 9999px;
  overflow: hidden;
  margin-left: -1em;
  margin-bottom: -10px;
}

.product-features .row .wrap:last-child {
  margin-right: 0;
}

.product-features .row .wrap .paragraph {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-9);
  font-family: var(--font-light);
  text-align: left;
}

.product-features .media {
  width: 100%;
  height: 100vh;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.product-features .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  appearance: none;
}

.product-row .heading-wrapper .sub-heading {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-9);
  font-family: var(--font-regular);
  margin-top: 0;
  margin-bottom: 0;
}

.product-row .heading-wrapper .paragraph {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #d7d7d7;
  font-family: var(--font-light);
  margin: 0;
  margin-top: 15px;
  text-align: left;
  max-width: 480px;
  margin-right: auto;
}

.product-row .heading-wrapper .heading {
  font-size: 56px;
  font-weight: bolder;
  color: var(--primary);
  margin: 0;
  text-align: left;
  line-height: 1.2;
  font-family: var(--font-semibold);
  margin-bottom: 15px;
}

.product-media-list {
  width: fit-content;
  height: auto;
  display: flex;
  flex-direction: row;
}

.product-media-card {
  width: 160px;
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-2);
  cursor: pointer;
  margin-right: 30px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.product-media-card:last-child {
  margin-right: 0;
}

.product-media-card .content {
  width: 100%;
  height: auto;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F0EF;
}

.product-media-card .content .text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-align: center;
  color: var(--primary);
  font-family: var(--font-regular);
}

.product-media-card .media {
  width: 100%;
  height: 120px;
}

.product-media-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  appearance: none;
  transition: all 0.3s ease;
}

.product-media-card:hover .media img {
  transform: scale(1.1);
}

.product-media-wrap {
  width: 60%;
  height: auto;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
}

.product-features {
  width: 100%;
  height: auto;
  background: black;
  padding-bottom: 50px;
}

.product-features .row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 80px;
}

.product-features .row .content {
  width: 50%;
  height: auto;
  margin-right: 80px;
}

.product-features .row .content.w-100 {
  width: 100%;
}

.product-features .row .heading {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--primary);
  font-family: var(--font-medium);
  margin-top: 0;
  margin-bottom: 0;
}

.product-features .row .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.product-features .row .item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.product-features .row .item .title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-9);
  font-family: var(--font-regular);
  margin-top: 0;
  margin-bottom: 10px;
}

.product-features .row .item .text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #a0a0a0;
  font-family: var(--font-light);
}

.product-media-wrap .title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--primary);
  font-family: var(--font-regular);
  margin-top: 0;
  margin-bottom: 20px;
}

.product-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  appearance: none;
  opacity: .9;
}

/* spare-parts */

.spare-parts {
  width: 100%;
  height: auto;
}

.spare-parts .container {
  width: 100%;
  height: auto;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.spare-parts .card-list {
  width: 100%;
  height: auto;
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.spare-parts .card-item {
  width: 100%;
  height: auto;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--primary);
}

.spare-parts .card-item .media {
  width: 100%;
  height: 280px;
  background: white;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.spare-parts .card-item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  appearance: none;
}

.spare-parts .card-item .content {
  width: 100%;
  height: auto;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
}

.spare-parts .card-item .content .wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.spare-parts .card-item .content .title {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: var(--font-regular);
  margin: 0;
  text-align: left;
}

.spare-parts .card-item .content .paragraph {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #ebebeb;
  font-family: var(--font-light);
  text-align: left;
  margin-top: 15px;
  margin-bottom: 0;
  width: calc(100% - 120px);
}

.spare-parts .card-item .content .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  font-weight: 600;
  width: 100px;
  font-size: 13px;
  line-height: 19px;
  text-align: center;
  color: var(--color-9);
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-regular);
  letter-spacing: 0.4px;
  border-radius: 30px;
  align-self: flex-end;
}

.spare-parts .card-item .content .btn:hover {
  opacity: .8;
}

.spare-part-detail {
  width: 100%;
  height: auto;
}

.spare-part-detail .container {
  width: 100%;
  height: auto;
}

.spare-part-detail .media-wrap {
  width: 100%;
  height: calc(100vh - 131px);
  background: white;
}

.spare-part-detail .media-wrap .media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.spare-part-detail .media-wrap .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  appearance: none;
}

.spare-part-detail .row {
  width: 100%;
  height: auto;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 50px;
}

.spare-part-detail .row .title {
  font-size: 56px;
  font-weight: bolder;
  color: var(--primary);
  text-align: left;
  line-height: 1.2;
  font-family: var(--font-semibold);
  margin: 0;
}

.spare-part-detail .row .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s ease;
  font-family: var(--font-regular);
  letter-spacing: 0.4px;
  border-radius: 30px;
}

.spare-part-detail .row .btn:hover {
  opacity: .8;
}

.spare-part-content {
  width: 100%;
  height: auto;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.spare-part-content h1 {
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--color-9);
  font-size: 36px;
  letter-spacing: -0.03em;
  font-family: var(--font-semibold);
}

.spare-part-content h2 {
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 32px;
  letter-spacing: -0.03em;
  font-family: var(--font-semibold);
}

.spare-part-content h3 {
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--color-9);
  font-size: 24px;
  letter-spacing: -0.03em;
  font-family: var(--font-semibold);
}

.spare-part-content h4 {
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--color-9);
  font-size: 20px;
  letter-spacing: -0.03em;
  font-family: var(--font-semibold);
}

.spare-part-content h5 {
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--color-9);
  font-size: 16px;
  letter-spacing: -0.03em;
  font-family: var(--font-semibold);
}

.spare-part-content h6 {
  margin-top: 60px;
  margin-bottom: 30px;
  color: var(--color-9);
  font-size: 14px;
  letter-spacing: -0.03em;
  font-family: var(--font-semibold);
}

.spare-part-content img {
  width: 100%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.spare-part-content a {
  color: var(--primary);
  transition: all 0.2s ease-in-out;
}

.spare-part-content p {
  color: white;
  font-size: 18px;
  line-height: 32px;
  margin-top: 0;
  margin-bottom: 10px;
}

.spare-part-content ul {
  display: -ms-grid;
  display: grid;
  margin-top: 28px;
  margin-bottom: 28px;
  padding-left: 28px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 14px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  color: var(--color-9);
  font-size: 18px;
}


@media only screen and (max-width:600px) {

  .products .heading-wrap .heading {
    font-size: 36px;
  }

  .product-card {
    width: 100%;
    margin-right: 0;
    height: 200px;
  }

  .product-row {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-row .content {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .products .card-list {
    flex-direction: column;
  }

  .products .card-item {
    width: 100%;
    margin-right: 0;
  }

  .products .card-item .media {
    height: 240px;
  }

  .product-media {
    height: 350px;
  }

  .product-row .heading-wrapper .heading {
    font-size: 44px;
    text-align: left;
  }

  .product-features .row .item .title {
    font-size: 16px;
  }

  .product-features .row .item .text {
    font-size: 15px;
  }

  .product-features .row .list {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-media-wrap .title {
    font-size: 20px;
  }

  .product-row .heading-wrapper .sub-heading {
    font-size: 24px;
  }

  .product-media-wrap {
    margin-top: 30px;
    padding-left: 0;
  }

  .product-media-list {
    width: 100%;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .product-media-card {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .product-media-card:nth-child(2n) {
    margin-right: 0;
  }

  .product-media-wrap {
    width: 100%;
    padding-left: 0;
  }

  .product-row .media {
    height: 140px;
  }

  .product-features .row {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
  }

  .product-features .row .content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .product-features .row .wrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .product-features .media {
    height: auto;
  }

  .product-media-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }

  .product-row .heading-wrapper {
    flex-direction: column;
  }

  .product-row .heading-wrapper {
    width: 100%;
  }

  .product-features .row .wrap .list {
    margin-top: 20px;
  }

  .product-media {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .spare-parts .card-list {
    grid-template-columns: 1fr;
  }

  .spare-parts .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spare-part-detail .media-wrap {
        padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }

 .spare-part-detail .media-wrap .media {
  padding-top: 20px;
  padding-bottom: 20px;
 }

  .spare-part-detail .row {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
  }

  .spare-part-detail .row .title {
    margin-bottom: 20px;
  }

  .spare-part-detail .row .title {
    font-size: 40px;
  }

  .spare-part-content {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@media (min-width:481px) and (max-width:767px) {

  .products .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .products .heading-wrap .heading {
    font-size: 36px;
  }

  .product-card {
    width: 100%;
    margin-right: 0;
    height: 200px;
  }

  .product-row {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-row .content {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .product-media {
    height: 350px;
  }

  .product-row .heading-wrapper .heading {
    font-size: 48px;
    text-align: left;
  }

  .product-row .heading-wrapper .sub-heading {
    font-size: 24px;
  }

  .product-media-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }

  .product-row .heading-wrapper {
    flex-direction: column;
  }

  .product-row .heading-wrapper {
    width: 100%;
  }

  .product-features .row .wrap .list {
    margin-top: 20px;
  }

  .product-media-wrap {
    margin-top: 30px;
    padding-left: 0;
  }

  .product-media-list {
    width: 100%;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .product-media-card {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .product-media-card:nth-child(2n) {
    margin-right: 0;
  }

  .product-media-wrap {
    width: 100%;
  }

  .product-row .media {
    height: 180px;
  }

  .product-features .row {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }

  .product-features .row .content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .product-features .row .wrap {
    width: 100%;
    margin-right: 0;
  }

  .product-features .media {
    height: auto;
  }

  .product-media {
    padding-top: 20px;
    padding-bottom: 20px;
  }

   .spare-parts .card-list {
    grid-template-columns: 1fr;
  }

  .spare-parts .container {
    padding-left: 20px;
    padding-right: 20px;
  }

    .spare-parts .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spare-part-detail .media-wrap {
        padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }

 .spare-part-detail .media-wrap .media {
  padding-top: 20px;
  padding-bottom: 20px;
 }

  .spare-part-detail .row {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
  }

  .spare-part-detail .row .title {
    margin-bottom: 20px;
  }

  .spare-part-detail .row .title {
    font-size: 40px;
  }

  .spare-part-content {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@media (min-width:768px) and (max-width:1024px) {

  .products .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .products .heading-wrap .heading {
    font-size: 36px;
  }

  .product-card {
    width: calc(50% - 20px);
    margin-right: 40px;
  }

  .product-card:nth-child(2n) {
    margin-right: 0;
  }

  .product-row {
    flex-direction: column;
  }

  .product-row .content {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

 .spare-parts .card-list {
    grid-template-columns: 1fr 1fr;
  }

  .spare-parts .container {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@media (min-width:768px) and (max-width:1024px) and (orientation:landscape) {

  .products .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .products .heading-wrap .heading {
    font-size: 36px;
  }

  .product-card {
    width: calc(50% - 20px);
    margin-right: 40px;
  }

  .product-card:nth-child(2n) {
    margin-right: 0;
  }

  .product-row {
    flex-direction: column;
  }

  .product-row .content {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .spare-parts .card-list {
    grid-template-columns: 1fr 1fr;
  }

  .spare-parts .container {
    padding-left: 20px;
    padding-right: 20px;
  }

}