* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --jpk-accent-1: #0b2045;
  --jpk-accent-2: #8cbb2b;
  --jpk-color-white: #fff;
  --jpk-color-black: #000;
  --jpk-color-gray: #525252;
  --jpk-color-light-gray: #f8f9fb;
  --jpk-primary-font: "Nunito Sans";
  --jpk-transition: all 300ms ease-in-out;
}
html ::-webkit-scrollbar {
  width: 8px;
}
html ::-webkit-scrollbar-track {
  background-color: rgb(246, 246, 246, 0.4);
}
html ::-webkit-scrollbar-thumb {
  background-color: var(--jpk-accent-1);
}
::-moz-selection {
  color: var(--jpk-color-white);
  background-color: var(--jpk-accent-2);
}
::selection {
  color: var(--jpk-color-white);
  background-color: var(--jpk-accent-2);
}
body {
  font-family: var(--jpk-primary-font);
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
video {
  width: 100%;
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--jpk-transition);
}
a:hover {
  color: inherit;
  text-decoration: none;
}
video {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  pointer-events: none;
}
/* Safari 11+ */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    header {
      top: 0 !important;
    }
  }
}

/* ===== Base Styles ===== */
.btn {
  background-color: transparent;
  border: 2px solid var(--jpk-accent-2);
  border-radius: 30px;
  color: var(--jpk-color-white);
  font-size: 14px;
  font-weight: 400;
  padding: 0.35rem 1.8rem;
  transition: var(--jpk-transition);
}
.btn:hover {
  background-color: var(--jpk-accent-1);
  color: var(--jpk-color-white);
  border-color: var(--jpk-color-white);
}

.small-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--jpk-accent-2);
  line-height: 1;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.small-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--jpk-accent-2);
}
.large-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--jpk-accent-1);
  line-height: 36px;
  margin-bottom: 10px;
}
.content {
  font-size: 16px;
  line-height: 22px;
  color: var(--jpk-color-gray);
  font-weight: 300;
  margin-top: 15px;
}

/* ===== Base Classes ===== */
/* === Color === */
.jpk-accent-1 {
  color: var(--jpk-accent-1);
}
.jpk-accent-2 {
  color: var(--jpk-accent-2);
}
.jpk-color-white {
  color: var(--jpk-color-white);
}
.jpk-color-black {
  color: var(--jpk-color-black);
}
.jpk-color-light-gray {
  color: var(--jpk-color-light-gray);
}
/* === Background Color === */
.jpk-bkgd-accent-1 {
  background-color: var(--jpk-accent-1);
}
.jpk-bkgd-accent-2 {
  background-color: var(--jpk-accent-2);
}
.jpk-bkgd-light-gray {
  background-color: var(--jpk-color-light-gray);
}
/* === Border Classes === */
.border-accent-2 {
  border-color: var(--jpk-accent-2);
}
.border-accent-2:hover {
  border-color: var(--jpk-accent-2);
}
/* === Hover Accent === */
.hover-white-color:hover {
  color: var(--jpk-color-white);
}
.hover-accent-2:hover {
  color: var(--jpk-accent-2);
}
/* === Hover Background === */
.hover-bkgd-accent-2:hover {
  background-color: var(--jpk-accent-2);
}

/* Spacing Classes */
.jpk-spacer {
  display: block;
  clear: both;
  height: var(--jpk-xxl);
}
@media only screen and (max-width: 1199px) {
  .jpk-spacer {
    height: var(--jpk-xl, var(--jpk-xxl));
  }
}
@media only screen and (max-width: 991px) {
  .jpk-spacer {
    height: var(--jpk-lg, var(--jpk-xl, var(--jpk-xxl)));
  }
}
@media only screen and (max-width: 767px) {
  .jpk-spacer {
    height: var(--jpk-md, var(--jpk-lg, var(--jpk-xl, var(--jpk-xxl))));
  }
}
@media only screen and (max-width: 575px) {
  .jpk-spacer {
    height: var(--jpk-sm, var(--jpk-md, var(--jpk-lg, var(--jpk-xl, var(--jpk-xxl)))));
  }
}

/* ===== Header Area Styles ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1080;
  -webkit-transition: top 250ms ease-in-out;
  transition: top 250ms ease-in-out;
}
header.header-scrolled {
  box-shadow: 0 10px 25px rgb(0, 0, 0, 0.08);
}
.navbar-brand {
  width: 54px;
  height: 54px;
  padding: 0;
  transition: var(--jpk-transition);
}
.navbar-toggler {
  padding: 0;
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 300;
  color: var(--jpk-color-white);
  margin-right: 25px;
  transition: var(--jpk-transition);
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--jpk-accent-2);
}
.navbar-nav .nav-item .nav-link.active {
  color: var(--jpk-accent-2);
  font-weight: 400;
}
.navbar-nav .nav-item:last-of-type .nav-link {
  padding-right: 0;
  margin-right: 0;
}
.header-scrolled .navbar {
  background-color: var(--jpk-color-white);
}
.header-scrolled .navbar-brand {
  width: 42px;
  height: 42px;
}
.header-scrolled .navbar-nav .nav-item .nav-link {
  color: var(--jpk-color-black);
  transition: var(--jpk-transition);
}
.header-scrolled .navbar-nav .nav-item .nav-link:hover {
  color: var(--jpk-accent-2);
}
.header-scrolled .navbar-nav .nav-item .nav-link.active {
  color: var(--jpk-accent-2);
  font-weight: 400;
}

/* ===== Banner Area Styles ===== */
.banner-sec {
  background: url(../img/banner-background-mobile.png) no-repeat;
  background-size: cover;
  background-position: center top;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.banner-content {
  margin-bottom: 0;
}
.banner-content h1 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;
  color: var(--jpk-color-white);
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.banner-content h1::before {
  content: "";
  position: absolute;
  height: 84%;
  width: 10px;
  background-color: var(--jpk-accent-2);
  left: 0;
  top: 48.5%;
  transform: translateY(-50%);
}
.banner-content p {
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
  color: var(--jpk-color-white);
  margin-bottom: 0;
}
/* ===== Feature List Area Styles ===== */
.feature-list-sec {
  position: absolute;
  bottom: 1.875rem;
  left: 0;
  right: 0;
  width: 100%;
}
.single-feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.single-feature img {
  width: auto;
  height: 35px;
  margin-right: 10px;
}
.single-feature p {
  color: var(--jpk-accent-2);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 19px;
}
.single-feature p br {
  display: none;
}
.single-feature p a {
  display: inline-block;
  color: var(--jpk-accent-2);
  white-space: nowrap;
}

/* ===== Who We Are Area Styles ===== */

/* ===== Info Slider Area Styles ===== */
.infoSlider .swiper-slide {
  text-align: center;
  min-height: 660px;
  max-height: 100vh;
}
.slide-one {
  background: url(../img/Jpk-products-applications-background.jpeg), radial-gradient(#173569, #0b2045) no-repeat;
  background-size: cover;
  background-position: center center;
}
.absolute-btn {
  position: relative;
  bottom: 4rem;
}
.infoSlider .swiper-pagination {
  bottom: 20px;
}
.infoSlider .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--jpk-color-white);
  opacity: 1;
  height: 12px;
  width: 12px;
}
.infoSlider .swiper-pagination-bullet-active {
  background: var(--jpk-color-white);
}
.slide-two {
  background: radial-gradient(#173569, #0b2045);
}

/* ===== AdBlue Application Area Styles ===== */
.applicationSlider {
  margin-top: 10px;
}
.applicationSlider .swiper-slide {
  text-align: left;
}
.adblue-title h2 {
  font-size: 30px;
  color: var(--jpk-color-white);
  font-weight: 700;
}
.icon-container {
  height: 60px;
  width: 60px;
  margin-bottom: 10px;
}
.applicationSlider .swiper-slide h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--jpk-color-white);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 44px;
}

/* ===== Why JPK Area Styles ===== */
.whyjpk-list {
  margin-top: 20px;
}
.whyjpk-list li {
  font-size: 16px;
  color: var(--jpk-color-gray);
  line-height: 20px;
  position: relative;
  padding-left: 25px;
}
.whyjpk-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.whyjpk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 16px;
  height: 26px;
  background: url(../img/flower-icon.svg) no-repeat;
  background-size: cover;
  background-position: center center;
}

/* ===== Testimonial Area Styles ===== */
.testimonialSlider .tst-content {
  margin: auto;
}
.testimonialSlider .content {
  margin-top: 0;
  position: relative;
  padding: 24px;
}
.testimonialSlider .content::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/double-quotes-icon.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 4px;
}
.testimonialSlider .content::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/double-quotes-icon.svg) no-repeat;
  background-position: center center;
  background-size: 100%;
  transform: rotateY(180deg);
  position: absolute;
  right: auto;
  margin-left: 10px;
  bottom: 24px;
}
.custom-swiper-button-next,
.custom-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  border-radius: 100%;
  background: var(--jpk-color-white);
  border: 1px solid #d1d1d1;
  transition: var(--jpk-transition);
}
.custom-swiper-button-next:hover,
.custom-swiper-button-prev:hover {
  background: var(--jpk-accent-2);
}
.custom-swiper-button-prev {
  left: 0;
}
.custom-swiper-button-next {
  right: 0;
}
.custom-swiper-button-next img,
.custom-swiper-button-prev img {
  height: 12px;
  width: 12px;
  transition: var(--jpk-transition);
}
.custom-swiper-button-next img {
  transform: rotate(180deg);
}
.custom-swiper-button-next:hover img,
.custom-swiper-button-prev:hover img {
  filter: brightness(10);
}
.testimonialSlider blockquote {
  padding: 0 4%;
}
.testimonialSlider blockquote span {
  display: block;
}
.testimonialSlider blockquote span:first-child {
  font-size: 20px;
  color: var(--jpk-color-gray);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 3px;
  position: relative;
  padding-left: 30px;
}
.testimonialSlider blockquote span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--jpk-color-gray);
}

/* ===== Footer Area Styles ===== */
footer {
  background: url(../img/footer-background-mobile.png) no-repeat;
  background-size: cover;
  background-position: center center;
}
.footer-top {
  padding: 3rem 0 1.8rem 0;
}
.logo {
  display: block;
  margin-bottom: 15px;
  max-width: max-content;
}
.logo img {
  width: 70px;
  height: 70px;
}
.ft-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--jpk-accent-2);
}
.ft-content {
  font-size: 16px;
  color: var(--jpk-color-white);
  font-weight: 300;
}
.follow-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--jpk-accent-2);
  line-height: 1;
  margin-bottom: 8px;
}
.follow-list {
  margin-top: 13px;
}
.follow-list li {
  display: inline-block;
}
.follow-list li:not(:last-of-type) {
  margin-right: 8px;
}
.follow-list li a {
  height: 30px;
  width: 30px;
}
.imp-links .follow-title {
  margin-bottom: 15px;
}
.imp-links-list li a {
  font-size: 16px;
  font-weight: 300;
  color: var(--jpk-color-white);
  line-height: 1;
  transition: var(--jpk-transition);
}
.imp-links-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.imp-links-list li a:hover {
  color: var(--jpk-accent-2);
}
.contact-area h4 {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--jpk-color-white);
  line-height: 1;
}
address {
  margin: 10px 0;
}
address a {
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  color: var(--jpk-color-white);
}
address a:hover {
  color: var(--jpk-accent-2);
}
.contact-list li {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.contact-list li:not(:last-of-type) {
  padding-right: 12px;
  margin-right: 4px;
}
.contact-list li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 17px;
  width: 2px;
  background: var(--jpk-color-white);
}
.contact-list li a {
  color: var(--jpk-color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.contact-list li a:hover {
  color: var(--jpk-accent-2);
}
.footer-bottom {
  background: var(--jpk-accent-2);
  color: var(--jpk-color-white);
  padding: 0.5rem 0;
}
.footer-bottom p {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
}
.copyright {
  position: relative;
  top: 2px;
  margin-bottom: 2px !important;
}
.designBy {
  text-align: right;
}
.designBy img {
  width: 12px;
  height: 10.2px;
}
.designBy a {
  font-size: 14px;
  color: var(--jpk-color-white);
  line-height: 1;
  font-weight: 400;
}
.designBy a:hover {
  color: var(--jpk-accent-1);
}

/* ===== About Page Styles ===== */
/* === Inner Pages Banner Styles === */
.inner-banner {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.inner-banner .banner-content {
  margin-top: 4.2rem;
}
.single-box {
  padding: 1.5rem;
  background-color: #f0f0f0;
  text-align: left;
}
.single-box:not(:last-of-type) {
  margin-bottom: 20px;
}
.single-box img {
  height: 60px;
  width: 60px;
  margin-bottom: 20px;
  transition: var(--jpk-transition);
}
.single-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--jpk-accent-2);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--jpk-transition);
}
.single-box p {
  font-size: 16px;
  line-height: 22px;
  color: #292828;
  font-weight: 300;
  margin-bottom: 0;
  transition: var(--jpk-transition);
}
.single-item {
  font-size: 16px;
  color: var(--jpk-color-gray);
  line-height: 20px;
  position: relative;
  padding-left: 23px;
  font-weight: 300;
  margin-bottom: 15px;
}
.single-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 16px;
  height: 22px;
  background: url(../img/flower-icon.svg) no-repeat;
  background-size: 100%;
  background-position: center center;
}

/* ===== Product Page Styles ===== */
.product-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.single-product-item {
  width: 100%;
  text-align: center;
  padding: 2rem 2rem 1.7rem 2rem;
}
.single-product-item:not(:first-of-type) {
  margin-top: 20px;
}
.single-product-item img {
  width: 80%;
}
.single-product-item h3 {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--jpk-accent-2);
  line-height: 1;
  margin-bottom: 0;
}
.contact-container {
  background-color: var(--jpk-color-light-gray);
  padding: 3rem 2rem;
}
.contact-container h3 {
  margin-top: 0;
  font-size: 22px;
  line-height: 26px;
}
.contact-container .call-link {
  display: block;
  color: var(--jpk-accent-1);
  font-size: 26px;
  line-height: 1;
  max-width: max-content;
  margin: 8px auto;
}
.contact-container span {
  display: block;
  text-align: center;
  margin: 15px 0;
  font-size: 18px;
  color: var(--jpk-accent-2);
  position: relative;
}
.contact-container span::before,
.contact-container span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 0.5px;
  width: 100px;
  background-color: #a4a4a4;
}
.contact-container span::before {
  left: 0;
}
.contact-container span::after {
  right: 0;
}
.contact-container .btn {
  font-size: 17px;
  padding: 0.6rem 1.7rem;
}
.certificate-area {
  margin-top: 20px;
}
.single-certi {
  border: 1px solid #d6d6d6;
  width: 100%;
  padding: 20px 20px 15px 20px;
}
.single-certi:not(:last-of-type) {
  margin-bottom: 30px;
}
.single-certi a img {
  max-width: 100%;
  max-height: 100%;
}
.certi-name {
  font-size: 20px;
  color: var(--jpk-accent-2);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-top: 15px;
}

/* ===== Become Parner Page Styles ===== */
.single-contact-item {
  background-color: var(--jpk-color-light-gray);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--jpk-accent-2);
}
.single-contact-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.single-contact-item span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.single-contact-item img {
  width: 36px;
  margin-right: 10px;
}
.single-contact-item a {
  font-size: 24px;
  font-weight: 600;
}
.single-contact-item a:hover {
  color: var(--jpk-accent-1);
}

/* ===== FAQs Page Styles ===== */
.accordion {
  --bs-accordion-bg: var(--pi-color-light-skyblue);
  --bs-accordion-btn-padding-x: 0.85rem;
  --bs-accordion-btn-padding-y: 0.7rem;
  border-radius: 9px;
  --bs-accordion-active-color: var(--pi-accent-3);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
  --bs-accordion-active-color: var(--jpk-accent-2);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg transform='translate(-1528 -4470)'%3E%3Cg transform='translate(1528 4470)' fill='%23fff' stroke='%23adadad' stroke-width='1'%3E%3Ccircle cx='20' cy='20' r='20' stroke='none'/%3E%3Ccircle cx='20' cy='20' r='19.5' fill='none'/%3E%3C/g%3E%3Cpath d='M1441.669 4363h18.749' transform='translate(97.142 127)' fill='none' stroke='%238cbb2b' stroke-linecap='round' stroke-width='1'/%3E%3Cpath d='M0 0H18.749' transform='translate(1548.395 4480.626) rotate(90)' fill='none' stroke='%238cbb2b' stroke-linecap='round' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  --bs-accordion-btn-icon-width: 1.2rem;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg transform='translate(-1528 -4470)'%3E%3Cg transform='translate(1528 4470)' fill='%23fff' stroke='%23adadad' stroke-width='1'%3E%3Ccircle cx='20' cy='20' r='20' stroke='none'/%3E%3Ccircle cx='20' cy='20' r='19.5' fill='none'/%3E%3C/g%3E%3Cpath d='M1441.669,4363h18.749' transform='translate(97.142 127)' fill='none' stroke='%238cbb2b' stroke-linecap='round' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  --bs-accordion-btn-icon-transition: var(--pi-transition);
}
.accordion .accordion-item {
  border: 1px solid #d6d6d6;
  margin-bottom: 10px;
}
.accordion-flush .accordion-item:first-child {
  border-top: 1px solid #d6d6d6;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.accordion-button {
  font-size: 1.05rem;
}
.accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: unset;
}
.accordion-button:not(.collapsed) {
  box-shadow: none;
  font-weight: 600;
}
.accordion-body {
  padding: 0 1rem;
}
.accordion-body p {
  font-size: 0.9rem;
  line-height: 18.5px;
  color: #525252;
}

/* ===== Contact Page Styles ===== */
.form-container {
  padding: 30px;
  background-color: #f8f9fb;
}
.form-title h6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--jpk-accent-2);
}
form {
  margin-top: 30px;
}
.form-label {
  margin-bottom: 0.3rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group .form-control {
  border-radius: 0;
  border-color: #d6d6d6;
  padding: 0.75rem;
}
.form-group .form-control:focus {
  border-color: var(--jpk-accent-2);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(140, 187, 43, 0.3);
}
.form-btn {
  width: 100%;
  border-radius: 0;
  display: block;
  background-color: var(--jpk-accent-2);
  padding: 0.782rem 0;
  margin-top: 30px;
}
.form-btn:hover {
  border-color: var(--jpk-accent-1);
}
.form-right-area {
  padding-top: 50px;
}
.contact-items {
  margin-top: 18px;
}
.contact-item-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.contact-item-flex:first-of-type .contact-address span {
  margin-top: 1.2px;
}
.contact-icon {
  margin-right: 10px;
}
.contact-icon img {
  min-width: 26px;
  min-height: 26px;
  max-width: 26px;
  max-height: 26px;
}
.contact-address span {
  font-size: 18px;
  font-weight: 600;
  color: var(--jpk-accent-1);
  display: block;
}
.contact-address a {
  font-size: 18px;
  font-weight: 600;
  color: var(--jpk-accent-1);
}
.contact-address a:hover {
  color: var(--jpk-accent-2);
}
.contact-address .contact-link {
  font-size: 14px;
  line-height: 18px;
  display: block;
  font-weight: 400;
}
