﻿@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,200..800&display=swap');




.bricolage-grotesque-<uniquifier> {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


body {
  font-family: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
}

* {
    font-family: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
}









#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}
#preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #e74860;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #e74860;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}
@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}
a:hover,
a:active {
  color: #fff;
  text-decoration: none;
}
.min-height-300 {
  min-height: 300px;
}
.h-100vh {
  height: 100vh;
}
.primary-overlay[data-overlay-dark]:before {
  background: #e74860;
}
.secondary-overlay[data-overlay-dark]:before {
  background: #18455d;
}
.left-overlay-secondary[data-overlay-dark]:before {
  background: rgba(24, 69, 93, 0.76);
  background: linear-gradient(-90deg, transparent, #18455d 65%);
}
.dark-overlay[data-overlay-dark]:before {
  background: #0c3246;
}
.left-overlay-dark[data-overlay-dark]:before {
  background: rgba(12, 50, 70, 0.76);
  background: linear-gradient(-90deg, transparent, #0c3246 100%);
}
.left-overlay-dark-three[data-overlay-dark]:before {
  background: rgba(12, 50, 70, 0.76);
  background: linear-gradient(-90deg, transparent, #0c3246 65%);
}
.text-primary,
.text-primary-hover:hover {
  color: #e74860 !important;
}
.bg-primary {
  background-color: #e74860 !important;
}
.border-primary {
  border-color: #e74860 !important;
}
.text-secondary,
.text-secondary-hover:hover {
  color: #18455d !important;
}
.bg-secondary {
  background-color: #18455d !important;
}
.bg-dark {
  background-color: #0c3246 !important;
}
.border-secondary {
  border-color: #18455d !important;
}
.bg-gradient-dark-primary:before {
  opacity: 0.7;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  background: rgba(0, 0, 0, 0.76);
  background-image: linear-gradient(
    to right top,
    #0c3246,
    #0c3246,
    #0c3246,
    #0c3246,
    #e74860
  );
}
.text-dark,
.text-dark-hover:hover {
  color: #0c3246 !important;
}
.bg-white-opacity-light {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-white-9 {
  background: rgba(255, 255, 255, 0.9);
}
.form-control {
  border-radius: 0;
}
.primary-shadow {
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
}
.background-position-right-bottom {
  background-position: right bottom;
}
.text-white-hover:hover {
  color: #fff !important;
}
.text-white-hover-light:hover {
  color: rgba(255, 255, 255, 0.65) !important;
}
.shape-img-one {
  transform: rotate(180deg);
}
.letter-spacing-minus-5px {
  letter-spacing: -0.5px;
}
.min-vh-100 {
  min-height: 100vh;
}
.height-300 {
  height: 300px;
}
.section-bg {
  position: absolute;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  background-position: center center;
  background-repeat: no-repeat;
}
.right-container {
  position: relative;
  z-index: 1;
  border-bottom-left-radius: 0.35rem;
  border-top-left-radius: 0.35rem;
}
.right-container:before {
  position: absolute;
  left: 0;
  right: inherit;
  top: 0;
  height: 100%;
  width: 1600px;
  background-color: #18455d;
  content: "";
  z-index: 1;
}
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #e74860;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all 0.3s ease;
}
.scroll-to-top i {
  color: #fff;
}
.scroll-to-top:hover {
  color: #fff;
  background: #18455d;
}
.scroll-to-top:hover i {
  color: #fff;
}
.scroll-to-top:visited {
  color: #fff;
  text-decoration: none;
}
.list-style1 li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f1f1f1;
  padding: 15px 0;
}
.list-style1 li:last-child {
  border-bottom: unset;
  padding-bottom: 0;
}
.list-style2 {
  list-style: none;
  padding-left: 0;
}
.list-style2 li {
  line-height: 32px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 8px;
}
.list-style2 li:last-child {
  margin-bottom: 0;
}
.list-style2 li:before {
  content: "\e64c";
  font-family: "themify";
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  line-height: 35px;
  color: #e74860;
}
.list-style3 li {
  display: inline-block;
  padding: 0.5rem 1rem;
}
.list-style3 li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
}
.list-style3 li:first-child {
  padding-left: 0;
}
.list-style4 li {
  display: inline-block;
}
.list-style4 li a {
  padding: 0.5rem 0.85rem;
  color: #18455d;
  font-weight: 700;
}
.list-style4 li:last-child a {
  padding-right: 0;
}
.list-style4 li a:hover {
  color: #e74860;
}
.btn-style1 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #ffffff;
  background: #e74860;
  padding: 15px 40px !important;
  z-index: 1;
  transition: all 0.4s ease-in-out 0s;
}
.btn-style1:before {
  position: absolute;
  content: "";
  top: -4px;
  right: 4px;
  bottom: 4px;
  left: -4px;
  border: 1px solid #232323;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.btn-style1 span {
  position: relative;
  z-index: 9;
  color: #ffffff;
}
.btn-style1:hover:before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.btn-style1.secondary {
  background: #18455d;
}
.btn-style1.secondary:before {
  border-color: #e74860;
}
.btn-style1.white-border:before {
  border-color: #fff;
}
.btn-style1.medium {
  padding: 12px 36px !important;
}
.btn-style1.small {
  padding: 10px 34px !important;
}
.btn-style2 {
  font-size: 16px;
  background: #18455d;
  color: #fff;
  line-height: 1;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 20px 29px 20px 29px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.btn-style2:before {
  position: absolute;
  content: "";
  height: calc(100% - 10px);
  width: 50px;
  background: 0 0;
  top: 5px;
  left: 5px;
  transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -webkit-transition: all ease 300ms;
  border: 1px solid #fff;
  border-right: 0;
}
.btn-style2 i {
  padding-left: 8px;
  font-size: 14px;
  position: relative;
  top: 0;
}
.btn-style2:after {
  position: absolute;
  content: "";
  height: calc(100% - 10px);
  width: 50px;
  background: 0 0;
  border: 1px solid #fff;
  border-left: 0;
  top: 5px;
  right: 5px;
  transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -webkit-transition: all ease 300ms;
  border: 1px solid #fff;
  border-left: 0;
}
.btn-style2:hover {
  background: #e74860;
  color: #fff;
}
.btn-style2:hover:before,
.btn-style2:hover:after {
  width: 25px;
}
.btn-style2.md {
  padding: 15px 23px 11px 24px !important;
  line-height: unset;
  font-size: 14px;
}
.btn-style2.sm {
  padding: 10px 17px 10px 18px !important;
  line-height: unset;
  font-size: 11px;
}
.btn-style2.primary {
  background: #e74860;
}
.btn-style2.primary:hover,
.btn-style2.primary:active,
.btn-style2.primary:focus {
  background: #fff !important;
  color: #e74860;
}
.btn-style2.primary:hover:before,
.btn-style2.primary:active:before,
.btn-style2.primary:focus:before {
  border: 1px solid #e74860;
  border-right: 0;
}
.btn-style2.primary:hover:after,
.btn-style2.primary:active:after,
.btn-style2.primary:focus:after {
  border: 1px solid #e74860;
  border-left: 0;
}
.butn-style1 {
  font-size: 15px;
  font-weight: 700;
  padding: 12px 34px !important;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden !important;
  display: inline-block;
  text-align: center;
  border: 2px solid #e74860;
  color: #fff;
  z-index: 1;
  background-color: #e74860;
  vertical-align: middle;
  text-transform: uppercase;
}
.butn-style1:after {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  -webkit-transform: skewX(-20deg);
  -khtml-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  z-index: -1;
}
.butn-style1:hover,
.butn-style1:focus,
.butn-style1:active {
  background-color: #e74860;
  color: #fff;
}
.butn-style1:hover:after,
.butn-style1:focus:after,
.butn-style1:active:after {
  -webkit-animation: btn_shine 1.2s ease;
  animation: btn_shine 1.2s ease;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.butn-style1.sm {
  padding: 6px 20px !important;
}
.butn-style1.md {
  padding: 8px 24px !important;
}
.butn-style1.white {
  background-color: #fff;
  color: #e74860;
}
.butn-style1.white:hover {
  background-color: #232323;
  color: #fff;
}
.butn-style1.md {
  padding: 8px 26px !important;
  font-size: 15px;
}
@-webkit-keyframes btn_shine {
  100% {
    left: 200%;
  }
}
@keyframes btn_shine {
  100% {
    left: 200%;
  }
}
@media screen and (max-width: 1399px) {
  .butn-style1 {
    padding: 10px 30px !important;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .butn-style1 {
    padding: 8px 25px !important;
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .header-style1 .attr-nav > ul > li > a.butn-style1 {
    color: #fff;
    font-size: 15px;
  }
}
.butn-style2 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px !important;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  padding: 15px 32px !important;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
  background-color: #e74860;
}
.butn-style2:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: #18455d;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}
.butn-style2:hover {
  color: #fff;
}
.butn-style2:hover:before {
  top: -40%;
}
.butn-style2.white:before {
  background-color: #fff;
}
.butn-style2.white:hover {
  color: #e74860;
}
.butn-style2.md {
  padding: 12px 28px !important;
}
.butn-style2.sm {
  padding: 8px 24px !important;
}
.butn-style3 {
  color: #fff;
  padding: 17px 30px !important;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear;
  z-index: 1;
  background: #e74860;
  border: none;
  letter-spacing: 1.4px;
  font-size: 14px !important;
  line-height: normal;
  font-weight: bold;
  vertical-align: top;
}
.butn-style3:before {
  content: "";
  position: absolute;
  top: -71px;
  right: 0px;
  bottom: 0;
  width: 115%;
  height: 322%;
  left: -1px;
  transform: translateX(-100%) rotate(180deg);
  z-index: -1;
  transition: all 0.4s linear;
  background: #18445c;
}
.butn-style3.secondary {
  background: #18445c;
}
.butn-style3.white {
  background: #fff;
  color: #18445c;
}
.butn-style3:hover {
  color: #fff;
}
.butn-style3.secondary:before {
  background: #e74860;
}
.butn-style3:hover:before {
  transform: translateX(0) rotate(195deg);
}
.butn-style3.md {
  padding: 13px 24px !important;
  font-size: 12px !important;
}
@media screen and (max-width: 991px) {
  .butn-style3 {
    padding: 14px 26px !important;
    font-size: 12px !important;
  }
}
.button-text {
  padding: 0;
  position: relative;
  text-decoration: none;
  border: 0;
  background-color: transparent;
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
  width: auto;
  font-weight: 500;
}
.button-text a {
  border-bottom: 2px solid;
}
.button-text:hover {
  border-color: #e74860;
}
.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}
.top-bar-info ul {
  margin-bottom: 0;
}
.top-bar-info li {
  font-weight: 500;
  color: #fff;
  list-style-type: none;
  font-size: 14px;
  padding: 0 5px 0;
  display: inline-block;
  margin-bottom: 0;
}
.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0;
}
.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}
.top-social-icon {
  padding: 0;
  float: right;
  margin: 0;
}
.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}
.top-social-icon li:last-child {
  padding-right: 0;
}
.top-social-icon li:last-child a {
  padding-right: 0;
}
.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 3px;
}
.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.navbar-nav li.current > a,
.navbar-nav li.active > a {
  color: #e74860;
}
.attr-nav > ul > li > a.butn {
  color: #fff;
}
.navbar > ul > li.current > a:after {
  border-color: transparent #e74860 #e74860 transparent;
}
.menu_area-light .navbar-nav li.current > a,
.menu_area-light .navbar-nav li.active > a {
  color: #e74860;
}
.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent #e74860 #e74860 transparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: #e74860;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
  color: #e74860;
}
.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: #e74860;
}
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #e74860 #e74860 transparent;
}
@media screen and (min-width: 992px) {
  .menu_area-light .navbar ul ul li.active > a,
  .menu_area-light .navbar-nav li.has-sub a:hover {
    color: #e74860;
  }
  .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
    border-color: #e74860;
  }
  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #e74860;
  }
  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #e74860;
  }
  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
    border-color: transparent #e74860 #e74860 transparent;
  }
  .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
    border-color: transparent #e74860 #e74860 transparent;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: #e74860;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #e74860;
  }
  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #e74860 #e74860 transparent;
  }
  .header-style2 .navbar ul ul li.active > a {
    color: #e74860;
  }
  .header-style2 .navbar-nav li.has-sub a:hover,
  .header-style2 .navbar-nav li.has-sub a:active,
  .header-style2 .navbar-nav li.has-sub a:focus {
    color: #e74860;
  }
  .header-style2 .navbar-nav li.current > a,
  .header-style2 .navbar-nav li.active > a {
    color: #e74860;
  }
  .header-style2 .navbar > ul > li.has-sub > a:hover:after,
  .header-style2 .navbar > ul > li.has-sub > a:active:after,
  .header-style2 .navbar > ul > li.has-sub > a:focus:after {
    border-color: transparent #e74860 #e74860 transparent;
  }
}
@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #e74860;
  }
  .header-style1 .navbar-toggler:after {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .header-style1 .navbar-toggler:before {
    background: #fff;
  }
  .header-style1 .navbar-toggler.menu-opened:after,
  .header-style1 .navbar-toggler.menu-opened:before {
    background: #fff;
  }
}
.header-style2 .navbar-nav li.current > a {
  color: #e74860;
}
.header-style2 .navbar > ul > li.current > a:after {
  border-color: transparent #e74860 #e74860 transparent;
}
.header-style2.scrollHeader .navbar-nav li.current > a {
  color: #e74860;
}
.header-style2.scrollHeader .navbar-nav li.current > a:hover {
  color: #e74860;
}
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #e74860 #e74860 transparent;
}
@media screen and (min-width: 992px) {
  .header-style2 .navbar ul ul li.active > a {
    color: #e74860;
  }
  .header-style2 .butn.secondary:before {
    background: #ffffff;
  }
  .header-style2 .butn.secondary:hover,
  .header-style2 .butn.secondary:focus,
  .header-style2 .butn.secondary:active {
    color: #18455d !important;
  }
  .header-style2.scrollHeader .butn.secondary:before {
    background: #e74860;
  }
  .header-style2.scrollHeader .butn.secondary:hover,
  .header-style2.scrollHeader .butn.secondary:focus,
  .header-style2.scrollHeader .butn.secondary:active {
    color: #fff !important;
  }
}
.header-style3 .navbar-nav li.current > a {
  color: #e74860;
}
.header-style3 .navbar-nav li.active > a {
  color: #e74860;
}
@media screen and (min-width: 992px) {
  .header-style3 .navbar-nav li.active > a {
    color: #e74860;
  }
  .header-style3 .navbar-nav > li > a:hover,
  .header-style3 .navbar-nav > li > a:active,
  .header-style3 .navbar-nav > li > a:focus {
    color: #e74860;
  }
  .header-style3 .navbar ul ul li.active > a {
    color: #e74860;
  }
  .header-style3 .navbar-nav li.has-sub a:hover,
  .header-style3 .navbar-nav li.current > a {
    color: #e74860;
  }
  .header-style3 .navbar-nav > li.has-sub > a:hover {
    color: #e74860;
  }
  .header-style3 .navbar > ul > li.has-sub > a:hover:after,
  .header-style3 .navbar > ul > li.current > a:after {
    border-color: transparent #e74860 #e74860 transparent;
  }
  .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #e74860;
  }
  .header-style3.scrollHeader .navbar > ul > li.has-sub > a:hover:after {
    border-color: transparent #e74860 #e74860 transparent;
  }
  .header-style3.scrollHeader .navbar-nav > li.active > a {
    color: #e74860;
  }
  .header-style3.scrollHeader .navbar-nav li.current > a {
    color: #e74860;
  }
  .header-style3.scrollHeader .navbar-nav li.current > a:hover {
    color: #e74860;
  }
  .header-style3.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #e74860 #e74860 transparent;
  }
}
.slider-fade1 .owl-item {
  position: relative;
}
.slider-fade1 h1 {
  margin-bottom: 25px;
  animation-delay: 0.8s;
}
.slider-fade1 h1 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.slider-fade1 p {
  animation-delay: 1.2s;
}
.slider-fade1 a {
  animation-delay: 1.6s;
}
.slider-fade1 .owl-dots {
  position: absolute;
  bottom: 40px;
  right: 50px;
  margin: 0 !important;
}
.slider-fade1 .video_btn {
  background: rgba(29, 70, 93, 0.3);
  color: #18455d;
}
.slider-fade1 .video_btn:before,
.slider-fade1 .video_btn:after {
  content: none !important;
}
.slider-fade1.owl-theme .owl-dots {
  counter-reset: dots;
  font-size: 1.7rem;
  color: #18455d;
}
.slider-fade1.owl-theme .owl-dots .owl-dot {
  position: relative;
}
.slider-fade1.owl-theme .owl-dots .owl-dot.active {
  color: #e74860;
}
.slider-fade1.owl-theme .owl-dots .owl-dot:before {
  counter-increment: dots;
  content: counter(dots, decimal-leading-zero);
  position: absolute;
  right: 8px;
  font-weight: 800;
  z-index: 2;
  font-size: 34px;
}
.slider-fade1.owl-theme .owl-dots .owl-dot span {
  background: transparent;
  height: 60px;
  width: 50px;
  border-radius: 0;
  position: relative;
  margin: 0 20px 0 0;
}
.slider-fade1.owl-theme .owl-dots .owl-dot span:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: -31px;
  top: 26px;
  background-color: #e74860;
}
.slider-fade1.owl-theme .owl-dots .owl-dot:last-child span:before {
  content: none;
}
.slider-fade1.owl-theme .owl-dots .owl-dot.active span,
.slider-fade1.owl-theme .owl-dots .owl-dot:hover span {
  background-color: transparent;
}
.line-animated {
  width: 68%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 99;
  pointer-events: none;
}
.line-animated > span {
  background: rgba(0, 0, 0, 0.09);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0;
}
.line-animated > span:before {
  content: "";
  background-image: linear-gradient(0deg, #e74860, transparent);
  width: 1px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: -1;
  -webkit-animation: line-animation 9s linear infinite alternate;
  animation: line-animation 9s linear infinite alternate;
}
.line-animated > span:nth-child(2) {
  left: 25%;
}
.line-animated > span:nth-child(2):before {
  content: "";
  -webkit-animation: line-animation 9s linear 1s infinite alternate;
  animation: line-animation 9s linear 1s infinite alternate;
}
.line-animated > span:nth-child(3) {
  left: 50%;
}
.line-animated > span:nth-child(3):before {
  content: "";
  -webkit-animation: line-animation 9s linear 2s infinite alternate;
  animation: line-animation 9s linear 2s infinite alternate;
}
.line-animated > span:nth-child(4) {
  left: 75%;
}
.line-animated > span:nth-child(5) {
  left: 100%;
}
.line-animated > span:nth-child(5):before {
  content: "";
  -webkit-animation: line-animation 9s linear 1s infinite alternate;
  animation: line-animation 9s linear 1s infinite alternate;
}
@-webkit-keyframes line-animation {
  from {
    top: 0;
  }
  to {
    top: 100%;
  }
}
@keyframes line-animation {
  from {
    top: 0;
  }
  to {
    top: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .slider-fade1 .item:before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
  }
}
.slider-fade3 h1 {
  animation-delay: 0.8s;
}
.slider-fade3 p {
  animation-delay: 1.2s;
}
.slider-fade3 .banner-button {
  animation-delay: 1.6s;
}
.slider-fade3.owl-carousel .owl-nav button.owl-prev,
.slider-fade3.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: #000;
  transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.slider-fade3.owl-carousel .owl-nav button.owl-prev {
  left: 2%;
}
.slider-fade3.owl-carousel .owl-nav button.owl-next {
  right: 2%;
}
.slider-fade3.owl-carousel .owl-nav button.owl-prev:hover,
.slider-fade3.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #e74860;
  color: #fff;
}
.slider-fade3 .banner-button .button-text a {
  transform: scale(0);
}
.slider-fade3 .banner-button .button-text a:hover {
  transform: scale(1.1);
}
.slider-fade3.owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  bottom: 110px;
  right: 50px;
  margin: 0 !important;
}
.slider-fade3.owl-theme .owl-dots .owl-dot span {
  background-color: #fff;
  opacity: 1;
}
.slider-fade3.owl-theme .owl-dots .owl-dot.active span,
.slider-fade3.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #e74860;
}
.slider-fade3 .owl-nav i,
.slider-fade3 .owl-nav span {
  color: #000;
  font-size: 16px;
}
.slider-fade3.owl-carousel .owl-nav button.owl-prev:hover i,
.slider-fade3.owl-carousel .owl-nav button.owl-next:hover i,
.slider-fade3.owl-carousel .owl-nav button.owl-prev:hover span,
.slider-fade3.owl-carousel .owl-nav button.owl-next:hover span {
  color: #fff;
}
.slider-fade3.owl-theme .owl-nav {
  margin-top: 0;
}
@media screen and (max-width: 1599px) {
  .slider-fade3.owl-carousel .owl-nav button.owl-prev {
    left: 0;
  }
  .slider-fade3.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
}
.section-title .sm-title {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 12px;
  padding-bottom: 12px;
  color: #e74860;
  z-index: 9;
}
.section-title h2 {
  position: relative;
  z-index: 9;
}
.section-title .sm-title:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 80px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #dedede;
}
.section-title .sm-title:after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: #e74860;
  right: 0px;
  left: auto;
  bottom: -3px;
  animation: pulsex 5s ease infinite alternate;
}
.section-title.left .sm-title:before {
  left: 0;
  transform: unset;
}
@keyframes pulsex {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100px);
  }
}
.title-sm {
  font-weight: 400;
  position: relative;
  z-index: 2;
  display: inline-block;
}
.title-sm:before {
  content: "";
  background: #e74860;
  height: 8px;
  width: 100%;
  position: absolute;
  bottom: 8px;
  z-index: -1;
}
.title-sm.banner:before {
  bottom: 19px;
}
@media screen and (max-width: 991px) {
  .title-sm.banner:before {
    bottom: 7px;
  }
  .title-sm:before {
    bottom: 3px;
  }
}
.section-title4 .sm-title {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  display: inline-block;
  padding-left: 15px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.section-title4 .sm-title:after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: #ff497c;
  right: 0px;
  left: 0;
  top: 9px;
}
.page-title-section {
  padding: 100px 0 90px 0;
}
.page-title-section.style1 {
  padding: 100px 0;
}
.page-title-section h1 {
  font-size: 64px;
  line-height: 1;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 9;
}
.pagetitle-lg-title {
  display: block;
  font-size: 105px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.2;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  margin: 0 0 -58px 0;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.page-title-section ul {
  margin: 0;
  padding: 11px 20px;
  list-style: none;
  display: inline-block;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.2);
}
.page-title-section ul li {
  display: inline-block;
}
.page-title-section ul li:last-child {
  color: #ffffff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.page-title-section ul li:last-child a {
  color: #ffffff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.page-title-section ul li:after {
  content: "\f111";
  font-weight: 700;
  vertical-align: middle;
  color: #e74860;
  font-size: 9px;
  font-family: "Font Awesome 6 Free";
  padding: 0 5px 0 10px;
}
.page-title-section ul li:last-child:after {
  content: none;
}
.page-title-section ul li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.page-title-section .shape-1 {
  padding: 20px;
  background: #fff;
  z-index: 3;
  bottom: 73px;
  left: 52px;
}
@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 80px 0 80px 0;
  }
  .page-title-section h1 {
    font-size: 52px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 90px 0 90px 0;
  }
  .page-title-section.style1 {
    padding: 90px 0;
  }
  .page-title-section h1 {
    font-size: 48px;
  }
  .pagetitle-lg-title {
    font-size: 85px;
    margin: 0 0 -48px 0;
  }
}
@media screen and (max-width: 767px) {
  .pagetitle-lg-title {
    font-size: 70px;
  }
}
@media screen and (max-width: 575px) {
  .page-title-section {
    padding: 80px 0 80px 0;
  }
  .page-title-section.style1 {
    padding: 80px 0;
  }
  .page-title-section h1 {
    font-size: 36px;
  }
  .pagetitle-lg-title {
    font-size: 42px;
    margin: 0 0 -24px 0;
  }
}
.page-title-section2 {
  padding: 210px 0 150px;
}
@media screen and (max-width: 1199px) {
  .page-title-section2 {
    padding: 170px 0 110px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section2 {
    padding: 150px 0 90px;
  }
}
@media screen and (max-width: 767px) {
  .page-title-section2 {
    padding: 130px 0 70px;
  }
}
.card-style01 {
  position: relative;
  margin-bottom: 30px;
}
.card-style01:hover .title {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
}
.card-style01 .title {
  margin-left: 30px;
  position: absolute;
  background: #fff;
  bottom: -30px;
  padding: 15px 30px;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  right: 0;
  left: 0;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-style01:hover .overlay {
  top: 0;
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.card-style01 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  padding: 37px;
  z-index: 1;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}
.card-style01 .overlay::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: #0c3246;
  z-index: -1;
  opacity: 0.7;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.card-style-02 {
  position: relative;
}
.card-style-02 .card-icon {
  width: 65px;
  height: 65px;
  display: flex;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.17);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
.card-style-02 .card-icon:after {
  content: "";
  height: 65px;
  width: 65px;
  border-radius: 50%;
  border: 1px solid #e74860;
  position: absolute;
  left: -5px;
  top: -5px;
}
.card-style-03 {
  position: relative;
}
.card-style-03 .card-price {
  background-color: #18455d;
  position: absolute;
  bottom: -50px;
  right: 30px;
  width: 100px;
  color: #fff;
  height: 100px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-style-03 .price-before {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: tb-rl;
  background: #e74860;
  padding: 15px 5px;
  color: #fff;
}
.card-style-04 {
  overflow: hidden;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  border: none;
}
.card-style-04 .card-list {
  position: absolute;
  top: 0;
  left: 30px;
}
.card-style-04 .card-list a {
  margin-right: 4px;
  margin-bottom: 4px;
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  background: #e74860;
  padding: 4px 20px;
}
.card-style-04 .card-list a:hover,
.card-style-04 .card-list a:active,
.card-style-04 .card-list a:focus {
  background: #18455d;
}
.card-style-04 .blog-img img {
  transition: all 0.3s ease-in-out;
}
.card-style-04:hover .blog-img img {
  transform: scale(1.1);
}
.card-style05 {
  border: 1px solid #e8e8e8;
  border-radius: 0;
  height: 100%;
}
.card-style05 .card-img {
  position: relative;
}
.card-style05 .card-img .icon {
  position: absolute;
  display: inline-block;
  height: 70px;
  width: 70px;
  background: #fff;
  text-align: center;
  line-height: 70px;
  left: 30px;
  font-size: 22px;
  color: #e74860;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 20px 0 #e74860;
  box-shadow: 0px 10px 20px 0 rgba(231, 72, 96, 0.2);
  bottom: -35px;
}
.card-style05 .card-body h3 a:hover {
  color: #e74860 !important;
}
.card-style06 {
  position: relative;
  perspective: 1000px;
  width: 100%;
  height: 300px;
  background-color: transparent;
}
.card-style06:hover .card-front {
  transform: rotateY(180deg);
}
.card-style06 .card-front {
  position: relative;
  z-index: 1;
  transition: 0.7s;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  perspective: inherit;
  background-color: #18455d;
}
.card-style06 .card-inner {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotate(0);
  transition: 0.7s;
  perspective: inherit;
  transform-style: preserve-3d;
  padding: 0 0 0 40px;
  box-shadow: 11px 10px 38px 0px rgba(0, 0, 0, 0.15);
  justify-content: center;
}
.card-style06 .card-body {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotate(0);
  transition: 0.7s;
  perspective: inherit;
  transform-style: preserve-3d;
  padding: 0 0 0 40px;
  box-shadow: 11px 10px 38px 0px rgba(0, 0, 0, 0.15);
  justify-content: center;
  transform: rotateY(-180deg);
}
.card-style07 .social-icons span.icon {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #e74860;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  box-shadow: 0px 4px 4px #eef0f8;
  display: inline-block;
  line-height: 40px;
  font-size: 13px;
}
.card-style07 .social-icons .social-link1,
.card-style07 .social-icons .social-link2 {
  position: absolute;
  bottom: 36px;
  left: -32px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  flex-wrap: inherit;
  margin: -5px;
}
.card-style07 .social-icons .social-link1 li {
  display: block;
  list-style: none;
  padding: 5px;
}
.card-style07 .social-icons .social-link2 li {
  list-style: none;
  padding: 5px;
  display: inline-block;
}
.card-style07 .social-icons .social-link1 li a,
.card-style07 .social-icons .social-link2 li a {
  width: 40px;
  height: 40px;
  text-align: center;
  background: #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0px 4px 4px #eef0f8;
  display: inline-block;
  line-height: 40px;
  font-size: 13px;
}
.card-style07 .social-icons .social-link1 li a.linkedin {
  color: #0078b5;
}
.card-style07 .social-icons .social-link1 li a.instagram {
  color: #ea4c88;
}
.card-style07 .social-icons .social-link1 li a.pinterest {
  color: #be0215;
}
.card-style07:hover .card-body .team-content {
  opacity: 0;
}
.card-style07:hover .social-icons .social-link1 {
  opacity: 1;
  bottom: 90px;
}
.card-style07:hover .social-icons .social-link2 {
  opacity: 1;
  left: 35px;
  display: flex;
}
.card-style07 .social-icons .social-link2 li a.youtube {
  color: #ff0000;
}
.card-style07 .social-icons .social-link2 li a.facebook {
  color: #4267b2;
}
.card-style07 .social-icons .social-link2 li a.twitter {
  color: #1da1f2;
}
.card-style07 .social-icons .social-link1 li a.linkedin:hover,
.card-style07 .social-icons .social-link1 li a.instagram:hover,
.card-style07 .social-icons .social-link1 li a.pinterest:hover {
  background-color: #18455d;
  color: #fff;
}
.card-style07 .social-icons .social-link2 li a.youtube:hover,
.card-style07 .social-icons .social-link2 li a.facebook:hover,
.card-style07 .social-icons .social-link2 li a.twitter:hover {
  background-color: #18455d;
  color: #fff;
}
.card-style08 .card-body .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-style09 .feature-inner {
  margin-top: -100px;
  position: relative;
  z-index: 9;
}
.card-style09:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: #f8f9fa;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .card-style09:before {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .card-style09:before {
    height: 80%;
  }
}
@media screen and (max-width: 575px) {
  .card-style09:before {
    height: 85%;
  }
}
.card-style10 {
  border: none;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.06);
  position: relative;
}
.card-style10 .card-style {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 150px;
  overflow: hidden;
  height: 150px;
}
.card-style10 .card-text {
  background-color: #e74860;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  left: 0;
  width: 200%;
  -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px)
    rotate(-45deg);
  -ms-transform: translateY(-50%) translateX(-50%) translateX(35px)
    rotate(-45deg);
  transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
  margin-top: 35px;
  font-size: 13px;
  line-height: 2;
  font-weight: 800;
  text-transform: uppercase;
}
.card-style11 .card-body .icon-holder .box {
  position: absolute;
  top: -6px;
  right: -3px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  background-color: rgba(24, 69, 93, 0.15);
  transition: all 500ms ease;
}
.card-style11 .card-body .icon-holder img {
  position: relative;
  display: inline-block;
  width: 65px;
  height: auto;
  transform: scale(1);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.card-style11:hover .icon-holder .box {
  background-color: #18455d;
}
.card-style11:hover .icon-holder img {
  transform: scale(0.9);
}
.card-style-12 {
  overflow: hidden;
  position: relative;
  -webkit-transition: transform 0.3s, opacity 0.5s;
  transition: transform 0.3s, opacity 0.5s;
}
.card-style-12 .card-body {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.card-style-12 .card-body img {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.card-style-12 .card-content {
  display: block;
  text-align: center;
  margin: 24px 0 0;
}
.card-style-12 .card-title {
  font-size: 20px;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  display: block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.card-style-12 .card-social-icons {
  position: absolute;
  height: 48px;
  left: 0;
  bottom: 0;
  max-width: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: stretch;
  -moz-justify-content: stretch;
  -ms-justify-content: stretch;
  justify-content: stretch;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.card-style-12 .card-social-icons > .card-share {
  font-size: 21px;
  width: 50px;
  height: 48px;
  line-height: 48px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  z-index: 1;
  background: #fff;
  color: #18455d;
}
.card-style-12 .card-social-icons .card-social-links {
  position: absolute;
  padding-left: 5px;
  padding-right: 10px;
  height: 48px;
  left: 0px;
  margin: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: all 0.3s;
  background: #fff;
}
.card-style-12 .card-social-icons .card-social-links a {
  font-size: 14px;
  background: 0 0;
}
.card-style-12 .card-social-icons .card-social-links li {
  margin: 0 6px;
}
.card-style-12 .card-social-icons .card-social-links li a {
  color: #18455d;
  font-size: 14px;
  background: 0 0;
  padding: 8px;
  text-align: center;
}
.card-style-12 .card-social-icons .card-social-links li a:hover {
  color: #e74860;
}
.card-style-12:hover .card-body img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.card-style-12:hover .card-social-icons .card-social-links {
  transform: translateX(0);
  left: 50px;
}
.card-style-13 {
  position: relative;
  overflow: hidden;
}
.card-style-13 .card-hover-icon {
  position: absolute;
  left: 60px;
  bottom: 60px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
.card-style-13 .card-data {
  opacity: 0;
  position: absolute;
  bottom: -25px;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
.card-style-13 .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  min-height: 75px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #fff;
  opacity: 0.6;
  margin-bottom: 0;
  width: 80%;
}
.card-style-13 img {
  -webkit-transition-duration: 2s;
  -moz-transition-duration: 2s;
  -ms-transition-duration: 2s;
  transition-duration: 2s;
}
.card-style-13 .card-overlay {
  opacity: 0;
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  background-color: rgba(24, 69, 93, 0.8);
}
.card-style-13:hover .card-overlay {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
.card-style-13 .btn-link-1 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 0 2px;
  margin-top: 20px;
  position: relative;
  text-decoration: none;
  border: 0;
  border-bottom: 2px solid white;
  background-color: transparent;
  border-radius: 0;
  color: white;
}
.card-style-13 .card-custom-1,
.card-style-13 .card-custom-2 {
  padding: 5rem 4.5rem;
}
.card-style-13 .card-body:hover .card-data {
  opacity: 1;
  bottom: 0;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
.card-style-13:hover img {
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -moz-transform: scale(1.4);
  transform: scale(1.4);
  -o-transform: scale(1.4);
  -webkit-transition-duration: 4s;
  transition-duration: 4s;
}
.card-style-13 .card-body:hover .card-hover-icon {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
.card-style-13 .btn-link-1:hover {
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1599px) {
  .card-style-13 .card-custom-1,
  .card-style-13 .card-custom-2 {
    padding: 3rem 3.5rem;
  }
  .card-style-13 .card-hover-icon {
    left: 70px;
  }
}
@media screen and (max-width: 1399px) {
  .card-style-13 .card-custom-1,
  .card-style-13 .card-custom-2 {
    padding: 2rem 1.4rem;
  }
  .card-style-13 .btn-link-1 {
    margin-top: 12px;
  }
  .card-style-13 .card-hover-icon {
    left: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .card-style-13 .card-text {
    width: 100%;
  }
}
.card-style14 .card-body {
  position: absolute;
  text-align: center;
  left: 20px;
  right: 20px;
  bottom: -90px;
  transform: translateY(0px);
  padding: 0;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.card-style14 .social-icon {
  margin-top: 8px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transform: translateY(10px);
}
.card-style14 .social-icon a {
  font-size: 14px;
  margin: 0 7px;
}
.card-style14:hover .card-body {
  transform: translateY(-30px);
  border-color: #f6f3ee;
  background: #ffffff;
  box-shadow: 0px 10px 15px rgba(221, 221, 221, 0.12);
  padding: 30px 10px 30px 10px;
}
.card-style14:hover .social-icon {
  opacity: 1;
  transition-delay: 0.2s;
  transform: translateY(0px);
}
.card-style14 .social-icon a:hover {
  color: #e74860;
}
@media screen and (max-width: 991px) {
  .card-style14 .card-body {
    bottom: -75px;
  }
}
.card-style-15 .card-body {
  padding: 40px 50px 40px 50px;
}
.card-style-15 .card-body .service-img {
  margin: 0 auto 25px;
  position: relative;
}
.card-style-15 .card-body .icon-circle {
  width: 85px;
  height: 85px;
  position: absolute;
  background-color: rgba(231, 72, 96, 0.07);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%) !important;
}
.card-style-15 .card-btn {
  background: transparent;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  position: relative;
  border-radius: 0;
}
.card-style-15 .card-btn .main-butn {
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  font-size: 14px;
  text-transform: uppercase;
}
.card-style-15 .card-btn .main-butn .main-text {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
}
.card-style-15 .card-btn .hover-butn {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: #0c3246;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-style-15 .card-btn .hover-butn a {
  padding: 0 0 2px;
  position: relative;
  border: 0;
  letter-spacing: 0;
  background-color: transparent;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  width: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.card-style-15 .card-btn .hover-butn .inner-butn {
  display: inline-flex;
  align-items: center;
}
.card-style-15 .card-btn .hover-butn .inner-butn .hover-text {
  margin-left: -13px;
  position: relative;
  z-index: 3;
  transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
}
.card-style-15 .card-btn .hover-butn .inner-butn .btn-icon {
  margin-left: 6px;
  position: relative;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
  line-height: 0;
  z-index: 3;
}
.card-style-15 .card-btn .hover-butn .inner-butn .btn-icon i {
  margin: 0;
  line-height: 0;
  position: relative;
}
.card-style-15 .card-btn .hover-butn .inner-butn .btn-icon + .btn-icon {
  order: -2;
  opacity: 0;
  transition-delay: 0s;
  margin-left: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.card-style-15:hover .card-btn .main-butn .main-text {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}
.card-style-15:hover .card-btn .hover-butn {
  top: 0;
}
@media screen and (max-width: 1399px) {
  .card-style-15 .card-body {
    padding: 40px 30px 40px 30px;
  }
}
@media screen and (max-width: 1199px) {
  .card-style-15 .card-body {
    padding: 40px 30px 40px 30px;
  }
  .card-style-15 .card-body .icon-circle {
    top: 40px;
  }
}
.card-style-16 {
  border: none;
  border-radius: 5px;
  height: 100%;
  box-shadow: 0 3px 20px rgba(9, 19, 32, 0.03);
}
.card-style-16 .radius-top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style-16 .blog-img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style-16 .blog-img img {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease;
  -ms-transition: -ms-transform 0.3s ease;
  transition: transform 0.3s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1.01, 1.01);
  -ms-transform: scale(1.01, 1.01);
  transform: scale(1.01, 1.01);
}
.card-style-16 .post-date {
  position: absolute;
  right: 30px;
  top: -42px;
  font-size: 20px;
  background: #0c3246;
  color: #fff;
  border-radius: 3px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  padding: 14px 15px;
}
.card-style-16 .post-date .month {
  font-size: 12px;
  text-transform: uppercase;
}
.card-style-16 .read-more {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
  color: #4e86ff;
}
.card-style-16 .blog-tag:after {
  content: "";
  margin: 0 0.75em;
  width: 3px;
  height: 3px;
  background-color: #8e919d;
  top: 50%;
  transform: translateY(-50%);
  right: -40%;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
}
.card-style-16 .read-more:hover {
  color: #33d687;
}
.card-style-16:hover .blog-img img {
  -webkit-transform: scale(1.07, 1.07);
  -ms-transform: scale(1.07, 1.07);
  transform: scale(1.07, 1.07);
}
.card-style-17 > img {
  border-radius: 0.25rem;
}
.card-style-17 .card-body {
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.card-style-17 .card-body:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  border-radius: 0.25rem;
  background-color: rgba(231, 72, 96, 0.9);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84),
    opacity 0s 0.5s;
  transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84),
    opacity 0s 0.5s;
}
.card-style-17:hover .card-body:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84),
    opacity 0s;
  transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s;
}
.card-style-17 .card-body .portfolio-icon {
  overflow: hidden;
  position: absolute;
  right: 0px;
  top: 0;
  z-index: 1;
}
.card-style-17 .card-body .portfolio-icon .top-icon {
  position: relative;
  opacity: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
  transition: transform 0.4s, opacity 0.2s;
  will-change: transform, opacity;
}
.card-style-17:hover .card-body .portfolio-icon .top-icon {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.6s
      cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s,
    opacity 0.2s 0.2s;
  transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s,
    opacity 0.2s 0.2s;
}
.card-style-17 .card-body .portfolio-icon .top-icon a {
  border: 2px solid transparent;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  color: #fff;
  font-size: 24px;
  height: 73px;
  line-height: 70px;
  text-align: center;
  width: 75px;
  background-color: #0c3246;
}
.card-style-17 .card-body .portfolio-content {
  position: absolute;
  bottom: 33px;
  z-index: 9;
  left: 25px;
  right: 25px;
}
.card-style-17 .card-body .portfolio-content span {
  position: relative;
  opacity: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
  transition: transform 0.4s, opacity 0.2s;
  will-change: transform, opacity;
  padding-bottom: 10px;
  display: block;
}
.card-style-17:hover .card-body .portfolio-content span {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.6s
      cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s,
    opacity 0.2s 0.1s;
  transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s,
    opacity 0.2s 0.1s;
}
.card-style-17 .card-body .portfolio-content h3 {
  position: relative;
  opacity: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
  transition: transform 0.4s, opacity 0.2s;
  will-change: transform, opacity;
}
.card-style-17:hover .card-body .portfolio-content h3 {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.6s
      cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s,
    opacity 0.2s 0.1s;
  transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s,
    opacity 0.2s 0.1s;
}
.card-style-17 .card-body.round:after {
  border-radius: 0.3rem;
}
@media screen and (max-width: 1199px) {
  .card-style-17 .card-body .portfolio-content {
    bottom: 15px;
    left: 25px;
  }
  .card-style-17 .card-body .portfolio-icon .top-icon a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 17px;
  }
}
@media screen and (max-width: 575px) {
  .card-style-17 .card-body .portfolio-icon .top-icon a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.service-carousel-one .service-block {
  padding: 4.5rem;
  display: flex;
  justify-content: end;
  align-items: start;
  width: 100%;
}
.service-carousel-one .service-block .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  top: 0;
  left: 0;
  background-color: #000;
}
.service-carousel-one .service-block .inner-block {
  position: relative;
  display: flex;
  width: 53%;
  flex-direction: column;
  padding-top: 0;
  background-color: #fff;
  transition: all 0s ease-in-out !important;
  -moz-transition: all 0s ease-in-out !important;
  -webkit-transition: all 0s ease-in-out !important;
  -ms-transition: all 0s ease-in-out !important;
  -o-transition: all 0s ease-in-out !important;
  z-index: 1;
  padding: 0 4.5rem 4.5rem 4.5rem;
  opacity: 0;
}
.service-carousel-one .service-block .inner-block h4 {
  margin-top: -72px;
  margin-right: -25px;
  width: 75px;
  text-align: center;
  padding-bottom: 15px;
  padding-top: 6rem;
  margin-bottom: 2.5rem;
  background-color: #e74860;
  font-weight: 500;
  color: #fff;
  align-self: end;
  font-size: 2.85rem;
  line-height: 3.4rem;
}
.service-carousel-one .service-block .inner-block h5 {
  color: #232323;
  font-size: 2.3rem;
  margin-bottom: 25px;
}
.service-carousel-one .service-block .inner-block p {
  line-height: 32px;
  margin-bottom: 25px;
}
.service-carousel-one .service-block .inner-block a .ti-arrow-right {
  font-size: 15px;
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
}
.service-carousel-one .owl-item.active.center .service-block .overlay {
  opacity: 0.2;
}
.service-carousel-one .owl-item.active.center .service-block .inner-block {
  opacity: 1;
}
@media screen and (max-width: 1599px) {
  .service-carousel-one .service-block {
    padding: 2.6rem;
  }
  .service-carousel-one .service-block .inner-block {
    width: 63%;
    padding: 0 3.5rem 3.5rem 3.5rem;
  }
}
@media screen and (max-width: 1399px) {
  .service-carousel-one .service-block .inner-block {
    width: 73%;
    padding: 0 3rem 3rem 3rem;
  }
}
@media screen and (max-width: 1199px) {
  .service-carousel-one .service-block .inner-block {
    width: 100%;
  }
  .service-carousel-one .service-block .inner-block h4 {
    margin-bottom: 1rem;
  }
  .service-carousel-one .service-block .inner-block h5 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .service-carousel-one .service-block .inner-block {
    padding: 0 2rem 2rem 2rem;
  }
  .service-carousel-one .service-block .inner-block h4 {
    margin-top: -92px;
    margin-right: -10px;
    padding-bottom: 8px;
    font-size: 2.05rem;
  }
}
@media screen and (max-width: 575px) {
  .service-carousel-one .service-block {
    padding: 1.6rem;
  }
  .service-carousel-one .service-block .inner-block h5 {
    font-size: 1.5rem;
  }
}
.feature-style01 {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  margin-top: -60px;
  background-color: #fff;
  z-index: 9;
  position: relative;
  padding: 40px;
}
@media screen and (max-width: 1399px) {
  .feature-style01 {
    margin-top: -145px;
  }
}
@media screen and (max-width: 1199px) {
  .feature-style01 {
    margin-top: -95px;
  }
}
@media screen and (max-width: 576px) {
  .feature-style01 {
    margin-top: -55px;
  }
}
@media screen and (max-width: 575px) {
  .feature-style01 {
    margin-top: -75px;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.fullscreen-bg {
  position: absolute;
  top: -15px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}
.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-aspect-ratio: 16 / 9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16 / 9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}
@supports (-webkit-touch-callout: none) {
  @media (min-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
      height: 400%;
      top: -100%;
    }
  }
  @media (max-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
      width: 400%;
      left: -100%;
    }
  }
}
.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: #e74860;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
}
.video_btn:hover i,
.video_btn:focus i {
  color: #fff;
}
.video_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #e74860;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border: 2px solid #e74860;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn.small {
  width: 55px;
  height: 55px;
  line-height: 55px;
}
.video_btn.small:after {
  height: 50px;
  width: 50px;
}
.video_btn.small:before {
  height: 65px;
  width: 65px;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@media screen and (max-width: 1199px) {
  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 75px;
  }
  .video_btn:after {
    height: 75px;
    width: 75px;
  }
  .video_btn:before {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 991px) {
  .video_btn {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .video_btn:after {
    height: 70px;
    width: 70px;
  }
  .video_btn:before {
    height: 85px;
    width: 85px;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    }
  }
}
@media screen and (max-width: 767px) {
  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .video_btn:after {
    height: 60px;
    width: 60px;
  }
  .video_btn:before {
    height: 75px;
    width: 75px;
  }
}
.filtering {
  margin-bottom: 40px;
}
.filtering span {
  cursor: pointer;
  font-size: 14.4px;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 5px;
  padding: 6px 15px;
  background: transparent;
  color: #18455d;
  border: 2px solid #18455d;
}
.filtering span:last-child {
  margin: 0;
}
.filtering .active {
  color: #ffffff;
  background: #e74860;
  border: 2px solid #e74860;
}
@media screen and (max-width: 767px) {
  .filtering {
    margin-bottom: 0;
  }
  .filtering span {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 575px) {
  .filtering span {
    padding: 6px 8px;
    margin-right: 5px;
    font-size: 13px;
  }
}
.lg-backdrop {
  z-index: 99999;
}
.lg-outer {
  z-index: 999999;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #e74860;
}
.lg-progress-bar .lg-progress {
  background-color: #e74860;
}
.lg-backdrop.in {
  opacity: 0.85;
}
.portfolio-style01 {
  position: relative;
  border-radius: 5px;
}
.portfolio-style01 .portfolio-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.portfolio-style01 .portfolio-img a {
  position: relative;
  display: inline-block;
}
.portfolio-style01:hover .portfolio-img img {
  transform: scale(1.1);
}
.portfolio-style01 .portfolio-content,
.portfolio-style01 .portfolio-img img {
  transition: all 0.3s ease-in-out;
}
.portfolio-style01:hover .portfolio-content {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
.portfolio-style01 .portfolio-content {
  left: 0px;
  bottom: -43px;
  background-color: #fff !important;
  opacity: 0;
  right: 0;
  margin: 0 20px;
  visibility: hidden;
  position: absolute;
  transform: translateY(50%);
  z-index: 2;
  padding: 40px;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease-in-out;
}
.portfolio-style01:hover::after {
  visibility: visible;
  opacity: 1;
}
.portfolio-style01:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(31, 36, 44, 0.7);
  content: "";
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1199px) {
  .portfolio-style01 .portfolio-content {
    padding: 30px;
  }
}
.portfolio-style02 .portfolio-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 69, 93, 0.3);
  top: 0;
  left: 0;
}
.portfolio-style02 .portfolio-box .portfolio-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #e74860;
}
.portfolio-style02 .portfolio-box:hover .portfolio-inner:before {
  height: 100%;
}
.portfolio-carousel-one .portfolio-block {
  overflow: hidden;
  will-change: transform;
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  position: relative;
}
.portfolio-carousel-one .portfolio-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 0;
}
.portfolio-carousel-one .portfolio-block img {
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.portfolio-carousel-one .portfolio-block .portfolio-icon {
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.portfolio-carousel-one .portfolio-block .portfolio-icon .inner-icon {
  width: 80px;
  height: 80px;
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-carousel-one .portfolio-block .portfolio-icon .inner-icon i {
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  font-size: 24px;
}
.portfolio-carousel-one .portfolio-block:hover img {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.portfolio-carousel-one .portfolio-block:hover .portfolio-icon {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.portfolio-carousel-one .portfolio-block:hover:before {
  opacity: 1;
}
.pagination {
  border-radius: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.pagination ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}
.pagination li {
  display: inline;
  margin-right: 10px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination a {
  background: transparent;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  color: #42545e;
  border: 1px solid #dddddd;
  line-height: 25px;
}
.pagination a:hover,
.pagination a:active,
.pagination a:focus {
  background-color: #18455d;
  color: #ffffff;
  box-shadow: none;
}
.pagination .active a {
  background-color: #f7f7f7;
  color: #002147;
  border: 1px solid #dbdbdb;
  cursor: default;
}
@media screen and (max-width: 575px) {
  .pagination li {
    margin-right: 8px;
  }
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}
.owl-theme .owl-dots .owl-dot span {
  border-radius: 0;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #e74860;
}
.owl-nav i,
.owl-nav span {
  color: #232323;
  font-size: 28px;
}
.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}
ul.resp-tabs-list {
  margin-bottom: 15px;
  padding: 0px;
}
.resp-tabs-list li {
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  padding: 12px 20px;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
  background: #fff;
  color: #e74860;
  text-align: left;
  border-radius: 0;
}
.resp-tabs-list li:last-child {
  margin-right: 0;
}
.resp-tabs-list li i {
  font-size: 24px;
  padding-right: 10px;
  vertical-align: text-bottom;
}
.resp-tabs-container {
  padding: 0px;
  clear: left;
}
.resp-tab-content {
  display: none;
  padding: 40px;
}
.resp-tabs-list li.resp-tab-active {
  margin-bottom: -1px;
  background-color: #e74860;
  color: #fff;
}
.resp-content-active,
.resp-accordion-active {
  display: block;
}
.resp-tab-content {
  border: none;
  float: left;
  width: 100%;
  box-shadow: none;
  border-radius: 4px;
  background: transparent;
}
h2.resp-accordion {
  cursor: pointer;
  display: none;
  font-size: 18px;
  color: #fff;
  border-top: 0px solid #c1c1c1;
  margin-bottom: 5px;
  padding: 14px 15px;
  float: left;
  width: 100%;
  background: #18455d !important;
  border-radius: 0;
}
h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  background-color: #e74860 !important;
  color: #fff;
  margin-bottom: 0;
  border-radius: 0px;
}
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}
.tab-style1.top-margin {
  margin-top: -55px !important;
}
.resp-vtabs.style1 ul.resp-tabs-list {
  margin-top: -80px;
}
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 0;
}
.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 18px 20px !important;
  margin: 0 0 25px;
  cursor: pointer;
  float: none;
  font-size: 18px;
  background: rgba(24, 69, 93, 0.1);
  color: #18455d;
  border-radius: 0px;
}
.resp-vtabs .resp-tabs-list li:last-child {
  margin-bottom: 0;
}
.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  float: left;
  width: 100%;
  clear: none;
  border-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.resp-vtabs .resp-tab-content {
  word-wrap: break-word;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0;
}
.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  padding: 18px 20px !important;
  background-color: #e74860;
  color: #fff;
}
.resp-arrow {
  border-color: transparent #fff #fff transparent;
  border-style: solid;
  border-width: 0 2px 2px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}
h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 2px 0 0 2px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 10px;
}
.resp-easy-accordion h2.resp-accordion {
  display: block;
}
.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}
.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1;
}
.resp-jfit {
  width: 100%;
  margin: 0px;
}
.resp-tab-content-active {
  display: block;
  border-color: #e8e8e8 !important;
}
h2.resp-accordion.resp-tab-active {
  border-color: #e8e8e8 !important;
}
@media screen and (max-width: 991px) {
  .tab-style1.top-margin {
    margin-top: 0 !important;
  }
  ul.resp-tabs-list {
    display: none;
  }
  h2.resp-accordion {
    display: block;
  }
  h2.resp-accordion i {
    margin-right: 8px;
    font-size: 20px;
    color: #fff;
    vertical-align: text-bottom;
  }
  .resp-vtabs .resp-tab-content {
    margin-bottom: 5px;
    padding: 30px;
  }
  .resp-vtabs .resp-tab-content:last-child {
    margin-bottom: 0;
  }
  .resp-vtabs .resp-tabs-container {
    border: none !important;
    float: left;
    width: 100%;
    min-height: 100px;
    clear: none;
    background: none;
  }
  .resp-accordion-closed {
    display: none !important;
  }
  .resp-tab-content {
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #eee;
    margin-bottom: 5px;
    padding: 30px;
  }
  .resp-tab-content:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .resp-vtabs .resp-tab-content,
  .resp-tab-content {
    padding: 20px;
  }
}
.accordion-style .card {
  background: transparent;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  border: none;
  margin-top: 0 !important;
  border-radius: 0;
}
.accordion-style .card-header {
  border: 0px;
  padding: 0;
  border-bottom: none;
  background: none;
}
.accordion-style .btn-link {
  color: #e74860;
  line-height: 26px;
  position: relative;
  border: none;
  border-bottom: none;
  border-left: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border-radius: 0;
  padding: 20px 45px 20px 18px;
  font-weight: 700;
  text-decoration: none;
  background-color: #ffffff;
}
.accordion-style .btn-link.collapsed {
  color: #42545e;
  line-height: 26px;
  position: relative;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border: none;
  padding: 20px 45px 20px 18px;
  font-weight: 700;
  text-decoration: none;
  background-color: #fff;
}
.accordion-style .btn-link:hover {
  text-decoration: none;
}
.accordion-style .btn-link.collapsed:after {
  content: "+";
  right: 17px;
  left: inherit;
  font-size: 20px;
  transform: none;
  top: 22px;
  position: absolute;
  color: #212121;
  background-color: transparent;
  border-radius: 0.3rem;
  line-height: 20px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.accordion-style .btn-link:after {
  content: "-";
  right: 17px;
  left: inherit;
  font-size: 20px;
  transform: none;
  top: 20px;
  position: absolute;
  color: #e74860;
  background-color: transparent;
  border-radius: 0.3rem;
  line-height: 22px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.accordion-style .card-body {
  padding: 0px 30px 25px 26px;
  line-height: 24px;
  text-align: left;
  border: none;
  border-left: none;
  background: #fff;
  border-top: none;
}
@media screen and (max-width: 991px) {
  .accordion-style .card-body {
    padding: 10px 25px 30px 25px;
  }
}
.sidebar .widget {
  position: relative;
  display: block;
  background-color: #fff;
}
.sidebar .widget .category-list li {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 20px 14px 28px;
}
.sidebar .widget .category-list li:last-child {
  margin-bottom: 0px;
}
.sidebar .widget .category-list li a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}
.sidebar .widget .category-list li a span {
  z-index: 9;
  position: relative;
}
.sidebar .widget .category-list li a:after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: bold;
  margin-left: -10px;
  opacity: 0;
}
.sidebar .widget .category-list li a:before {
  width: 20px;
  height: 20px;
  background: #e74860;
  z-index: 1;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 3px;
  left: -8px;
}
.sidebar .widget .category-list li.active {
  background: #e74860;
}
.sidebar .widget .category-list li.active a:before {
  background: #18455d;
}
.sidebar .widget .category-list li.active a:after,
.sidebar .widget .category-list li:hover a:after {
  margin-left: 10px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.btn-wrapper {
  position: relative;
  text-align: center;
  font-weight: 400;
  display: inline-block;
}
.btn-wrapper .dow-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 35px 12px 35px;
  background-color: #e74860;
  color: #ffffff;
  margin: 0 -5px;
  display: inline-block;
}
.btn-wrapper .butn-or {
  position: absolute;
  z-index: 9;
  overflow: hidden;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #18455d;
  box-shadow: 0 0 0 5px rgba(24, 69, 93, 0.3);
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 30px;
  left: 46%;
  top: 11px;
}
.btn-wrapper .disc-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 35px 12px 35px;
  background-color: #ffffff;
  color: #18455d;
  display: inline-block;
}
.widget-content {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 30px;
}
.blog-tags a {
  background-color: #e74860;
  padding: 7px 12px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin: 0.6rem 5px 0 0;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #e74860;
}
.blog-tags a:hover,
.blog-tags a:active,
.blog-tags a:focus {
  background-color: #fff;
  color: #e74860;
}
.comment-reply-link {
  color: #18455d;
  background: rgba(24, 69, 93, 0.1);
  padding: 5px 18px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
}
.comment-reply-link:hover,
.comment-reply-link:active,
.comment-reply-link:focus {
  color: #fff;
  background: #18455d;
}
@media screen and (max-width: 575px) {
  .widget-content {
    padding: 20px;
  }
  .btn-wrapper .dow-btn {
    margin: 0;
    padding: 12px 25px;
  }
  .btn-wrapper .disc-btn {
    padding: 12px 25px;
  }
}
.countdown {
  padding: 0;
}
.countdown li {
  background: #e74860;
  display: inline-block;
  text-align: center;
  min-width: 140px;
  overflow: hidden;
  margin-right: 10px;
  padding: 15px 10px;
  position: relative;
}
.countdown li:last-child {
  margin-right: 0;
}
.countdown li span {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  line-height: normal;
  position: relative;
}
.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  z-index: 2;
  position: relative;
  padding: 0;
  text-transform: capitalize;
}
@media screen and (max-width: 1199px) {
  .countdown li {
    min-width: 120px;
  }
  .countdown li span {
    font-size: 34px;
  }
}
@media screen and (max-width: 991px) {
  .countdown li span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .countdown li {
    min-width: 180px;
    margin-top: 5px;
  }
  .countdown li:nth-child(2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .countdown li {
    min-width: 43%;
  }
  .countdown li span {
    font-size: 26px;
  }
}
.modal-backdrop {
  z-index: 99999;
}
.modal {
  z-index: 999999;
}
.bd-example button,
.bd-example a {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.icon-gallery .d-table {
  margin-top: 30px;
}
.icon-gallery .d-table-cell {
  width: 125px;
  height: 125px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  vertical-align: middle;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background: #fff;
}
.icon-gallery i {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #e74860;
}
pre[class*="language-"] {
  max-height: 45vh;
  height: 100%;
  margin: 35px 0 15px 0;
  padding-top: 0;
}
.html-code {
  background-color: #fbfbfb;
  position: relative;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ededed;
}
.copy-element {
  position: absolute;
  top: 0;
  right: 85px;
  transition: opacity 0.3s ease-in-out;
}
.source-element {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out;
}
.html-code .copy-element {
  top: 15px;
  right: 30px;
}
.html-code:hover .copy-element,
.html-code:hover .source-element {
  opacity: 1;
}
.box-hover:hover .copy-element,
.box-hover:hover .source-element {
  opacity: 1;
}
.copy-element > a,
.source-element > a {
  background: #dde1e6;
  color: #777 !important;
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 5px;
  cursor: pointer !important;
  font-weight: 600;
}
.copy-element > a:hover,
.source-element > a:hover {
  background: #e74860;
  color: #fff !important;
}
.copy-clipboard {
  cursor: pointer;
  padding: 5px 15px;
}
.white-popup-block {
  background-color: #fbfbfb;
  position: relative;
  max-width: 650px;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 60px 30px 30px 30px;
  border-radius: 5px;
  margin: 40px auto;
  border: 1px solid #ededed;
}
.white-popup-block.popup-copy.mfp-hide {
  display: block !important;
  height: 0;
  position: absolute;
  z-index: -1;
  padding: 0;
  opacity: 0;
  margin: 0;
}
.white-popup-block:before {
  color: rgba(231, 72, 96, 0.2);
  content: "•••";
  font-size: 24px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}
.white-popup-block:hover .copy-element {
  opacity: 1;
}
.white-popup-block .copy-element {
  top: 45px;
  right: 30px;
}
.box-hover {
  position: relative;
}
.box-hover .container {
  position: relative;
}
.inner-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  margin-bottom: 35px;
  padding-bottom: 20px;
}
.inner-title h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 26px;
  color: #e74860;
}
@media screen and (max-width: 767px) {
  .elements-block .inner-title {
    margin-bottom: 65px;
  }
  .copy-element,
  .source-element {
    top: 65px;
  }
}
.team-style01 {
  text-align: center;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.team-style01 .image {
  position: relative;
}
.team-style01:hover .image::after {
  opacity: 1;
  transition: all 0.3s ease;
}
.team-style01 .image::after {
  position: absolute;
  opacity: 0;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(12, 50, 70, 0.7);
  transition: all 0.3s ease;
}
.team-style01 .image .social {
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  bottom: 20px;
}
.team-style01 .image .social li {
  display: inline-block;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}
.team-style01 .image .social li a {
  display: block;
  text-align: center;
  position: relative;
  font-size: 15px;
  margin-right: 25px;
  color: #ffffff;
  border-radius: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.team-style01 .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.team-style01 .image .social li a:hover {
  color: #ffffff;
}
.team-style01:hover .image .social li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.about-style-02 .about-img {
  -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  -webkit-animation: hero-border 5s linear infinite alternate;
  -moz-animation: hero-border 5s linear infinite alternate;
  -o-animation: hero-border 5s linear infinite alternate;
  animation: hero-border 5s linear infinite alternate;
  overflow: hidden;
  display: inline-block;
  position: relative;
  transition: all 0.4s ease;
  z-index: 9;
}
.about-style-02 .shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e74860;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
}
.about-style-02 blockquote {
  position: relative;
  display: block;
  background: #18455d;
  padding: 31px 50px 32px 50px;
  margin-bottom: 50px;
}
.about-style-02 blockquote:before {
  position: absolute;
  content: "";
  background: #18455d;
  width: 40px;
  height: 30px;
  left: 0px;
  bottom: -29px;
  top: inherit;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0px 0px);
}
.about-style-02 blockquote .icon {
  position: absolute;
  left: 50px;
  top: -10px;
  font-size: 80px;
  line-height: 60px;
  font-weight: 700;
  color: #e74860;
}
.about-style-02 blockquote h3 {
  display: block;
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  .about-style-02 blockquote {
    padding: 21px 40px 22px 40px;
  }
  .about-style-02 blockquote .icon {
    left: 40px;
    top: -15px;
    font-size: 70px;
  }
  .about-style-02 blockquote h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .about-style-02 blockquote {
    padding: 21px 25px 22px 25px;
  }
}
.about-style-03 .about-text {
  padding: 20px 50px 20px 20px;
  transition-duration: 0.3s;
}
.about-style-03 .about-text:hover {
  box-shadow: 4px 4px 36px 0px rgba(0, 0, 0, 0.07);
}
.about-style-03 .about-text i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 26px;
  background: #e74860;
  display: inline-block;
}
.about-style-03 .about-img {
  position: absolute;
  right: 0;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
}
.about-style-03 .about-img:before {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  border: 2px solid #e74860;
  width: 184px;
  height: 428px;
  z-index: -1;
  content: "";
}
.sm-box-wrapper {
  position: absolute;
  bottom: 5%;
  left: 20%;
}
.sm-box-wrapper .inner-box {
  background-color: #e74860;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  padding: 10px;
}
.sm-box-wrapper span.exp-no {
  font-size: 65px;
  color: #fff;
  font-weight: 800;
}
.sm-box-wrapper span.exp-year {
  color: #fff;
  line-height: 1.5;
  font-size: 20px;
  margin-left: 20px;
}
.about-style-01 .about-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin-left: -26px;
  margin-top: 8px;
  border-radius: 50px;
}
.about-style-01 .img1,
.about-style-01 .img2 {
  margin-left: -26px;
}
@media screen and (max-width: 1199px) {
  .sm-box-wrapper {
    bottom: 10%;
  }
  .sm-box-wrapper span.exp-no {
    font-size: 50px;
  }
  .sm-box-wrapper span.exp-year {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .sm-box-wrapper {
    bottom: 5%;
    left: 25%;
  }
  .sm-box-wrapper span.exp-no {
    font-size: 35px;
  }
  .sm-box-wrapper span.exp-year {
    font-size: 12px;
    margin-left: 15px;
  }
}
.about-style-04 .about-image {
  position: relative;
}
.about-style-04 .about-img-text {
  margin: 0 auto;
  position: absolute;
  width: 90%;
  left: 0;
  right: 0;
  bottom: 40px;
}
.about-style-04 .steps-item-wrap {
  position: relative;
  transition: opacity 0.5s;
  display: flex;
  text-align: left;
  margin-left: 0;
  width: 100%;
}
.about-style-04 .steps-wrap {
  display: flex;
  flex-direction: column;
  flex-basis: content;
  align-items: center;
}
.about-style-04 .steps-number {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #e74860;
  position: relative;
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
}
.about-style-04 .steps-line-wrap {
  flex-grow: 1;
  position: relative;
  width: 2px;
}
.about-style-04 .steps-line-wrap .steps-line {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 2px;
  height: 0;
  top: 0;
  height: calc(100% - 40px);
  margin-top: 20px;
}
.about-style-04 .steps-line-wrap .steps-line:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  display: block;
  background-color: #e74860;
  border-radius: 0;
}
.about-style-04 .steps-content {
  margin: 0px 25px 50px 25px;
  align-items: center;
}
.about-style-04 .steps-line-wrap .steps-line.last:before {
  content: none;
}
.about-style-05 .left-img {
  position: absolute;
  bottom: -50px;
  right: -15px;
}
.about-style-06 .left-box {
  position: absolute;
  left: 40px;
  bottom: -25px;
  background-color: #e74860;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 198px;
  padding: 44px 8px;
  z-index: 9;
}
.about-style-06 .left-top-box {
  position: absolute;
  left: -20px;
  top: -10%;
  display: inline-block;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  width: 250px;
  z-index: 9;
}
.about-style-06 .about-left:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -20px;
  left: 60px;
  clip-path: polygon(
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%,
    25% 6.7%,
    75% 6.7%
  );
  transform: rotate(30deg);
  background-color: rgba(231, 72, 96, 0.1);
}
.about-style-06 .about-left:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -20px;
  left: 60px;
  clip-path: polygon(
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%,
    25% 6.7%,
    75% 6.7%
  );
  transform: rotate(30deg);
  background-color: transparent;
  border: 4px solid rgba(231, 72, 96, 0.1);
}
@media screen and (max-width: 1399px) {
  .about-style-06 .left-top-box {
    left: -6%;
  }
  .about-style-06 .left-box {
    left: -30px;
  }
}
@media screen and (max-width: 1199px) {
  .about-style-06 .about-left:before {
    left: -30px;
  }
  .about-style-06 .left-top-box {
    left: -6%;
  }
  .about-style-06 .left-box {
    left: -4%;
    bottom: -31%;
  }
}
@media screen and (max-width: 991px) {
  .about-style-06 .about-left:before {
    left: 120px;
  }
  .about-style-06 .left-top-box {
    left: 40px;
  }
  .about-style-06 .left-box {
    left: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about-style-06 .about-left:before,
  .about-style-06 .left-top-box,
  .about-style-06 .left-box {
    display: none;
  }
}
.why-choose1 .why-choose-img {
  border-radius: 0px;
  background-color: transparent;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -70px;
  height: 100%;
  width: auto;
  margin-right: -30px;
  z-index: 3;
  position: relative;
}
.why-choose1 .why-choose-text {
  border-radius: 0px;
  background-position: 0% 0%;
  background-repeat: repeat;
  background-size: auto;
  background-color: #18455d !important;
  height: 100%;
  width: auto;
}
.newsletter-form .quform-elements {
  position: relative;
}
.newsletter-form .quform-submit-inner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: auto;
  background: transparent;
  height: 48px;
}
.newsletter-form .quform-submit-inner .btn {
  padding: 0.5rem 1.15rem;
}
.newsletter-form .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}
.newsletter-form input {
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.2);
  height: 50px;
  padding: 0.5rem 4rem 0.5rem 1rem;
  color: #fff;
}
.newsletter-form .form-control:focus,
.newsletter-form .form-control:active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error textarea,
.newsletter-form .quform-has-error select {
  border-color: #f5543f;
}
.newsletter-form .quform-input .quform-errors-wrap {
  right: 15px;
}
.newsletter-form i {
  font-size: 1.2rem;
  line-height: 2rem;
}
.team-details-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 0;
  padding: 35px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.team-details-social ul {
  margin-left: 30px;
  padding-left: 0;
  margin-bottom: 0;
}
.team-details-social ul li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
}
.team-details-social ul li:last-child {
  margin: 0;
}
.team-details-social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  border: 1px solid #ededed;
  color: #343a40;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.team-details-social ul li a:hover {
  color: #fff;
  border-color: #e74860;
  background: #e74860;
}
.process-style-01 .process-block {
  width: 167px;
  height: 167px;
  background: #f8f9fa;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-bottom: 25px;
}
.process-style-01 .process-block .process-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #e74860;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 1;
}
.process-style-01 .process-block .process-count {
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #fff;
  text-align: center;
  position: absolute;
  right: 30px;
  bottom: 20px;
  box-shadow: 0px 5px 18.8px 1.2px rgba(99, 102, 187, 0.1);
  z-index: -1;
}
.process-style-01 .process-block .process-count span {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #18455d;
}
.process-style-02 .process-block {
  position: relative;
  display: flex;
  flex-direction: column;
}
.process-style-02 .process-block .process-no {
  position: absolute;
  top: -40px;
  right: 0;
  max-width: 100%;
  text-align: end;
  font-size: 190px;
  color: rgba(24, 69, 93, 0.15);
  z-index: 0;
  line-height: 1em;
  margin-bottom: 0.5em;
  vertical-align: middle;
  display: inline-block;
}
.process-style-02 .process-block h6 {
  color: #e74860;
  letter-spacing: 1.5px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0.75em;
}
.process-style-02 .process-block h3 {
  margin-bottom: 0.85em;
  vertical-align: middle;
  display: inline-block;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: -0.5px;
}
.process-style-02 .process-block p {
  line-height: 1.4em;
  font-size: 15px;
  margin-bottom: 0.5em;
  vertical-align: middle;
  display: inline-block;
}
.process-style-02 .module-middle {
  margin-right: 12.5%;
  margin-left: 12.5%;
}
.process-style-02 .center-button {
  transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s,
    border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 60px;
}
.process-style-02 .center-button p {
  padding: 8px 20px;
}
@media screen and (max-width: 1399px) {
  .process-style-02 .process-block h3 {
    font-size: 35px;
  }
  .process-style-02 .process-block .process-no {
    font-size: 160px;
  }
}
@media screen and (max-width: 1199px) {
  .process-style-02 .module-middle {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .process-style-02 .center-button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .process-style-02 .process-block .process-no {
    font-size: 110px;
    top: 0;
  }
}
@media screen and (max-width: 575px) {
  .process-style-02 .process-block h3 {
    font-size: 25px;
  }
  .process-style-02 .process-block .process-no {
    font-size: 80px;
  }
}
.extra-style01 .right-content {
  word-break: break-all;
}
.extra-style01 .right-content .right-icon {
  width: 110px;
  height: 110px;
  background-color: #e74860;
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .extra-style01 .right-content .right-icon {
    width: 85px;
    height: 85px;
  }
}
.extra-style03 .extra-content-box {
  padding-top: 330px;
}
.extra-style03 .extra-content-box ul.inner-box {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: end;
}
.extra-style03 .extra-content-box ul.inner-box li.one {
  background-color: #fff;
  width: 350px;
  display: flex;
  align-items: center;
  padding: 40px;
  margin-right: 30px;
}
.extra-style03 .extra-content-box ul.inner-box li.one h4 {
  font-size: 40px;
  margin-bottom: 0;
  margin-right: 15px;
}
.extra-style03 .extra-content-box ul.inner-box li.two {
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 350px;
  padding: 37px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .extra-style03 .extra-content-box {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .extra-style03 .extra-content-box {
    padding-top: 120px;
  }
  .extra-style03 .extra-content-box ul.inner-box {
    display: block;
  }
  .extra-style03 .extra-content-box ul.inner-box li.one {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .extra-style03 .extra-content-box {
    padding-top: 0;
  }
  .extra-style03 .extra-content-box ul.inner-box li.one,
  .extra-style03 .extra-content-box ul.inner-box li.two {
    width: 296px;
  }
  .extra-style03 .extra-content-box ul.inner-box li.one h4 {
    font-size: 34px;
  }
  .extra-style03 .extra-content-box ul.inner-box li.two {
    padding: 35px;
  }
}
.separator-line {
  margin: 5px 20px 0 20px;
  width: 70px;
  background-color: #e74860;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
}
.scrolling-main {
  padding: 40px 0;
}
.scrolling-text {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.scrolling-marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: campoutscrollingmarqueeReverse 6s linear infinite;
}
.scrolling-left-text .scrolling-marquee {
  animation: campoutscrollingmarquee 6s linear infinite;
}
.scrolling-marquee h4 {
  margin: 0px;
  padding: 0px;
  display: inline-block;
  font-size: 26px;
  line-height: 38px;
  margin-bottom: 0;
}
.scrolling-marquee h4.circle-marquee:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid #fff;
  display: inline-block;
  margin: 0px 50px;
  vertical-align: middle;
}
@keyframes campoutscrollingmarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes campoutscrollingmarqueeReverse {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
.scrolling-left-text .scrolling-marquee {
  animation-duration: 20s;
}
.scrolling-left-text .scrolling-marquee h4 {
  color: #fff;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev,
.testimonial-carousel1.owl-carousel .owl-nav button.owl-next {
  top: 40%;
  border-radius: 50%;
  position: absolute;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev {
  left: -90px;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-next {
  right: -90px;
}
.testimonial-carousel1.owl-carousel .owl-dots {
  margin-top: 30px;
}
.testimonial-carousel1 .owl-nav span {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px !important;
  color: #fff;
  transition: all 0.3s;
  border-radius: 50%;
}
.testimonial-carousel1.owl-carousel .owl-nav button.owl-next:hover span,
.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev:hover span {
  background: #fff;
  border-radius: 50%;
  color: #e74860;
}
.testimonial-quote {
  -webkit-text-stroke-width: 1px;
  color: #ffffff00;
  -webkit-text-stroke-color: #ffffff1a;
  font-size: 810px;
  line-height: 0px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-carousel2 .owl-nav {
  text-align: right;
}
.testimonial-carousel2 .owl-nav .owl-prev span,
.testimonial-carousel2 .owl-nav .owl-next span {
  box-shadow: -1px 0px 8px 0px rgba(0, 0, 0, 0.15);
  background-color: #18455d;
  color: #fff;
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  transition: 0.4s;
}
.testimonial-carousel2 .owl-nav .owl-prev:hover span,
.testimonial-carousel2 .owl-nav .owl-next:hover span {
  background-color: #fff;
  color: #18455d;
}
@media screen and (max-width: 767px) {
  .testimonial-carousel2 .owl-nav {
    bottom: -50px;
  }
  .testimonial-carousel2 .owl-nav .owl-prev span,
  .testimonial-carousel2 .owl-nav .owl-next span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
  }
}
.testimonials-style01 .video_btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.testimonials-style01 .video_btn:before {
  width: 75px;
  height: 75px;
}
.testimonials-style01 .video_btn:after {
  width: 60px;
  height: 60px;
}
.testimonials-style02 blockquote {
  position: relative;
  display: block;
  background: #f6f6f6;
  padding: 31px 50px 32px 50px;
  margin-bottom: 50px;
}
.testimonials-style02 blockquote:before {
  position: absolute;
  content: "";
  background: #f6f6f6;
  width: 40px;
  height: 30px;
  left: 0px;
  bottom: -30px;
  top: inherit;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0px 0px);
}
.testimonials-style02 blockquote .icon {
  position: absolute;
  left: 50px;
  top: -10px;
  font-size: 80px;
  line-height: 60px;
  font-weight: 700;
  color: #e74860;
}
.testimonials-style02 blockquote h3 {
  display: block;
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  .testimonials-style02 blockquote {
    padding: 21px 40px 22px 40px;
  }
  .testimonials-style02 blockquote .icon {
    left: 40px;
    top: -15px;
    font-size: 70px;
  }
  .testimonials-style02 blockquote h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .testimonials-style02 blockquote {
    padding: 21px 25px 22px 25px;
  }
}
.testimonial-carousel-two .owl-nav {
  margin-top: 0;
  position: absolute;
  left: -104%;
  bottom: 0;
}
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev,
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next {
  background-color: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev span,
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next span {
  color: #fff;
  font-size: 18px;
}
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1199px) {
  .testimonial-carousel-two .owl-nav {
    left: 0;
    bottom: -50%;
  }
  .testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev,
  .testimonial-carousel-two.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev span,
  .testimonial-carousel-two.owl-carousel .owl-nav button.owl-next span {
    font-size: 16px;
  }
}
.testimonial-carousel-three .owl-nav {
  text-align: start;
}
.testimonial-carousel-three.owl-carousel .owl-nav button.owl-prev,
.testimonial-carousel-three.owl-carousel .owl-nav button.owl-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  position: relative;
  bottom: inherit;
  left: 0;
  top: inherit;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #e4e4e4;
}
.testimonial-carousel-three.owl-carousel .owl-nav button.owl-prev span,
.testimonial-carousel-three.owl-carousel .owl-nav button.owl-next span {
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-carousel-three.owl-carousel .owl-nav button.owl-prev:hover span,
.testimonial-carousel-three.owl-carousel .owl-nav button.owl-next:hover span {
  opacity: 0.4;
}
.testimonial-carousel-three.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
}
.testimonials-style03 .left-box {
  position: absolute;
  left: 30px;
  bottom: 85px;
  width: 230px;
  background-color: #18455d;
  animation: float 2s linear 0.5s infinite alternate both;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  text-align: center;
}
.testimonials-style03 .left-box .inner-box {
  top: -1px;
  margin-bottom: 15px;
  padding-bottom: 35px;
  padding-top: 35px;
  background-color: #fff;
  position: relative;
}
.testimonials-style03 .left-box .inner-box h1 {
  letter-spacing: -3px;
  color: #000;
  font-size: 4.375rem;
  line-height: 4.375rem;
  word-spacing: -2px;
}
.testimonials-style03 .fas.fa-star {
  letter-spacing: -4px;
}
.testimonials-style03 .left-box .inner-box .box-tag {
  padding: 0 20px;
  border-radius: 100px;
  background-color: #e74860;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  color: #fff;
  line-height: 30px;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  margin-top: 3px;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(10px);
  }
}
@media screen and (max-width: 1199px) {
  .testimonials-style03 .left-box {
    left: -40px;
  }
  .testimonials-style03 .left-box .inner-box {
    padding-bottom: 25px;
    padding-top: 15px;
  }
  .testimonials-style03 .left-box .inner-box h1 {
    font-size: 2.875rem;
    margin-bottom: 0;
  }
}
.testimonials-style04 .left-content {
  margin-bottom: 15%;
}
.testimonials-style04 .left-content .left-count {
  font-weight: 700;
  margin-right: 10px;
  font-size: 5rem;
  line-height: 5rem;
  color: #fff;
}
.testimonials-style04 .left-content .start-content {
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 30px;
  letter-spacing: -2px;
  background-color: #e74860;
  font-size: 16px;
  color: #0c3246;
  padding-top: 3px;
  padding-bottom: 3px;
}
.testimonials-style04 .left-content span {
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .testimonials-style04 .left-content {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 767px) {
  .testimonials-style04 .left-content {
    margin-bottom: 2%;
  }
  .testimonials-style04 .left-content .left-count {
    font-size: 3rem;
  }
  .testimonials-style04 .left-content .start-content {
    font-size: 13px;
  }
  .testimonials-style04 .left-content span {
    font-size: 11px;
  }
}
.progress-style1 .progress {
  height: 8px;
}
.progress-style1 .progress .progress-bar {
  background-color: #e74860;
}
.process-style-01 span {
  display: inline-block;
  text-align: center;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #e74860;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-weight: 900;
  font-size: 22px;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  margin-bottom: 19px;
  transition: all 0.35s ease-in-out;
  bottom: 20px;
  right: -5px;
}
.process-style-01:nth-child(2) .item span {
  bottom: auto;
}
.process-style-01 .thumb {
  position: relative;
  display: inline-block;
}
.process-style-01 img {
  height: 170px;
  width: 170px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  transition: all 0.35s ease-in-out;
}
.main-process {
  position: relative;
  z-index: 1;
  padding-top: 33px;
}
.main-process .line-shape {
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
  transform: rotate(-3deg);
}
.process-style-01 .item:hover span {
  transform: scale(1.2);
  background: #18455d;
  color: #fff;
  right: -45px;
}
.process-style-01:nth-child(2n) .item span {
  transform: scale(1.2);
  background: #18455d;
  color: #fff;
  right: -45px;
}
.process-style-01:nth-child(2n) .item img {
  transform: scale(1.4);
  margin-bottom: 60px;
}
.process-style-01 .item:hover img {
  transform: scale(1.4);
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .process-style-01 img {
    transform: scale(1.4);
    margin-bottom: 60px;
  }
  .main-process .line-shape {
    display: none;
  }
}
.counter-style1 {
  margin-bottom: -120px;
  position: relative;
  z-index: 9;
}
.counter-style1 .count-block {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .counter-style1 .count-block {
    position: inherit;
  }
}
.counter-style2 {
  border-right: 1px solid #d3d3d3;
  position: relative;
}
.counter-style2:after {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50px;
  background-color: #e74860;
  right: -4px;
  left: auto;
  bottom: -20px;
  animation: pulsey 5s ease infinite alternate;
}
@media screen and (max-width: 991px) {
  .counter-style2 {
    border-right: none;
  }
  .counter-style2:after {
    content: none;
  }
}
@keyframes pulsey {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-110px);
  }
}
.counter-style-01 {
  margin-top: -95px;
}
.counter-style-01 .count-no {
  font-size: 300px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 260px;
  display: inline-block;
  color: #232323;
  clear: both;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.counter-style-01 .count-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 4px;
  color: #232323;
  display: block;
}
.counter-style-01 .count-img {
  border-radius: 50%;
  border: 20px solid #fff;
}
@media screen and (max-width: 1399px) {
  .counter-style-01 {
    margin-top: -105px;
  }
}
@media screen and (max-width: 1199px) {
  .counter-style-01 {
    margin-top: -119px;
  }
}
@media screen and (max-width: 575px) {
  .counter-style-01 .count-no {
    font-size: 230px;
    line-height: 200px;
  }
}
.counter-style3 .counter-block {
  border-right: 1px solid #eee;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 0px 100px 0px 0px;
}
.counter-style3 .counter-block.two {
  padding: 0 70px 0 70px;
}
.counter-style3 .counter-block.three {
  padding: 0 15px 0 70px;
  border-right: 0;
}
.counter-style3 .counter-block h4 {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 30px;
}
.counter-style3 .counter-block h4 sup {
  color: #999;
  font-size: 50px;
  top: -0.7em;
}
.counter-style3 .counter-block.two h4 sup {
  top: -0.6em;
}
@media screen and (max-width: 1199px) {
  .counter-style3 .counter-block {
    padding: 0 40px 0 0;
  }
  .counter-style3 .counter-block.two {
    padding: 0 40px 0 40px;
  }
  .counter-style3 .counter-block.three {
    padding: 0 15px 0 40px;
  }
}
@media screen and (max-width: 991px) {
  .counter-style3 {
    padding: 0;
  }
  .counter-style3 .counter-block.two {
    border-right: 0;
  }
  .counter-style3 .counter-block.three {
    padding: 0 15px 0 0;
  }
  .counter-style3 .counter-block h4 {
    margin-bottom: 0px;
    font-size: 70px;
  }
  .counter-style3 .counter-block h4 sup {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .counter-style3 .counter-block {
    border-right: 0;
  }
  .counter-style3 .counter-block.two {
    padding: 0 40px 0 0;
  }
}
@media screen and (max-width: 575px) {
  .counter-style3 .counter-block {
    padding: 0;
  }
}
.clients-style3 .mission-box,
.clients-style3 .vision-box {
  padding: 0 0 40px 40px;
}
.clients-style3 .mission-box .icon i,
.clients-style3 .vision-box .icon i {
  font-size: 170px;
  color: rgba(255, 255, 255, 0.1);
}
.clients-style3 .clients-img {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  height: max-content;
  overflow: hidden;
}
.clients-style3 .clients-img img {
  transition: 0.3s;
  margin: 0 auto;
}
.clients-style3 .clients-img .hover-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  visibility: hidden;
  display: block;
  transform: translateY(-100%);
}
.clients-style3 .clients-img:hover .hover-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.clients-style3 .clients-img:hover .main-img {
  transform: translateY(100%);
}
@media screen and (max-width: 1399px) {
  .clients-style3 .mission-box .icon i,
  .clients-style3 .vision-box .icon i {
    font-size: 140px;
  }
}
@media screen and (max-width: 767px) {
  .clients-style3 .mission-box .icon i,
  .clients-style3 .vision-box .icon i {
    font-size: 100px;
  }
}
@media screen and (max-width: 575px) {
  .clients-style3 .mission-box .icon i,
  .clients-style3 .vision-box .icon i {
    font-size: 60px;
  }
  .clients-style3 .mission-box,
  .clients-style3 .vision-box {
    padding: 0 0 20px 20px;
  }
}
.clients:hover .client-img {
  opacity: 0;
}
.clients .client-img {
  width: auto;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.35s ease-out;
  display: inline-block;
}
.clients:hover .client-hover-img {
  opacity: 1;
}
.clients .client-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.35s ease-out;
}
.client-style01 .client-logo {
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
  -moz-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
  -ms-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
  -o-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
}
.client-style01:hover .client-logo {
  -webkit-filter: blur(2px);
  filter: blur(2px);
  opacity: 0.6;
}
.client-style01 .client-logo:hover {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.calltoaction-style01 {
  margin-bottom: -60px;
  background: transparent;
  z-index: 9;
}
.calltoaction-style01 .main-text {
  font-size: 50px;
}
.calltoaction-style01 .main-bg {
  margin-left: 292px;
}
@media screen and (max-width: 1599px) {
  .calltoaction-style01 .main-bg {
    margin-left: 100px;
  }
}
@media screen and (max-width: 1399px) {
  .calltoaction-style01 .main-text {
    font-size: 39px;
  }
  .calltoaction-style01 .main-bg {
    margin-left: 45px;
  }
}
@media screen and (max-width: 992px) {
  .calltoaction-style01 .main-text {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .calltoaction-style01 .main-text {
    font-size: 24px;
  }
  .calltoaction-style01 .main-bg {
    margin: 0 15px;
  }
}
.calltoaction-style02 .content h2 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 40px;
}
.calltoaction-style02 .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: red;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 25px;
}
.calltoaction-style02 .icon:before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  background-color: transparent;
  border: 1px solid #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.calltoaction-style02 .right-img {
  margin-top: -69px;
}
.calltoaction-style02 .right-img .video-box {
  position: absolute;
  top: 0;
  left: -130px;
  background-color: #e74860;
  width: 130px;
  height: 130px;
}
.calltoaction-style02 .right-img .video-box .story-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.calltoaction-style02 .right-img .video-box .story-video .video_btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.calltoaction-style02 .right-img .video-box .story-video .video_btn:before {
  width: 65px;
  height: 65px;
  border: 2px solid #fff;
}
.calltoaction-style02 .right-img .video-box .story-video .video_btn:after {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
}
.calltoaction-style02 .call-icon i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: #fff;
  text-align: center;
  color: #18455d;
  border-radius: 50%;
  font-size: 25px;
}
@media screen and (max-width: 1199px) {
  .calltoaction-style02 .right-img {
    margin-top: -236px;
  }
  .calltoaction-style02 .right-img .video-box {
    width: 100px;
    height: 100px;
    left: -100px;
  }
}
@media screen and (max-width: 992px) {
  .calltoaction-style02 .right-img {
    margin-top: -229px;
  }
}
@media screen and (max-width: 991px) {
  .calltoaction-style02 .right-img {
    margin-top: -39px;
  }
  .calltoaction-style02 .right-img .video-box {
    left: 0;
  }
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
}
.form-control:focus {
  border-color: #e74860;
}
.form-check-input:checked {
  border-color: #e74860;
  background-color: #e74860;
}
.quform-input {
  position: relative;
}
.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}
.quform-element > label {
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px;
}
.quform-element > label .quform-required {
  color: #cc0101;
  font-size: 10px;
}
.quform-inner input {
  width: 100%;
}
.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}
.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.quform-errors > .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
  border-color: #f5543f;
}
.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-submit-inner {
  float: none;
}
.quform-loading-wrap {
  float: none;
}
.quform-loading-wrap .quform-loading {
  display: inline-block;
}
.quform-element {
  margin-bottom: 1rem;
}
.ani-left-right {
  -webkit-animation-name: left-right;
  animation-name: left-right;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes left-right {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
.ani-top-bottom {
  -webkit-animation-name: top-bottom;
  animation-name: top-bottom;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes top-bottom {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.image-hover:before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.3))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.image-hover:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.social-icon-style1 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 0px;
  list-style: none;
}
.social-icon-style1 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style1 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  height: 41px;
  line-height: 41px;
  width: 41px;
}
.social-icon-style1 li a:hover {
  background: #e74860;
}
.social-icon-style1 li:last-child {
  margin-right: 0;
}
.social-icon-style2 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 10px;
  list-style: none;
}
.social-icon-style2 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style2 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #e74860;
  background: #fff;
  height: 41px;
  line-height: 42px;
  width: 41px;
}
.social-icon-style2 li a:hover {
  background: #e74860;
  color: #fff;
}
.social-icon-style2 li:last-child {
  margin-right: 0;
}
.social-icon-style2 li a.small {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 11px;
}
.social-icon-style2.small li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
}
@media screen and (max-width: 991px) {
  .social-icon-style2.small li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.social-icon-style3 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 0px;
  list-style: none;
}
.social-icon-style3 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style3 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  background: #18455d;
  height: 41px;
  line-height: 41px;
  width: 41px;
}
.social-icon-style3 li a:hover {
  background: #e74860;
}
.social-icon-style3 li:last-child {
  margin-right: 0;
}
.search-form_input {
  color: #e74860;
}
.search-frame h4 a:hover {
  color: #e74860;
}
.search-frame .search_list .match {
  color: #e74860;
}
.search-frame .search_list li:before {
  color: #e74860;
}
.search-frame .search_list li + li {
  border-top: 3px solid #e74860;
}
.search-frame .search {
  color: #e74860;
}
.contact-map {
  width: 100%;
  height: 400px;
  vertical-align: top;
  border: 0;
}
.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.contact-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-border2 1400ms ease-out infinite;
  z-index: 1;
}
@keyframes pulse-border2 {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.history-timeline {
  position: relative;
}
.history-timeline:before {
  position: absolute;
  content: "";
  left: 0;
  top: 4px;
  width: 100%;
  height: 1px;
  background: #232323;
  opacity: 0.2;
}
.timeline-flag {
  background: #e74860;
  width: 10px;
  height: 25px;
  margin-bottom: 25px;
  position: relative;
  transform: rotate(180deg);
}
.timeline-flag:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 0px;
  height: 0;
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.history-year {
  position: absolute;
  background-color: #e74860;
  color: #fff;
  padding: 4px 20px;
  left: 50%;
  transform: translateX(-67%);
}
@media screen and (max-width: 767px) {
  .history-year {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 992px) {
  .why-chooseus {
    margin-top: -4rem;
  }
}
.page-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.prev-page,
.next-page {
  position: relative;
  width: 50%;
  max-width: 350px;
  margin: 10px;
}
.prev-page:before,
.next-page:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
  transform: scale(1.04, 1.12);
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
.prev-page .page-info > a,
.next-page .page-info > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 20px;
  min-height: 110px;
  transition: 0.8s;
}
.prev-page .page-info .image-prev,
.prev-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  overflow: hidden;
}
.next-page .page-info .image-prev,
.next-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  overflow: hidden;
}
.prev-page .page-info .prev-title,
.prev-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.next-page .page-info .prev-title,
.next-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.prev-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty {
  display: none;
}
.next-page .page-info .prev-title:empty,
.next-page .page-info .next-title:empty {
  display: none;
}
.prev-page:hover:before,
.next-page:hover:before {
  background-color: white;
  transform: scale(1);
  box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
}
.prev-page a {
  justify-content: flex-start;
  text-align: left;
}
.prev-page a:hover .image-prev:after {
  visibility: visible;
  opacity: 1;
}
.prev-page a:hover .image-prev:before {
  visibility: visible;
  opacity: 1;
  margin-left: 0;
}
.prev-page .image-prev {
  margin-right: 20px;
}
.prev-page .image-prev:after {
  background-color: #e74860;
}
.next-page .image-next:after {
  background-color: #e74860;
}
.prev-page .image-prev:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-left: 20px;
  content: "\e64a";
  font-family: "themify";
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.prev-page .image-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.next-page {
  margin-left: auto;
}
.next-page a {
  justify-content: flex-end;
  text-align: right;
}
.next-page a:hover .image-next:after {
  visibility: visible;
  opacity: 1;
}
.next-page a:hover .image-next:before {
  visibility: visible;
  opacity: 1;
  margin-right: 0;
}
.next-page .image-next {
  margin-left: 20px;
}
.next-page .image-next:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-right: 20px;
  content: "\e64a";
  font-family: "themify";
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  transform: scaleX(-1);
}
.next-page .image-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.next-page .next-title {
  text-align: right;
}
.prev-link-page-info > span,
.next-link-page-info > span {
  display: block;
}
.prev-link-page-info .date-details,
.next-link-page-info .date-details {
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 20px;
  margin-bottom: -2px;
}
.prev-link-page-info .date-details > div,
.prev-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 500;
}
.next-link-page-info .date-details > div,
.next-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 500;
}
.prev-link-page-info .date-details:only-child,
.next-link-page-info .date-details:only-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .prev-page,
  .next-page {
    width: calc(100% - 20px);
    max-width: unset;
  }
  .prev-page + .next-page {
    margin-top: 0;
  }
  .page-navigation {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  .prev-page .page-info > a,
  .next-page .page-info > a {
    padding: 10px;
  }
  .prev-page .page-info .prev-title,
  .prev-page .page-info .next-title {
    max-width: 168px;
  }
  .next-page .page-info .prev-title,
  .next-page .page-info .next-title {
    max-width: 168px;
  }
}
footer {
  word-break: break-word;
  background: #0c3246;
}
.footer-logo {
  max-width: 214px;
  width: 100%;
  display: inline-block;
}
.footer-logo > a {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 60px;
  }
}
.footer-tag {
  font-weight: 500;
  margin-left: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 30px;
  background-color: rgba(231, 72, 96, 0.2);
  color: #e74860;
  line-height: 30px;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}
.footer-link li a {
  color: #fff;
}
.footer-link li a:hover {
  color: #e74860;
}
.footer-list {
  margin: 0;
  padding: 0;
}
.footer-list li {
  list-style-type: none;
  color: #fff;
  margin-bottom: 20px;
}
.footer-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.footer-list li a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.footer-list li a:hover,
.footer-list li a:active,
.footer-list li a:focus {
  color: #e74860;
}
@media screen and (max-width: 767px) {
  .footer-list li a {
    font-size: 15px;
  }
}
.instagram-post .single-post {
  float: left;
  padding: 8px;
  width: 33.33%;
}
.instagram-post .single-post > a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.instagram-post .single-post > a:before {
  background: rgba(231, 72, 96, 0.7);
  content: "";
  height: 100%;
  opacity: 0;
  position: absolute;
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.instagram-post .single-post > a:hover:before {
  opacity: 1;
  transform: translateY(0%);
}
.instagram-post .single-post img {
  width: 100%;
}
footer .email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding-bottom: 5px;
}
footer .email a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: all 0.8s ease;
}
footer .email a:hover:after,
footer .email a:active:after,
footer .email a:focus:after {
  width: 100%;
}
footer .email a:hover,
footer .email a:active,
footer .email a:focus {
  color: #e74860;
}
footer .email a:after {
  border-bottom: 1px solid #fff;
  transition: all 0.8s ease;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
}
footer .phone {
  padding-bottom: 0;
  margin-bottom: 0;
}
footer .phone a {
  padding-bottom: 0;
  letter-spacing: -0.05rem;
  color: #fff;
}
footer .phone a:hover,
footer .phone a:active,
footer .phone a:focus {
  color: #e74860;
}





/* ==========================================
   JAI PARVATI HERO SECTION
========================================== */

.jpf-hero-section {
    width: 100%;
    background: #f5f3ef;
    padding: 70px 0 65px;
    overflow: hidden;
}

.jpf-hero-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 50px;
}

.jpf-hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.jpf-hero-content {
    width: 48%;
    max-width: 620px;
}

.jpf-hero-small-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e699e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.jpf-hero-small-title span {
    display: inline-block;
    width: 23px;
    height: 2px;
    background: #1e699e;
}

.jpf-hero-content h1 {
    margin: 0;
    color: #101e2d;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -2.5px;
}

.jpf-hero-content p {
    max-width: 570px;
    margin: 25px 0 28px;
    color: #656564;
    font-size: 16px;
    line-height: 1.65;
}


/* ==========================================
   BUTTONS
========================================== */

.jpf-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.jpf-btn {
    min-height: 44px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.jpf-btn-primary {
    color: #fff !important;
    background: #101e2d;
    border: 1px solid #101e2d;
}

.jpf-btn-primary:hover {
    background: #0d1b2a;
    border-color: #0d1b2a;
    color: #fff !important;
}

.jpf-btn-primary span {
    font-size: 18px;
    line-height: 1;
}

.jpf-btn-outline {
    color: #101e2d !important;
    background: transparent;
    border: 1px solid #101e2d;
}

.jpf-btn-outline:hover {
    color: #fff !important;
    background: #101e2d;
}


/* ==========================================
   RIGHT IMAGE AREA
========================================== */

.jpf-hero-images {
    width: 50%;
    max-width: 610px;
}

.jpf-main-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.jpf-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ==========================================
   BOTTOM IMAGE + BOX
========================================== */

.jpf-bottom-row {
    display: flex;
    gap: 24px;
    margin-top: 10px;
}

.jpf-small-image {
    width: 48%;
    height: 165px;
    overflow: hidden;
}

.jpf-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jpf-capacity-box {
    width: 48%;
    min-height: 165px;
    padding: 18px 22px;
    background: #101e2d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jpf-capacity-number {
    color: #fff;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
}

.jpf-capacity-number span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.jpf-capacity-text {
    max-width: 190px;
    color: #d8e0e8;
    font-size: 15px;
    line-height: 1.5;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (max-width: 1200px) {

    .jpf-hero-container {
        padding: 0 35px;
    }

    .jpf-hero-row {
        gap: 45px;
    }

    .jpf-hero-content h1 {
        font-size: 45px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .jpf-hero-section {
        padding: 60px 0;
    }

    .jpf-hero-container {
        padding: 0 25px;
    }

    .jpf-hero-row {
        flex-direction: column;
        align-items: stretch;
        gap: 45px;
    }

    .jpf-hero-content {
        width: 100%;
        max-width: 700px;
    }

    .jpf-hero-content h1 {
        font-size: 45px;
    }

    .jpf-hero-content p {
        max-width: 650px;
    }

    .jpf-hero-images {
        width: 100%;
        max-width: 700px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .jpf-hero-section {
        padding: 45px 0 50px;
    }

    .jpf-hero-container {
        padding: 0 18px;
    }

    .jpf-hero-row {
        gap: 35px;
    }

    .jpf-hero-small-title {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .jpf-hero-small-title span {
        width: 18px;
    }

    .jpf-hero-content h1 {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .jpf-hero-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 20px;
    }

    .jpf-hero-buttons {
        gap: 10px;
    }

    .jpf-btn {
        font-size: 14px;
        padding: 11px 15px;
    }


.jpf-mobile-submenu-heading {
  display: block;
  padding: 9px 15px;
  color: #394858;
  font-size: 13px;
  text-decoration: none;
}
    .jpf-main-image {
        height: 210px;
    }

    .jpf-bottom-row {
        gap: 10px;
    }

    .jpf-small-image {
        width: 50%;
        height: 135px;
    }

    .jpf-capacity-box {
        width: 50%;
        min-height: 135px;
        padding: 15px;
    }

    .jpf-capacity-number {
        font-size: 31px;
    }

    .jpf-capacity-number span {
        font-size: 10px;
    }

    .jpf-capacity-text {
        font-size: 14px;
        line-height: 1.4;
    }

}



/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .jpf-hero-content h1 {
        font-size: 31px;
    }

    .jpf-hero-content p {
        font-size: 16px;
    }

    .jpf-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .jpf-btn {
        width: 60%;
    }

    .jpf-main-image {
        height: 180px;
    }

    .jpf-bottom-row {
        flex-direction: column;
    }

    .jpf-small-image,
    .jpf-capacity-box {
        width: 100%;
    }

    .jpf-small-image {
        height: 180px;
    }

    .jpf-capacity-box {
        min-height: 150px;
    }

}






/* =========================================================
   JAI PARVATI FORGE HEADER
========================================================= */

.jpf-header {
    width: 100%;
    position: relative;
    z-index: 9999;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;;
}

.jpf-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   TOP BAR
========================================================= */

.jpf-topbar {
    width: 100%;
    background: #1e699e;
    color: #fff;
    height: 32px;
}

.jpf-topbar-inner {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.jpf-top-left,
.jpf-top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.jpf-topbar span,
.jpf-topbar a {
    color: #fff;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.jpf-top-right a:hover {
    color: #fff;
}


/* =========================================================
   MAIN NAVBAR
========================================================= */

.jpf-navbar {
    width: 100%;
    background: #f8f7f4;
    border-bottom: 1px solid #dedbd5;
}

.jpf-nav-inner {
    height: 92px;
    display: flex;
    align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.jpf-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.jpf-logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   DESKTOP MENU
========================================================= */

.jpf-desktop-menu {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-left: auto;
}

.jpf-menu-item {
    position: relative;
}

.jpf-menu-item > a {
    height: 92px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #182333;
    font-size: 14px;
  font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.jpf-menu-item > a:hover {
    color: #1e699e;
}

.jpf-menu-item > a span {
    font-size: 14px;
    line-height: 1;
    margin-top: -10px;
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.jpf-dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: -15px;
    min-width: 210px;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.jpf-dropdown:hover .jpf-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jpf-dropdown-menu a {
    display: block;
    padding: 9px 18px;
    color: #182333;
    font-size: 13px;
    text-decoration: none;
}

.jpf-dropdown-menu a:hover {
    color: #c95221;
    background: #f7f7f5;
}


/* =========================================================
   NAV BUTTONS
========================================================= */

.jpf-nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 28px;
}

.jpf-brochure-btn,
.jpf-quote-btn {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.jpf-brochure-btn {
    color: #162333 !important;
    background: transparent;
    border: 1px solid #162333;
}

.jpf-brochure-btn:hover {
    color: #fff !important;
    background: #162333;
}

.jpf-quote-btn {
    color: #fff !important;
    background: #1e699e;
    border: 1px solid #1e699e;
}

.jpf-quote-btn:hover {
    color: #fff !important;
    background: #0d1b2a;
    border-color: #0d1b2a;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.jpf-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    margin-left: auto;
    border: 1px solid #162333;
    background: transparent;
    cursor: pointer;
}

.jpf-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #162333;
    transition: all 0.3s ease;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.jpf-mobile-menu {
    display: none;
    width: 100%;
    border-top: 1px solid #ddd;
    background: #fff;
}

.jpf-mobile-item {
    border-bottom: 1px solid #e5e5e5;
}

.jpf-mobile-item > a,
.jpf-mobile-item > button {
    width: 100%;
    min-height: 50px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #172333;
    background: transparent;
    border: 0;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}

.jpf-mobile-item > button span {
    font-size: 20px;
    font-weight: 300;
}


/* =========================================================
   MOBILE SUBMENU
========================================================= */

.jpf-mobile-submenu {
    display: none;
    padding: 5px 0 8px;
    background: #f7f6f3;
}

.jpf-mobile-submenu a {
    display: block;
    padding: 9px 15px;
    color: #394858;
    font-size: 13px;
    text-decoration: none;
}

.jpf-mobile-submenu a:hover {
    color: #c95221;
}

.jpf-mobile-dropdown.open .jpf-mobile-submenu {
    display: block;
}

.jpf-mobile-dropdown.open > button span {
    font-size: 0;
}

.jpf-mobile-dropdown.open > button span:after {
    content: "−";
    font-size: 20px;
}


/* =========================================================
   MOBILE BUTTONS
========================================================= */

.jpf-mobile-buttons {
    display: flex;
    gap: 10px;
    padding: 18px 5px 20px;
}

.jpf-mobile-buttons .jpf-brochure-btn,
.jpf-mobile-buttons .jpf-quote-btn {
    flex: 1;
    height: 44px;
    padding: 0 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .jpf-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .jpf-desktop-menu {
        gap: 18px;
    }

    .jpf-nav-buttons {
        margin-left: 18px;
    }

    .jpf-brochure-btn,
    .jpf-quote-btn {
        padding: 0 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .jpf-topbar {
        height: auto;
        min-height: 32px;
    }

    .jpf-topbar-inner {
        min-height: 32px;
    }

    .jpf-top-left {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .jpf-top-right {
        display: none;
    }

    .jpf-nav-inner {
        height: 75px;
    }

    .jpf-logo img {
        width: 140px;
    }

    .jpf-desktop-menu,
    .jpf-nav-buttons {
        display: none;
    }

    .jpf-mobile-toggle {
        display: block;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .jpf-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .jpf-top-left {
        gap: 8px;
    }

    .jpf-topbar span {
        font-size: 8px;
    }

    .jpf-top-left span:nth-child(2) {
        text-align: right;
    }

    .jpf-nav-inner {
        height: 68px;
    }

    .jpf-logo img {
        width: 125px;
    }

    .jpf-mobile-toggle {
        width: 40px;
        height: 40px;
    }

    .jpf-mobile-buttons {
        flex-direction: column;
    }

    .jpf-mobile-buttons .jpf-brochure-btn,
    .jpf-mobile-buttons .jpf-quote-btn {
        width: 100%;
    }

}






/* ==================================================
   JPF STATS + TRUSTED BY SECTION
================================================== */

.jpf-trust-section {
    background: #f5f3ee;
    padding: 0 0 55px;
    color: #071c35;
}

.jpf-trust-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}


/* ================= STATS ================= */

.jpf-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #071c35;
    border-bottom: 1px solid #071c35;
}

.jpf-stat {
    min-height: 138px;
    padding: 30px 22px 20px;
    position: relative;
}

.jpf-stat:not(:last-child) {
    border-right: 1px solid #d9d5cc;
}

.jpf-stat-number {
    display: flex;
    align-items: baseline;
    gap: 2px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.8px;
    color: #071c35;
    margin-bottom: 22px;
}

.jpf-stat-number span {
    display: inline-block;
}

.jpf-din-number {
    gap: 4px;
}

.jpf-stat p {
    margin: 0;
    color: #656564;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.7;
    font-weight: 400;
}


/* ================= TRUSTED AREA ================= */

.jpf-trusted-area {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 25px;
    padding-top: 27px;
    align-items: center;
}

.jpf-trusted-title {
    color: #656564;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
}


/* ================= CLIENT LOGOS ================= */

.jpf-logo-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    justify-items: center;
    column-gap: 20px;
    row-gap: 18px;
}

.jpf-client-logo {
    width: 100%;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.jpf-client-logo img {
    display: block;
    max-width: 105px;
    max-height: 32px;
    width: auto;
    height: auto;

    object-fit: contain;

    /* Screenshot has muted grey logos */
    /**filter: grayscale(100%);
    opacity: 0.68;

    transition:
        opacity 0.3s ease,
        filter 0.3s ease,
        transform 0.3s ease;**/
}

.jpf-client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .jpf-trust-container {
        padding: 0 25px;
    }

    .jpf-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jpf-stat:nth-child(3) {
        border-right: none;
    }

    .jpf-stat:nth-child(4),
    .jpf-stat:nth-child(5) {
        border-top: 1px solid #d9d5cc;
    }

    .jpf-stat:nth-child(4) {
        border-right: 1px solid #d9d5cc;
    }

    .jpf-trusted-area {
        grid-template-columns: 1fr;
        gap: 20px;
		float: left;
    }

    .jpf-trusted-title {
        text-align: center;
    }

    .jpf-logo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .jpf-trust-section {
        padding-bottom: 40px;
    }

    .jpf-trust-container {
        padding: 0 18px;
    }

    .jpf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jpf-stat {
        min-height: 120px;
        padding: 24px 15px 18px;
    }

    .jpf-stat-number {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .jpf-stat p {
        font-size: 14px;
        line-height: 1.6;
    }

    .jpf-stat:nth-child(2) {
        border-right: none;
    }

    .jpf-stat:nth-child(3) {
        border-top: 1px solid #d9d5cc;
        border-right: 1px solid #d9d5cc;
    }

    .jpf-stat:nth-child(4) {
        border-top: 1px solid #d9d5cc;
        border-right: none;
    }

    .jpf-stat:nth-child(5) {
        grid-column: 1 / -1;
        border-top: 1px solid #d9d5cc;
        border-right: none;
    }

    .jpf-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 10px;
        row-gap: 14px;
    }

    .jpf-client-logo {
        height: 38px;
    }

    .jpf-client-logo img {
        max-width: 80px;
        max-height: 27px;
    }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .jpf-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jpf-stat {
        min-height: 115px;
    }

    .jpf-stat-number {
        font-size: 31px;
    }

    .jpf-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jpf-client-logo img {
        max-width: 95px;
    }
}


















/* =========================================================
   JPF CAPABILITIES SECTION
========================================================= */

.jpf-capabilities-section {
    --jpf-navy: #0b1a2b;
    --jpf-orange: #1e699e;
    --jpf-text: #102033;
    --jpf-muted: #526273;
    --jpf-border: #d9d7d0;
    --jpf-bg: #f5f4ef;

    background: var(--jpf-bg);
    padding: 50px 25px 100px;
    color: var(--jpf-text);
}


/* =========================================================
   CONTAINER
========================================================= */

.jpf-cap-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.jpf-cap-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 42px;
}


/* EYEBROW */

.jpf-cap-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #1e699e;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 13px;
}

.jpf-cap-eyebrow span {
    display: block;
    width: 14px;
    height: 2px;
    background: #1e699e;
}


/* HEADING */

.jpf-cap-heading h2 {
margin: 0;
  max-width: 700px;
  color: var(--jpf-navy);
  font-size: 51px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* INTRO */

.jpf-cap-intro {
max-width: 460px;
  color: #656564;
  font-size: 16px;
    line-height: 1.65;

    padding-bottom: 3px;
}


/* =========================================================
   GRID
========================================================= */

.jpf-cap-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}


/* =========================================================
   NORMAL CARD
========================================================= */

.jpf-cap-card {
    background: #fff;

    border: 1px solid var(--jpf-border);

    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.jpf-cap-card:hover {
    transform: translateY(-5px);

    border-color: #c4c2bb;

    box-shadow: 0 14px 30px rgba(11, 26, 43, .09);
}


/* =========================================================
   IMAGE
========================================================= */

.jpf-cap-image {
    width: 100%;
    height: 180px;

    overflow: hidden;

    background: #ddd;
}


.jpf-cap-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .55s ease;
}


.jpf-cap-card:hover .jpf-cap-image img {
    /**transform: scale(1.045);**/
}


/* =========================================================
   CARD CONTENT
========================================================= */

.jpf-cap-content {
    padding: 20px 22px 24px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


.jpf-cap-content h3 {
    margin: 0 0 7px;

    color: var(--jpf-navy);

    font-size: 18px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: -.3px;
}


.jpf-cap-content p {
    margin: 0 0 13px;

    color: #536475;

    font-size: 14px;
    line-height: 1.55;

    flex: 1;
}


/* =========================================================
   EXPLORE LINK
========================================================= */

.jpf-cap-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    width: fit-content;

    color: var(--jpf-navy);

   font-size: 14px;
  line-height: 1;
  font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid var(--jpf-navy);

    padding-bottom: 3px;

    transition:
        color .2s ease,
        border-color .2s ease,
        gap .2s ease;
}


.jpf-cap-link span {
    font-size: 12px;

    transition: transform .2s ease;
}


.jpf-cap-link:hover {
    color: #1e699e;
    border-color:#1e699e;

    gap: 8px;
}


.jpf-cap-link:hover span {
    transform: translateX(2px);
}


/* =========================================================
   CERTIFICATION CARD
========================================================= */

.jpf-cap-cert-card {
    position: relative;

    min-height: 100%;

    background: var(--jpf-navy);

    color: #fff;

    padding: 17px 16px 18px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.jpf-cap-cert-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 14px 30px rgba(11, 26, 43, .18);
}


/* subtle orange line */

.jpf-cap-cert-card::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -35px;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    border: 1px solid rgba(241, 90, 36, .18);
}


/* CERT HEADER */

.jpf-cap-cert-top {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 18px;
}


.jpf-cap-cert-line {
    width: 13px;
    height: 1px;

    background: #79c7ff;
}


.jpf-cap-cert-label {
    color: #79c7ff;

    font-size:12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* CERTIFICATIONS */

.jpf-cap-cert-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 19px;

    color: #fff;

    font-size: 26px;
  line-height: 1.22;
  font-weight: 500;

    letter-spacing: -.3px;
}


.jpf-cap-cert-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    max-width: 220px;

    color: #c8d1db;

    font-size: 13px;
    line-height: 1.55;
}


/* CERT LINK */

.jpf-cap-cert-link {
    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    width: fit-content;

    margin-top: auto;
    padding-top: 25px;

    color: #fff;

    font-size: 14px;
  font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,.7);
    padding-bottom: 3px;
}


.jpf-cap-cert-link span {
    font-size: 11px;

    transition: transform .2s ease;
}


.jpf-cap-cert-link:hover {
    color: var(--jpf-orange);
    border-color: var(--jpf-orange);
}


.jpf-cap-cert-link:hover span {
    transform: translateX(3px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.jpf-cap-reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.jpf-cap-reveal.jpf-cap-visible {
    opacity: 1;

    transform: translateY(0);
}


/* Staggered animation */

.jpf-cap-grid .jpf-cap-reveal:nth-child(1) {
    transition-delay: .05s;
}

.jpf-cap-grid .jpf-cap-reveal:nth-child(2) {
    transition-delay: .12s;
}

.jpf-cap-grid .jpf-cap-reveal:nth-child(3) {
    transition-delay: .19s;
}

.jpf-cap-grid .jpf-cap-reveal:nth-child(4) {
    transition-delay: .26s;
}

.jpf-cap-grid .jpf-cap-reveal:nth-child(5) {
    transition-delay: .33s;
}

.jpf-cap-grid .jpf-cap-reveal:nth-child(6) {
    transition-delay: .40s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .jpf-capabilities-section {
        padding: 75px 22px 80px;
    }

    .jpf-cap-header {
        grid-template-columns: 1fr;
        gap: 22px;

        margin-bottom: 32px;
    }

    .jpf-cap-intro {
        max-width: 550px;
    }

    .jpf-cap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jpf-cap-image {
        height: 190px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .jpf-capabilities-section {
        padding: 60px 16px 65px;
    }

    .jpf-cap-container {
        max-width: 100%;
    }

    .jpf-cap-header {
        gap: 18px;
        margin-bottom: 28px;
    }

    .jpf-cap-heading h2 {
        font-size: 31px;
        line-height: 1.08;
        letter-spacing: -1.1px;
    }

    .jpf-cap-intro {
        font-size: 16px;
        line-height: 1.65;
    }

    .jpf-cap-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .jpf-cap-image {
        height: 210px;
    }

    .jpf-cap-content {
        padding: 17px 16px 19px;
    }

    .jpf-cap-content h3 {
        font-size: 20px;
    }

    .jpf-cap-content p {
        font-size: 10px;
        line-height: 1.6;
    }

    .jpf-cap-link {
        font-size: 14px;
    }

    .jpf-cap-cert-card {
        min-height: 260px;
        padding: 20px 17px;
    }

    .jpf-cap-cert-card h3 {
        font-size: 26px;
    }
	
	.jpf-cap-cert-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 220px;
  color: #c8d1db;
  font-size: 15px;
  line-height: 1.55;
}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .jpf-capabilities-section {
        padding-left: 13px;
        padding-right: 13px;
    }

    .jpf-cap-heading h2 {
        font-size: 31px;
    }

    .jpf-cap-image {
        height: 190px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .jpf-cap-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .jpf-cap-card,
    .jpf-cap-cert-card,
    .jpf-cap-image img,
    .jpf-cap-link,
    .jpf-cap-link span,
    .jpf-cap-cert-link span {
        transition: none;
    }

}













/* =========================================================
   JPF PRODUCT FAMILIES
========================================================= */

.jpf-products-section {
    background: #ffffff;
    padding: 95px 0 100px;
    overflow: hidden;
}

.jpf-products-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ================= HEADER ================= */

.jpf-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.jpf-products-title h2 {
margin: 0;
  max-width: 700px;
  color: #0b1a2b;
  font-size: 50px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -1.8px;
}

.jpf-matrix-link {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    color: #071d35;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.jpf-matrix-link span {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 4px;
    background: #071d35;
    transition: background .25s ease;
}

.jpf-matrix-link:hover {
    color: #1e699e;
}

.jpf-matrix-link:hover span {
    background: #d85618;
}


/* ================= GRID ================= */

.jpf-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}


/* ================= PRODUCT CARD ================= */

.jpf-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 205px;

    border: 1px solid #d8d8d8;
    background: #fff;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.jpf-product-card:hover {
    transform: translateY(-5px);
    border-color: #b9b9b9;

    box-shadow:
        0 12px 28px rgba(7, 29, 53, .10);
}


/* ================= IMAGE ================= */

.jpf-product-image {
    position: relative;

    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #fafafa;
}

.jpf-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .4s ease;
}

.jpf-product-card:hover .jpf-product-image img {
    /**transform: scale(1.07);**/
}


/* ================= CONTENT ================= */

.jpf-product-content {
    flex: 1;

    padding: 11px 11px 12px;

    display: flex;
    flex-direction: column;
}

.jpf-product-content h3 {
    margin: 0 0 6px;

    color: #0b1a2b;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;

    letter-spacing: -.15px;
}

.jpf-product-content p {
margin: 0;
  line-height: 1.4;
  color: #536475;
  font-size: 14px;
}


/* =========================================================
   CTA
========================================================= */

.jpf-product-cta {
    min-height: 205px;

    display: flex;
    align-items: center;

    background: #1e699e;

    color: #fff;

    position: relative;
    overflow: hidden;
}


/* subtle background shape */
.jpf-product-cta::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -75px;
    bottom: -75px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    pointer-events: none;
}

.jpf-cta-inner {
    position: relative;
    z-index: 2;

    padding: 22px 18px;
}

.jpf-cta-inner h3 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.jpf-cta-inner p {
    margin: 0 0 15px;

    color: rgba(255,255,255,.92);

    font-size: 15px;
    line-height: 1.45;
}

.jpf-cta-inner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,.8);

    padding-bottom: 3px;

    transition: gap .25s ease;
}

.jpf-cta-inner a span {
    font-size: 13px;
}

.jpf-cta-inner a:hover {
    gap: 13px;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.jpf-product-card,
.jpf-product-cta {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .65s ease,
        transform .65s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.jpf-product-card.jpf-visible,
.jpf-product-cta.jpf-visible {
    opacity: 1;
    transform: translateY(0);
}


/* stagger animation */

.jpf-product-card:nth-child(1) {
    transition-delay: .05s;
}

.jpf-product-card:nth-child(2) {
    transition-delay: .10s;
}

.jpf-product-card:nth-child(3) {
    transition-delay: .15s;
}

.jpf-product-card:nth-child(4) {
    transition-delay: .20s;
}

.jpf-product-card:nth-child(5) {
    transition-delay: .25s;
}

.jpf-product-card:nth-child(6) {
    transition-delay: .30s;
}

.jpf-product-card:nth-child(7) {
    transition-delay: .35s;
}

.jpf-product-card:nth-child(8) {
    transition-delay: .40s;
}

.jpf-product-card:nth-child(9) {
    transition-delay: .45s;
}

.jpf-product-cta {
    transition-delay: .50s;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .jpf-products-title h2 {
        font-size: 38px;
    }

    .jpf-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .jpf-products-section {
        padding: 75px 0 80px;
    }

    .jpf-products-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .jpf-products-title h2 {
        font-size: 35px;
    }

    .jpf-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .jpf-products-section {
        padding: 60px 0 65px;
    }

    .jpf-products-container {
        width: calc(100% - 30px);
    }

    .jpf-products-header {
        margin-bottom: 25px;
    }

    .jpf-products-title h2 {
        font-size: 31px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .jpf-matrix-link {
        font-size: 15px;
    }

    .jpf-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .jpf-product-card,
    .jpf-product-cta {
        min-height: 200px;
    }

    .jpf-product-image {
        height: 105px;
    }

    .jpf-product-content {
        padding: 10px;
    }

    .jpf-product-content h3 {
        font-size: 16px;
    }

    .jpf-product-content p {
        font-size: 13px;
    }
.jpf-product-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .4s ease;
}
    .jpf-cta-inner {
        padding: 18px 14px;
    }

    .jpf-cta-inner h3 {
        font-size: 22px;
    }

    .jpf-cta-inner p {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .jpf-products-grid {
        grid-template-columns: 1fr;
    }

    .jpf-products-title h2 {
        font-size: 31px;
    }

    .jpf-product-image {
        height: 145px;
    }

    .jpf-product-card,
    .jpf-product-cta {
        min-height: 230px;
    }

}





/* =========================================================
   JPF COMPANY TIMELINE
========================================================= */

.jpf-timeline-section {
    position: relative;
    width: 100%;
    background: #0c1b2b;
    color: #ffffff;
    overflow: hidden;
    padding: 72px 0 60px;
}

.jpf-timeline-container {
    width: min(90%, 1200px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.7fr);
    column-gap: 70px;

    align-items: start;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.jpf-timeline-intro {
    padding-top: 4px;
}

.jpf-timeline-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #1e699e;

    color: #79c7ff;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 21px;
}

.jpf-timeline-eyebrow span {
    display: block;
    width: 22px;
    height: 1px;
    background: #79c7ff;
}


.jpf-timeline-intro h2 {
    margin: 0;

    color: #ffffff;

    font-family: inherit;
    font-size: 50px;
    line-height: 1.14;

    font-weight: 500;
    letter-spacing: -1.8px;
}


/* =========================================================
   TIMELINE LINK
========================================================= */

.jpf-timeline-link {
    display: inline-block;

    margin-top: 21px;
    padding-bottom: 5px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;

    text-decoration: none;

    border-bottom: 1px solid #ffffff;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.jpf-timeline-link:hover {
  color: #1e699e;
  border-color: #1e699e;
}


/* =========================================================
   RIGHT TIMELINE
========================================================= */

.jpf-timeline-content {
    position: relative;
    min-width: 0;

    padding-top: 1px;
}


/* Horizontal line from screenshot */

.jpf-timeline-line {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background: rgba(255, 255, 255, 0.20);
}


.jpf-timeline-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 28px;

    padding-top: 40px;
}


/* =========================================================
   TIMELINE ITEMS
========================================================= */

.jpf-timeline-item {
    min-width: 0;
}

.jpf-timeline-year {
    margin-bottom: 12px;

    color: #79c7ff;

    font-size: 30px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.5px;
}


.jpf-timeline-item p {
    max-width: 165px;

    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 14px;
    line-height: 1.65;

    font-weight: 400;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .jpf-timeline-container {
        width: min(90%, 1000px);

        grid-template-columns:
            minmax(260px, 0.85fr)
            minmax(0, 1.6fr);

        column-gap: 45px;
    }

    .jpf-timeline-intro h2 {
        font-size: clamp(35px, 4.5vw, 46px);
        letter-spacing: -1.4px;
    }

    .jpf-timeline-grid {
        gap: 20px;
    }

    .jpf-timeline-year {
        font-size: 22px;
    }

    .jpf-timeline-item p {
        font-size: 10.5px;
    }
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 767px) {

    .jpf-timeline-section {
        padding: 58px 0 60px;
    }

    .jpf-timeline-container {
        width: calc(100% - 40px);

        display: block;
    }


    /* LEFT CONTENT */

    .jpf-timeline-intro {
        padding: 0;
        margin-bottom: 45px;
    }

    .jpf-timeline-intro h2 {
        font-size: clamp(35px, 9vw, 45px);
        line-height: 1.1;
        letter-spacing: -1.3px;
    }

    .jpf-desktop-break {
        display: none;
    }


    /* TIMELINE */

    .jpf-timeline-content {
        padding-left: 23px;
    }

    .jpf-timeline-line {
        top: 0;
        bottom: 0;
        left: 5px;
        right: auto;

        width: 1px;
        height: auto;

        background: rgba(255, 255, 255, 0.20);
    }

    .jpf-timeline-grid {
        display: block;

        padding-top: 0;
    }


    .jpf-timeline-item {
        position: relative;

        padding: 0 0 34px 25px;
    }

    .jpf-timeline-item:last-child {
        padding-bottom: 0;
    }


    /* Timeline dot */

    .jpf-timeline-item::before {
        content: "";

        position: absolute;

        width: 9px;
        height: 9px;

        left: -22px;
        top: 3px;

        background: #1e699e;

        border-radius: 50%;
    }


    .jpf-timeline-year {
        margin-bottom: 9px;

        font-size: 30px;
    }

    .jpf-timeline-item p {
        max-width: 350px;

        font-size: 15px;
        line-height: 1.65;
    }
}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .jpf-timeline-section {
        padding: 48px 0 52px;
    }

    .jpf-timeline-container {
        width: calc(100% - 30px);
    }

    .jpf-timeline-intro {
        margin-bottom: 38px;
    }

    .jpf-timeline-eyebrow {
        font-size: 15px;
        letter-spacing: 0.8px;
    }

    .jpf-timeline-intro h2 {
        font-size: 31px;
        line-height: 1.1;
    }

    .jpf-timeline-link {
        font-size: 15px;
    }

    .jpf-timeline-content {
        padding-left: 20px;
    }

    .jpf-timeline-item {
        padding-left: 22px;
    }

    .jpf-timeline-item::before {
        left: -19px;
    }
}





/* =========================================================
   JPF - INSIDE THE PLANTS / SHOP FLOOR VIDEO
========================================================= */

.jpf-shop-floor-section {
    width: 100%;
    background: #ffffff;
    padding: 72px 0;
}

.jpf-shop-floor-container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.jpf-shop-floor-content {
    max-width: 540px;
}

.jpf-shop-floor-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    color: #1e699e;
    font-size: 15px;
  line-height: 1;
  font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.jpf-shop-floor-eyebrow span {
    width: 22px;
    height: 2px;
    background: #1e699e;
    display: inline-block;
    flex-shrink: 0;
}


.jpf-shop-floor-content h2 {
margin: 0;
  max-width: 700px;
  color: #0b1a2b;
  font-size: 50px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -1.8px;
}


.jpf-shop-floor-description {
max-width: 530px;
  margin: 0 0 18px;
  line-height: 1.65;
  font-weight: 400;
  color: #536475;
  font-size: 14px;
}


.jpf-shop-floor-note {
    margin: 0;

    color: #536475;
  font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   VIDEO CARD
========================================================= */

.jpf-shop-floor-video {
    width: 100%;
}


.jpf-video-card {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    padding: 0;
    margin: 0;

    overflow: hidden;

    border: 0;
    border-radius: 2px;

    background: #111b25;

    cursor: pointer;
}


/* Image */

.jpf-video-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


/* Dark overlay */

.jpf-video-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.08) 55%,
            rgba(0, 0, 0, 0.25)
        );

    transition: background 0.3s ease;
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.jpf-play-button {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 62px;
    height: 62px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e75d1b;

    border-radius: 50%;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.jpf-play-icon {
    width: 0;
    height: 0;

    margin-left: 4px;

    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ffffff;
}


/* =========================================================
   VIDEO LABEL
========================================================= */

.jpf-video-label {
    position: absolute;

    left: 50%;
    bottom: 22px;

    transform: translateX(-50%);

    color: #ffffff;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;

    white-space: nowrap;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   HOVER
========================================================= */

.jpf-video-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.9);
}

.jpf-video-card:hover .jpf-video-overlay {
    background: rgba(0, 0, 0, 0.28);
}

.jpf-video-card:hover .jpf-play-button {
    transform: translate(-50%, -50%) scale(1.08);

    background: #1e699e;

    box-shadow:
        0 0 0 10px rgba(231, 93, 27, 0.15);
}


/* =========================================================
   VIDEO MODAL
========================================================= */

.jpf-video-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(2, 15, 28, 0.92);
}

.jpf-video-modal.is-active {
    display: flex;
}


.jpf-video-modal-inner {
    position: relative;

    width: min(1000px, 100%);

    aspect-ratio: 16 / 9;

    background: #000;
}


.jpf-video-modal iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


.jpf-video-close {
    position: absolute;

    top: -45px;
    right: 0;

    width: 35px;
    height: 35px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #ffffff;

    font-size: 30px;
    line-height: 30px;

    cursor: pointer;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .jpf-shop-floor-section {
        padding: 60px 0;
    }

    .jpf-shop-floor-container {
        width: min(100% - 50px, 760px);

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .jpf-shop-floor-content {
        max-width: 700px;
    }

    .jpf-shop-floor-content h2 {
        font-size: 42px;
    }

    .jpf-shop-floor-description {
        max-width: 650px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .jpf-shop-floor-section {
        padding: 50px 0;
    }

    .jpf-shop-floor-container {
        width: calc(100% - 32px);

        gap: 30px;
    }

    .jpf-shop-floor-eyebrow {
        margin-bottom: 16px;

        font-size: 15px;
        letter-spacing: 1.6px;
    }

    .jpf-shop-floor-eyebrow span {
        width: 18px;
    }

    .jpf-shop-floor-content h2 {
        font-size: 31px;
        line-height: 1.08;

        letter-spacing: -1px;
    }

    .jpf-shop-floor-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .jpf-shop-floor-note {
        font-size: 14px;
    }

    .jpf-play-button {
        width: 56px;
        height: 56px;
    }

    .jpf-video-label {
        bottom: 17px;
        font-size: 11px;
    }

    .jpf-video-modal {
        padding: 15px;
    }

    .jpf-video-close {
        top: -42px;
    }
}






/* ==================================================
   JPF FINAL CTA CARDS
================================================== */

.jpf-final-cta-section {
    background: #f5f3ef;
    padding: 70px 0 85px;
}

.jpf-final-cta-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ================= GRID ================= */

.jpf-final-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


/* ================= CARD ================= */

.jpf-final-card {
    min-height: 207px;
    padding: 25px 23px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}


/* WHITE CARDS */

.jpf-final-card-light {
    background: #ffffff;
    border: 1px solid #ddd9d1;
}


/* DARK CARD */

.jpf-final-card-dark {
    background: #0d1b2a;
    border: 1px solid #0d1b2a;
    color: #ffffff;
}


/* ================= LABEL ================= */

.jpf-final-card-label {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 11px;

    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 700;
    color: #1e699e;
}


/* orange small line */

.jpf-final-card-label span {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: #1e699e;
    flex-shrink: 0;
}


/* DARK LABEL */

.jpf-final-card-dark .jpf-final-card-label {
    color: #79c7ff;
}

.jpf-final-card-dark .jpf-final-card-label span {
    background: #79c7ff;
}


/* ================= HEADING ================= */

.jpf-final-card h3 {
    margin: 0 0 9px;

    font-family: Arial, sans-serif;
    font-size: clamp(20px,1.8vw,24px);
    line-height: 1.08;
    letter-spacing: -0.35px;
    font-weight: 700;

    color: #07182b;
}


/* DARK HEADING */

.jpf-final-card-dark h3 {
    color: #ffffff;
}


/* ================= DESCRIPTION ================= */

.jpf-final-card p {
margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #52677e;
}


/* DARK DESCRIPTION */

.jpf-final-card-dark p {
    color: #d5dce4;
}


/* ================= NORMAL LINK ================= */

.jpf-final-link {
    display: inline-block;

    margin-top: auto;
    padding-top: 13px;

    width: fit-content;

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;

    color: #07182b;
    text-decoration: none;

    border-bottom: 1px solid #07182b;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.jpf-final-link:hover {
color: #1e699e;
  border-color: #1e699e;
}


/* ================= QUOTE BUTTON ================= */

.jpf-final-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: fit-content;

    margin-top: auto;
    padding: 12px 19px;

    background: #1e699e;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    border-radius: 2px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.jpf-final-quote-btn span {
    font-size: 17px;
    line-height: 10px;
    transition: transform 0.25s ease;
}


.jpf-final-quote-btn:hover {
    color: #ffffff;
    background: #3c83b6;
    transform: translateY(-2px);
}


.jpf-final-quote-btn:hover span {
    transform: translateX(3px);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .jpf-final-cta-section {
        padding: 60px 0 70px;
    }

    .jpf-final-cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jpf-final-card-dark {
        grid-column: 1 / -1;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .jpf-final-cta-section {
        padding: 45px 0 55px;
    }

    .jpf-final-cta-container {
        padding: 0 18px;
    }

    .jpf-final-cta-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .jpf-final-card-dark {
        grid-column: auto;
    }

    .jpf-final-card {
        min-height: 205px;
        padding: 23px 21px 21px;
    }

    .jpf-final-card h3 {
        font-size: 19px;
    }

    .jpf-final-card p {
        max-width: 100%;
        font-size: 15px;
    }
	
	
	.jpf-final-quote-btn {
  margin-top: 10px;
}

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .jpf-final-card {
        min-height: 200px;
        padding: 21px 18px;
    }

    .jpf-final-card h3 {
        font-size: 20px;
    }

}









/* =========================================================
   JPF FOOTER
========================================================= */

.jpf-footer {
    width: 100%;
    background: #0d1b2a;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
}

.jpf-footer-container {
    width: min(100% - 100px, 1200px);
    margin: 0 auto;
    padding: 58px 0 20px;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.jpf-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(230px, 1.45fr)
        minmax(130px, 0.9fr)
        minmax(130px, 0.9fr)
        minmax(180px, 1.05fr)
        minmax(150px, 0.9fr);

    column-gap: 38px;
    align-items: start;
}


/* =========================================================
   COMPANY AREA
========================================================= */

.jpf-footer-company {
    min-width: 0;
}

.jpf-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    text-decoration: none;
}

.jpf-footer-logo img {
    width: 135px;
    height: auto;
    display: block;
}


/* Description */

.jpf-footer-description {
    margin: 0 0 16px;
    max-width: 245px;

    color: #d9e1e8;

    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
}


/* Address */

.jpf-footer-address {
    margin-bottom: 5px;

    color: #cbd5df;

    font-size: 14px;
    line-height: 1.75;
}

.jpf-footer-address strong {
    font-weight: 500;
}


/* CIN */

.jpf-footer-company-details {
    margin-bottom: 3px;

    color: #cbd5df;

    font-size: 14px;
    line-height: 1.7;
}


/* Contact */

.jpf-footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;

    font-size: 14px;
    line-height: 1.7;
}

.jpf-footer-contact-info a {
    color: #dce4eb;
    text-decoration: none;
    transition: color 0.25s ease;
}

.jpf-footer-contact-info a:hover {
    color: #ffffff;
}

.jpf-footer-contact-info span {
    color: #708090;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.jpf-footer-column {
    min-width: 0;
}

.jpf-footer-column h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.jpf-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.jpf-footer-column li {
    margin: 0 0 8px;
    padding: 0;
}


.jpf-footer-column li:last-child {
    margin-bottom: 0;
}


.jpf-footer-column a {
    display: inline-block;

    color: #d4dde6;

    font-size: 14px;
    line-height: 1.35;

    font-weight: 400;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.jpf-footer-column a:hover {
    color: #fff;
    transform: translateX(2px);
}


/* =========================================================
   BOTTOM AREA
========================================================= */

.jpf-footer-bottom {
    margin-top: 70px;
    padding-top: 17px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.jpf-footer-copyright {
    color: #d1dae3;

    font-size: 13px;
    line-height: 1.5;
}


.jpf-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 22px;
}


.jpf-footer-bottom-links a {
    color: #d1dae3;

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;

    transition: color 0.25s ease;
}


.jpf-footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .jpf-footer-container {
        width: min(100% - 70px, 1100px);
    }

    .jpf-footer-grid {
        grid-template-columns:
            1.5fr
            1fr
            1fr
            1.2fr;

        row-gap: 45px;
    }

    .jpf-footer-company {
        grid-column: span 4;
    }

    .jpf-footer-description {
        max-width: 360px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .jpf-footer-container {
        width: min(100% - 48px, 680px);
        padding-top: 48px;
    }


    .jpf-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 40px;
        row-gap: 40px;
    }


    .jpf-footer-company {
        grid-column: span 2;
    }


    .jpf-footer-description {
        max-width: 430px;
    }


    .jpf-footer-bottom {
        margin-top: 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
    }


    .jpf-footer-bottom-links {
        gap: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .jpf-footer-container {
        width: calc(100% - 36px);
        padding: 0px 0 22px;
    }


    .jpf-footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .jpf-footer-company {
        grid-column: auto;
    }


    .jpf-footer-logo img {
        width: 125px;
    }


    .jpf-footer-description {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.75;
    }


    .jpf-footer-address,
    .jpf-footer-company-details,
    .jpf-footer-contact-info {
        font-size: 15px;
    }


    .jpf-footer-column h3 {
        margin-bottom: 13px;
    }


    .jpf-footer-column li {
        margin-bottom: 10px;
    }


    .jpf-footer-column a {
        font-size: 15px;
    }


    .jpf-footer-bottom {
        margin-top: 42px;
        padding-top: 16px;
    }


    .jpf-footer-copyright {
        font-size: 15px;
        line-height: 1.6;
    }


    .jpf-footer-bottom-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 20px;
    }


    .jpf-footer-bottom-links a {
        font-size: 15px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .jpf-footer-container {
        width: calc(100% - 28px);
    }

    .jpf-footer-bottom-links {
        gap: 8px 15px;
    }

}











/* =========================================================
   PRODUCTS MEGA MENU
========================================================= */

.jpf-products-dropdown {
    position: relative;
}


/* Mega menu box */
.jpf-mega-menu {
    position: absolute;

    top: calc(100% + 1px);
    left: 50%;

    width: 448px;

    transform: translateX(-50%) translateY(10px);

    background: #ffffff;

    border: 1px solid #dedede;
    border-radius: 2px;

    padding: 0 9px 14px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 9999;
}


/* Show menu */
.jpf-products-dropdown:hover .jpf-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* ---------------------------------------------------------
   HEADER - ALL PRODUCTS
--------------------------------------------------------- */

.jpf-mega-title {
    display: flex !important;

    align-items: center;
    justify-content: flex-start;

    gap: 3px;

    height: 42px;

    padding: 0 8px !important;

    color: #1d2a3a !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    text-decoration: none;

    background: transparent !important;
}


/* Arrow */
.jpf-mega-title span {
    font-size: 14px;
    line-height: 1;

    transition: transform 0.2s ease;
}


/* Header hover */
.jpf-mega-title:hover {
    color: #1d2a3a !important;
}


/* ---------------------------------------------------------
   DIVIDER
--------------------------------------------------------- */

.jpf-mega-divider {
    width: 97%;
    height: 1px;

    background: #dedede;

    margin-bottom: 4px;
}


/* ---------------------------------------------------------
   TWO COLUMN GRID
--------------------------------------------------------- */

.jpf-mega-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 25px;
}


/* Each column */
.jpf-mega-column {
    display: flex;

    flex-direction: column;
}


/* Product links */
.jpf-mega-column a {
    display: flex !important;

    align-items: center;

    min-height: 36px;

    padding: 0 8px !important;

    color: #273548 !important;

    background: transparent !important;

    border-radius: 2px;

    font-size: 15px !important;

    font-weight: 400 !important;

    line-height: 1.3;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.15s ease,
        background 0.15s ease;
}


/* Hover */
.jpf-mega-column a:hover {
    color: #111d2c !important;

    background: #f5f5f3 !important;
}


/* =========================================================
   NORMAL DROPDOWNS
   Company / Capabilities / Investors
========================================================= */

.jpf-dropdown-menu {
    z-index: 9999;
}







/* =========================================================
   DESKTOP DROPDOWN — SCREENSHOT STYLE
========================================================= */

.jpf-desktop-menu .jpf-dropdown {
    position: relative;
}

/* Dropdown box */
.jpf-desktop-menu .jpf-dropdown-menu {
    position: absolute;
    top: calc(70% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);

    width: 230px;
    background: #fff;

    border: 1px solid #ddd;
    border-radius: 2px;

    padding: 14px 0 12px;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 9999;
}

/* Small gap between navbar and dropdown */
.jpf-desktop-menu .jpf-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

/* Show dropdown */
.jpf-desktop-menu .jpf-dropdown:hover .jpf-dropdown-menu,
.jpf-desktop-menu .jpf-dropdown:focus-within .jpf-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.jpf-desktop-menu .jpf-dropdown-menu a {
    /**display: block;**/

    padding: 9px 16px;

    color: #27364a;
    background: transparent;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.jpf-desktop-menu .jpf-dropdown-menu a:hover {
    background: #f6f6f6;
    color: #111;
}


/* =========================================================
   "ALL COMPANY / ALL CAPABILITIES / ALL INVESTORS"
========================================================= */

.jpf-dropdown-menu .jpf-dropdown-all {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 4px 16px 13px;

    color: #263548;

    font-size: 12px;
    font-weight: 600;

    background: #fff;

    cursor: pointer;
}

/* Divider below All */
.jpf-dropdown-menu .jpf-dropdown-divider {
    height: 1px;
    margin: 0 8px 8px;

    background: #ddd;
}


/* =========================================================
   NAV ARROW
========================================================= */

.jpf-desktop-menu .jpf-menu-item > a span {
    display: inline-block;

    font-size: 15px;

    transition: transform 0.2s ease;
}

.jpf-desktop-menu .jpf-menu-item:hover > a span {
    transform: rotate(180deg);
}


/* =========================================================
   PRODUCTS MEGA MENU
========================================================= */

.jpf-products-dropdown {
    position: relative;
}

.jpf-products-dropdown .jpf-mega-menu {
    position: absolute;

    top: calc(70% + 10px);
    left: 50%;

    transform: translateX(-50%) translateY(8px);

    width: 520px;

    padding: 14px 0 16px;

    background: #fff;

    border: 1px solid #ddd;
    border-radius: 2px;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 9999;
}

.jpf-products-dropdown:hover .jpf-mega-menu,
.jpf-products-dropdown:focus-within .jpf-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* Invisible bridge */
.jpf-products-dropdown .jpf-mega-menu::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;
    right: 0;

    height: 10px;
}


/* Mega title */
.jpf-mega-title {
    display: flex !important;

    align-items: center;
    justify-content: space-between;

    padding: 4px 16px 13px !important;

    color: #263548 !important;

    font-size: 15px !important;
    font-weight: 500 !important;

    background: #fff !important;
}


/* Divider */
.jpf-mega-divider {
    height: 1px;

    margin: 0 8px 8px;

    background: #ddd;
}


/* Two columns */
.jpf-mega-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0;
}


/* Mega column */
.jpf-mega-column {
    display: flex;
    flex-direction: column;
}


/* Mega links */
.jpf-mega-column a {
    display: block;

    padding: 9px 16px !important;

    color: #27364a;

    font-size: 13px;
    font-weight: 400;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.jpf-mega-column a:hover {
    background: #f6f6f6;
    color: #111;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .jpf-desktop-menu {
        display: none;
    }

    .jpf-nav-buttons {
        display: none;
    }

    .jpf-mobile-toggle {
        display: flex;
    }

    .jpf-dropdown-menu,
    .jpf-mega-menu {
        display: none;
    }
}




.jpf-applications-submenu {
    width: 100%;
}

.jpf-applications-heading {
    font-size: 13px;
    color: #111;
    font-weight: 500;
    padding: 12px 14px 8px;
}

.jpf-applications-submenu .jpf-mega-grid {
    padding-top: 0;
}

.jpf-applications-submenu .jpf-mega-column a {
    padding: 8px 14px;
}



/* ================= CARD HOVER EFFECT ================= */

.jpf-cap-card,
.jpf-cap-cert-card {
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


/* Card heading */
.jpf-cap-card h3,
.jpf-cap-cert-card h3 {
    transition: color 0.35s ease;
}


/* Explore / View certificates link */
.jpf-cap-link,
.jpf-cap-cert-link {
    transition:
        color 0.35s ease,
        gap 0.35s ease;
}


/* ================= HOVER ================= */

.jpf-cap-card:hover,
.jpf-cap-cert-card:hover {
    border-color: #1e699e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Heading changes color */
.jpf-cap-card:hover h3,
.jpf-cap-cert-card:hover h3 {
    color: #1e699e;
}


/* Explore link changes color */
.jpf-cap-card:hover .jpf-cap-link,
.jpf-cap-cert-card:hover .jpf-cap-cert-link {
    color: #1e699e;
}


/* Arrow moves slightly */
.jpf-cap-card:hover .jpf-cap-link span,
.jpf-cap-card:hover .jpf-cap-cert-link span {
    transform: translateX(5px);
}


/* Arrow animation */
.jpf-cap-link span,
.jpf-cap-cert-link span {
    display: inline-block;
    transition: transform 0.35s ease;
}







/* ================= HEADER ================= */

.jpf-header {
    position: relative;
    z-index: 9999;
}

/* Main navbar */
.jpf-navbar {
    background: #fff;
    width: 100%;
    transition: all 0.3s ease;
}

/* When page is scrolled */
.jpf-header.scrolled .jpf-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

/* Blue topbar */
.jpf-topbar {
    transition: all 0.3s ease;
}

/* Hide blue bar after scrolling */
.jpf-header.scrolled .jpf-topbar {
    display: none;
}











/* Product Card */
.jpf-product-card {
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Heading */
.jpf-product-card h3 {
    color: #222;
    transition: color 0.3s ease;
}

/* Hover Effect */
.jpf-product-card:hover {
    border-color: #1474ad;
    box-shadow: 0 8px 20px rgba(20, 116, 173, 0.12);
}

/* Heading changes on box hover */
.jpf-product-card:hover h3 {
    color: #1474ad;
}




.jpf-product-card {
    border: 1px solid #d9d9d9;
    transition: all 0.3s ease;
}

.jpf-product-card h3 {
    color: #333;
    transition: color 0.3s ease;
}

.jpf-product-card:hover {
    border-color: #176FA5;
}

.jpf-product-card:hover h3 {
    color: #176FA5;
}







/* =========================================================
   MOBILE HEADER
   Logo + Request Quote + Menu
========================================================= */

@media (max-width: 991px) {

    .jpf-navbar {
        height: 56px;
    }

    .jpf-navbar .jpf-container {
        height: 100%;
    }

    .jpf-nav-inner {
        height: 100%;
        display: flex;
        align-items: center;
        width: 100%;
    }

    /* LOGO */
    .jpf-logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .jpf-logo img {
        width: 135px;
        height: auto;
        display: block;
    }


    /* HIDE DESKTOP NAV */
    .jpf-desktop-menu {
        display: none !important;
    }


    /* HEADER BUTTON AREA */
    .jpf-nav-buttons {
        display: flex !important;
        align-items: center;
        margin-left: auto;
        gap: 8px;
    }


    /* BROCHURE HIDE ON MOBILE */
    .jpf-nav-buttons .jpf-brochure-btn {
        display: none !important;
    }


    /* REQUEST QUOTE */
    .jpf-nav-buttons .jpf-quote-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;

        height: 42px;
        padding: 0 14px;

        background: #1e699e;
        color: #fff;

        font-family: inherit;
        font-size: 12px;
        font-weight: 600;
        line-height: 1;

        text-decoration: none;
        white-space: nowrap;

        border-radius: 2px;
    }


    /* MOBILE MENU BUTTON */
    .jpf-mobile-toggle {
        display: flex !important;

        width: 31px;
        height: 42px;

        margin-left: 8px;
        padding: 10px;

        align-items: center;
        flex-direction: column;

        background: transparent;
        border: 1px solid #18283d;

        flex-shrink: 0;
    }


    .jpf-mobile-toggle span {
        display: block;
        width: 12px;
        height: 1px;

        margin: 2px 0;

        background: #18283d;
    }


    /* MOBILE MENU DROPDOWN */
    .jpf-mobile-menu {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .jpf-logo img {
        width: 125px;
    }

    .jpf-nav-buttons .jpf-quote-btn {
        height: 40px;
        padding: 0 11px;
        font-size: 11px;
    }

    .jpf-mobile-toggle {
        width: 30px;
        height: 40px;
        margin-left: 6px;
    }

}










/* =========================================================
   ABOUT HERO BANNER
   ========================================================= */

.jpf-about-hero {
    position: relative;
    width: 100%;
    min-height: 355px;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: #1b2936;
}


/* ================= BACKGROUND IMAGE ================= */

.jpf-about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;

    background-image: url("images/about-banner.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.01);
}


/* ================= DARK OVERLAY ================= */

.jpf-about-hero-overlay {
 position: absolute;
inset: 0;
z-index: -1;

background:
    linear-gradient(
        90deg,
        rgba(5, 20, 34, 0.68) 0%,
        rgba(5, 20, 34, 0.48) 38%,
        rgba(5, 20, 34, 0.22) 70%,
        rgba(5, 20, 34, 0.15) 100%
    ),
    url("../images/sd.jpg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
}


/* ================= CONTAINER ================= */

.jpf-about-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 52px;
}


/* ================= BREADCRUMB ================= */

.jpf-about-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 21px;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.jpf-about-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.jpf-about-hero-breadcrumb a:hover {
    color: #1e699e;
}

.jpf-about-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}


/* ================= CONTENT ================= */

.jpf-about-hero-content {
    max-width: 720px;
}


/* ================= LABEL ================= */

.jpf-about-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 17px;

    color: #1e699e;

    font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
}

.jpf-about-hero-line {
    display: block;
    width: 22px;
    height: 2px;

    background: #1e699e;
}


/* ================= HEADING ================= */

.jpf-about-hero-content h1 {
margin: 0;
  max-width: 720px;
  color: #ffffff;
  font-size: 51px;
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* ================= DESCRIPTION ================= */

.jpf-about-hero-content p {
    max-width: 570px;

    margin: 19px 0 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1440px) {

    .jpf-about-hero {
        min-height: 390px;
    }

    .jpf-about-hero-container {
        padding-left: 52px;
        padding-right: 52px;
    }

    .jpf-about-hero-content h1 {
        font-size: 56px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .jpf-about-hero {
        min-height: 390px;
    }

    .jpf-about-hero-container {
        padding: 0 35px;
    }

    .jpf-about-hero-content {
        max-width: 650px;
    }

    .jpf-about-hero-content h1 {
        font-size: clamp(36px, 5.5vw, 48px);
        letter-spacing: -1.3px;
    }

    .jpf-about-hero-content p {
        max-width: 560px;
        font-size: 13.5px;
    }

    .jpf-about-hero-bg {
        background-position: center center;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .jpf-about-hero {
        min-height: 430px;
        align-items: flex-start;
    }

    .jpf-about-hero-container {
        padding: 0 22px;
        padding-top: 38px;
        padding-bottom: 40px;
    }

    .jpf-about-hero-breadcrumb {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .jpf-about-hero-label {
        margin-bottom: 15px;

        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .jpf-about-hero-line {
        width: 20px;
    }

    .jpf-about-hero-content h1 {
        max-width: 100%;

        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .jpf-about-hero-content h1 br {
        display: none;
    }

    .jpf-about-hero-content p {
        max-width: 100%;
        margin-top: 18px;

        font-size: 13px;
        line-height: 1.65;
    }

    .jpf-about-hero-overlay {
        /**background:
            linear-gradient(
                90deg,
                rgba(5, 20, 34, 0.72) 0%,
                rgba(5, 20, 34, 0.62) 100%
            );**/
    }

    .jpf-about-hero-bg {
        background-position: 58% center;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .jpf-about-hero {
        min-height: 450px;
    }

    .jpf-about-hero-container {
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 32px;
    }

    .jpf-about-hero-content h1 {
        font-size: 31px;
        line-height: 1.08;
    }

    .jpf-about-hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}






/* ==================================================
   JPF FOUNDING STORY
   Completely isolated class names
================================================== */

.jpf-story-wrap {
    width: 100%;
    background: #f5f3ef;
    padding: 80px 5%;
    box-sizing: border-box;
}

.jpf-story-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;

    align-items: center;
}


/* =========================
   LEFT CONTENT
========================= */

.jpf-story-content {
    width: 100%;
    max-width: 600px;
}

.jpf-story-eyebrow {
letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1e699e;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.jpf-story-eyebrow span {
    display: block;
    width: 23px;
    height: 2px;
    background: #1e699e;
    flex-shrink: 0;
}

.jpf-story-content h2 {
    margin: 0 0 22px;

    color: #062340;

    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.8px;
}

.jpf-story-text {
    color: #193858;
}

.jpf-story-text p {
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
	
}

.jpf-story-text p:last-child {
    margin-bottom: 0;
}


/* =========================
   BUTTONS
========================= */

.jpf-story-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 25px;
}

.jpf-story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 20px;

    box-sizing: border-box;

    border-radius: 2px;

    font-size: 15px;
  font-weight: 500;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.jpf-story-btn:hover {
    /**transform: translateY(-2px);**/
}

.jpf-story-btn-primary {
    color: #ffffff;
    background: #071f38;
    border: 1px solid #071f38;
}

.jpf-story-btn-primary:hover {
background: #1e699e;
  border-color: #1e699e;
}

.jpf-story-btn-outline {
    color: #071f38;
    background: transparent;
    border: 1px solid #071f38;
}

.jpf-story-btn-outline:hover {
    color: #ffffff;
    background: #071f38;
}


/* =========================
   IMAGE GRID
========================= */

.jpf-story-gallery {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.jpf-story-image {
    width: 100%;
    aspect-ratio: 1.55 / 1;

    overflow: hidden;
    border-radius: 2px;

    background: #d9d9d9;
}

.jpf-story-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.jpf-story-image:hover img {
    /**transform: scale(1.04);**/
}


/* ==================================================
   LARGE TABLET
================================================== */

@media (max-width: 1100px) {

    .jpf-story-wrap {
        padding: 65px 4%;
    }

    .jpf-story-container {
        gap: 45px;
    }

    .jpf-story-content h2 {
        font-size: clamp(32px, 4vw, 44px);
    }

    .jpf-story-text p {
        font-size: 14px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 850px) {

    .jpf-story-wrap {
        padding: 60px 30px;
    }

    .jpf-story-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .jpf-story-content {
        max-width: 100%;
    }

    .jpf-story-content h2 {
        font-size: 42px;
    }

    .jpf-story-gallery {
        max-width: 800px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .jpf-story-wrap {
        padding: 50px 20px;
    }

    .jpf-story-container {
        gap: 35px;
    }

    .jpf-story-eyebrow {
        margin-bottom: 20px;

        font-size: 15px;
        letter-spacing: 1.6px;
    }

    .jpf-story-eyebrow span {
        width: 20px;
    }

    .jpf-story-content h2 {
        margin-bottom: 20px;

        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .jpf-story-desktop {
        display: none;
    }

    .jpf-story-text p {
        margin-bottom: 16px;

        font-size: 15px;
        line-height: 1.65;
    }

    .jpf-story-buttons {
        flex-direction: column;
        align-items: stretch;

        margin-top: 24px;
    }

    .jpf-story-btn {
        width: 100%;
        min-height: 44px;
    }

    .jpf-story-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .jpf-story-image {
        aspect-ratio: 1.35 / 1;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 380px) {

    .jpf-story-wrap {
        padding: 40px 16px;
    }

    .jpf-story-content h2 {
        font-size: 30px;
    }

    .jpf-story-gallery {
        gap: 7px;
    }

}










/* =========================================================
   JPF — WHAT SETS US APART
========================================================= */

.jpf-discipline-section {
    width: 100%;
    background: #ffffff;
    color: #071b35;
    padding: 74px 0 80px;
    box-sizing: border-box;
}

.jpf-discipline-container {
    width: min(100% - 100px, 1200px);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.jpf-discipline-header {
    padding: 0 0 42px;
}

.jpf-discipline-title-wrap {
    width: 100%;
}

.jpf-discipline-eyebrow {
line-height: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1e699e;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 13px;
  letter-spacing: 2px;
}

.jpf-discipline-eyebrow-line {
    display: block;
    width: 28px;
    height: 2px;
    background: #1e699e;
    flex-shrink: 0;
}

.jpf-discipline-title-wrap h2 {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* =========================================================
   METRICS GRID
========================================================= */

.jpf-discipline-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    width: 100%;

    border-top: 1px solid #142943;
    border-left: 1px solid #142943;
}


/* Individual metric */

.jpf-discipline-metric {
    position: relative;

    min-height: 138px;

    padding: 18px 18px 18px 18px;

    border-right: 1px solid #142943;
    border-bottom: 1px solid #142943;

    box-sizing: border-box;
}


/*
    Small top/right framing detail inside
    each metric — matches screenshot.
*/

.jpf-metric-inner {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 76px;

    padding: 0 18px;

    box-sizing: border-box;
}

.jpf-metric-inner::after {
    content: "";

    position: absolute;

    right: 0;
    top: 0;

    width: 1px;
    height: 76px;

    background: #142943;
}

.jpf-metric-inner::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: #142943;
}


.jpf-discipline-metric strong {
display: block;
  color: #071b35;
  font-size: clamp(25px, 2.15vw, 31px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}


.jpf-discipline-metric p {
margin: 9px 0 0;
  color: #4c6078;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}


/* =========================================================
   FEATURES
========================================================= */

.jpf-discipline-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 18px;
    row-gap: 0;

    margin-top: 40px;
}


.jpf-discipline-feature {
    min-width: 0;

    padding: 0 0 20px;

    box-sizing: border-box;
}


.jpf-feature-top-line {
    width: 100%;
    height: 2px;

    margin-bottom: 13px;

    background: #142943;
}


.jpf-discipline-feature h3 {
margin: 0 0 7px;
  color: #071b35;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}


.jpf-discipline-feature p {
max-width: 520px;
  margin: 0;
  color: #344d68;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .jpf-discipline-container {
        width: min(100% - 60px, 760px);
    }

    .jpf-discipline-title-wrap h2 {
        font-size: 44px;
    }

    .jpf-discipline-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .jpf-discipline-metric {
        min-height: 130px;
    }

    .jpf-discipline-features {
        column-gap: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .jpf-discipline-section {
        padding-bottom: 55px;
    }

    .jpf-discipline-container {
        width: calc(100% - 32px);
    }

    .jpf-discipline-header {
        padding-bottom: 30px;
    }

    .jpf-discipline-eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
        gap: 9px;
    }

    .jpf-discipline-eyebrow-line {
        width: 23px;
    }

    .jpf-discipline-title-wrap h2 {
        font-size: clamp(31px, 9vw, 40px);
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .jpf-desktop-break {
        display: none;
    }


    /* Metrics become two columns */

    .jpf-discipline-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .jpf-discipline-metric {
        min-height: 118px;
        padding: 13px 10px 13px;
    }

    .jpf-metric-inner {
        min-height: 61px;
        padding: 0 10px;
    }

    .jpf-metric-inner::after {
        height: 61px;
    }

    .jpf-discipline-metric strong {
        font-size: clamp(20px, 6vw, 26px);
    }

    .jpf-discipline-metric p {
        margin-top: 7px;
        font-size: 10px;
        line-height: 1.4;
    }


    /* Feature section */

    .jpf-discipline-features {
        grid-template-columns: 1fr;

        margin-top: 27px;
    }

    .jpf-discipline-feature {
        padding-bottom: 22px;
    }

    .jpf-feature-top-line {
        margin-bottom: 11px;
    }

    .jpf-discipline-feature h3 {
        font-size: 18px;
    }

    .jpf-discipline-feature p {
        font-size: 15px;
        line-height: 1.6;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .jpf-discipline-container {
        width: calc(100% - 24px);
    }

    .jpf-discipline-metric {
        padding-left: 7px;
        padding-right: 7px;
    }

    .jpf-metric-inner {
        padding-left: 7px;
        padding-right: 7px;
    }

    .jpf-discipline-metric strong {
        font-size: 28px;
    }

    .jpf-discipline-metric p {
        font-size: 15px;
    }

}



/* ==================================================
   VISION & MISSION SECTION
   Completely isolated styles
================================================== */

.jpfvm-section {
    width: 100%;
    background: #0d1b2b;
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

.jpfvm-section *,
.jpfvm-section *::before,
.jpfvm-section *::after {
    box-sizing: border-box;
}


/* ================= CONTAINER ================= */

.jpfvm-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    padding: 76px 0 72px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
    align-items: start;
}


/* ================= COMMON BLOCK ================= */

.jpfvm-block {
    min-width: 0;
}


/* ================= LABEL ================= */

.jpfvm-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;


    color: #79c7ff;
  font-size: 22px;
  font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.jpfvm-label-line {
    display: block;

    width: 23px;
    height: 2px;

    flex-shrink: 0;

    background: #79c7ff;
}


/* ================= VISION ================= */

.jpfvm-vision-title {
margin: 0;
  max-width: 530px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.7px;
}


/* ================= MISSION ================= */

.jpfvm-mission {
    padding-top: 0;
}

.jpfvm-mission-text {
margin: 0;
  max-width: 530px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.7px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .jpfvm-container {
        max-width: 100%;

        padding: 60px 40px;

        column-gap: 45px;
    }

    .jpfvm-vision-title {
        font-size: 23px;
    }

    .jpfvm-mission-text {
        font-size: 14px;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .jpfvm-container {
        display: block;

        padding: 50px 25px;
    }

    .jpfvm-vision {
        margin-bottom: 42px;
    }

    .jpfvm-label {
        margin-bottom: 17px;
    }

    .jpfvm-vision-title {
        max-width: 100%;

        font-size: 24px;
        line-height: 1.12;
        letter-spacing: -0.4px;
    }

    .jpfvm-mission-text {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.6;
    }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .jpfvm-container {
        padding: 42px 20px;
    }

    .jpfvm-vision-title {
        font-size: 30px;
    }

    .jpfvm-mission-text {
        font-size: 15px;
    }
}







/* ==================================================
   FIVE COMMITMENTS — 2026X
   Completely isolated class names
================================================== */

.jpf-commitments-2026x-section {
    width: 100%;
    background: #f7f6f2;
    padding: 74px 0 76px;
    box-sizing: border-box;
}

.jpf-commitments-2026x-container {
    width: min(100% - 100px, 1200px);
    margin: 0 auto;
    box-sizing: border-box;
}


/* ==================================================
   HEADER
================================================== */

.jpf-commitments-2026x-header {
    margin-bottom: 36px;
}

.jpf-commitments-2026x-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 14px;

    color: #1e699e;
  font-size: 15px;
  font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.jpf-commitments-2026x-eyebrow span {
    display: block;
    width: 22px;
    height: 2px;
    flex: 0 0 22px;
    background: #1e699e;
}

.jpf-commitments-2026x-header h2 {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* ==================================================
   COMMITMENTS GRID
================================================== */

.jpf-commitments-2026x-grid {
    display: grid;

    /*
       3 cards on first row
       2 cards on second row
    */
    grid-template-columns: repeat(3, minmax(0, 1fr));

    column-gap: 15px;
    row-gap: 17px;
}


/* ==================================================
   CARD
================================================== */

.jpf-commitments-2026x-card {
    min-width: 0;

    border-top: 1px solid #182c3e;

    padding: 12px 0 0;

    box-sizing: border-box;
}

.jpf-commitments-2026x-card h3 {
margin: 0 0 7px;
  color: #062442;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.jpf-commitments-2026x-card p {
margin: 0;
  color: #163a5c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.jpfvm-section {
  padding: 10px;
}


/* ==================================================
   SECOND ROW
================================================== */

/*
   The 4th and 5th cards naturally start on the
   second row. This keeps the same arrangement as
   the reference image.
*/

.jpf-commitments-2026x-card:nth-child(4),
.jpf-commitments-2026x-card:nth-child(5) {
    /* normal grid positioning */
}


/* ==================================================
   LARGE DESKTOP
================================================== */

@media (min-width: 1400px) {

    .jpf-commitments-2026x-container {
        width: min(100% - 100px, 1200px);
    }

    .jpf-commitments-2026x-section {
        padding-top: 76px;
        padding-bottom: 78px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .jpf-commitments-2026x-section {
        padding: 60px 0;
    }

    .jpf-commitments-2026x-container {
        width: min(100% - 64px, 760px);
    }

    .jpf-commitments-2026x-header {
        margin-bottom: 32px;
    }

    .jpf-commitments-2026x-header h2 {
        font-size: clamp(32px, 5vw, 42px);
    }

    .jpf-commitments-2026x-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 24px;
    }

    .jpf-commitments-2026x-card p {
        max-width: 100%;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .jpf-commitments-2026x-section {
        padding: 48px 0 52px;
    }

    .jpf-commitments-2026x-container {
        width: calc(100% - 40px);
    }

    .jpf-commitments-2026x-header {
        margin-bottom: 30px;
    }

    .jpf-commitments-2026x-eyebrow {
        margin-bottom: 13px;
        font-size: 15px;
        letter-spacing: 1.2px;
    }

    .jpf-commitments-2026x-eyebrow span {
        width: 20px;
        flex-basis: 20px;
    }

    .jpf-commitments-2026x-header h2 {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -1.2px;
    }

    .jpf-commitments-2026x-desktop {
        display: none;
    }

    .jpf-commitments-2026x-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .jpf-commitments-2026x-card {
        padding: 13px 0 22px;
        margin-bottom: 0;
    }

    .jpf-commitments-2026x-card h3 {
        font-size: 18px;
        margin-bottom: 7px;
    }

    .jpf-commitments-2026x-card p {
        font-size: 12px;
        line-height: 1.6;
        max-width: 100%;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 380px) {

    .jpf-commitments-2026x-container {
        width: calc(100% - 32px);
    }

    .jpf-commitments-2026x-header h2 {
        font-size: 30px;
    }

    .jpf-commitments-2026x-card p {
        font-size: 15px;
    }

}







/* ==================================================
   JPF CORPORATE MILESTONES
   Completely isolated styles
================================================== */

.jpf-milestone-section {
    width: 100%;
    background: #ffffff;
    color: #071d35;
    padding: 74px 0 70px;
    overflow: hidden;
    box-sizing: border-box;
}

.jpf-milestone-section *,
.jpf-milestone-section *::before,
.jpf-milestone-section *::after {
    box-sizing: border-box;
}


/* MAIN CONTAINER */

.jpf-milestone-container {
    width: min(100% - 102px, 1200px);
    margin: 0 auto;
}


/* ==================================================
   HEADER
================================================== */

.jpf-milestone-header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
    column-gap: 80px;
    align-items: start;
    margin-bottom: 38px;
}


/* EYEBROW */

.jpf-milestone-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #1e699e;
  font-size: 15px;
  font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.2;

    margin-bottom: 16px;
}

.jpf-milestone-eyebrow-line {
    width: 23px;
    height: 2px;
    flex: 0 0 23px;
    background: #1e699e;
}


/* TITLE */

.jpf-milestone-title {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* INTRO */

.jpf-milestone-intro {
max-width: 380px;
  padding-top: 9px;
  color: #24476b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}


/* ==================================================
   TIMELINE
================================================== */

.jpf-milestone-timeline {
    width: 100%;
}


/* INDIVIDUAL ROW */

.jpf-milestone-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 0;

    width: 100%;
    min-height: 68px;

    border-bottom: 1px solid #dedbd5;
}


/* YEAR */

.jpf-milestone-year {
padding-top: 25px;
  color: #1e699e;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}


/* CONTENT */

.jpf-milestone-details {
    padding: 18px 0 18px;;
}

.jpf-milestone-details h3 {
margin: 0 0 4px;
  color: #071d35;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.jpf-milestone-details p {
margin: 0;
  color: #24476b;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .jpf-milestone-container {
        width: min(100% - 60px, 760px);
    }

    .jpf-milestone-header {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 32px;
    }

    .jpf-milestone-intro {
        max-width: 600px;
        padding-top: 0;
    }

    .jpf-milestone-title {
        font-size: clamp(34px, 6vw, 44px);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .jpf-milestone-section {
        padding: 30px 0 50px;
    }

    .jpf-milestone-container {
        width: calc(100% - 36px);
        max-width: none;
    }

    .jpf-milestone-header {
        margin-bottom: 28px;
        gap: 18px;
    }

    .jpf-milestone-eyebrow {
        margin-bottom: 13px;
        font-size: 15px;
        letter-spacing: 1.4px;
    }

    .jpf-milestone-eyebrow-line {
        width: 20px;
        flex-basis: 20px;
    }

    .jpf-milestone-title {
        font-size: clamp(31px, 9vw, 38px);
        line-height: 1;
        letter-spacing: -1.2px;
    }

    .jpf-milestone-intro {
        font-size: 15px;
        line-height: 1.55;
    }

    .jpf-milestone-item {
        grid-template-columns: 67px minmax(0, 1fr);
        min-height: 70px;
    }

    .jpf-milestone-year {
        padding-top: 14px;
        font-size: 15px;
    }

    .jpf-milestone-details {
        padding: 12px 0;
    }

    .jpf-milestone-details h3 {
        font-size: 12px;
        line-height: 1.35;
        margin-bottom: 4px;
    }

    .jpf-milestone-details p {
        font-size: 10.5px;
        line-height: 1.5;
    }

}


/* ==================================================
   VERY SMALL DEVICES
================================================== */

@media (max-width: 380px) {

    .jpf-milestone-container {
        width: calc(100% - 28px);
    }

    .jpf-milestone-item {
        grid-template-columns: 61px minmax(0, 1fr);
    }

    .jpf-milestone-year {
        font-size: 22px;
    }

    .jpf-milestone-details h3 {
        font-size: 18px;
    }

    .jpf-milestone-details p {
        font-size: 15px;
    }

}



.jpf-final-cta-section.jfuft {
  background: #f5f3ef;
  padding: 30px 0 70px;
}



.jpf-about-hero {
  padding: 70px 0px;
}



/* =========================================================
   JPF BOARD HERO
   Completely isolated class names
   ========================================================= */

.jpfl-board-hero {
    width: 100%;
    background: #f7f6f2;
    color: #071c32;
    box-sizing: border-box;
    overflow: hidden;
	
}

.jpfl-board-hero *,
.jpfl-board-hero *::before,
.jpfl-board-hero *::after {
    box-sizing: border-box;
}

.jpfl-board-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 68px 52px 40px;
}

/* ================= BREADCRUMB ================= */

.jpfl-board-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.5;
    color: #69717a;
}

.jpfl-board-breadcrumb a {
    color: rgba(104, 104, 104, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.jpfl-board-breadcrumb a:hover {
    color: #1e699e;
}

.jpfl-board-breadcrumb span {
    color: #9a9da0;
}

.jpfl-board-breadcrumb span:last-child {
    color: rgba(104, 104, 104, 0.7);
}


/* ================= CONTENT ================= */

.jpfl-board-content {
    max-width: 900px;
}

/* ================= LABEL ================= */

.jpfl-board-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.jpfl-board-label-line {
    display: block;
    width: 23px;
    height: 2px;
    flex: 0 0 23px;
    background: #1e699e;
}

.jpfl-board-label-text {
display: flex;
  align-items: center;
  gap: 12px;
  color: #1e699e;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ================= HEADING ================= */

.jpfl-board-title {
margin: 0;
  padding: 0;
  max-width: 850px;
  font-size: 51px;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -1.8px;
  color: #101e2d;
}


/* ================= DESCRIPTION ================= */

.jpfl-board-description {
padding: 0;
  max-width: 570px;
  margin: 19px 0 0;
  color: #656564;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 991px) {

    .jpfl-board-wrap {
        padding: 55px 40px 65px;
    }

    .jpfl-board-content {
        max-width: 800px;
    }

    .jpfl-board-title {
        font-size: clamp(44px, 6.5vw, 62px);
        letter-spacing: -2.5px;
    }

    .jpfl-board-description {
        max-width: 620px;
        font-size: 15px;
    }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .jpfl-board-wrap {
        padding: 42px 25px 52px;
    }

    .jpfl-board-breadcrumb {
        font-size: 11px;
        gap: 6px;
        margin-bottom: 27px;
    }

    .jpfl-board-label {
        margin-bottom: 15px;
    }

    .jpfl-board-label-text {
        font-size: 15px;
        letter-spacing: 1.7px;
    }

    .jpfl-board-label-line {
        width: 20px;
        flex-basis: 20px;
    }

    .jpfl-board-title {
        font-size: clamp(39px, 9vw, 52px);
        line-height: 1.06;
        letter-spacing: -2px;
    }

    .jpfl-board-desktop-break {
        display: none;
    }

    .jpfl-board-description {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .jpfl-board-wrap {
        padding: 32px 20px 43px;
    }

    .jpfl-board-breadcrumb {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .jpfl-board-title {
        font-size: 39px;
        letter-spacing: -1.7px;
        line-height: 1.06;
    }

    .jpfl-board-description {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.6;
    }
}



.jpfl-board-hero {
  padding: 20px 0px;
}










/* ==================================================
   JPF BOARD SECTION
================================================== */

.jpf-board-section {
width: 100%;
  padding: 70px 0;
  background: #f7f7f5;
  border-top: 1px solid #e6e6e6;
}

.jpf-board-container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


/* CARD */

.jpf-board-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd;
    overflow: hidden;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}


/* IMAGE */

.jpf-board-image {
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.jpf-board-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}


/* IMAGE HOVER */

.jpf-board-card:hover .jpf-board-image img {
    /**transform: scale(1.04);**/
}


/* CARD CONTENT */

.jpf-board-info {
    padding: 14px 15px 16px;
    background: #ffffff;
}

.jpf-board-info h3 {
margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  color: #001f3f;
}

.jpf-board-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #55708d;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .jpf-board-section {
        padding: 55px 0;
    }

    .jpf-board-container {
        width: 92%;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .jpf-board-image {
        height: 300px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575px) {

    .jpf-board-section {
        padding: 40px 0;
    }

    .jpf-board-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jpf-board-image {
        height: auto;
        aspect-ratio: 1 / 0.88;
    }

    .jpf-board-info {
        padding: 14px;
    }

    .jpf-board-info h3 {
        font-size: 19px;
    }

    .jpf-board-info p {
        font-size: 15px;
    }

}






/* =========================================================
   JPF — BOARD COMMITTEES
   Completely isolated class names
========================================================= */

.jpf-board-committee-section {
    width: 100%;
    padding: 58px 0 62px;
    background: #ffffff;
}

.jpf-board-committee-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
}


/* ================= HEADER ================= */

.jpf-board-committee-header {
    margin-bottom: 38px;
}

.jpf-board-committee-eyebrow {
display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #1e699e;
  text-transform: 
}

.jpf-board-committee-line {
    width: 22px;
    height: 2px;
    display: inline-block;
    background: #1e699e;
}

.jpf-board-committee-header h2 {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* ================= TABLE WRAPPER ================= */

.jpf-board-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* ================= TABLE ================= */

.jpf-board-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd8d1;

    table-layout: fixed;
    background: #ffffff;
}

.jpf-board-table th {
height: 35px;
  padding: 8px 12px;
  background: #ffffff;
  border-bottom: 1px solid #071e35;
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: #6e6e6e;
  text-transform: uppercase;
}

.jpf-board-table th:nth-child(1) {
    width: 30%;
}

.jpf-board-table th:nth-child(2) {
    width: 23%;
}

.jpf-board-table th:nth-child(3) {
    width: 47%;
}


.jpf-board-table td {
    padding: 12px 12px;

    border-bottom: 1px solid #ddd8d1;

    vertical-align: middle;

    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;

    color: #092747;
}

.jpf-board-table tbody tr:last-child td {
    border-bottom: none;
}


/* ================= CONFIRMATION LABEL ================= */

.jpf-board-confirmed {
    display: inline-block;

    padding: 5px 9px;

    background: #1e699e;
  color: #fff;

    border-radius: 2px;

    font-size: 8px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.5px;

    white-space: nowrap;
	display: none;
}


/* ================= NOTE ================= */

.jpf-board-note {
    margin-top: 13px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;

    color: #5d7084;
}

.jpf-board-note a {
    color: #3c5066;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .jpf-board-committee-section {
        padding: 50px 0 55px;
    }

    .jpf-board-committee-container {
        max-width: 100%;
        padding: 0 22px;
    }

    .jpf-board-committee-header {
        margin-bottom: 30px;
    }

    .jpf-board-committee-header h2 {
        font-size: 32px;
    }

    .jpf-board-table {
        min-width: 700px;
    }

    .jpf-board-table td {
        font-size: 11px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .jpf-board-committee-section {
        padding: 42px 0 48px;
    }

    .jpf-board-committee-container {
        padding: 0 16px;
    }

    .jpf-board-committee-header {
        margin-bottom: 26px;
    }

    .jpf-board-committee-eyebrow {
        margin-bottom: 14px;

        font-size: 9px;
        letter-spacing: 1.7px;
    }

    .jpf-board-committee-line {
        width: 18px;
    }

    .jpf-board-committee-header h2 {
        font-size: 29px;
        line-height: 1.12;
        letter-spacing: -0.7px;
    }

    .jpf-board-desktop-break {
        display: none;
    }


    /* Mobile table becomes cards */

    .jpf-board-table-wrapper {
        overflow: visible;
    }

    .jpf-board-table {
        min-width: 0;
        width: 100%;
        border: none;
        display: block;
    }

    .jpf-board-table thead {
        display: none;
    }

    .jpf-board-table tbody {
        display: block;
        width: 100%;
    }

    .jpf-board-table tr {
        display: block;
        width: 100%;

        margin-bottom: 14px;

        border: 1px solid #ddd8d1;
        background: #ffffff;
    }

    .jpf-board-table tr:last-child {
        margin-bottom: 0;
    }

    .jpf-board-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;

        padding: 10px 13px;

        border-bottom: 1px solid #e4dfd9;

        font-size: 11px;
        line-height: 1.5;
    }

    .jpf-board-table td:last-child {
        border-bottom: none;
    }

    .jpf-board-table td::before {
        content: attr(data-label);

        display: block;
        margin-bottom: 4px;

        font-size: 7px;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: 1px;

        color: #64778a;
        text-transform: uppercase;
    }

    .jpf-board-confirmed {
        margin-top: 1px;
    }

    .jpf-board-note {
        margin-top: 13px;

        font-size: 15px;
        line-height: 1.55;
    }
	
	
	.jpf-board-table th {
  font-size: 15px;
}
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .jpf-board-committee-section {
        padding: 35px 0 42px;
    }

    .jpf-board-committee-container {
        padding: 0 14px;
    }

    .jpf-board-committee-header h2 {
        font-size: 26px;
    }

    .jpf-board-committee-eyebrow {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .jpf-board-table td {
        padding: 10px 11px;
        font-size: 15px;
    }

    .jpf-board-confirmed {
        font-size: 15px;
        padding: 5px 8px;
    }
}









/* ==================================================
   JPF PROMISE SECTION
   Fully isolated CSS
================================================== */

.jpf-promise-section {
    width: 100%;
    box-sizing: border-box;
    background: #f8f7f3;
    padding: 74px 5.1% 42px;
    border-top: 1px solid rgb(230, 230, 230);
}

.jpf-promise-section *,
.jpf-promise-section *::before,
.jpf-promise-section *::after {
    box-sizing: border-box;
}

.jpf-promise-wrapper {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 272px;
    gap: 72px;
    align-items: start;
}


/* =========================
   LEFT CONTENT
========================= */

.jpf-promise-content {
    width: 100%;
    max-width: 650px;
}

.jpf-promise-intro {
margin: 0 0 27px;
  color: #42545e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.jpf-promise-block {
    margin: 0 0 25px;
}

.jpf-promise-block:last-child {
    margin-bottom: 0;
}

.jpf-promise-block h2 {
    margin: 0 0 12px;

    color: rgb(0, 31, 63);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
}

.jpf-promise-block p {
margin: 0 0 27px;
  color: #42545e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}


/* =========================
   RIGHT SIDEBAR
========================= */

.jpf-promise-sidebar {
    width: 100%;
}

.jpf-promise-profile {
    width: 100%;
    height: 177px;
    overflow: hidden;
    margin-bottom: 14px;
}

.jpf-promise-profile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================
   NAVIGATION BOX
========================= */

.jpf-promise-navigation {
    width: 100%;
    border: 1px solid #d8d4cc;
    background: #fff;
    padding: 18px 19px 19px;
}

.jpf-promise-label {
    display: block;
    margin-bottom: 14px;

    color: #17416f;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 1.1px;
    font-weight: 400;
}

.jpf-promise-link {
    display: block;
    width: fit-content;

    margin: 0 0 14px;
    padding-bottom: 5px;

    color: #071d39;
    text-decoration: none;

    font-size: 15px;
  line-height: 1.2;
  font-weight: 500;

    border-bottom: 1px solid #071d39;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.jpf-promise-link:last-child {
    margin-bottom: 0;
}

.jpf-promise-link:hover {
    color: #174d82;
    border-color: #174d82;
}


/* ==================================================
   LARGE TABLET
================================================== */

@media (max-width: 900px) {

    .jpf-promise-section {
        padding: 35px 5%;
    }

    .jpf-promise-wrapper {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 45px;
    }

    .jpf-promise-profile {
        height: 160px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 700px) {

    .jpf-promise-section {
        padding: 32px 24px;
    }

    .jpf-promise-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .jpf-promise-content {
        max-width: none;
    }

    .jpf-promise-sidebar {
        max-width: 360px;
        width: 100%;
    }

    .jpf-promise-profile {
        height: 220px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 480px) {

    .jpf-promise-section {
        padding: 28px 18px 35px;
    }

    .jpf-promise-intro {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .jpf-promise-block {
        margin-bottom: 24px;
    }

    .jpf-promise-block h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .jpf-promise-block p {
        font-size: 13px;
        line-height: 1.65;
    }

    .jpf-promise-sidebar {
        max-width: 100%;
    }

    .jpf-promise-profile {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .jpf-promise-navigation {
        padding: 17px;
    }

}


/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 360px) {

    .jpf-promise-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .jpf-promise-intro {
        font-size: 15px;
    }

    .jpf-promise-block p {
        font-size: 15px;
    }

}













 /* =========================================
   CERTIFICATE SECTION
   Completely isolated with certx- prefix
   ========================================= */

.certx-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #ffffff;
    box-sizing: border-box;
}

.certx-section *,
.certx-section *::before,
.certx-section *::after {
    box-sizing: border-box;
}

.certx-container {
width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 74px 52px;
  background: #f7f6f2;
  border-top: 1px solid rgb(230, 230, 230);
}


/* =========================================
   TABLE WRAPPER
   ========================================= */

.certx-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dedbd5;
    background: #ffffff;
}


/* =========================================
   TABLE
   ========================================= */

.certx-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
}


/* =========================================
   TABLE HEADER
   ========================================= */

.certx-table thead {
    background: #ffffff;
}

.certx-table thead tr {
    border-bottom: 1px solid #1d3045;
}

.certx-table th {
vertical-align: middle;
  height: 35px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #071e35;
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: #6e6e6e;
  text-transform: uppercase;
}


/* Column widths */

.certx-table th:nth-child(1),
.certx-table td:nth-child(1) {
    width: 14%;
}

.certx-table th:nth-child(2),
.certx-table td:nth-child(2) {
    width: 42%;
}

.certx-table th:nth-child(3),
.certx-table td:nth-child(3) {
    width: 22%;
}

.certx-table th:nth-child(4),
.certx-table td:nth-child(4) {
    width: 11%;
}

.certx-table th:nth-child(5),
.certx-table td:nth-child(5) {
    width: 11%;
}


/* =========================================
   TABLE BODY
   ========================================= */

.certx-table tbody tr {
    border-bottom: 1px solid #dedbd5;
}

.certx-table tbody tr:last-child {
    border-bottom: none;
}

.certx-table td {
background: #ffffff;
  padding: 12px 12px;
  border-bottom: 1px solid #ddd8d1;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #092747;
}

.certx-table td:nth-child(4),
.certx-table td:nth-child(5) {
    white-space: nowrap;
}


/* =========================================
   PDF LINK
   ========================================= */

.certx-pdf-link {
    display: inline-block;

    color: #0b1e33;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;

    padding-bottom: 2px;
    border-bottom: 1px solid #15283d;

    transition: color 0.2s ease,
                border-color 0.2s ease;
}

.certx-pdf-link:hover {
    color: #e35d32;
    border-color: #e35d32;
}


/* =========================================
   UPLOAD BUTTON
   ========================================= */

.certx-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 20px;
    padding: 5px 8px;

    background: #1e699e;
    color: #fff;

    font-size: 8px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.7px;

    text-decoration: none;
    border-radius: 1px;

    transition: background 0.2s ease,
                color 0.2s ease;
}

.certx-upload-btn:hover {
    background: #1e699e;
    color: #ffffff;
}


/* =========================================
   CONFIRM BUTTON
   ========================================= */

.certx-confirm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 20px;
    padding: 5px 8px;

    background: #1e699e;
    color: #fff;

    font-size: 8px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.7px;

    text-decoration: none;
    border-radius: 1px;

    transition: background 0.2s ease,
                color 0.2s ease;
}

.certx-confirm-btn:hover {
    background: #1e699e;
    color: #ffffff;
}


/* =========================================
   DASH
   ========================================= */

.certx-dash {
    color: #777777;
}


/* =========================================
   WARNING BOX
   ========================================= */

.certx-warning {
    width: 100%;
    margin-top: 11px;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 12px 15px;

    border: 1px solid #f2b995;
    background: #fff6ef;

    color: #b94c27;
}


/* Warning icon */

.certx-warning-icon {
    flex: 0 0 auto;

    width: 14px;
    height: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    color: #b94c27;
    font-size: 13px;
    line-height: 1;
}


/* Warning text */

.certx-warning-text {
    max-width: 100%;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;
    line-height: 1.6;
    font-weight: 400;

    color: #b94c27;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .certx-container {
        padding: 0 25px;
    }

    .certx-table {
        min-width: 720px;
    }

    .certx-table th {
        font-size: 8px;
        padding: 10px 9px;
    }

    .certx-table td {
        font-size: 10px;
        padding: 9px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .certx-container {
        padding: 0 15px;
    }

    /*
       Turn the table into responsive cards.
       This avoids horizontal scrolling on phones.
    */

    .certx-table-wrap {
        overflow: visible;
        border: none;
    }

    .certx-table {
        width: 100%;
        min-width: 0;
        display: block;
    }

    .certx-table thead {
        display: none;
    }

    .certx-table tbody {
        display: block;
        width: 100%;
    }

    .certx-table tbody tr {
        display: block;
        width: 100%;

        margin-bottom: 12px;

        border: 1px solid #dedbd5;
        background: #ffffff;
    }

    .certx-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .certx-table td {
        width: 100% !important;
        min-height: 40px;

        display: flex;
        align-items: center;

        padding: 9px 12px;

        border-bottom: 1px solid #ebe8e3;

        font-size: 15px;
        line-height: 1.45;
    }

    .certx-table td:last-child {
        border-bottom: none;
    }

    /*
       Labels displayed on the left
    */

    .certx-table td::before {
        content: attr(data-label);

        flex: 0 0 42%;

        margin-right: 10px;

        color: #203a58;

        font-size: 15px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: 0.55px;
    }

    .certx-table td:nth-child(4),
    .certx-table td:nth-child(5) {
        white-space: normal;
    }

    .certx-warning {
        margin-top: 12px;
        padding: 11px 12px;
        gap: 8px;
    }

    .certx-warning-text {
        font-size: 9px;
        line-height: 1.55;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {

    .certx-container {
        padding: 0 10px;
    }

    .certx-table td {
        display: block;
        padding: 9px 10px;
    }

    .certx-table td::before {
        display: block;
        margin: 0 0 4px 0;
    }

    .certx-warning {
        align-items: flex-start;
    }

}

	
	





/* =========================================================
   CERTIFICATE GALLERY
   Completely isolated styles
   Prefix: certgallery-
   ========================================================= */

.certgallery-section {
    width: 100%;
    margin: 0;
    padding: 0 0 60px;
    background: #ffffff;
    box-sizing: border-box;
}

.certgallery-section *,
.certgallery-section *::before,
.certgallery-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.certgallery-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 74px 52px;
}


/* =========================================================
   HEADING
   ========================================================= */

.certgallery-heading {
    width: 100%;
    margin-bottom: 38px;
}


/* Small orange label */

.certgallery-eyebrow {
line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #1e699e;
}


/* Orange line */

.certgallery-eyebrow-line {
    display: inline-block;

    width: 22px;
    height: 2px;

    flex: 0 0 22px;

    background: #1e699e;
}


/* Main heading */

.certgallery-title {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* =========================================================
   CERTIFICATE GRID
   ========================================================= */

.certgallery-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 15px;
    row-gap: 15px;
}


/* =========================================================
   CARD
   ========================================================= */

.certgallery-card {
    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border: 1px solid #ddd9d2;

    overflow: hidden;
}


/* =========================================================
   IMAGE AREA
   ========================================================= */

.certgallery-image-box {
    width: 100%;

    aspect-ratio: 1.48 / 1;

    background: #f7f7f7;
}


/* Certificate image */

.certgallery-image {
    display: block;

    width: 100%;

    object-fit: cover;
    object-position: center;

    margin: 0;
    padding: 0;

    transition: transform 0.35s ease;
}


/* Subtle hover */

.certgallery-card:hover .certgallery-image {
    /**transform: scale(1.015);**/
}


/* =========================================================
   CAPTION
   ========================================================= */

.certgallery-caption {
    width: 100%;

    min-height: 36px;

    display: flex;
    align-items: center;

    padding: 7px 11px;

    color: #071d34;

    background: #ffffff;

 font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .certgallery-container {
        padding: 0 35px;
    }

    .certgallery-title {
        font-size: 30px;
    }

    .certgallery-grid {
        column-gap: 12px;
        row-gap: 12px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 760px) {

    .certgallery-container {
        padding: 0 25px;
    }

    .certgallery-heading {
        margin-bottom: 28px;
    }

    .certgallery-title {
        font-size: 28px;
        letter-spacing: -0.7px;
    }

    .certgallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 14px;
        row-gap: 14px;
    }

    .certgallery-image-box {
        aspect-ratio: 1.45 / 1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .certgallery-section {
        padding-bottom: 40px;
    }

    .certgallery-container {
        padding: 0 16px;
    }

    .certgallery-heading {
        margin-bottom: 24px;
		margin-top: 50px;
    }

    .certgallery-eyebrow {
        margin-bottom: 10px;

        font-size: 8px;
        letter-spacing: 1.1px;
    }

    .certgallery-eyebrow-line {
        width: 20px;
        flex-basis: 20px;
    }

    .certgallery-title {
        font-size: 25px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .certgallery-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .certgallery-image-box {
        aspect-ratio: 1.5 / 1;
    }

    .certgallery-caption {
        min-height: 38px;
        padding: 8px 11px;

        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .certgallery-container {
        padding: 0 12px;
    }

    .certgallery-title {
        font-size: 23px;
    }

    .certgallery-grid {
        gap: 11px;
    }

}
	
	
	
	
	
	

/* =========================================================
   JPF AWARDS GALLERY
   All classes are uniquely prefixed
========================================================= */

.jpf-awards-section {
width: 100%;
  padding: 75px 0 30px;
  background: #f7f6f3;
  box-sizing: border-box;
  border-top: 1px solid rgb(230, 230, 230);
}

.jpf-awards-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   GRID
--------------------------------------------------------- */

.jpf-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}


/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */

.jpf-awards-card {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    overflow: hidden;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.jpf-awards-card:hover {
    transform: translateY(-3px);
    border-color: #c8c8c8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* ---------------------------------------------------------
   IMAGE AREA
--------------------------------------------------------- */

.jpf-awards-image-box {
    width: 100%;
    height: 225px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-sizing: border-box;
}

.jpf-awards-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


/* ---------------------------------------------------------
   TITLE
--------------------------------------------------------- */

.jpf-awards-title {
    min-height: 38px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    box-sizing: border-box;

    color: #111111;
    background: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 992px) {

    .jpf-awards-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .jpf-awards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .jpf-awards-image-box {
        height: 220px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .jpf-awards-section {
        padding-top: 12px;
        padding-bottom: 25px;
    }

    .jpf-awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .jpf-awards-image-box {
        height: 240px;
        padding: 9px;
    }

    .jpf-awards-title {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .jpf-awards-container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .jpf-awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .jpf-awards-image-box {
        height: 180px;
        padding: 7px;
    }

    .jpf-awards-title {
        min-height: 34px;
        padding: 7px 8px;
        font-size: 11px;
    }

    .jpf-awards-card:hover {
        transform: none;
        box-shadow: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 340px) {

    .jpf-awards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .jpf-awards-image-box {
        height: 250px;
    }

}	






/* ==================================================
   JPF — FOUR PLANTS ONE TEAM
   Completely isolated styles
================================================== */

.jpf-team-section {
    width: 100%;
    background: #f5f3ef;
    padding: 72px 5.1% 58px;
    box-sizing: border-box;
}

.jpf-team-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    align-items: center;
    gap: 8.5%;
}


/* --------------------------------------------------
   LEFT CONTENT
-------------------------------------------------- */

.jpf-team-content {
    width: 100%;
    max-width: 610px;
}

.jpf-team-eyebrow {
margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e699e;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.jpf-team-eyebrow-line {
width: 22px;
  height: 2px;
  flex: 0 0 22px;
  background: #1e699e;
}


.jpf-team-title {
margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


.jpf-team-description {
max-width: 590px;
  margin: 0 0 23px;
  color: #656564;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}


/* --------------------------------------------------
   BULLET LIST
-------------------------------------------------- */

.jpf-team-list {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.jpf-team-list li {
display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #656564;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.jpf-team-bullet {
    display: inline-block;
    flex: 0 0 auto;

    color: #193c5d;
    font-size: 16px;
    line-height: 1.25;
}


/* --------------------------------------------------
   RIGHT IMAGE
-------------------------------------------------- */

.jpf-team-image-wrap {
    width: 100%;
    overflow: hidden;
}

.jpf-team-image {
    display: block;

    width: 100%;
    height: auto;
    aspect-ratio: 1.58 / 1;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}


/* --------------------------------------------------
   TABLET
-------------------------------------------------- */

@media (max-width: 900px) {

    .jpf-team-section {
        padding: 60px 6%;
    }

    .jpf-team-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .jpf-team-content {
        max-width: 760px;
    }

    .jpf-team-image-wrap {
        max-width: 760px;
    }

    .jpf-team-image {
        aspect-ratio: 1.65 / 1;
    }

}


/* --------------------------------------------------
   MOBILE
-------------------------------------------------- */

@media (max-width: 600px) {

    .jpf-team-section {
        padding: 48px 20px;
    }

    .jpf-team-inner {
        gap: 32px;
    }

    .jpf-team-eyebrow {
        margin-bottom: 20px;

        font-size: 8px;
        letter-spacing: 1.4px;
    }

    .jpf-team-eyebrow-line {
        width: 19px;
        flex-basis: 19px;
    }

    .jpf-team-title {
        margin-bottom: 15px;

        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -1.7px;
        line-height: 1.08;
    }

    .jpf-team-description {
        margin-bottom: 20px;

        font-size: 13px;
        line-height: 1.7;
    }

    .jpf-team-list {
        gap: 8px;
    }

    .jpf-team-list li {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .jpf-team-image {
        aspect-ratio: 1.35 / 1;
    }

}


/* --------------------------------------------------
   SMALL MOBILE
-------------------------------------------------- */

@media (max-width: 380px) {

    .jpf-team-section {
        padding: 40px 16px;
    }

    .jpf-team-title {
        font-size: 32px;
    }

    .jpf-team-description,
    .jpf-team-list li {
        font-size: 15px;
    }

}







/* =========================================================
   JPF — CURRENT REQUIREMENTS / OPEN POSITIONS
   Completely isolated class namespace
========================================================= */

.jpf-careers-section {
    width: 100%;
    padding: 72px 0 76px;
    background: #ffffff;
    box-sizing: border-box;
}

.jpf-careers-section *,
.jpf-careers-section *::before,
.jpf-careers-section *::after {
    box-sizing: border-box;
}

.jpf-careers-container {
    width: min(100% - 40px, 1100px);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.jpf-careers-header {
    margin-bottom: 38px;
}

.jpf-careers-eyebrow {
margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e699e;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.jpf-careers-eyebrow-line {
display: block;
  width: 23px;
  height: 2px;
  flex: 0 0 23px;
  background: #1e699e;
}

.jpf-careers-title {
margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* =========================================================
   TABLE WRAPPER
========================================================= */

.jpf-careers-table-wrap {
    width: 100%;
    overflow-x: auto;

    border: 1px solid #ddd9d2;
    background: #ffffff;

    -webkit-overflow-scrolling: touch;
}


/* =========================================================
   TABLE
========================================================= */

.jpf-careers-table {
    width: 100%;
    min-width: 680px;

    border-collapse: collapse;
    border-spacing: 0;

    font-family: Arial, Helvetica, sans-serif;
    color: #06284a;
}


/* TABLE HEADER */

.jpf-careers-table thead {
    background: #ffffff;
}

.jpf-careers-table th {
white-space: nowrap;
  vertical-align: middle;
  height: 35px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #071e35;
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: #6e6e6e;
  text-transform: uppercase;
}


/* COLUMN WIDTHS */

.jpf-careers-table th:nth-child(1),
.jpf-careers-table td:nth-child(1) {
    width: 45%;
}

.jpf-careers-table th:nth-child(2),
.jpf-careers-table td:nth-child(2) {
    width: 23%;
}

.jpf-careers-table th:nth-child(3),
.jpf-careers-table td:nth-child(3) {
    width: 17%;
}

.jpf-careers-table th:nth-child(4),
.jpf-careers-table td:nth-child(4) {
    width: 15%;
}


/* TABLE BODY */

.jpf-careers-table td {
background: #fff;
  padding: 12px 12px;
  border-bottom: 1px solid #ddd8d1;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #092747;
}

.jpf-careers-table tbody tr:last-child td {
    border-bottom: 0;
}


/* APPLY LINK */

.jpf-careers-apply {
    display: inline-block;

    color: #06284a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.jpf-careers-apply:hover {
    color: #f15a24;
    opacity: 0.9;
}


/* =========================================================
   INFORMATION NOTICE
========================================================= */

.jpf-careers-notice {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    margin-top: 13px;
    padding: 12px 15px;

    border: 1px solid #f4b890;
    background: #fff7f0;
}

.jpf-careers-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 13px;
    height: 13px;
    flex: 0 0 13px;

    color: #b85a28;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1;
}

.jpf-careers-notice p {
    margin: 0;

    color: #8a4c2b;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.45;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .jpf-careers-section {
        padding: 55px 0 60px;
    }

    .jpf-careers-container {
        width: min(100% - 30px, 680px);
    }

    .jpf-careers-header {
        margin-bottom: 28px;
    }

    .jpf-careers-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .jpf-careers-table-wrap {
        overflow-x: auto;
    }

    .jpf-careers-table {
        min-width: 620px;
    }

    .jpf-careers-notice {
        align-items: flex-start;
        padding: 11px 12px;
    }

}


/* =========================================================
   MOBILE
   Converts table rows into cards
========================================================= */

@media (max-width: 600px) {

    .jpf-careers-section {
        padding: 45px 0 50px;
    }

    .jpf-careers-container {
        width: calc(100% - 28px);
    }

    .jpf-careers-eyebrow {
        margin-bottom: 12px;

        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .jpf-careers-eyebrow-line {
        width: 20px;
        flex-basis: 20px;
    }

    .jpf-careers-title {
        font-size: 29px;
        line-height: 1.1;
    }


    /* Remove desktop table styling */

    .jpf-careers-table-wrap {
        overflow: visible;
        border: 0;
    }

    .jpf-careers-table {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .jpf-careers-table thead {
        display: none;
    }

    .jpf-careers-table tbody {
        display: block;
        width: 100%;
    }

    .jpf-careers-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 20px;

        width: 100%;
        padding: 18px 16px;

        border: 1px solid #ddd9d2;
        border-bottom: 0;
    }

    .jpf-careers-table tr:last-child {
        border-bottom: 1px solid #ddd9d2;
    }

    .jpf-careers-table td {
        display: block;

        width: auto !important;
        height: auto;

        padding: 0;

        border: 0;

        font-size: 15px;
        line-height: 1.4;
    }

    .jpf-careers-table td::before {
        display: block;

        margin-bottom: 5px;

        color: #777d84;

        font-size: 15px;
        font-weight: 500;
        letter-spacing: 1px;
        line-height: 1;
        text-transform: uppercase;
    }

    .jpf-careers-table td:nth-child(1)::before {
        content: "Role";
    }

    .jpf-careers-table td:nth-child(2)::before {
        content: "Function";
    }

    .jpf-careers-table td:nth-child(3)::before {
        content: "Location";
    }

    .jpf-careers-table td:nth-child(4)::before {
        content: "Apply";
    }


    /* Make role span the full card width */

    .jpf-careers-table td:nth-child(1) {
        grid-column: 1 / -1;
    }


    /* Notice */

    .jpf-careers-notice {
        gap: 8px;
        margin-top: 12px;
        padding: 11px 12px;
    }

    .jpf-careers-notice p {
        font-size: 8px;
        line-height: 1.5;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .jpf-careers-container {
        width: calc(100% - 22px);
    }

    .jpf-careers-title {
        font-size: 26px;
    }

    .jpf-careers-table tr {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 16px 14px;
    }

    .jpf-careers-table td:nth-child(1) {
        grid-column: auto;
    }

}




/* ==================================================
   APPLY / SEND YOUR CV
   Completely isolated class names
================================================== */

.cvapply-section {
    width: 100%;
    background: #f7f5f1;
    padding: 70px 0 145px;
    box-sizing: border-box;
}

.cvapply-container {
    width: min(100% - 104px, 1200px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 272px;
    column-gap: 70px;
    align-items: start;
}


/* =========================
   LEFT CONTENT
========================= */

.cvapply-content {
    min-width: 0;
}

.cvapply-label {
margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e699e;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cvapply-label-line {
    width: 23px;
    height: 2px;
    flex: 0 0 23px;
    background: #1e699e;
}


.cvapply-title {
margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


.cvapply-description {
max-width: 590px;
  margin: 0 0 23px;
  color: #656564;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.cvapply-description a {
    color: #092947;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;

    transition: color 0.2s ease;
}

.cvapply-description a:hover {
    color: #d14d1d;
}


/* =========================
   WALK-IN CARD
========================= */

.cvapply-walkin {
    width: 100%;
    min-height: 126px;

    padding: 20px 19px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #d9d5ce;
}


.cvapply-walkin-label {
margin-bottom: 14px;
  color: #092947;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}


.cvapply-walkin-text {
margin: 0;
  color: #092947;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}


/* ==================================================
   LARGE DESKTOP
================================================== */

@media (min-width: 1400px) {

    .cvapply-section {
        padding-top: 70px;
        padding-bottom: 150px;
    }

    .cvapply-container {
        width: min(100% - 104px, 1200px);
        grid-template-columns: minmax(0, 1fr) 272px;
        column-gap: 70px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .cvapply-section {
        padding: 60px 0 100px;
    }

    .cvapply-container {
        width: min(100% - 60px, 760px);

        grid-template-columns: minmax(0, 1fr) 240px;
        column-gap: 40px;
    }

    .cvapply-title {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .cvapply-description {
        font-size: 13px;
    }

    .cvapply-walkin {
        padding: 18px 17px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .cvapply-section {
        padding: 50px 0 75px;
    }

    .cvapply-container {
        width: calc(100% - 40px);
        max-width: none;

        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .cvapply-label {
        margin-bottom: 17px;
    }

    .cvapply-title {
        margin-bottom: 14px;

        font-size: 36px;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .cvapply-description {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.7;
    }

    .cvapply-walkin {
        width: 100%;
        min-height: auto;
        padding: 20px;
    }
	
	.mfg-page-container {
  width: calc(100% - 22px) !important;
  margin: 0 auto;
}

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cvapply-section {
        padding: 40px 0 60px;
    }

    .cvapply-container {
        width: calc(100% - 32px);
        gap: 30px;
    }

    .cvapply-label {
        font-size: 15px;
        letter-spacing: 1.8px;
    }

    .cvapply-label-line {
        width: 21px;
        flex-basis: 21px;
    }

    .cvapply-title {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .cvapply-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .cvapply-walkin {
        padding: 18px;
    }

    .cvapply-walkin-text {
        font-size: 12.5px;
        line-height: 1.65;
    }

}









/* =========================================================
   JPF CAPABILITY SECTION
   Everything is scoped to .jpf-capability-section
========================================================= */

.jpf-capability-section {
    width: 100%;
    padding: 75px 0 80px;
    background: #f5f3ef;
    box-sizing: border-box;
	border-top: 1px solid rgb(230, 230, 230);
}

.jpf-capability-section *,
.jpf-capability-section *::before,
.jpf-capability-section *::after {
    box-sizing: border-box;
}

.jpf-capability-inner {
    width: min(100% - 40px, 1150px);
    margin: 0 auto;
}


/* =========================================================
   TABS
========================================================= */

.jpf-capability-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 29px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 3px;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.jpf-capability-tabs::-webkit-scrollbar {
    display: none;
}

.jpf-capability-tab {
flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 14px 18px;
  border: 1px solid #d6d0c7;
  border-radius: 30px;
  background: #fff;
  color: #081b2e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.jpf-capability-tab:hover {
    color: #ffffff;
    background: #081b2e;
    border-color: #081b2e;
    transform: translateY(-1px);
}

.jpf-capability-tab-active {
    color: #ffffff;
    background: #081b2e;
    border-color: #081b2e;
}


/* =========================================================
   CARD GRID
========================================================= */

.jpf-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}


/* =========================================================
   CARD
========================================================= */

.jpf-capability-card {
    min-width: 0;
    background: #ffffff;

    border: 1px solid #ddd8d0;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.jpf-capability-card:hover {
    /**transform: translateY(-4px);**/

    border-color: #c9c2b8;

    box-shadow:
        0 12px 30px rgba(8, 27, 46, 0.10);
}


/* =========================================================
   IMAGE
========================================================= */

.jpf-capability-image-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 1.72 / 1;

    overflow: hidden;

    background: #e9e7e3;
}

.jpf-capability-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s cubic-bezier(.2,.65,.25,1),
        filter 0.3s ease;
}

.jpf-capability-card:hover .jpf-capability-image {
    /**transform: scale(1.045);**/
}


/* =========================================================
   CARD CONTENT
========================================================= */

.jpf-capability-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 15px 17px 16px;
}

.jpf-capability-card-content h3 {
color: #071b2d;
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.3px;
}

.jpf-capability-card-content p {
font-weight: 400;
  margin: 0 0 13px;
  color: #536475;
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}


/* =========================================================
   EXPLORE LINK
========================================================= */

.jpf-capability-explore {
position: relative;
  align-self: flex-start;
  margin-top: 9px;
  transition: color 0.25s ease, gap 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  color: var(--jpf-navy);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--jpf-navy);
  padding-bottom: 3px;
}

.jpf-capability-explore::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: #071b2d;

    transform: scaleX(1);
    transform-origin: left;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.jpf-capability-explore span {
    display: inline-block;

    font-size: 15px;
    line-height: 10px;

    transition: transform 0.3s ease;
}

.jpf-capability-explore:hover {
    color: #1267a5;
    gap: 8px;
}

.jpf-capability-explore:hover::after {
    background: #1267a5;
}

.jpf-capability-explore:hover span {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .jpf-capability-inner {
        width: min(100% - 32px, 760px);
    }

    .jpf-capability-tabs {
        margin-bottom: 24px;
    }

    .jpf-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .jpf-capability-section {
        padding: 20px 0 55px;
    }

    .jpf-capability-inner {
        width: calc(100% - 28px);
    }

    .jpf-capability-tabs {
        gap: 6px;
        margin-bottom: 20px;

        /*
         * Horizontal scrolling on mobile instead of
         * squeezing all tabs.
         */
        overflow-x: auto;

        padding-left: 1px;
        padding-right: 1px;
    }

    .jpf-capability-tab {
        min-height: 31px;
        padding: 7px 12px;

        font-size: 14px;
    }

    .jpf-capability-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jpf-capability-image-wrap {
        aspect-ratio: 1.75 / 1;
    }

    .jpf-capability-card-content {
        padding: 15px 16px 17px;
    }

    .jpf-capability-card-content h3 {
        font-size: 17px;
    }

    .jpf-capability-card-content p {
        font-size: 12px;
        line-height: 1.65;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .jpf-capability-inner {
        width: calc(100% - 22px);
    }

    .jpf-capability-card-content h3 {
        font-size: 20px;
    }

    .jpf-capability-card-content p {
        font-size: 15px;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .jpf-capability-tab,
    .jpf-capability-card,
    .jpf-capability-image,
    .jpf-capability-explore,
    .jpf-capability-explore span,
    .jpf-capability-explore::after {
        transition: none !important;
    }

}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.jpf-capability-tab:focus-visible,
.jpf-capability-explore:focus-visible {
    outline: 2px solid #1267a5;
    outline-offset: 3px;
}










/* =========================================================
   JPF PROCESS FLOW
   Completely isolated CSS
========================================================= */

.jpfx-process-section {
    width: 100%;
    padding: 55px 0 60px;
    background: #ffffff;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.jpfx-process-section *,
.jpfx-process-section *::before,
.jpfx-process-section *::after {
    box-sizing: border-box;
}


/* ================= CONTAINER ================= */

.jpfx-process-container {
    width: min(100% - 40px, 1150px);
    margin: 0 auto;
}


/* ================= HEADER ================= */

.jpfx-process-header {
    margin-bottom: 42px;
}

.jpfx-process-label {
margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e699e;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.jpfx-process-label-line {
    display: block;
    width: 28px;
    height: 2px;
    flex: 0 0 28px;
    background: #1e699e;
}

.jpfx-process-title {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* ================= PROCESS TRACK ================= */

.jpfx-process-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    width: 100%;
    min-height: 240px;

    border: 1px solid #14243a;
    background: #ffffff;
}


/* ================= EACH ITEM ================= */

.jpfx-process-item {
    position: relative;

    min-width: 0;
    padding: 18px 18px 20px;

    border-right: 1px solid #14243a;
}

.jpfx-process-item:last-child {
    border-right: 0;
}


/* ================= NUMBER AREA ================= */

/*
   This creates the L-shaped line visible around
   each number in your reference image.
*/

.jpfx-process-number-box {
    position: relative;

    height: 77px;
    margin-bottom: 7px;

    border-bottom: 1px solid #14243a;
}

/* Vertical line on right of number area */
.jpfx-process-number-box::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;

    width: 1px;
    height: 76px;

    background: #14243a;
}

/* Number */
.jpfx-process-number-box span {
    position: absolute;
    left: 18px;
    top: 24px;

    color: #071d3b;

    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}


/* ================= CONTENT ================= */

.jpfx-process-content {
    padding-top: 0;
}

.jpfx-process-content h3 {
    margin: 0 0 6px;

    color: #656564;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.jpfx-process-content p {
    margin: 0;

    color: #656564;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .jpfx-process-section {
        padding: 45px 0 50px;
    }

    .jpfx-process-container {
        width: min(100% - 32px, 760px);
    }

    .jpfx-process-header {
        margin-bottom: 32px;
    }

    .jpfx-process-title {
        font-size: 32px;
    }

    .jpfx-process-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .jpfx-process-item {
        min-height: 235px;
    }

    /* Remove right border from every 3rd item */
    .jpfx-process-item:nth-child(3n) {
        border-right: 0;
    }

    /* Horizontal separation between rows */
    .jpfx-process-item:nth-child(n + 4) {
        border-top: 1px solid #14243a;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .jpfx-process-section {
        padding: 38px 0 45px;
    }

    .jpfx-process-container {
        width: calc(100% - 28px);
    }

    .jpfx-process-header {
        margin-bottom: 28px;
    }

    .jpfx-process-label {
        gap: 9px;
        margin-bottom: 14px;

        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .jpfx-process-label-line {
        width: 24px;
        flex-basis: 24px;
    }

    .jpfx-process-title {
        font-size: 29px;
        line-height: 1.1;
        letter-spacing: -0.8px;
    }


    /* Stack process items vertically */
    .jpfx-process-track {
        display: block;
        min-height: 0;
    }

    .jpfx-process-item {
        min-height: 0;
        padding: 16px 18px 20px;

        border-right: 0 !important;
        border-bottom: 1px solid #14243a;
    }

    .jpfx-process-item:last-child {
        border-bottom: 0;
    }


    /* Number area becomes smaller */
    .jpfx-process-number-box {
        height: 58px;
        margin-bottom: 9px;
    }

    .jpfx-process-number-box::after {
        height: 57px;
    }

    .jpfx-process-number-box span {
        left: 16px;
        top: 17px;
        font-size: 26px;
    }


    .jpfx-process-content h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .jpfx-process-content p {
        max-width: 430px;
        font-size: 15px;
        line-height: 1.6;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .jpfx-process-container {
        width: calc(100% - 22px);
    }

    .jpfx-process-title {
        font-size: 26px;
    }

    .jpfx-process-item {
        padding-left: 14px;
        padding-right: 14px;
    }

}









.jpf-capability-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.jpf-capability-card {
    border: 1px solid #d8d8d8;
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.jpf-capability-card h3 {
    transition: color 0.3s ease;
}

.jpf-capability-explore {
    color: #111;
    transition: color 0.3s ease;
}

.jpf-capability-card-link:hover .jpf-capability-card {
    border-color: #1e699e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}

.jpf-capability-card-link:hover h3 {
    color: #1e699e;
}

.jpf-capability-card-link:hover .jpf-capability-explore {
    color: #1e699e;
}

.jpf-capability-explore span {
    display: inline-block;

}

.jpf-capability-card-link:hover .jpf-capability-explore span {

}




/* Responsive tabs - all tabs visible */
.jpf-capability-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.jpf-capability-tabs::-webkit-scrollbar {
    display: none;
}

.jpf-capability-tab {
    flex: 0 0 auto;
}


.jpf-capability-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.jpf-capability-tab {
    flex: 0 0 auto;
}




/* =========================================================
   MAIN SECTION
========================================================= */

.mfg-page-section {
    width: 100%;
    background: #f7f5f0;
    padding: 75px 30px 35px;
  border-top: 1px solid rgb(230, 230, 230);
}

.mfg-page-container {
    width: min(100% - 40px, 1150px);
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   TOP TABS
========================================================= */

.mfg-page-tabs {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 8px;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;

    padding: 0 0 20px;

    scrollbar-width: none;
    -ms-overflow-style: none;

    -webkit-overflow-scrolling: touch;
}

.mfg-page-tabs::-webkit-scrollbar {
    display: none;
}


.mfg-page-tab {
transition: all .2s ease;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 14px 18px;
  border: 1px solid #d6d0c7;
  border-radius: 30px;
  background: #fff;
  color: #081b2e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}


/* Hover */
.mfg-page-tab:hover {
    background: #071b2c;
    border-color: #071b2c;
    color: #ffffff;
}


/* Automatically added active class */
.mfg-page-tab.mfg-page-active {
    background: #071b2c;
    border-color: #071b2c;
    color: #ffffff;
}


/* =========================================================
   DIE SHOP CARDS
========================================================= */

.mfg-dieshop-gallery {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 15px;

    margin-top: 30px;
    margin-bottom: 29px;
}


.mfg-dieshop-card {
    width: 100%;
    min-width: 0;

    background: #ffffff;

    border: 1px solid #d9d6d0;

    overflow: hidden;
}


.mfg-dieshop-card-image {
    width: 100%;

    aspect-ratio: 1.55 / 1;

    overflow: hidden;

    background: #e5e3de;
}


.mfg-dieshop-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.mfg-dieshop-card-title {
min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  color: #071b2d;
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.3px;
}


/* =========================================================
   INFORMATION
========================================================= */

.mfg-dieshop-details {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 15px;
}


.mfg-dieshop-detail {
    min-width: 0;

    border-top: 1px solid #172b3c;

    padding: 10px 0 14px;
}


.mfg-dieshop-detail h3 {
  display: flex;
  align-items: center;
  color: #071b2d;
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.3px;
  padding: 10px 0px;
}


.mfg-dieshop-detail p {
font-weight: 400;
  margin: 0 0 13px;
  color: #536475;
  font-size: 15px;
  line-height: 1.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .mfg-page-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .mfg-dieshop-gallery {
        gap: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .mfg-page-section {
        padding: 14px 15px 30px;
    }


    /* Tabs stay in one row */
    .mfg-page-tabs {
        gap: 7px;

        padding-bottom: 16px;

        margin-right: -15px;
        padding-right: 15px;
    }


    .mfg-page-tab {
        padding: 8px 12px;

        min-height: 33px;

        font-size: 10px;
    }


    /* Cards become single column */
    .mfg-dieshop-gallery {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-bottom: 24px;
    }


    .mfg-dieshop-card-image {
        aspect-ratio: 1.65 / 1;
    }


    .mfg-dieshop-card-title {
        min-height: 35px;

        font-size: 15px;
    }


    /* Information becomes single column */
    .mfg-dieshop-details {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .mfg-dieshop-detail {
        padding: 11px 0 14px;
    }


    .mfg-dieshop-detail h3 {
        font-size: 15px;
    }


    .mfg-dieshop-detail p {
        font-size: 15px;
        line-height: 1.55;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .mfg-page-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mfg-page-tabs {
        margin-right: -12px;
        padding-right: 12px;
    }

    .mfg-page-tab {
        padding: 8px 10px;
        font-size: 14px;
    min-height: 36px;
    }

}







/* =========================================
   INSTALLED FORGING LINES
   Unique class prefix: forging-capacity-
   ========================================= */

.forging-capacity-section {
  width: 100%;
  background: #ffffff;
  padding: 55px 20px 45px;
  box-sizing: border-box;
}

.forging-capacity-wrapper {
  width: min(100% - 40px, 1150px);
  margin: 0 auto;
  box-sizing: border-box;
}

/* Small orange heading */

.forging-capacity-label {
margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e699e;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.forging-capacity-label-line {
  display: block;
  width: 23px;
  height: 2PX;
  flex: 0 0 23px;
  background: #1e699e;
}

/* Main heading */

.forging-capacity-title {
margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}

/* Table wrapper */

.forging-capacity-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #ddd9d0;
  box-sizing: border-box;
}

/* Table */

.forging-capacity-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border-spacing: 0;

  color: #071a35;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

/* Table header */

.forging-capacity-table thead th {
  height: 34px;
  padding: 0 12px;

  background: #ffffff;
  border-bottom: 1px solid #071a35;

  color: #31537c;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
}

/* Column widths */

.forging-capacity-table thead th:nth-child(1) {
  width: 52%;
}

.forging-capacity-table thead th:nth-child(2) {
  width: 9%;
}

.forging-capacity-table thead th:nth-child(3) {
  width: 18%;
}

.forging-capacity-table thead th:nth-child(4) {
  width: 21%;
}

/* Table cells */

.forging-capacity-table tbody td {
background: #fff;
  padding: 12px 12px;
  border-bottom: 1px solid #ddd8d1;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #092747;
}

.forging-capacity-table tbody tr:last-child td {
  border-bottom: none;
}

/* Number / capacity columns */

.forging-capacity-table tbody td:nth-child(2),
.forging-capacity-table tbody td:nth-child(3),
.forging-capacity-table tbody td:nth-child(4) {
  white-space: nowrap;
}

/* Total row */

.forging-capacity-table .forging-capacity-total td {
  background: #e9e5dc;
  border-bottom: none;

  font-weight: 700;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 768px) {

  .forging-capacity-section {
    padding: 45px 18px 40px;
  }

  .forging-capacity-title {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .forging-capacity-table {
    min-width: 680px;
  }

  .forging-capacity-table tbody td {
    padding: 10px;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 575px) {

  .forging-capacity-section {
    padding: 35px 14px 35px;
  }

  .forging-capacity-label {
    font-size: 15px;
    letter-spacing: 1.2px;
    gap: 8px;
  }

  .forging-capacity-label-line {
    width: 18px;
    flex-basis: 18px;
  }

  .forging-capacity-title {
    margin-bottom: 25px;
    font-size: 25px;
    letter-spacing: -0.5px;
  }

  .forging-capacity-table-wrap {
    overflow-x: auto;
  }

  .forging-capacity-table {
    min-width: 650px;
    font-size: 10px;
  }

  .forging-capacity-table thead th {
    height: 32px;
    padding: 0 9px;
    font-size: 15px;
  }

  .forging-capacity-table tbody td {
    padding: 10px 9px;
    font-size: 15px;
  }
}












/* ==========================================
   RESPONSIVE CAPABILITY TABS
   ========================================== */

.mfg-page-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.mfg-page-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 0 0 auto;
    box-sizing: border-box;
}


/* Mobile */
@media (max-width: 767px) {

    .mfg-page-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        width: 100%;
        overflow: visible;
    }

    .mfg-page-tab {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
        white-space: nowrap;
    }
}










/* =========================================================
   TECHNICAL SPECIFICATION GRID
   Completely isolated classes
   ========================================================= */

.xspec-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #f7f6f2;
    box-sizing: border-box;
}

.xspec-section *,
.xspec-section *::before,
.xspec-section *::after {
    box-sizing: border-box;
}

.xspec-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 45px;
}

.xspec-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #162638;
    border-left: 1px solid #162638;
}

.xspec-card {
    min-width: 0;
    min-height: 110px;
    border-right: 1px solid #162638;
    border-bottom: 1px solid #162638;
    background: #f7f6f2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 14px 10px;
}

.xspec-value {
width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #071b2d;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  border-right: 1px solid #162638;
  border-bottom: 1px solid #162638;
}

.xspec-description {
    padding-top: 7px;

    color: #656564;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .xspec-container {
        padding: 0 25px;
    }

    .xspec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xspec-card {
        min-height: 115px;
    }

    .xspec-value {
        font-size: 20px;
    }

    .xspec-description {
        font-size: 10px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .xspec-container {
        padding: 0 15px;
    }

    .xspec-grid {
        grid-template-columns: 1fr;
    }

    .xspec-card {
        min-height: 105px;
        padding: 12px 12px 9px;
    }

    .xspec-value {
        min-height: 58px;
        padding: 0 12px;
        font-size: 19px;
    }

    .xspec-description {
        padding-top: 7px;
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .xspec-container {
        padding: 0 10px;
    }

    .xspec-card {
        min-height: 100px;
        padding: 10px 10px 8px;
    }

    .xspec-value {
        min-height: 54px;
        padding: 0 10px;
        font-size: 17px;
    }

    .xspec-description {
        font-size: 15px;
    }
}








/* =========================================================
   ZETA EQUIPMENT SECTION
   Completely isolated class names
   ========================================================= */

.zeta-equipment-section {
    width: 100%;
    margin: 0;
    padding: 75px 0 70px;
    background: #ffffff;
    box-sizing: border-box;
}

.zeta-equipment-section *,
.zeta-equipment-section *::before,
.zeta-equipment-section *::after {
    box-sizing: border-box;
}

.zeta-equipment-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
}


/* =========================================================
   LABEL
   ========================================================= */

.zeta-equipment-label {
margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e699e;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.zeta-equipment-label-line {
    display: block;

    width: 22px;
    height: 2px;

    background: #1e699e;
}


/* =========================================================
   TITLE
   ========================================================= */

.zeta-equipment-title {
padding: 0;
  margin: 0;
  font-size: 51px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
  color: #071e35;
}


/* =========================================================
   GRID
   ========================================================= */

.zeta-equipment-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 16px;
	margin-top: 40px;
}


/* =========================================================
   CARD
   ========================================================= */

.zeta-equipment-card {
    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border: 1px solid #ddd8d0;

    overflow: hidden;
}


/* =========================================================
   IMAGE
   ========================================================= */

.zeta-equipment-image {
    width: 100%;
    height: 193px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #e8e8e8;
}

.zeta-equipment-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    margin: 0;
    padding: 0;
}


/* =========================================================
   CONTENT
   ========================================================= */

.zeta-equipment-content {
    padding: 14px 17px 18px;
}

.zeta-equipment-content h3 {
color: #071b2d;
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.3px;
}

.zeta-equipment-content p {
font-weight: 400;
  margin: 0 0 13px;
  color: #536475;
  font-size: 14px;
  line-height: 1.55;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .zeta-equipment-section {
        padding-bottom: 55px;
    }

    .zeta-equipment-wrapper {
        padding: 0 22px;
    }

    .zeta-equipment-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .zeta-equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .zeta-equipment-image {
        height: 200px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .zeta-equipment-section {
        padding-bottom: 45px;
    }

    .zeta-equipment-wrapper {
        padding: 0 15px;
    }

    .zeta-equipment-title {
        font-size: 27px;
        line-height: 1.12;
        letter-spacing: -0.7px;
        margin-bottom: 26px;
    }

    .zeta-equipment-desktop-break {
        display: none;
    }

    .zeta-equipment-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .zeta-equipment-image {
        height: 220px;
    }

    .zeta-equipment-content {
        padding: 15px 16px 19px;
    }

    .zeta-equipment-content h3 {
        font-size: 16px;
    }

    .zeta-equipment-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .zeta-equipment-wrapper {
        padding: 0 12px;
    }

    .zeta-equipment-title {
        font-size: 24px;
    }

    .zeta-equipment-grid {
        gap: 15px;
    }

    .zeta-equipment-image {
        height: 190px;
    }

    .zeta-equipment-content {
        padding: 13px 14px 17px;
    }

}









/* =========================================
   MANUFACTURING PROCESS SECTION
   All classes are uniquely prefixed with mfg-
   ========================================= */

.mfg-process-section {
    width: 100%;
    box-sizing: border-box;
    background: #f7f6f2;
    padding: 18px 0 35px;
}

.mfg-process-section *,
.mfg-process-section *::before,
.mfg-process-section *::after {
    box-sizing: border-box;
}

.mfg-process-inner {
    width: min(100% - 104px, 1150px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    column-gap: 55px;
    align-items: start;
}

/* -----------------------------------------
   LEFT TEXT
   ----------------------------------------- */

.mfg-process-content {
    max-width: 630px;
    padding-top: 0;
}

.mfg-process-content p {
letter-spacing: 0.01px;
  margin: 0 0 27px;
  color: #42545e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.mfg-process-content p:last-child {
    margin-bottom: 0;
}


/* -----------------------------------------
   EQUIPMENT CARD
   ----------------------------------------- */

.mfg-equipment-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd9d1;
    padding: 19px 20px 20px;
}

.mfg-equipment-title {
margin-bottom: 17px;
  color: #42545e;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.2;
}

.mfg-equipment-list {
    width: 100%;
}

.mfg-equipment-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 71px;
    column-gap: 12px;

    width: 100%;
    margin-bottom: 11px;
}

.mfg-equipment-row:last-child {
    margin-bottom: 0;
}

.mfg-equipment-name,
.mfg-equipment-value {
    font-size: 14px;
    line-height: 1.45;
}

.mfg-equipment-name {
    color: #42545e;
    font-weight: 400;
}

.mfg-equipment-value {
    color: #173f69;
    font-weight: 400;
    text-align: left;
}


/* =========================================
   LARGE TABLETS
   ========================================= */

@media (max-width: 900px) {

    .mfg-process-inner {
        width: min(100% - 60px, 760px);
        grid-template-columns: minmax(0, 1fr) 250px;
        column-gap: 35px;
    }

    .mfg-process-content p {
        font-size: 12.5px;
    }

}


/* =========================================
   TABLETS
   ========================================= */

@media (max-width: 720px) {

    .mfg-process-section {
        padding: 35px 0;
    }

    .mfg-process-inner {
        width: min(100% - 40px, 600px);
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .mfg-process-content {
        max-width: none;
    }

    .mfg-equipment-card {
        max-width: 420px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 480px) {

    .mfg-process-section {
        padding: 28px 0;
    }

    .mfg-process-inner {
        width: calc(100% - 30px);
        row-gap: 26px;
    }

    .mfg-process-content p {
        font-size: 12px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .mfg-equipment-card {
        padding: 18px 16px;
    }

    .mfg-equipment-row {
        grid-template-columns: minmax(0, 1fr) 75px;
        column-gap: 10px;
        margin-bottom: 12px;
    }

    .mfg-equipment-name,
    .mfg-equipment-value {
        font-size: 10.5px;
    }

    .mfg-equipment-title {
        font-size: 8.5px;
        margin-bottom: 16px;
    }

}


/* =========================================
   VERY SMALL DEVICES
   ========================================= */

@media (max-width: 340px) {

    .mfg-process-inner {
        width: calc(100% - 24px);
    }

    .mfg-equipment-row {
        grid-template-columns: minmax(0, 1fr) 68px;
    }

    .mfg-equipment-name,
    .mfg-equipment-value {
        font-size: 10px;
    }

}





/* =========================================
   PROCESSES SECTION
   All classes use xprc- prefix
   ========================================= */

.xprc-section {
  width: 100%;
  background: #ffffff;
  padding: 68px 0 76px;
  box-sizing: border-box;
}

.xprc-container {
  width: min(100% - 80px, 1120px);
  margin: 0 auto;
  box-sizing: border-box;
}

/* Small section label */
.xprc-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.xprc-label-line {
  display: block;
  width: 23px;
 height: 2px;
    background: #1e699e;
  flex: 0 0 auto;
}

.xprc-label-text {
letter-spacing: 2px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #1e699e;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Main heading */
.xprc-title {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}

/* Four-column layout */
.xprc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 15px;
  row-gap: 0;
}

/* Individual process */
.xprc-item {
  position: relative;
  min-width: 0;
  padding: 12px 0 15px;
  border-top: 1px solid #162c42;
  box-sizing: border-box;
}

.xprc-item-title {
margin: 0 0 7px;
    color: #071b35;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.xprc-item-desc {
  margin: 0;
  max-width: 240px;
  color: #46617d;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .xprc-section {
    padding: 55px 0 60px;
  }

  .xprc-container {
    width: min(100% - 50px, 760px);
  }

  .xprc-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .xprc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .xprc-item-desc {
    max-width: 320px;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .xprc-section {
    padding: 45px 0 50px;
  }

  .xprc-container {
    width: calc(100% - 36px);
  }

  .xprc-label {
    margin-bottom: 13px;
  }

  .xprc-label-line {
    width: 20px;
  }

  .xprc-label-text {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .xprc-title {
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: -0.7px;
    margin-bottom: 27px;
  }

  .xprc-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .xprc-item {
    padding: 14px 0 17px;
  }

  .xprc-item-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .xprc-item-desc {
    max-width: none;
    font-size: 11px;
    line-height: 1.5;
  }
}


/* =========================================
   VERY SMALL MOBILE
   ========================================= */

@media (max-width: 380px) {

  .xprc-container {
    width: calc(100% - 28px);
  }

  .xprc-title {
    font-size: 26px;
  }
}





/* =========================================
   HEAT TREATMENT SECTION
   All classes use hts9- prefix
   ========================================= */

.hts9-process-section {
    width: 100%;
    background: #f5f3ef;
    padding: 76px 0 78px;
    box-sizing: border-box;
}

.hts9-container {
    width: min(100% - 104px, 1400px);
    margin: 0 auto;
    box-sizing: border-box;
}

/* ---------- Heading ---------- */

.hts9-heading {
    margin-bottom: 40px;
}

.hts9-eyebrow {
margin-bottom: 17px;
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #1e699e;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.hts9-eyebrow span {
    display: block;
    width: 23px;
    height: 2px;
    background: #1e699e;
    flex: 0 0 auto;
}

.hts9-heading h2 {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}

/* ---------- Grid ---------- */

.hts9-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

/* ---------- Card ---------- */

.hts9-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #d8d4cd;
    overflow: hidden;
    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hts9-card:hover {
    /**transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.09);**/
}

/* ---------- Image ---------- */

.hts9-image {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: #ddd;
}

.hts9-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.hts9-card:hover .hts9-image img {
    /**transform: scale(1.04);**/
}

/* ---------- Card title ---------- */

.hts9-title {
min-height: 36px;
    display: flex;
    align-items: center;
    padding: 8px 11px;
    color: #071b2d;
    margin: 0 0 7px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -.3px;
}


/* =========================================
   LARGE TABLET
   ========================================= */

@media (max-width: 1100px) {

    .hts9-container {
        width: min(100% - 60px, 1000px);
    }

    .hts9-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hts9-heading h2 {
        font-size: 46px;
    }
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 800px) {

    .hts9-process-section {
        padding: 60px 0;
    }

    .hts9-container {
        width: min(100% - 40px, 700px);
    }

    .hts9-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .hts9-heading {
        margin-bottom: 32px;
    }

    .hts9-heading h2 {
        font-size: clamp(36px, 7vw, 48px);
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 520px) {

    .hts9-process-section {
        padding: 48px 0 52px;
    }

    .hts9-container {
        width: calc(100% - 30px);
    }

    .hts9-eyebrow {
        font-size: 9px;
        letter-spacing: 1.3px;
        gap: 8px;
    }

    .hts9-eyebrow span {
        width: 20px;
    }

    .hts9-heading {
        margin-bottom: 27px;
    }

    .hts9-heading h2 {
        font-size: 36px;
        letter-spacing: -1.8px;
        line-height: 1;
    }

    .hts9-desktop-break {
        display: none;
    }

    .hts9-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hts9-image {
        aspect-ratio: 1.55 / 1;
    }

    .hts9-title {
        min-height: 42px;
        padding: 11px 13px;
        font-size: 12px;
    }

    .hts9-card:hover {
        transform: none;
        box-shadow: none;
    }

    .hts9-card:hover .hts9-image img {
        transform: none;
    }
}



h2.credo {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}









/* =========================================================
   JPF INSPECTION FACILITIES
   All classes are uniquely prefixed to prevent CSS conflicts
   ========================================================= */

.jpf-inspection-section {
  width: 100%;
  background: #ffffff;
  padding: 72px 0 90px;
  box-sizing: border-box;
}

.jpf-inspection-container {
  width: min(92%, 1465px);
  margin: 0 auto;
  box-sizing: border-box;
}

/* Eyebrow */
.jpf-inspection-eyebrow {
margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e699e;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.jpf-inspection-eyebrow-line {
  display: block;
  width: 36px;
  height: 2px;
  flex: 0 0 36px;
  background: #1e699e;
}

/* Main heading */
.jpf-inspection-title {
    color: #062340;
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.8px;
}

/* Table outer wrapper */
.jpf-inspection-table-wrap {
  width: 100%;
  overflow-x: auto;

  border: 1px solid #e3ddd5;
  box-sizing: border-box;
  background: #fff;
  margin-top: 40px;
}

/* Table */
.jpf-inspection-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border-spacing: 0;

  color: #102036;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header */
.jpf-inspection-table thead th {
  padding: 18px 18px 19px;

  background: #ffffff;
  border-bottom: 1px solid #102036;

  color: #50657f;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
}

/* Column widths */
.jpf-inspection-table thead th:first-child {
  width: 41%;
}

.jpf-inspection-table thead th:last-child {
  width: 59%;
}

/* Body cells */
.jpf-inspection-table tbody td {
  padding: 18px 18px;

  border-bottom: 1px solid #e6e0d8;

  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  vertical-align: middle;
  text-align: left;
}

/* Remove last border */
.jpf-inspection-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Subtle hover */
.jpf-inspection-table tbody tr {
  /**transition: background-color 0.2s ease;***/
}

.jpf-inspection-table tbody tr:hover {
  /**background: #faf8f5;**/
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .jpf-inspection-section {
    padding: 60px 0 70px;
  }

  .jpf-inspection-container {
    width: min(92%, 760px);
  }

  .jpf-inspection-title {
    margin-bottom: 42px;
    font-size: clamp(38px, 7vw, 52px);
  }

  .jpf-inspection-table thead th,
  .jpf-inspection-table tbody td {
    padding: 16px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .jpf-inspection-section {
    padding: 48px 0 55px;
  }

  .jpf-inspection-container {
    width: calc(100% - 32px);
  }

  .jpf-inspection-eyebrow {
    gap: 11px;
    margin-bottom: 18px;

    font-size: 11px;
    letter-spacing: 2px;
  }

  .jpf-inspection-eyebrow-line {
    width: 27px;
    height: 2px;
    flex-basis: 27px;
  }

  .jpf-inspection-title {
    margin-bottom: 32px;

    font-size: clamp(34px, 10vw, 44px);
    letter-spacing: -1.5px;
    line-height: 1.08;
  }

  /*
    On mobile the table remains horizontally scrollable
    rather than crushing the columns.
  */
  .jpf-inspection-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .jpf-inspection-table {
    min-width: 680px;
  }

  .jpf-inspection-table thead th {
    padding: 14px 14px;

    font-size: 11px;
    letter-spacing: 1px;
  }

  .jpf-inspection-table tbody td {
    padding: 15px 14px;

    font-size: 14px;
    line-height: 1.5;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .jpf-inspection-container {
    width: calc(100% - 24px);
  }

  .jpf-inspection-section {
    padding: 40px 0 48px;
  }

  .jpf-inspection-title {
    font-size: 32px;
  }

  .jpf-inspection-table {
    min-width: 620px;
  }
}







/* =========================================================
   JPF MEASUREMENT SECTION
   Completely isolated CSS namespace
   ========================================================= */

.jpf-measure-section {
  width: 100%;
  margin: 0;
  padding: 0 0 90px;
  background: #ffffff;
  box-sizing: border-box;
}

.jpf-measure-container {
  width: 100%;
  max-width: 1465px;
  margin: 0 auto;
  padding: 0 0;
  box-sizing: border-box;
}

.jpf-measure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 15px;
  row-gap: 28px;
  width: 100%;
  box-sizing: border-box;
}

/* Individual item */
.jpf-measure-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 18px 0 0;
  border-top: 2px solid #102036;
  box-sizing: border-box;
}

/* Heading */
.jpf-measure-heading {
    padding: 0;
    margin: 0 0 7px;
    color: #071b35;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

/* Description */
.jpf-measure-text {
    padding: 0;
    margin: 0;
    color: #46617d;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

  .jpf-measure-grid {
    column-gap: 24px;
    row-gap: 28px;
  }

  .jpf-measure-card {
    padding-top: 18px;
  }

  .jpf-measure-heading {
    font-size: 21px;
  }

  .jpf-measure-text {
    font-size: 15px;
    line-height: 1.55;
  }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199px) {

  .jpf-measure-section {
    padding-bottom: 75px;
  }

  .jpf-measure-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .jpf-measure-grid {
    column-gap: 22px;
    row-gap: 26px;
  }

  .jpf-measure-heading {
    font-size: 20px;
  }

  .jpf-measure-text {
    font-size: 16px;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

  .jpf-measure-section {
    padding-bottom: 60px;
  }

  .jpf-measure-container {
    padding-left: 6%;
    padding-right: 6%;
  }

  .jpf-measure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 28px;
  }

  .jpf-measure-card {
    padding-top: 16px;
  }

  .jpf-measure-heading {
    margin-bottom: 6px;
    font-size: 19px;
  }

  .jpf-measure-text {
    font-size: 15px;
    line-height: 1.5;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

  .jpf-measure-section {
    padding-bottom: 48px;
  }

  .jpf-measure-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .jpf-measure-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .jpf-measure-card {
    padding: 17px 0 22px;
    border-top: 2px solid #102036;
  }

  .jpf-measure-card:last-child {
    padding-bottom: 0;
  }

  .jpf-measure-heading {
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 1.3;
  }

  .jpf-measure-text {
    max-width: none;
    font-size: 15px;
    line-height: 1.55;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .jpf-measure-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .jpf-measure-card {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .jpf-measure-heading {
    font-size: 18px;
  }

  .jpf-measure-text {
    font-size: 14px;
  }
}




/* =========================================================
   KEY MANAGERIAL PERSONNEL
========================================================= */

.jpfl-kmp-wrapper {
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 20px;
    box-sizing: border-box;
}


/* =========================================================
   HEADING
========================================================= */

.jpfl-kmp-heading {
    width: 100%;
    margin: 0 0 45px;
    padding: 0;
    box-sizing: border-box;
}

.jpfl-kmp-heading h2 {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* =========================================================
   KMP ROW
   Same 3-column grid sizing as upper cards
========================================================= */

.jpfl-kmp-row {
    display: grid;

    /*
      Same 3-column structure as your
      upper Board of Directors cards.
    */
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
    box-sizing: border-box;
}


/*
   Card 7 and Card 8 intentionally occupy
   only one grid column each.

   Therefore their size will be exactly
   the same as Card 1-6.
*/

.jpfl-kmp-row .jpf-board-card {
    width: 100%;
    min-width: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .jpfl-kmp-wrapper {
        margin-top: 50px;
    }

    .jpfl-kmp-heading {
        margin-bottom: 32px;
    }

    .jpfl-kmp-heading h2 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .jpfl-kmp-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}


@media (max-width: 600px) {

    .jpfl-kmp-wrapper {
        margin-top: 45px;
    }

    .jpfl-kmp-heading {
        margin-bottom: 28px;
    }

    .jpfl-kmp-heading h2 {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .jpfl-kmp-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


@media (max-width: 380px) {

    .jpfl-kmp-heading h2 {
        font-size: 33px;
    }

    .jpfl-kmp-row {
        gap: 20px;
    }
}




/* =========================================================
   JPFX PRODUCTS SECTION
   All classes intentionally use jpfx- prefix
   ========================================================= */

.jpfx-products-section {
  width: 100%;
  padding: 54px 0 70px;
  background: #f5f3ef;
  box-sizing: border-box;
}

.jpfx-products-section *,
.jpfx-products-section *::before,
.jpfx-products-section *::after {
  box-sizing: border-box;
}

.jpfx-products-container {
  width: min(100% - 40px, 1150px);
  margin: 0 auto;
}

.jpfx-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px 25px;
}

/* Product card */

.jpfx-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: auto;
  background: #ffffff;
  border: 1px solid #dddcd8;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #111827;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.jpfx-product-card:hover {
  /**transform: translateY(-4px);**/
  border-color: #bfc2c4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */

.jpfx-product-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.jpfx-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.35s ease;
}

.jpfx-product-card:hover .jpfx-product-image img {
  /**transform: scale(1.035);**/
}

/* Text */

.jpfx-product-content {
  flex: 1;
  padding: 0px 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.jpfx-product-content h3 {
display: flex;
    align-items: center;
    color: #071b2d;
    margin: 0 0 7px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -.3px;
}

.jpfx-product-content p {
margin: 0;
    line-height: 1.55;
    font-weight: 400;
    color: #667085;
    font-size: 15px;
}
}

/* Highlighted card */

.jpfx-product-card-highlight {
  border-color: #27323b;
}

.jpfx-product-card-highlight .jpfx-product-content h3 {
  /**color: #d45716;**/
}


/* =========================================================
   LARGE TABLETS
   ========================================================= */

@media (max-width: 1250px) {

  .jpfx-products-container {
    width: min(1100px, calc(100% - 40px));
  }

  .jpfx-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 950px) {

  .jpfx-products-section {
    padding: 40px 0 55px;
  }

  .jpfx-products-container {
    width: calc(100% - 32px);
  }

  .jpfx-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .jpfx-product-card {
    min-height: 290px;
  }

  .jpfx-product-image {
    height: 175px;
  }

  .jpfx-product-content {
    padding: 15px 16px 18px;
  }

  .jpfx-product-content h3 {
    font-size: 18px;
  }

  .jpfx-product-content p {
    font-size: 14px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .jpfx-products-section {
    padding: 30px 0 45px;
  }

  .jpfx-products-container {
    width: calc(100% - 24px);
  }

  .jpfx-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .jpfx-product-card {
    min-height: 260px;
  }

  .jpfx-product-image {
    height: 145px;
  }

  .jpfx-product-image img {
    padding: 5px;
  }

  .jpfx-product-content {
    padding: 13px 13px 16px;
  }

  .jpfx-product-content h3 {
    font-size: 16px;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .jpfx-product-content p {
    font-size: 13px;
    line-height: 1.4;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

  .jpfx-products-container {
    width: calc(100% - 18px);
  }

  .jpfx-products-grid {
    gap: 10px;
  }

  .jpfx-product-card {
    min-height: 235px;
  }

  .jpfx-product-image {
    height: 125px;
  }

  .jpfx-product-content {
    padding: 11px 10px 13px;
  }

  .jpfx-product-content h3 {
    font-size: 15px;
  }

  .jpfx-product-content p {
    font-size: 12px;
  }

}





/* =========================================
   PRODUCT FAMILIES SECTION
   Completely isolated styles
   ========================================= */

.jpf-family-section {
  width: 100%;
  background: #ffffff;
  padding: 75px 0 80px;
  box-sizing: border-box;
}

.jpf-family-container {
  width: calc(100% - 160px);
  max-width: 1465px;
  margin: 0 auto;
  box-sizing: border-box;
}


/* ---------- Label ---------- */

.jpf-family-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.jpf-family-label-line {
  display: block;
  width: 36px;
  height: 2px;
  background: #1e699e;
  flex-shrink: 0;
}

.jpf-family-label-text {
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #1e699e;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}


/* ---------- Main Heading ---------- */

.jpf-family-title {
  margin: 0 0 65px;
  color: #101d2d;
  font-size: clamp(42px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -2.2px;
}


/* ---------- Table Wrapper ---------- */

.jpf-family-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #ddd8d0;
  border-radius: 4px;
  background: #ffffff;
}


/* ---------- Table ---------- */

.jpf-family-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  table-layout: fixed;
  color: #071d39;
  font-family: inherit;
}


/* ---------- Column Widths ---------- */

.jpf-family-table th:nth-child(1),
.jpf-family-table td:nth-child(1) {
  width: 29%;
}

.jpf-family-table th:nth-child(2),
.jpf-family-table td:nth-child(2) {
  width: 24%;
}

.jpf-family-table th:nth-child(3),
.jpf-family-table td:nth-child(3) {
  width: 47%;
}


/* ---------- Header ---------- */

.jpf-family-table thead th {
  padding: 19px 18px;
  text-align: left;
  color: #50627a;
  background: #ffffff;
  border-bottom: 1px solid #1c2c3e;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.7px;
  line-height: 1.3;
}


/* ---------- Body Cells ---------- */

.jpf-family-table tbody td {
  padding: 18px 18px;
  vertical-align: top;

  color: #071d39;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;

  border-bottom: 1px solid #e2ded8;
}


/* Remove last border */

.jpf-family-table tbody tr:last-child td {
  border-bottom: none;
}


/* ---------- Product Family Links ---------- */

.jpf-family-table tbody td:first-child a {
  position: relative;
  display: inline;
  color: #071d39;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}


/* Underline shown in screenshot */

.jpf-family-table tbody td:first-child a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.5px;
  margin-top: 3px;
  background: #071d39;
  transition: background 0.25s ease;
}


/* Hover */

.jpf-family-table tbody tr:hover {
  background: #faf9f7;
}

.jpf-family-table tbody tr:hover td:first-child a {
  color: #1e699e;
}

.jpf-family-table tbody tr:hover td:first-child a::after {
  background: #1e699e;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1100px) {

  .jpf-family-container {
    width: calc(100% - 80px);
  }

  .jpf-family-title {
    margin-bottom: 45px;
  }

  .jpf-family-table {
    min-width: 780px;
  }

  .jpf-family-table tbody td {
    font-size: 16px;
    padding: 17px 16px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

  .jpf-family-section {
    padding: 10px 0 50px;
  }

  .jpf-family-container {
    width: calc(100% - 32px);
  }

  .jpf-family-label {
    gap: 11px;
    margin-bottom: 18px;
  }

  .jpf-family-label-line {
    width: 28px;
    height: 2px;
  }

  .jpf-family-label-text {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .jpf-family-title {
    margin-bottom: 35px;
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  /*
     Horizontal scrolling keeps the table readable
     on small screens instead of crushing the columns.
  */

  .jpf-family-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .jpf-family-table {
    min-width: 760px;
  }

  .jpf-family-table thead th {
    padding: 15px 14px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .jpf-family-table tbody td {
    padding: 16px 14px;
    font-size: 15px;
    line-height: 1.5;
  }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

  .jpf-family-container {
    width: calc(100% - 24px);
  }

  .jpf-family-title {
    font-size: 34px;
  }

  .jpf-family-table {
    min-width: 720px;
  }

}



/* =====================================================
   GEAR MANUFACTURING CAPABILITY
   Completely isolated CSS
   Prefix: jpf-gearcap-
   ===================================================== */

.jpf-gearcap-section {
  width: 100%;
  background: #f7f6f3;
  padding: 75px 0 90px;
  box-sizing: border-box;
}

.jpf-gearcap-container {
  width: calc(100% - 160px);
  max-width: 1465px;
  margin: 0 auto;
  box-sizing: border-box;
}


/* =====================================================
   SECTION LABEL
   ===================================================== */

.jpf-gearcap-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 27px;
}

.jpf-gearcap-label-line {
  width: 36px;
  height: 2px;
  flex: 0 0 36px;
  background: #1e699e;
}

.jpf-gearcap-label-text {
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #1e699e;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}


/* =====================================================
   MAIN HEADING
   ===================================================== */

.jpf-gearcap-title {
    padding: 0;
    margin: 0 0 65px;
    color: #101d2d;
    font-size: clamp(42px, 4.2vw, 60px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -2.2px;
}
}


/* =====================================================
   TABLE WRAPPER
   ===================================================== */

.jpf-gearcap-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #ddd9d2;
  border-radius: 4px;
  box-sizing: border-box;

  -webkit-overflow-scrolling: touch;
}


/* =====================================================
   TABLE
   ===================================================== */

.jpf-gearcap-table {
  width: 100%;
  min-width: 1050px;
  border-collapse: collapse;
  table-layout: fixed;

  background: #ffffff;
  color: #071d39;
}


/* =====================================================
   COLUMN WIDTHS
   ===================================================== */

.jpf-gearcap-table th:first-child,
.jpf-gearcap-table td:first-child {
  width: 9%;
}

.jpf-gearcap-table th:nth-child(2),
.jpf-gearcap-table td:nth-child(2) {
  width: 15%;
}

.jpf-gearcap-table th:nth-child(3),
.jpf-gearcap-table td:nth-child(3) {
  width: 15%;
}

.jpf-gearcap-table th:nth-child(4),
.jpf-gearcap-table td:nth-child(4) {
  width: 30%;
}

.jpf-gearcap-table th:nth-child(5),
.jpf-gearcap-table td:nth-child(5) {
  width: 31%;
}


/* =====================================================
   TABLE HEADER
   ===================================================== */

.jpf-gearcap-table thead th {
  height: 55px;
  padding: 15px 18px;

  color: #53647b;
  background: #ffffff;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-align: left;
  vertical-align: middle;

  border-bottom: 1px solid #17283b;
}


/* Empty first header cell */

.jpf-gearcap-table thead th:first-child {
  color: transparent;
}


/* =====================================================
   TABLE BODY
   ===================================================== */

.jpf-gearcap-table tbody td {
  padding: 18px 18px;

  color: #071d39;
  background: #ffffff;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;

  border-bottom: 1px solid #e3dfd9;
}


/* First column */

.jpf-gearcap-table tbody td:first-child {
  font-weight: 400;
}


/* Last row */

.jpf-gearcap-table tbody tr:last-child td {
  border-bottom: none;
}


/* =====================================================
   SUBTLE HOVER
   ===================================================== */

.jpf-gearcap-table tbody tr {
  transition: background-color 0.2s ease;
}

.jpf-gearcap-table tbody tr:hover td {
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1100px) {

  .jpf-gearcap-container {
    width: calc(100% - 80px);
  }

  .jpf-gearcap-section {
    padding-bottom: 70px;
  }

  .jpf-gearcap-title {
    margin-bottom: 48px;
  }

  .jpf-gearcap-table {
    min-width: 950px;
  }

  .jpf-gearcap-table thead th {
    padding: 14px 15px;
    font-size: 12px;
  }

  .jpf-gearcap-table tbody td {
    padding: 16px 15px;
    font-size: 16px;
  }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

  .jpf-gearcap-section {
    padding: 28px 0 55px;
  }

  .jpf-gearcap-container {
    width: calc(100% - 32px);
  }


  /* Label */

  .jpf-gearcap-label {
    gap: 11px;
    margin-bottom: 20px;
  }

  .jpf-gearcap-label-line {
    width: 28px;
    height: 2px;
    flex-basis: 28px;
  }

  .jpf-gearcap-label-text {
    font-size: 11px;
    letter-spacing: 1.8px;
  }


  /* Heading */

  .jpf-gearcap-title {
    margin-bottom: 36px;

    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .jpf-gearcap-desktop-break {
    display: none;
  }


  /* Table */

  .jpf-gearcap-table-wrapper {
    border-radius: 3px;
  }

  .jpf-gearcap-table {
    min-width: 900px;
  }

  .jpf-gearcap-table thead th {
    height: auto;
    padding: 15px 13px;

    font-size: 10px;
    letter-spacing: 1px;
  }

  .jpf-gearcap-table tbody td {
    padding: 15px 13px;

    font-size: 14px;
    line-height: 1.5;
  }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 480px) {

  .jpf-gearcap-container {
    width: calc(100% - 24px);
  }

  .jpf-gearcap-title {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .jpf-gearcap-table {
    min-width: 850px;
  }

  .jpf-gearcap-table thead th {
    padding: 14px 12px;
    font-size: 9px;
  }

  .jpf-gearcap-table tbody td {
    padding: 14px 12px;
    font-size: 13px;
  }
}





/* =========================================================
   PRODUCT DETAIL SECTION
   Completely isolated CSS
   Prefix: jpf-productdetail-
   ========================================================= */

.jpf-productdetail-section {
  width: 100%;
  background: #f7f6f3;
  padding: 24px 0 90px;
  box-sizing: border-box;
  border-top: 1px solid rgb(230, 230, 230);
}

.jpf-productdetail-container {
  width: calc(100% - 160px);
  max-width: 1465px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(360px, 0.9fr);
  gap: 66px;

  align-items: start;
  box-sizing: border-box;
}


/* =========================================================
   LEFT IMAGE
   ========================================================= */

.jpf-productdetail-image-box {
  width: 100%;
  min-height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

.jpf-productdetail-image {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 560px;

  object-fit: contain;
  object-position: center;

  mix-blend-mode: multiply;
}


/* =========================================================
   RIGHT SPECIFICATION CARD
   ========================================================= */

.jpf-productdetail-spec-card {
  width: 100%;
  padding: 31px 31px 30px;

  background: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 4px;

  box-sizing: border-box;
}


/* =========================================================
   SPECIFICATION TITLE
   ========================================================= */

.jpf-productdetail-spec-label {
  margin-bottom: 24px;

  color: #53647b;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.2;
}


/* =========================================================
   SPECIFICATION LIST
   ========================================================= */

.jpf-productdetail-spec-list {
  width: 100%;
}

.jpf-productdetail-spec-row {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  column-gap: 18px;

  margin-bottom: 15px;
}

.jpf-productdetail-spec-row:last-child {
  margin-bottom: 0;
}


/* Label */

.jpf-productdetail-spec-name {
color: #53647b;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}


/* Value */

.jpf-productdetail-spec-value {
  color: #071d39;

  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}


/* =========================================================
   REQUEST QUOTE BUTTON
   ========================================================= */

.jpf-productdetail-quote-btn {
  width: 100%;
  min-height: 63px;

  margin-top: 31px;
  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #ce4d16;
  color: #ffffff;

  text-decoration: none;

  font-size: 18px;
  font-weight: 700;

  box-sizing: border-box;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.jpf-productdetail-quote-btn:hover {
  background: #ad3f10;
  transform: translateY(-1px);
}

.jpf-productdetail-arrow {
  font-size: 27px;
  font-weight: 400;
  line-height: 1;

  transition: transform 0.25s ease;
}

.jpf-productdetail-quote-btn:hover .jpf-productdetail-arrow {
  transform: translateX(5px);
}


/* =========================================================
   CAPABILITY MATRIX LINK
   ========================================================= */

.jpf-productdetail-capability-link {
  display: inline-block;

  margin-top: 21px;

  color: #071d39;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;

  text-decoration: none;

  border-bottom: 2px solid #071d39;
  padding-bottom: 5px;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.jpf-productdetail-capability-link:hover {
  color: #1e699e;
  border-color: #1e699e;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1200px) {

  .jpf-productdetail-container {
    width: calc(100% - 100px);
    grid-template-columns: minmax(0, 1.7fr) minmax(330px, 0.9fr);
    gap: 40px;
  }

  .jpf-productdetail-image-box {
    min-height: 500px;
  }

  .jpf-productdetail-image {
    min-height: 500px;
  }

  .jpf-productdetail-spec-card {
    padding: 28px 25px;
  }

  .jpf-productdetail-spec-row {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;
  }

  .jpf-productdetail-spec-name,
  .jpf-productdetail-spec-value {
    font-size: 16px;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .jpf-productdetail-section {
    padding: 30px 0 65px;
  }

  .jpf-productdetail-container {
    width: calc(100% - 64px);

    grid-template-columns: 1fr;
    gap: 30px;
  }

  .jpf-productdetail-image-box {
    min-height: 500px;
  }

  .jpf-productdetail-image {
    min-height: 500px;
  }

  .jpf-productdetail-spec-card {
    width: 100%;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .jpf-productdetail-section {
    padding: 20px 0 50px;
  }

  .jpf-productdetail-container {
    width: calc(100% - 32px);
    gap: 22px;
  }


  /* Image */

  .jpf-productdetail-image-box {
    min-height: 300px;
  }

  .jpf-productdetail-image {
    min-height: 300px;
  }


  /* Specification card */

  .jpf-productdetail-spec-card {
    padding: 24px 20px 25px;
  }

  .jpf-productdetail-spec-label {
    margin-bottom: 22px;

    font-size: 12px;
    letter-spacing: 2.5px;
  }


  /* Specs */

  .jpf-productdetail-spec-row {
    grid-template-columns: 105px minmax(0, 1fr);
    column-gap: 10px;
    margin-bottom: 14px;
  }

  .jpf-productdetail-spec-name,
  .jpf-productdetail-spec-value {
    font-size: 15px;
    line-height: 1.5;
  }


  /* Button */

  .jpf-productdetail-quote-btn {
    min-height: 58px;

    margin-top: 27px;
    padding: 0 20px;

    font-size: 16px;
  }

  .jpf-productdetail-arrow {
    font-size: 24px;
  }

  .jpf-productdetail-capability-link {
    margin-top: 19px;
    font-size: 15px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .jpf-productdetail-container {
    width: calc(100% - 24px);
  }

  .jpf-productdetail-image-box {
    min-height: 260px;
  }

  .jpf-productdetail-image {
    min-height: 260px;
  }

  .jpf-productdetail-spec-card {
    padding: 21px 16px 22px;
  }

  .jpf-productdetail-spec-row {
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 8px;
  }

  .jpf-productdetail-spec-name,
  .jpf-productdetail-spec-value {
    font-size: 14px;
  }

  .jpf-productdetail-quote-btn {
    padding: 0 17px;
    font-size: 15px;
  }
}




.jpf-productdetail-content {
  width: 100%;
  margin-top: 0px;
}

.jpf-productdetail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}

.jpf-productdetail-info-item {
  border-top: 2px solid #122033;
  padding-top: 16px;
}

.jpf-productdetail-info-item h3 {
margin: 0 0 7px;
  color: #071b35;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.jpf-productdetail-info-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #42545e;
  font-weight: 400;
}

.jpf-productdetail-family {
  margin-top: 38px;
}

.jpf-productdetail-family h2 {
margin: 0 0 12px;
  color: rgb(0, 31, 63);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}

.jpf-productdetail-family ul {
  margin: 0;
  padding-left: 25px;
  color: #33445a;
}

.jpf-productdetail-family li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .jpf-productdetail-content {
    margin-top: 40px;
  }

  .jpf-productdetail-info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jpf-productdetail-info-item h3 {
    font-size: 21px;
  }

  .jpf-productdetail-info-item p,
  .jpf-productdetail-family li {
    font-size: 16px;
  }

  .jpf-productdetail-family h2 {
    font-size: 24px;
  }
}




/* ==================================================
   JPF OTHER PRODUCT FAMILIES
================================================== */

.jpf-family-section {
    width: 100%;
    background: #ffffff;
    padding: 75px 0 70px;
    box-sizing: border-box;
}

.jpf-family-container {
    width: calc(100% - 160px);
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.jpf-family-heading {
    margin-bottom: 62px;
}

.jpf-family-heading h2 {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}

.jpf-family-card-content p {
  margin-top: 0px;
}

/* =========================
   PRODUCT GRID
========================= */

.jpf-family-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}


/* =========================
   PRODUCT CARD
========================= */

.jpf-family-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: #ffffff;
    border: 1px solid #dedbd5;
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    box-sizing: border-box;

}

.jpf-family-card-content p {
  margin-top: 0px !important;
}

.jpf-family-card-content h3 {
  display: flex;
  align-items: center;
  color: #071b2d;
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.3px;
}

.jpf-family-card:hover {
    border-color: #cfcac2;
    box-shadow: 0 12px 28px rgba(16, 31, 51, 0.10);
}


/* =========================
   IMAGE
========================= */

.jpf-family-image {
    width: 100%;
    height: 202px;
    background: #fafafa;
    overflow: hidden;
}

.jpf-family-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.jpf-family-card:hover .jpf-family-image img {
}


/* =========================
   CARD CONTENT
========================= */

.jpf-family-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 21px 23px;
    box-sizing: border-box;
}

.jpf-family-card-content h3 {
display: flex;
  align-items: center;
  color: #071b2d;
  margin: 0 0 7px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.3px;
  font-size: 15px !important;
}

.jpf-family-card-content p {
    margin: auto 0 0;
    color: #53657c;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}


/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1300px) {

    .jpf-family-container {
        width: calc(100% - 100px);
    }

    .jpf-family-heading h2 {
        font-size: 48px;
    }

    .jpf-family-grid {
        gap: 18px;
    }

    .jpf-family-image {
        height: 185px;
    }

    .jpf-family-card-content {
        padding: 18px;
    }

    .jpf-family-card-content h3 {
        font-size: 18px;
    }

    .jpf-family-card-content p {
        font-size: 15px;
    }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1024px) {

    .jpf-family-section {
        padding: 85px 0 90px;
    }

    .jpf-family-container {
        width: calc(100% - 60px);
    }

    .jpf-family-heading {
        margin-bottom: 42px;
    }

    .jpf-family-heading h2 {
        font-size: 42px;
        letter-spacing: -1.2px;
    }

    .jpf-family-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .jpf-family-image {
        height: 230px;
    }

    .jpf-family-card-content {
        padding: 21px;
    }

    .jpf-family-card-content h3 {
        font-size: 20px;
    }

    .jpf-family-card-content p {
        font-size: 16px;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 640px) {

    .jpf-family-section {
        padding: 65px 0 70px;
    }

    .jpf-family-container {
        width: calc(100% - 32px);
    }

    .jpf-family-heading {
        margin-bottom: 30px;
    }

    .jpf-family-heading h2 {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -0.8px;
    }

    .jpf-family-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jpf-family-image {
        height: 230px;
    }

    .jpf-family-card-content {
        padding: 20px;
        min-height: 135px;
    }

    .jpf-family-card-content h3 {
        font-size: 21px;
        line-height: 1.1;
    }

    .jpf-family-card-content p {
        font-size: 16px;
        line-height: 1.5;
    }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .jpf-family-container {
        width: calc(100% - 24px);
    }

    .jpf-family-heading h2 {
        font-size: 30px;
    }

    .jpf-family-image {
        height: 200px;
    }

    .jpf-family-card-content {
        padding: 18px;
    }
}


.jpfl-forging-hero {
    position: relative;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 20, 34, 0.68) 0%,
            rgba(5, 20, 34, 0.48) 38%,
            rgba(5, 20, 34, 0.22) 70%,
            rgba(5, 20, 34, 0.15) 100%
        ),
        url("../images/forgin-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.jpfl-forging-hero {
  padding: 70px 0px;
}


.jpfl-machine-shop {
    position: relative;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 20, 34, 0.68) 0%,
            rgba(5, 20, 34, 0.48) 38%,
            rgba(5, 20, 34, 0.22) 70%,
            rgba(5, 20, 34, 0.15) 100%
        ),
        url("../images/machine-shop.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.jpfl-board-title.borad {
  margin: 0;
  max-width: 720px;
  color: #fff;
  font-size: 51px;
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -1.8px;
}

.jpfl-board-breadcrumb.fjfu span {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-breadcrumb.fjfu a {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-breadcrumb.fjfu a:hover {
  color: #1e699e;
}

.jpfl-board-breadcrumb.fjfu span:hover {
  color: #1e699e;
}



.jpfl-board-title.jffin {
  padding: 0;
  margin: 0;
  max-width: 720px;
  color: #fff;
  font-size: 51px;
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -1.8px;
}

.jpfl-board-breadcrumb.mahn a {
  color: rgba(255, 255, 255, 0.7);
}


.jpfl-board-breadcrumb.mahn span {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-breadcrumb.mahn a:hover {
  color: #1e699e;
}

.jpfl-board-breadcrumb.mahn span:hover {
  color: #1e699e;
}


.jpfl-board-description.forn {
  color: rgba(255, 255, 255, 0.7);
}


.jpfl-board-description.djdyu {
  color: rgba(255, 255, 255, 0.7);
}


.jpfl-board-hero.jpf-heat-treatment {
  position: relative;
  background-image: linear-gradient( 90deg, rgba(5, 20, 34, 0.68) 0%, rgba(5, 20, 34, 0.48) 38%, rgba(5, 20, 34, 0.22) 70%, rgba(5, 20, 34, 0.15) 100% ), url("../images/machine-shop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.jpfl-board-title.heat-treatment {
  margin: 0;

  max-width: 720px;
  color: #fff;
  font-size: 51px;
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -1.8px;
}

.jpfl-board-breadcrumb.heat-treatment a {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-breadcrumb.heat-treatment span {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-description.heat-treatment {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-breadcrumb.heat-treatment a:hover {
  color: #1e699e;
}

.jpfl-board-breadcrumb.heat-treatment span:hover {
  color: #1e699e;
}



.jpfl-board-hero.jpf-products {
  position: relative;
  background-image: linear-gradient( 90deg, rgba(5, 20, 34, 0.68) 0%, rgba(5, 20, 34, 0.48) 38%, rgba(5, 20, 34, 0.22) 70%, rgba(5, 20, 34, 0.15) 100% ), url("../images/products-jpg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.jpfl-board-title.jpf-products {
  margin: 0px;
  max-width: 720px;
  color: rgb(255, 255, 255);
  font-size: 51px;
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -1.8px;
}

.jpfl-board-description.jpf-products {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-breadcrumb.jpf-products a {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-breadcrumb.jpf-products span {
  color: rgba(255, 255, 255, 0.7);
}

.jpfl-board-breadcrumb.jpf-products a:hover {
  color: #1e699e;
}

.jpfl-board-breadcrumb.jpf-products span:hover {
  color: #1e699e;
}


/* Normal card */
.jpfx-product-card {
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

/* Heading ka transition */
.jpfx-product-card h3 {
  color: #222;
  transition: color 0.3s ease;
}

/* Hover par border + heading color change */
.jpfx-product-card:hover {
  border-color: rgb(30, 105, 158); /* apna desired color */
}

.jpfx-product-card:hover h3 {
  color: rgb(30, 105, 158); /* same color */
}




.jpf-family-card {
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
}

.jpf-family-card-content h3 {
    transition: color 0.3s ease;
}

/* Hover effect */
.jpf-family-card:hover {
    border-color: #e21b23;
}

.jpf-family-card:hover .jpf-family-card-content h3 {
    color: #e21b23;
}



.jpf-family-card {
    transition: border-color 0.3s ease;
}

.jpf-family-card-content h3 {
    transition: color 0.3s ease;
}

.jpf-family-card:hover {
    border-color: rgb(30, 105, 158);
}

.jpf-family-card:hover .jpf-family-card-content h3 {
    color: rgb(30, 105, 158);
}





/* =========================================================
   METALLURGICAL GRADES SECTION
========================================================= */

.jpf-grade-section {
    width: 100%;
    padding: 100px 20px;
    background: #f7f5f0;
    overflow: hidden;
}

.jpf-grade-container {
    width: 100%;
    max-width: min(100% - 80px, 1120px);
    margin: 0 auto;
}


/* ================= HEADER ================= */

.jpf-grade-header {
    max-width: 850px;
    margin-bottom: 50px;
}

.jpf-grade-label {
margin-bottom: 16px;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1e699e;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.jpf-grade-line {
    width: 38px;
    height: 2px;
    background: #1e699e;
    display: inline-block;
}

.jpf-grade-title {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}

.jpf-grade-intro {
padding: 0;
  max-width: 570px;
  margin: 19px 0 0;
  color: #656564;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}


/* ================= GRADE GRID ================= */

.jpf-grade-table-wrap {
    width: 100%;
    background: #ffffff;
    border: 1px solid #dce3e8;
    border-radius: 10px;
    overflow: hidden;
}

.jpf-grade-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


/* ================= GRADE ITEM ================= */

.jpf-grade-item {
    min-height: 60px;
    padding: 15px 24px;

    display: flex;
    align-items: center;
    gap: 18px;

    border-right: 1px solid #e1e7eb;
    border-bottom: 1px solid #e1e7eb;

    transition: background 0.25s ease,
                transform 0.25s ease;
}

.jpf-grade-item:hover {
    /**background: #f8fafb;**/
}


/* Remove right border from every 3rd item */

.jpf-grade-item:nth-child(3n) {
    border-right: none;
}


/* Remove bottom border from last 3 items */

.jpf-grade-item:nth-last-child(-n+3) {
    border-bottom: none;
}


/* ================= NUMBER ================= */

.jpf-grade-number {
    min-width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #cbd5dc;
    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
    color: #6b7b88;
}


/* ================= GRADE NAME ================= */

.jpf-grade-name {
    font-size: 16px;
    font-weight: 600;
    color: #173247;
    letter-spacing: 0.2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .jpf-grade-section {
        padding: 80px 20px;
    }

    .jpf-grade-table {
        grid-template-columns: repeat(2, 1fr);
    }

    .jpf-grade-item:nth-child(3n) {
        border-right: 1px solid #e1e7eb;
    }

    .jpf-grade-item:nth-child(2n) {
        border-right: none;
    }

    .jpf-grade-item:nth-last-child(-n+3) {
        border-bottom: 1px solid #e1e7eb;
    }

    .jpf-grade-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .jpf-grade-section {
        padding: 65px 15px;
    }

    .jpf-grade-header {
        margin-bottom: 35px;
    }

    .jpf-grade-title {
        font-size: 34px;
    }

    .jpf-grade-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .jpf-grade-table {
        grid-template-columns: 1fr;
    }

    .jpf-grade-item,
    .jpf-grade-item:nth-child(3n),
    .jpf-grade-item:nth-child(2n) {
        min-height: 70px;
        padding: 16px 18px;
        border-right: none;
        border-bottom: 1px solid #e1e7eb;
    }

    .jpf-grade-item:last-child {
        border-bottom: none;
    }

    .jpf-grade-number {
        min-width: 30px;
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .jpf-grade-name {
        font-size: 15px;
    }

}



/* =========================================
   INVESTOR HUB
   Completely isolated class names
========================================= */

.investor-hub-section {
    width: 100%;
    padding: 20px 0 72px;
    background: #f7f6f2;
    box-sizing: border-box;
}

.investor-hub-container {
    width: min(100% - 104px, 1150px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;

    box-sizing: border-box;
}


/* =========================================
   NORMAL INFORMATION CARDS
========================================= */

.investor-info-card {
    min-height: 131px;
    padding: 19px 19px 18px;

    background: #ffffff;
    border: 1px solid #dedbd4;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;
}

.investor-info-card h3 {
margin: 0 0 7px;
  color: #071b35;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.investor-info-card p {
margin: 0;
  max-width: 240px;
  color: #46617d;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}


/* =========================================
   OPEN LINK
========================================= */

.investor-card-link {
width: fit-content;
  margin-top: 20px;
  padding-bottom: 4px;
  color: #071b31;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #071b31;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.investor-card-link span {
    display: inline-block;
    margin-left: 2px;

    font-size: 15px;
    line-height: 8px;
    vertical-align: -1px;

    transition: transform 0.2s ease;
}

.investor-card-link:hover {
    color: #1e699e;
    border-color: #1e699e;
}

.investor-card-link:hover span {
    transform: translateX(3px);
}


/* =========================================
   INVESTOR CONTACT CARD
========================================= */

.investor-contact-link-card {
    min-height: 171px;
}


/* =========================================
   DARK SECRETARY CARD
========================================= */

.investor-secretary-card {
    min-height: 171px;
    padding: 22px 19px 18px;

    background: #091a2c;
    color: #ffffff;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;
}


/* Top orange label */

.investor-secretary-heading {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-bottom: 10px;
}

.investor-secretary-line {
width: 19px;
  height: 2px;
  flex: 0 0 19px;
  margin-top: 9px;
  background: #79c7ff;
}

.investor-secretary-label {
   color: #79c7ff;
  font-size: 12px;
    line-height: 1.35;
    letter-spacing: 1.5px;
    font-weight: 700;
}


/* Name */

.investor-secretary-card h3 {
margin: 0 0 7px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}


/* Email + phone */

.investor-secretary-card > a:not(.investor-all-contacts) {
width: fit-content;
  color: #fff;
  text-decoration: none;
  margin: 0;
  max-width: 240px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  padding-bottom: revert-layer;
}


/* Bottom contact link */

.investor-all-contacts {
    width: fit-content;
    margin-top: auto;
    padding-bottom: 4px;

    color: #ffffff;
    font-size: 12px;
  line-height: 1;
  font-weight: 500;

    text-decoration: none;

    border-bottom: 1px solid #ffffff;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
		margin-top: 15px;
}

.investor-all-contacts:hover {
    color: #79c7ff;
    border-color: #79c7ff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .investor-hub-section {
        padding: 20px 0 55px;
    }

    .investor-hub-container {
        width: min(100% - 32px, 650px);

        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .investor-info-card,
    .investor-contact-link-card,
    .investor-secretary-card {
        min-height: 140px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 540px) {

    .investor-hub-section {
        padding: 15px 0 40px;
    }

    .investor-hub-container {
        width: calc(100% - 28px);

        grid-template-columns: 1fr;
        gap: 12px;
    }

    .investor-info-card,
    .investor-contact-link-card,
    .investor-secretary-card {
        min-height: 145px;
    }

    .investor-info-card {
        padding: 18px;
    }

    .investor-secretary-card {
        padding: 20px 18px;
    }

    .investor-info-card h3,
    .investor-secretary-card h3 {
        font-size: 15px;
    }
}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 360px) {

    .investor-hub-container {
        width: calc(100% - 20px);
    }

    .investor-info-card,
    .investor-secretary-card {
        padding: 16px;
    }

    .investor-secretary-label {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
}




/* Make the complete card clickable */
.investor-info-card {
    position: relative;
    transition: border-color 0.25s ease;
}

.investor-info-card:hover {
    border-color: #1e699e;
}

/* Heading changes color when card is hovered */
.investor-info-card:hover h3 {
    color: #1e699e;
    transition: color 0.25s ease;
}

/* Make the existing link cover the COMPLETE box */
.investor-info-card .investor-card-link {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    border: 0;

    /* Keep the link itself visually invisible */
    color: transparent;
    font-size: 0;

    z-index: 5;
}

/* Hide the original arrow visually */
.investor-info-card .investor-card-link span {
    display: none;
}

/* Keep the content above the clickable layer visually */
.investor-info-card h3,
.investor-info-card p {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

/* Make sure cursor shows the whole card is clickable */
.investor-info-card:hover {
    cursor: pointer;
}








/* =========================================================
   CORPORATE IDENTITY / KEY FACTS
   Completely isolated styles
========================================================= */

.corp-facts-section {
    width: 100%;
    padding: 40px 0 70px;
    background: #ffffff;
    box-sizing: border-box;
}

.corp-facts-container {
    width: min(100% - 104px, 1150px);
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   LABEL
========================================================= */

.corp-facts-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 13px;
}

.corp-facts-label-line {
width: 22px;
  height: 2px;
  background: #1e699e;
  flex: 0 0 22px;
}

.corp-facts-label-text {
letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1e699e;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.corp-facts-title {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* =========================================================
   TABLE
========================================================= */

.corp-facts-table {
    width: 100%;

    border: 1px solid #dedbd4;

    box-sizing: border-box;
}


/* =========================================================
   TABLE ROW
========================================================= */

.corp-facts-row {
    display: grid;
    grid-template-columns: 31% 69%;

    min-height: 39px;

    border-bottom: 1px solid #dedbd4;

    box-sizing: border-box;
}

.corp-facts-row:last-child {
    border-bottom: 0;
}


/* =========================================================
   CELLS
========================================================= */

.corp-facts-cell {
display: flex;
  align-items: center;
  box-sizing: border-box;
  color: #071c32;
  padding: 18px 18px;
  border-bottom: 1px solid #e6e0d8;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}


/* =========================================================
   ITEM COLUMN
========================================================= */

.corp-facts-item {
    font-weight: 400;
}


/* =========================================================
   DETAIL COLUMN
========================================================= */

.corp-facts-detail {
    font-weight: 400;
}


/* =========================================================
   HEADER
========================================================= */

.corp-facts-header {

   border-bottom: 1px solid #d8d8d8;
}

.corp-facts-header .corp-facts-cell {
color: #526477;
  padding: 18px 18px 19px;
  background: #fff;
  border-bottom: 1px solid #102036;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
}


/* =========================================================
   INSERT BADGE
========================================================= */

.corp-facts-badge {
display: inline-block;
  padding: 4px 7px;
  background: #1e699e;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.4px;
  border-radius: 1px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .corp-facts-section {
        padding: 35px 0 55px;
    }

    .corp-facts-container {
        width: calc(100% - 32px);
    }

    .corp-facts-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .corp-facts-row {
        grid-template-columns: 32% 68%;
    }

    .corp-facts-cell {
        font-size: 10px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 540px) {

    .corp-facts-section {
        padding: 28px 0 45px;
    }

    .corp-facts-container {
        width: calc(100% - 24px);
    }

    .corp-facts-title {
        margin-bottom: 24px;

        font-size: 27px;
        letter-spacing: -0.7px;
    }

    .corp-facts-row {
        grid-template-columns: 38% 62%;
    }

    .corp-facts-cell {
        padding: 9px 8px;

        font-size: 10px;
        line-height: 1.45;
    }

    .corp-facts-header {
        min-height: 32px;
    }

    .corp-facts-header .corp-facts-cell {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .corp-facts-badge {
        padding: 4px 5px;

        font-size: 7px;
        letter-spacing: 0.25px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .corp-facts-container {
        width: calc(100% - 18px);
    }

    .corp-facts-title {
        font-size: 25px;
    }

    .corp-facts-row {
        grid-template-columns: 40% 60%;
    }

    .corp-facts-cell {
        padding: 8px 7px;
        font-size: 14px;
    }

    .corp-facts-badge {
        font-size: 14px;
    }
}




/* =========================================================
   FINANCIAL RESULTS HERO
   Completely isolated class names
========================================================= */

.finhero-section {
    width: 100%;
    background: #f7f6f2;
    padding: 21px 0 31px;
    box-sizing: border-box;
}

.finhero-container {
    width: min(100% - 104px, 1150px);
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   LABEL
========================================================= */

.finhero-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;
}

.finhero-label-line {
width: 22px;
  height: 2px;
  flex: 0 0 22px;
  background: #1e699e;
}

.finhero-label-text {
letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1e699e;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.finhero-title {
padding: 0;
  max-width: 850px;
  margin: 0 0 22px;
  color: #062340;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.8px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .finhero-section {
        padding: 20px 0 30px;
    }

    .finhero-container {
        width: calc(100% - 32px);
    }

    .finhero-title {
        font-size: 32px;
        max-width: 600px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 540px) {

    .finhero-section {
        padding: 18px 0 28px;
    }

    .finhero-container {
        width: calc(100% - 24px);
    }

    .finhero-label {
        margin-bottom: 13px;
    }

    .finhero-title {
        max-width: 100%;

        font-size: 28px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .finhero-title {
        font-size: 25px;
    }

    .finhero-desktop-break {
        display: none;
    }
}










/* =========================================================
   JP CONTACT SECTION
   Completely isolated class names
   ========================================================= */

.jpcontactx-section {
    width: 100%;
    padding: 28px 20px 70px;
    background: #f7f6f3;
    box-sizing: border-box;
}

.jpcontactx-container {
   width: min(100% - 104px, 1150px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
    box-sizing: border-box;
}


/* =========================
   COMMON CARD
   ========================= */

.jpcontactx-card {
    min-height: 212px;
    padding: 25px 21px 20px;
    box-sizing: border-box;
    border-radius: 1px;
    display: flex;
    flex-direction: column;
}

.jpcontactx-card-light {
    background: #ffffff;
    border: 1px solid #dedbd6;
}

.jpcontactx-card-dark {
    background: #0c1b2b;
    border: 1px solid #0c1b2b;
}


/* =========================
   LABEL
   ========================= */

.jpcontactx-label {
color: #294f75;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 1.45px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.jpcontactx-label-orange {
color: #79c7ff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.jpcontactx-label-orange span {
    width: 21px;
    height: 2px;
    background: #79c7ff;
    display: inline-block;
    flex: 0 0 21px;
}


/* =========================
   TITLE
   ========================= */

.jpcontactx-title {
margin: 0 0 7px;
  color: #071b35;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.jpcontactx-title-company {
    font-size: 17px;
}

.jpcontactx-title-white {
    color: #ffffff;
    margin-bottom: 8px;
}


/* =========================
   INFORMATION
   ========================= */

.jpcontactx-info {
    color: #294f75;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10.5px;
    line-height: 1.7;
}

.jpcontactx-info p {
margin: 0;
  max-width: 240px;
  color: #46617d;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}


/* =========================
   CONTACT LINKS
   ========================= */

.jpcontactx-contact {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.jpcontactx-contact a {
color: #294f75;
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  border-bottom: 1px solid #294f75;
  transition: color 0.2s ease, border-color 0.2s ease;
  word-break: break-word
}

.jpcontactx-contact a:hover {
    color: #1e699e;
    border-color: #1e699e;
}


/* =========================
   ESCALATION LINKS
   ========================= */

.jpcontactx-escalation {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.jpcontactx-escalation a {
color: #ffffff;
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  display: grid;
  grid-template-columns: 13px 1fr;
  column-gap: 3px;
  transition: color 0.2s ease;
}

.jpcontactx-escalation a b {
    font-weight: 400;
}

.jpcontactx-escalation a span {
    text-decoration: none;
}

.jpcontactx-escalation a:hover {
    color: #79c7ff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .jpcontactx-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 650px;
    }

    .jpcontactx-card:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .jpcontactx-section {
        padding: 20px 15px 50px;
    }

    .jpcontactx-container {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 420px;
    }

    .jpcontactx-card {
        min-height: auto;
        padding: 23px 20px;
    }

    .jpcontactx-card:last-child {
        grid-column: auto;
    }

    .jpcontactx-title {
        font-size: 18px;
    }

    .jpcontactx-info,
    .jpcontactx-contact a,
    .jpcontactx-escalation a {
        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .jpcontactx-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .jpcontactx-card {
        padding: 20px 17px;
    }

}







/* Main Section */
.invct-section {
width: 100%;
  padding: 75px 20px;
  background: #f7f5f0;
  box-sizing: border-box;
  border-top: 1px solid rgb(230, 230, 230);
}

.invct-section *,
.invct-section *::before,
.invct-section *::after {
    box-sizing: border-box;
}


/* Main Container */
.invct-wrapper {
    width: min(100% - 80px, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 38px;
    align-items: start;
}


/* ==========================================
   FORM
========================================== */

.invct-form-area {
    width: 100%;
}

.invct-form {
    width: 100%;
}

.invct-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.invct-field {
    width: 100%;
}

.invct-full {
    margin-top: 16px;
}

.invct-field label {
display: block;
  margin-bottom: 6px;
  color: #071b35;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
}

.invct-field input,
.invct-field select,
.invct-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #d9d8d1;
    border-radius: 0;
    outline: none;
    background: #ffffff;
    color: #252522;
    font-size: 15px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.invct-field input,
.invct-field select {
    height: 50px;
    padding: 0 11px;
}

.invct-field textarea {
    min-height: 105px;
    padding: 10px 11px;
    resize: vertical;
}

.invct-field input:focus,
.invct-field select:focus,
.invct-field textarea:focus {
    border-color: #77766f;
    box-shadow: 0 0 0 2px rgba(80, 80, 70, 0.07);
}


/* Select */
.invct-field select {
    appearance: auto;
    cursor: pointer;
}


/* File Upload */
.invct-file {
    height: auto !important;
    padding: 8px 10px !important;
    background: #fff !important;
    cursor: pointer;
    font-size: 11px !important;
}


/* Consent */
.invct-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
}

.invct-consent input {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    margin: 1px 0 0;
    accent-color: #222;
    cursor: pointer;
}

.invct-consent label {
margin: 0;
  color: #55554f;
  font-size: 13px;
  line-height: 1.5;
}

.invct-consent a {
    color: #222;
    text-decoration: underline;
}


/* Submit */
.invct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 125px;
    height: 38px;
    margin-top: 17px;
    padding: 0 15px;
    border: 0;
    border-radius: 0;
    background: #191919;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.invct-submit:hover {
    background: #383833;
}

.invct-submit:active {
    transform: translateY(1px);
}

.invct-arrow {
    font-size: 15px;
    line-height: 1;
}


/* Response Text */
.invct-response {
display: inline-block;
  margin: 0 0 0 12px;
  color: #8b8a82;
  font-size: 13px;
}


/* ==========================================
   SIDEBAR
========================================== */

.invct-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.invct-card {
    width: 100%;
    padding: 16px 17px;
    border: 1px solid #deddd6;
    background: rgba(255, 255, 255, 0.5);
}

.invct-card h3 {
margin: 0 0 9px;
  color: #071b35;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.invct-card p {
margin: 0;
  max-width: 300px;
  color: #42545e;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.invct-card a {
    color: #272723;
    text-decoration: underline;
}

.invct-contact-line {
    margin-top: 7px !important;
}

.invct-map-link {
    display: inline-block;
    margin-top: 1px;
    font-size: 9px !important;
    font-weight: 600;
}


/* Units */
.invct-unit-list,
.invct-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.invct-unit-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 25px;
    border-bottom: 1px solid #e7e6df;
    font-family: Arial, sans-serif;
    font-size: 8px;
}

.invct-unit-list li:last-child {
    border-bottom: 0;
}

.invct-unit-list span {
    width: 40px;
    color: #77766e;
}

.invct-unit-list strong {
font-weight: 400;
  color: #071b35;
  font-size: 15px;
}

.invct-unit-list b {
padding: 3px 5px;
  color: #42545e;
  font-size: 15px;
  font-weight: 400;
}


/* Direct Links */
.invct-links li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid #e7e6df;
}

.invct-links li:last-child {
    border-bottom: 0;
}

.invct-links span {
text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  line-height: 1.55;
  padding: 3px 5px;
  color: #42545e;
  font-size: 15px;
  font-weight: 400;
}

.invct-links a {
padding: 3px 6px;
  background: #1e699e;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .invct-wrapper {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 25px;
    }

    .invct-section {
        padding: 40px 18px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .invct-section {
        padding: 30px 15px;
    }

    .invct-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .invct-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .invct-full {
        margin-top: 14px;
    }

    .invct-field input,
    .invct-field select {
        height: 42px;
    }

    .invct-field textarea {
        min-height: 130px;
    }

    .invct-submit {
        width: 100%;
    }

    .invct-response {
        display: block;
        margin: 9px 0 0;
    }

    .invct-sidebar {
        gap: 10px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .invct-section {
        padding: 25px 12px;
    }

    .invct-card {
        padding: 14px;
    }

    .invct-consent label {
        font-size: 8px;
    }

}





/* ==========================================
   INVESTOR CONTACT - RESPONSIVE CSS
   HTML CODE CHANGE NOT REQUIRED
========================================== */

.invct-section {
    width: 100%;
    box-sizing: border-box;
}

.invct-wrapper {
width: min(100% - 80px, 1120px);
  margin: 0 auto;
  padding: 10px 0px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 50px;
  box-sizing: border-box;
}

.invct-form-area,
.invct-sidebar,
.invct-form,
.invct-field {
    width: 100%;
    box-sizing: border-box;
}

.invct-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.invct-full {
    margin-top: 24px;
}

.invct-field label {
    display: block;
    margin-bottom: 8px;
}

.invct-field input,
.invct-field select,
.invct-field textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.invct-field textarea {
    resize: vertical;
    min-height: 130px;
}

.invct-file {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.invct-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
}

.invct-consent input {
    flex: 0 0 auto;
    margin-top: 4px;
}

.invct-consent label {
    line-height: 1.5;
}

.invct-submit {
    box-sizing: border-box;
    margin-top: 24px;
}

.invct-sidebar {
    min-width: 0;
}

.invct-card {
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}

.invct-unit-list,
.invct-links {
    padding-left: 0px;
}

.invct-unit-list li,
.invct-links li {
    overflow-wrap: anywhere;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .invct-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }

    .invct-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .invct-card {
        margin: 0;
    }

    .invct-card:last-child {
        grid-column: 1 / -1;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .invct-wrapper {
        display: block;
        padding: 35px 15px;
    }

    .invct-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .invct-full {
        margin-top: 20px;
    }

    .invct-sidebar {
        display: block;
        margin-top: 35px;
    }

    .invct-card {
        margin-bottom: 20px;
    }

    .invct-field input,
    .invct-field select,
    .invct-field textarea {
        font-size: 16px;
    }

    .invct-consent {
        gap: 8px;
        font-size: 14px;
    }

    .invct-submit {
        min-height: 50px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .invct-wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
	
	.invct-wrapper {
  width: min(100% - 30px, 1120px);
}

    .invct-form-grid {
        gap: 16px;
    }

    .invct-card {
        padding: 18px;
    }

    .invct-consent {
        font-size: 13px;
    }
}










/* Active navigation button */
.mfg-page-tab.active {
    background: #0b2a52;
    color: #fff;
    border-color: #0b2a52;
}









/* =========================================================
   CSR POLICY - ISOLATED STYLES
   All classes are uniquely prefixed with jp-csr-policy
   ========================================================= */

.jp-csr-policy-wrap {
    width: 100%;
    box-sizing: border-box;
    background: #f7f6f2;
    padding: 20px 5.1% 45px;
    color: #12355b;
    font-family: Arial, Helvetica, sans-serif;
}

.jp-csr-policy-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 272px;
    gap: 70px;
    align-items: start;
}

/* LEFT CONTENT */

.jp-csr-policy-main {
    min-width: 0;
}

.jp-csr-policy-heading {
    margin: 0 0 22px;
    color: #092f55;
    font-size: clamp(32px, 3.05vw, 42px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.jp-csr-policy-text {
    max-width: 720px;
    margin: 0;
    color: #244c72;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
}

.jp-csr-policy-block {
    margin-top: 26px;
}

.jp-csr-policy-subheading {
    margin: 0 0 13px;
    color: #092f55;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.jp-csr-policy-last-block {
    margin-top: 28px;
}

/* PDF LINK */

.jp-csr-policy-pdf {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
    color: #173e65;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.jp-csr-policy-pdf:hover {
    text-decoration: underline;
}

.jp-csr-policy-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 4px 9px;
    box-sizing: border-box;
    background: #f9d9c9;
    color: #c45d2f;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .7px;
    font-weight: 700;
}


/* =========================================================
   RIGHT CSR SPEND BOX
   ========================================================= */

.jp-csr-policy-side {
    width: 100%;
    min-width: 0;
    padding-top: 270px;
}

.jp-csr-spend-box {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 18px 17px;
    background: #f7f6f2;
    border: 1px solid #dedbd4;
}

.jp-csr-spend-title {
    margin: 0 0 17px;
    color: #123d66;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-weight: 700;
}


/* TABLE */

.jp-csr-table-scroll {
    width: 100%;
    overflow-x: auto;
    scrollbar-color: #c5c6c4 transparent;
    scrollbar-width: auto;
}

.jp-csr-table-scroll::-webkit-scrollbar {
    height: 14px;
}

.jp-csr-table-scroll::-webkit-scrollbar-track {
    background: #efefed;
}

.jp-csr-table-scroll::-webkit-scrollbar-thumb {
    background: #c7c8c6;
}

.jp-csr-spend-table {
    width: 100%;
    min-width: 230px;
    border-collapse: collapse;
    border: 1px solid #dedbd4;
    table-layout: fixed;
}

.jp-csr-spend-table th {
    padding: 10px 9px;
    border-bottom: 1px solid #dedbd4;
    color: #20496e;
    background: #fbfaf7;
    text-align: left;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.jp-csr-spend-table td {
    height: 58px;
    padding: 7px 9px;
    border-bottom: 1px solid #dedbd4;
    color: #173e65;
    font-size: 10px;
    vertical-align: middle;
}

.jp-csr-spend-table tr:last-child td {
    border-bottom: 0;
}

.jp-csr-spend-table th:nth-child(1),
.jp-csr-spend-table td:nth-child(1) {
    width: 25%;
}

.jp-csr-spend-table th:nth-child(2),
.jp-csr-spend-table td:nth-child(2) {
    width: 38%;
}

.jp-csr-spend-table th:nth-child(3),
.jp-csr-spend-table td:nth-child(3) {
    width: 37%;
}

.jp-csr-table-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 32px;
    padding: 4px 7px;
    box-sizing: border-box;
    background: #f9d9c9;
    color: #c45d2f;
    font-size: 7px;
    line-height: 1.15;
    letter-spacing: .8px;
    font-weight: 700;
    text-align: center;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .jp-csr-policy-wrap {
        padding-left: 5%;
        padding-right: 5%;
    }

    .jp-csr-policy-inner {
        max-width: 1450px;
        grid-template-columns: minmax(0, 1fr) 272px;
        gap: 90px;
    }

    .jp-csr-policy-text {
        max-width: 760px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .jp-csr-policy-wrap {
        padding: 35px 5% 50px;
    }

    .jp-csr-policy-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jp-csr-policy-side {
        max-width: 420px;
        padding-top: 0;
    }

    .jp-csr-policy-text {
        max-width: 100%;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .jp-csr-policy-wrap {
        padding: 30px 20px 40px;
    }

    .jp-csr-policy-inner {
        display: block;
    }

    .jp-csr-policy-heading {
        margin-bottom: 18px;
        font-size: 30px;
        letter-spacing: -.5px;
    }

    .jp-csr-policy-text {
        font-size: 13px;
        line-height: 1.65;
    }

    .jp-csr-policy-block {
        margin-top: 27px;
    }

    .jp-csr-policy-subheading {
        font-size: 17px;
        margin-bottom: 11px;
    }

    .jp-csr-policy-side {
        width: 100%;
        max-width: none;
        margin-top: 35px;
    }

    .jp-csr-spend-box {
        padding: 16px 14px;
    }

    .jp-csr-spend-table {
        min-width: 310px;
    }

    .jp-csr-policy-pdf {
        align-items: flex-start;
        line-height: 1.5;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .jp-csr-policy-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .jp-csr-policy-heading {
        font-size: 27px;
    }

    .jp-csr-policy-subheading {
        font-size: 16px;
    }

    .jp-csr-policy-text {
        font-size: 12.5px;
    }
}




/* ==========================================================
   JPF CSR POLICY
   Completely isolated class names
   ========================================================== */

.jpf-csr-policy-section {
    width: 100%;
    box-sizing: border-box;
    background: #f7f6f2;
    padding: 20px 5.1% 50px;
    color: #12385e;
    font-family: Arial, Helvetica, sans-serif;
}

.jpf-csr-policy-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 272px;
    column-gap: 70px;
    align-items: start;
}


/* ==========================================================
   LEFT CONTENT
   ========================================================== */

.jpf-csr-policy-content {
    min-width: 0;
}

.jpf-csr-policy-title {
    margin: 0 0 22px;

    color: #092f55;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.jpf-csr-policy-paragraph {
  padding: 0;
  margin: 19px 0 0;
  color: #656564;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  text-align: justify
}

.jpf-csr-policy-item {
    margin-top: 27px;
}

.jpf-csr-policy-heading {
    margin: 0 0 13px;

    color: #092f55;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.jpf-csr-policy-final {
    margin-top: 28px;
}


/* ==========================================================
   DOWNLOAD PDF
   ========================================================== */

.jpf-csr-policy-download {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 17px;

    color: #173e65;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
}

.jpf-csr-policy-download:hover {
    text-decoration: underline;
}

.jpf-csr-upload-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 22px;
    padding: 4px 9px;

    box-sizing: border-box;

    background: #f9d9c9;
    color: #c45d2f;

    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .7px;
    font-weight: 700;
}


/* ==========================================================
   RIGHT SIDEBAR
   ========================================================== */

.jpf-csr-policy-sidebar {
    width: 100%;
    min-width: 0;

    /*
       This creates the same vertical position
       as the screenshot.
    */
    padding-top: 0;
}


/* ==========================================================
   CSR COMMITTEE BOX
   ========================================================== */

.jpf-csr-committee-box {
    width: 100%;
    box-sizing: border-box;

    padding: 18px 19px 20px;

    background: #ffffff;

    border: 1px solid #dedbd4;
}

.jpf-csr-committee-title {
    margin: 0 0 17px;

    color: #123d66;

    font-size: 9px;
    line-height: 1.2;

    letter-spacing: 2px;
    font-weight: 700;
}

.jpf-csr-committee-date {
    margin-bottom: 17px;

    color: #5c7894;

    font-size: 10px;
    line-height: 1.3;
}


/* ==========================================================
   COMMITTEE MEMBERS
   ========================================================== */

.jpf-csr-member {
    display: grid;

    grid-template-columns: 62px minmax(0, 1fr);

    column-gap: 10px;

    margin-bottom: 15px;
}

.jpf-csr-member:last-child {
    margin-bottom: 0;
}

.jpf-csr-member-role {
    color: #456987;

    font-size: 9px;
    line-height: 1.45;

    font-weight: 400;
}

.jpf-csr-member-info {
    min-width: 0;
}

.jpf-csr-member-info strong {
    display: block;

    margin: 0 0 3px;

    color: #173e65;

    font-size: 10px;
    line-height: 1.4;

    font-weight: 400;
}

.jpf-csr-member-info span {
    display: block;

    color: #456987;

    font-size: 9px;
    line-height: 1.35;

    font-weight: 400;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 991px) {

    .jpf-csr-policy-section {
        padding: 35px 5% 50px;
    }

    .jpf-csr-policy-container {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .jpf-csr-policy-paragraph {
        max-width: 100%;
    }

    .jpf-csr-policy-sidebar {
        max-width: 420px;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .jpf-csr-policy-section {
        padding: 30px 20px 40px;
    }

    .jpf-csr-policy-container {
        display: block;
    }

    .jpf-csr-policy-title {
        margin-bottom: 18px;

        font-size: 30px;
        letter-spacing: -.5px;
    }

    .jpf-csr-policy-paragraph {
        font-size: 13px;
        line-height: 1.65;
    }

    .jpf-csr-policy-item {
        margin-top: 27px;
    }

    .jpf-csr-policy-heading {
        margin-bottom: 11px;

        font-size: 17px;
    }

    .jpf-csr-policy-sidebar {
        width: 100%;
        max-width: none;

        margin-top: 35px;
    }

    .jpf-csr-committee-box {
        padding: 17px 15px 19px;
    }

    .jpf-csr-member {
        grid-template-columns: 65px minmax(0, 1fr);
    }

    .jpf-csr-policy-download {
        align-items: flex-start;
        line-height: 1.5;
    }
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 380px) {

    .jpf-csr-policy-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .jpf-csr-policy-title {
        font-size: 27px;
    }

    .jpf-csr-policy-heading {
        font-size: 16px;
    }

    .jpf-csr-policy-paragraph {
        font-size: 16px;
    }

    .jpf-csr-member {
        grid-template-columns: 58px minmax(0, 1fr);
        column-gap: 7px;
    }
}




.jpf-csr-policy-list {
    margin: 15px 0 20px;
    padding-left: 22px;
}

.jpf-csr-policy-list li {
color: #656564;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  text-align: justify;
}

.jpf-csr-policy-list li::marker {
    color: #092f55;
    font-weight: 700;
}



/* CSR RIGHT BOX - MOVE BELOW CONTENT */
.jpf-csr-policy-container {
    display: block !important;
}

.jpf-csr-policy-content {
    width: 100% !important;
    max-width: 100% !important;
}

.jpf-csr-policy-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 40px 0 0 !important;
    display: block !important;
}

.jpf-csr-committee-box {
    width: 100% !important;
    max-width: 100% !important;
}




/* CSR COMMITTEE - TABLE STYLE */

.jpf-csr-committee-box {
    width: 100%;
    background: #fff;
}

.jpf-csr-committee-title {
    margin-bottom: 8px;
}

.jpf-csr-committee-date {
    margin-bottom: 20px;
}

/* Table header / rows */
.jpf-csr-member {
    display: grid;
    grid-template-columns: 25% 75%;
    width: 100%;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.jpf-csr-member-role,
.jpf-csr-member-info {
    padding: 15px 18px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.jpf-csr-member-role {
    background: #f5f5f5;
    font-weight: 600;
    color: #222;
}

.jpf-csr-member-info {
    color: #555;
}

.jpf-csr-member-info strong {
    display: block;
    color: #222;
    margin-bottom: 5px;
}

.jpf-csr-member-info span {
    display: block;
    font-size: 14px;
    color: #777;
}




.csr-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.csr-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    font-family: Arial, sans-serif;
    color: #002b5c;
    background: #fff;
}

.csr-table thead {
    background: #fff;
}

.csr-table th {
    padding: 16px 15px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #002b5c;
    border-bottom: 1px solid #002b5c;
}

.csr-table td {
    padding: 16px 15px;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.csr-table tbody tr:last-child td {
    border-bottom: 0;
}

.csr-table td strong {
    font-weight: 600;
    color: #002b5c;
}

/* Responsive */
@media (max-width: 767px) {

    .csr-table {
        border: 0;
    }

    .csr-table thead {
        display: none;
    }

    .csr-table,
    .csr-table tbody,
    .csr-table tr,
    .csr-table td {
        display: block;
        width: 100%;
    }

    .csr-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        background: #fff;
    }

    .csr-table td {
        position: relative;
        padding: 10px 15px 10px 42%;
        border-bottom: 1px solid #eee;
        min-height: 42px;
        box-sizing: border-box;
    }

    .csr-table td:last-child {
        border-bottom: 0;
    }

    .csr-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 10px;
        width: 35%;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        color: #002b5c;
    }
}


.jpf-promise-block.hdtdk h2 {
margin-bottom: 0px;
  font-family: "Rubik" !important;
  font-weight: revert-rule;
}


.jpf-promise-block.hdtdk {
  text-transform: initial;
  font-style: italic;
  font-family: "Rubik" !important;
  font-weight: normal;
  float: right;
}




.jpfl-board-hero.jpf-heat-treatment.heat {
  position: relative;
  background-image: linear-gradient( 90deg, rgba(5, 20, 34, 0.68) 0%, rgba(5, 20, 34, 0.48) 38%, rgba(5, 20, 34, 0.22) 70%, rgba(5, 20, 34, 0.15) 100% ), url("../images/heat-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.jpf-footer-copyright a {
  color: #d1dae3;
  font-size: 13px;
  line-height: 1.5;
}