@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
/* variable */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-size: 14px;
  scroll-behavior: smooth;
  --accent: #ff9d3b;
  --peach: #fcedda;
  --primary: #181b31;
  --white: #ffffff;
  --text: #747579;
  /* --dark-gray: #2c3e50; */
  --dark-gray: #34495e;
  --secondary:var(--accent);
  --gray : #2c3e50;
  --swiper-navigation-size: 24px !important;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(var(--primary), 0);
}

li {
  list-style: none;
}

ol,
ul,
dl,
p,
h1,
h2,
h3,
h4,
h5,
figure {
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 24px;
}
a {
  text-decoration: none;
  outline: 0;
}

p {
  line-height: 24px;
}

[hidden] {
  display: none !important;
}

/* Display */
.d-flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.justify-space-between {
  justify-content: space-between;
}
.pos-r {
  position: relative;
}
.align-items-center {
  align-items: center;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}

/* Text */
.text {
  color: #747579;
}
.t-accent {
  color: var(--accent);
}
.t-peach {
  color: var(--peach);
}
.t-primary {
  color: var(--primary);
}
.t-right {
  text-align: right;
}
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
.t-white {
  color: var(--white);
}
.t-upper{
  text-transform: uppercase;
}
.fw-medium {
  font-weight: 500;
}
.small {
  font-size: 10px;
  line-height: 14px;
}

/* Background */
.bg-primary {
  background: var(--primary);
}
.bg-accent {
  background: var(--accent);
}
.bg-light {
  background: #f5f7f9;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  padding: 12px 20px;
  text-align: center;
  border-radius: 4px;
  color: var(--white);
  vertical-align: middle;
  user-select: none;
  border: 0;
  cursor: pointer;
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
    0 1px 1px rgba(38, 31, 68, 0.075);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn.round {
  border-radius: 25px;
}
.btn-accent {
  background: var(--accent);
  color: var(--peach);
}
.btn-peach {
  background-color: var(--peach);
  color: var(--accent);
}
.btn-primary {
  background: var(--primary);
}
.btn-accent-border {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: var(--white);
}
.btn-primary-border {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: var(--white);
}

.container {
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.sec-title {
  color: var(--primary);
  margin-bottom: 8px;
}
.page-title {
  height: 150px;
  overflow: hidden;
}
.page-title .sec-title {
  color: var(--white);
  z-index: 99;
}
.page-title .sec-desc {
  color: #bdbdbd;
  text-align: center;
  z-index: 99;
}
.page-title-img {
  height: 150px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-title-img:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #181b31bd;
}
.w-100 {
  width: 100%;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.card {
  background: var(--white);
  border-radius: 8px;
  position: relative;
  z-index: 999;
}
.shadow {
  box-shadow: 0px 0px 40px rgba(29, 58, 83, 0.15);
}
.rounded-circle {
  border-radius: 50%;
}
.rounded-0 {
  border-radius: 0;
}
.rounded-1 {
  border-radius: 0.2rem;
}
.rounded-4 {
  border-radius: 1rem;
}
.v-middle {
  vertical-align: middle;
}
.is_web {
  display: none;
}
.section {
  padding: 40px 0;
}
.main{
  margin-top: 61px;
}
.row {
  display: flex;
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.col-6 {
  width: 50%;
}
.col-12 {
  width: 100%;
}
[class*="col-"] {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Form Controls */
.form-control {
  border: 1px solid #d4d4e1;
  font-size: 14px;
  padding: 1rem;
  border-radius: 6px;
  width: 100%;
  font-family: "Source Sans 3", sans-serif;
}
.form-control:focus-visible {
  outline: 0;
}
.field-error{
  font-size: 12px;
  color: #F44336;
}

/* Margin */
.ms-3 {
  margin-left: 1rem;
}
.ms-4 {
  margin-left: 1.6rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.6rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.6rem;
}
.ms-3 {
  margin-left: 1rem;
}
.me-2 {
  margin-right: 0.5rem;
}

/* Padding */
.p-4 {
  padding: 1.6rem;
}
.p-3 {
  padding: 1rem;
}
.ps-5 {
  padding-left: 3rem;
}
.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Header */
.header-top {
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
}
.header-top .contact i {
  color: #212121;
  font-size: 18px;
  vertical-align: middle;
}
.social {
  column-gap: 20px;
  font-size: 20px;
  color: #7a7a7a;
}
.header-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0.75rem 0;
  background-color: #fcedda85;
  font-size: 1rem;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  z-index: 9999;
  transition: top 0.3s ease-in-out;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.header-wrap {
  height: 40px;
  align-items: center;
}
.header .logo {
  font-size: 20px;
  font-weight: 700;
}
.header nav ul {
  column-gap: 30px;
}
.header nav a {
  color: var(--gray);
  font-weight: 500;
}
#nav-menu ul {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.nav-close {
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}
.hamburger-menu {
  display: inline-flex;
  font-size: 2rem;
}

/* Banner */
#banner img{
  width: 100%;
}

/* About Us */
.about-details h4 {
  font-size: 18px;
  margin: 24px 0 18px;
}
.about-details ul {
  flex-flow: column;
  row-gap: 20px;
  margin-bottom: 40px;
}
.about-details ul i {
  color: var(--accent);
  margin-right: 10px;
}
#about-us .about-img {
  position: relative;
}
#about-us .about-img img {
  border-radius: 6px;
}
#about-us .about-wrap {
  column-gap: 120px;
  align-items: center;
  flex-direction: column;
}
#about-us .experiences {
  background-color: var(--accent);
  position: absolute;
  padding: 15px;
  align-items: center;
  column-gap: 20px;
  text-align: left;
  right: 20px;
  bottom: 20px;
  color: var(--white);
  border-radius: 6px;
}
#about-us .experiences img {
  width: 35px;
}
#about-us .experiences span {
  font-size: 22px;
  font-weight: 700;
}
.service-wrap {
  flex-direction: column;
  margin: 40px 0;
}
.service-row img {
  border-radius: 50%;
  padding: 20px;
  border: 2px dashed var(--peach);
}
.service-row.right {
  text-align: left;
}
.service-item h3 {
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.service-item p {
  font-size: 14px;
}
.service-item:first-child {
  margin-bottom: 40px;
}

/* Testimonials */
.testimonials-wrap {
  flex-direction: column;
  margin-top: 60px;
  row-gap: 30px;
}
#testimonials .card {
  position: relative;
  padding: 2rem 1.25rem;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid var(--peach);
}
#testimonials .img-thumb {
  width: 75px;
  height: 75px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  margin-right: 20px;
}
#testimonials .img-thumb img {
  max-height: 75px;
  transform: translate(-50%, -50%);
  min-width: 100%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
}
#testimonials .card h4 {
  margin-bottom: 0.125rem;
  font-size: 1.125rem;
  font-weight: 500;
}
#testimonials .card .city-name {
  font-size: 12px;
  font-style: italic;
}
#testimonials .card p {
  margin-top: 25px;
}
#testimonials .card:hover {
  box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
}
.companies {
  justify-content: space-between;
  margin-top: 40px;
}

/* Statistics */
#statistics {
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
#statistics:before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  content: "";
  width: 100%;
  height: 100%;
}
#statistics .sec-title,
#statistics .sec-desc {
  color: var(--peach);
}
.statistics-wrap {
  margin-top: 40px;
  color: var(--peach);
}
.statistics-wrap {
  justify-content: space-between;
}
.statistics-wrap h4 {
  font-size: 24px;
}
.statistics-wrap li div {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

/* Newsletter */

#newsletter .form-control:focus-visible {
  border: 1px solid var(--accent);
}
#newsletter .sec-title {
  font-weight: 500;
}
.newsletter-wrap {
  flex-direction: column;
  row-gap: 40px;
}
#newsletter .field-control .btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 18px 20px;
}
#newsletter .field-control {
  width: 100%;
}

/* Footer */
.footer {
  background: #ff9d3c0d;
  padding-top: 40px;
}
.footer-wrap {
  padding-bottom: 20px;
}
.link-wrap h4,
.link-wrap h2 {
  margin-bottom: 30px;
}
.link-wrap .social {
  margin-top: 30px;
}
.link-wrap .social i {
  border: 1px solid;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 4px;
}
.link-wrap ul {
  flex-flow: column;
  row-gap: 25px;
}
.link-wrap a {
  color: var(--text);
}
.link-wrap a:hover {
  color: var(--accent);
}
.link-wrap li i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent);
}
.footer hr {
  border: 0;
  border-bottom: 1px solid #b9b9b9;
}
.footer .copyright {
  padding: 20px 0;
  padding: 10px 16px;
  font-size: 12px;
}

/* About us page */
.reason-wrap {
  flex-direction: column;
  row-gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
}
.reason-wrap .reason-icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--peach);
  background: var(--accent);
}
.reason-wrap li {
  text-align: left;
  align-items: center;
  column-gap: 20px;
}
.reason-wrap li h4 {
  font-size: 16px;
  font-weight: 500;
}
.reason-wrap li p {
  font-size: 12px;
  color: var(--text);
}

/*=============== FAQs ===============*/
.questions-wrap {
  flex-direction: column;
  row-gap: 20px;
  margin-top: 40px;
}
.questions-item {
  text-align: left;
  background: var(--white);
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 1px 6px rgb(0 0 0 / 16%);
}
.questions-header {
  position: relative;
  cursor: pointer;
  padding: 1rem 2.2rem 1rem 1rem;
  color: var(--primary);
  line-height: 1.2;
}
.questions-header h3 {
  font-weight: 500;
  font-size: 16px;
}
.questions-content {
  overflow: hidden;
  height: 0;
}
.questions-item,
.questions-header,
.questions-item-title,
.questions-icon,
.questions-description,
.questions-content {
  transition: 0.3s;
}
.questions-description {
  padding: 1.25rem 3.125rem 1.25rem 1.25rem;
  border-top: 1px solid #e0e0e0;
}
.questions-icon {
  position: absolute;
  right: 12px;
  top: 16px;
  font-size: 18px;
}
.accordion-open .questions-icon {
  transform: rotate(45deg);
}

/* Contact us */
.contact-card ul {
  flex-direction: column;
  row-gap: 30px;
}
.contact-card li {
  border: 1px solid #d4d4e1;
  padding: 1rem 1.25rem;
  text-align: center;
  border-radius: 10px;
}
.contact-card i {
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 15px;
  display: block;
}
.contact-card p {
  font-size: 14px;
  color: var(--text);
}
.contact-form-wrap {
  flex-direction: column;
  row-gap: 40px;
}
.contact-form .row {
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 20px;
}
.map-iframe {
  height: 100%;
}

/* Wiring harness */
.wiring-harness-wrap {
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
#wiring-harness .card {
  padding: 16px;
}
#wiring-harness .card img {
  border-radius: 8px;
}
#wiring-harness .card h4 {
  margin-top: 16px;
}
#wiring-harness .card p {
  font-size: 14px;
  color: var(--text);
  margin: 8px 0 18px;
  min-height: 95px;
}
#wiring-harness .card .btn {
  font-size: 12px;
  padding: 10px 30px;
}

/* Applications */
.applications-wrap {
  flex-direction: column;
  margin-top: 40px;
  align-items: center;
  row-gap: 30px;
  text-align: left;
}
.applications-wrap:nth-child(even) {
  flex-direction: column-reverse;
}
.applications-wrap img {
  width: 550px;
  border-radius: 8px;
}
.applications-wrap h3 {
  font-size: 22px;
}
.applications-wrap p {
  font-size: 12px;
  color: var(--text);
  margin: 15px 0 20px;
}
.product-card {
  text-align: center;
}
.product-card h4 {
  font-size: 20px;
}
.product-card img {
  width: 100%;
  margin: 15px 0;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.modal.open {
  visibility: visible;
  opacity: 1;
}
.modal-body {
  max-width: 800px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  background: #fff;
  z-index: 602;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 4px;
}
.modal:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 601;
}
.modal-content {
  max-height: 80vh;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.modal-close {
  position: absolute;
  top: -20px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #fff;
  border: 0;
  z-index: 999;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.modal-close:after,
.modal-close:before {
  content: "";
  position: absolute;
  background: #959595;
  height: 1px;
  left: 12px;
  top: 19px;
  width: 17px;
}
.modal-close:after {
  transform: rotate(45deg);
}
.modal-close:before {
  transform: rotate(-45deg);
}
#modal-product h2 {
  color: var(--accent);
  margin: 15px 0;
  font-size: 18px;
}
.product-table-wrap{
  white-space: nowrap;
  overflow-x: scroll;
  margin-left: -16px;
  margin-right: -16px;
  padding: 0 16px 15px;
}
.product-details-table {
  width: 100%;
}
.product-details-table td,
.product-details-table th {
  border: 1px solid #ededed;
  padding: 8px 15px;
  font-size: 12px;
  text-align: center;
}
.product-details-table th {
  color: var(--primary);
  font-weight: 500;
  background-color: #ececec;
  border-color: #e3e3e3;
}
.product-details-table ul {
  padding-left: 40px;
  text-align: left;
}
.product-details-table li {
  list-style: disc;
  margin-bottom: 6px;
}
.product-details-table li::marker {
  color: #9e9e9e;
}
.other-products{
  margin-top: 80px;
}
.other-products ul{
    margin-left: 18px;
}
.other-products li{
  list-style: disc;
  font-size: 12px;
  line-height: 24px;
  color: var(--text);
}
.product-wrap{
  row-gap: 25px;
  align-items: center;
  flex-direction: column;
}
.product-wrap p{
  margin: 20px 0;
}
.product-wrap img{
  width: 100%;
  border-radius: 8px;
}
.product-wrap li{
  list-style: inside;
  color: var(--primary);
  margin-bottom: 10px;
}
.product-wrap ul{
  margin-bottom: 30px;
}
#components #wiring-harness .card p{
  margin-bottom: 0;
}
/* Custom Scroll Bar */
.scroll-bar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.scroll-bar::-webkit-scrollbar-track {
  background: var(--peach);
  margin-top: 8px;
  margin-bottom: 8px;
}
.scroll-bar::-webkit-scrollbar-thumb {
  background: var(--accent) !important;
}

/* slider */
.swiper.overflow-inherit{
  overflow: inherit !important;
}
.swiper .swiper-pagination{
  bottom: -30px !important;
}
.swiper .swiper-pagination-bullet-active{
  background-color: var(--secondary);
}
.swiper .swiper-button-next, .swiper .swiper-button-prev{
  color: var(--primary);
}
.swiper-slide-thumb-active img{
  border: 2px solid var(--primary);
  border-radius: 6px;
}
@media only screen and (max-width: 767px) {
  #nav-menu.show-menu {
    right: 0;
  }
  #nav-menu {
    position: fixed;
    background: var(--peach);
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: 0.3s;
    z-index: 100;
  }
  .page-title {
    margin-top: 60px;
  }
  #about-us .about-wrap {
    row-gap: 40px;
  }
  .about-details li {
    display: flex;
  }
  .service-img {
    margin: 30px;
  }
  .statistics-wrap {
    flex-wrap: wrap;
    row-gap: 50px;
  }
  .statistics-wrap li {
    width: 50%;
  }
  .companies {
    gap: 33px;
    flex-wrap: wrap;
  }
  .companies img {
    max-height: 35px;
  }
  .footer-wrap .link-wrap {
    margin-bottom: 40px;
    display: inline-block;
  }
  .footer-wrap .link-wrap:nth-child(2) {
    width: 60%;
  }
  .footer-wrap .link-wrap:nth-child(3) {
    width: calc(40% - 5px);
  }
  .footer-wrap .link-wrap:nth-child(4) {
    margin-bottom: 0;
  }
  #contact-us-main .sec-title {
    text-align: center;
  }
  .map-iframe {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .is_mobile {
    display: none;
  }
  .is_web {
    display: block;
  }
  .hamburger-menu,
  .nav-close {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    font-size: 16px;
    --swiper-navigation-size: 36px !important;
  }
  .container {
    max-width: 960px;
  }
  .section {
    padding: 70px 0;
  }
  .main{
    margin-top: 84px;
  }
  .sec-title {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .sec-desc {
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
  }
  .page-title {
    height: 280px;
  }
  .page-title-img {
    height: 280px;
  }
  .btn {
    font-size: 16px;
    padding: 14px 30px;
  }
  .col-lg-6 {
    width: 50%;
  }
  .header-fixed.sticky {
    position: fixed;
  }
  .header-fixed {
    background-color: #ffffffcf;
  }
  .header-wrap {
    height: 60px;
  }
  #nav-menu ul {
    flex-direction: row;
  }
  #page-title.sticky {
    margin-top: 84px;
  }
  #about-us .about-wrap {
    flex-flow: row;
  }
  #about-us .about-details {
    width: 50%;
  }
  #about-us .about-img {
    width: 50%;
  }
  .about-details h4 {
    font-size: 26px;
    margin: 35px 0 20px;
  }
  #about-us-main .about-details h4 {
    font-size: 22px;
  }
  #about-us .experiences {
    right: 30px;
    bottom: 30px;
    padding: 20px;
  }
  #about-us .experiences img {
    width: 50px;
  }
  #about-us .experiences span {
    font-size: 30px;
  }
  .service-wrap {
    margin: 80px 0;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 40px;
    align-items: center;
  }
  .service-row {
    width: 33%;
  }
  .service-item h3 {
    max-width: 230px;
  }
  .service-row.right {
    text-align: right;
  }
  .service-row.right .service-item h3 {
    margin-left: auto;
  }
  .service-item:first-child {
    margin-bottom: 60px;
  }
  .statistics-wrap {
    margin-top: 100px;
  }
  .statistics-wrap h4 {
    font-size: 48px;
  }
  .statistics-wrap li div {
    font-size: 22px;
  }
  .testimonials-wrap {
    flex-direction: row;
    column-gap: 40px;
  }
  #testimonials .card {
    max-width: 33%;
  }
  .companies {
    margin-top: 80px;
  }
  .newsletter-wrap {
    column-gap: 100px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #newsletter .t-left {
    width: 40%;
  }
  #newsletter .field-control {
    width: 600px;
  }
  .reason-wrap {
    flex-direction: row;
    margin-top: 80px;
  }
  .reason-wrap .reason-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 32px;
  }
  .questions-header h3 {
    font-size: 14px;
  }
  .reason-wrap li h4 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .reason-wrap li p {
    font-size: 14px;
  }
  .questions-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 30px;
    margin-top: 80px;
  }
  .questions-item {
    width: calc(50% - 15px);
  }
  .questions-header {
    padding: 1.25rem 3.125rem 1.25rem 1.25rem;
  }
  .questions-icon {
    right: 20px;
    top: 20px;
    font-size: 22px;
  }
  .contact-card ul {
    flex-direction: row;
    column-gap: 40px;
  }
  .contact-card li {
    width: 25%;
    padding: 3rem 1.25rem;
  }
  .contact-card i {
    font-size: 55px;
  }
  .contact-form-wrap {
    flex-direction: row;
    column-gap: 40px;
  }
  .contact-form {
    width: 50%;
  }
  .contact-form .row {
    row-gap: 25px;
    margin-top: 0;
  }
  .wiring-harness-wrap {
    flex-direction: row;
    row-gap: 60px;
  }
  #wiring-harness .card {
    width: 30%;
  }
  .applications-wrap {
    flex-direction: row;
    column-gap: 60px;
    margin-top: 80px;
    text-align: center;
  }
  .applications-wrap:nth-child(even) {
    flex-direction: initial;
  }
  .applications-wrap h3 {
    font-size: 32px;
  }
  .applications-wrap p {
    margin: 30px 0 40px;
    font-size: 16px;
  }
  .footer {
    padding-top: 70px;
    column-gap: 40px;
  }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 40px;
    column-gap: 20px;
  }
  .footer .link-wrap {
    width: 25%;
  }
  .link-wrap p {
    max-width: 90%;
  }
  .footer .link-wrap:nth-child(2) {
    width: 30%;
  }
  .footer .link-wrap:nth-child(3) {
    width: 20%;
  }
  .footer .copyright {
    padding: 20px 0;
    font-size: 14px;
  }
  .modal-body {
    width: 70%;
    max-width: 950px;
    border-radius: 8px;
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
  .modal-body.sm{
    width: 550px;
  }
  .modal-content {
    padding: 2rem 2.5rem;
  }
  .modal-close {
    top: -23px;
    right: 30px;
    width: 46px;
    height: 46px;
  }
  .modal-close:after,
  .modal-close:before {
    left: 12px;
    top: 22px;
    width: 22px;
  }
  #modal-product h2 {
    font-size: 24px;
    margin: 25px 0;
  }
  #modal-thank-you .btn{
    font-size: 12px;
    padding: 10px 30px;
  }
  .product-wrap{
    flex-direction: row;
    column-gap: 60px;
  }
  .product-wrap img{
    max-width: 650px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
  .service-wrap {
    column-gap: 70px;
  }
  .service-item:first-child {
    margin-bottom: 100px;
  }
}

@keyframes zoomImg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}