@font-face {
  font-family: 'DesignKB';
  src: url('../../../fonts/DesignKB.ttf') format('truetype'),
       url('../../../fonts/DesignKB.woff') format('woff'),
       url('../../../fonts/DesignKB.woff2') format('woff2'),
       url('../../../fonts/DesignKB.eot') format('embedded-opentype');
  font-weight: bold;
}

@font-face {
  font-family: 'DesignKM';
  src: url('../../../fonts/DesignKM.ttf') format('truetype'),
       url('../../../fonts/DesignKM.woff') format('woff'),
       url('../../../fonts/DesignKM.woff2') format('woff2'),
       url('../../../fonts/DesignKM.eot') format('embedded-opentype');
  font-weight: normal;
}



.kia-nav {
  background: #fff;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.kia-nav .kiapbv-logo {
  margin-right: 2rem;
  flex-shrink: 0;
}

.kia-nav .kianav-container {
  flex-grow: 1; /* Allows the container to take remaining space */
  display: flex;
  justify-content: flex-end; /* Pushes links to the right */
  padding-right: 20px;
  padding-top: 5px;
}

.kia-nav .kia-nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.kia-nav ul li {
  margin: 0 1rem;
  flex-shrink: 0; /* Prevents li items from shrinking */
}

.kia-nav ul li a {
  color: #000;
  text-decoration: none;
  font-family: 'DesignKM', sans-serif;
  font-size: 1em;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px; /* Increased for better line spacing */
  transition: color 0.3s ease; /* Smooth color transition */
}

.kia-nav ul li a:hover {
  color: #000;
}

.kia-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50% !important;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease, left 0s ease 0.3s; /* Smooth width change with delayed left reset */
  transform: translateX(-50%); /* Centers the line initially */
}

.kia-nav ul li a:hover::after {
  width: 100%; /* Expands to full width on hover */
  left: 0; /* Shifts to start position after expansion */
  transition: width 0.3s ease, left 0s ease; /* Immediate left reset, smooth width */
}


.page .main-content #pbvRange.section img.section-image {
  height: 100% !important;
}



#pbvRange.section {
  position: relative; /* Container for absolute positioning */
  padding: 0rem !important;
  height: auto; /* Full viewport height for the hero section */
  min-height: 400px; /* Minimum height for smaller screens */
  overflow: hidden;
}

#pbvRange.section .section-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the area without distortion */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#pbvRange.section .text-overlay {
	position: absolute;
  top: 20%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  text-align: left;
  width: 100%;
  max-width: 1920px;
}

#pbvRange.section .text-overlay h3 {
  font-size: 2em;
  margin: 0.5rem 0;
  color: #fff;
  line-height: 1.2em;
}

#pbvRange.section .text-overlay h4 {
  font-size: 1.2em;
  margin: 0.5rem 0;
  color: #fff;
  line-height: 1.2em;
}

#pbvRange.section .text-overlay h3,
#pbvRange.section .text-overlay h4 {
  font-family: 'DesignKM', sans-serif;
  text-transform: unset;
}


#pbvheadline.section {
	padding-bottom: 0;
}

.section {
  padding: 2rem;
  text-align: center;
}

.section h1 {
  font-family: 'DesignKB', sans-serif;
  font-size: 2.5rem;
  text-transform: unset;
}

.section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 1rem auto;
}

.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: 'DesignKB', sans-serif;
  margin-bottom: 1rem;
}

.section-image {
  max-width: 100%;
  margin: 1rem 0;
}




#enqsub.at-enquire .enquire-details {
  border: 1px solid #444; 
   border-radius: 5px;
  text-align: center;
  background-color: #fff;
  width: 180px;
  font-size: 1em; 
  outline: medium none;
  padding: 12px 24px;
  cursor: pointer;
  font-family: 'DesignKM', sans-serif;
  color: #444;
  text-decoration: none;
  text-transform: unset;
  transition: all 0.3s ease; /* Smooth transition for any hover */
}  

#enqsub.at-enquire .enquire-details:hover {
  background: #000; /* On hover, black background with white text for contrast */
  color: #fff;
}
  
  
#pvsCargo a.button,
#pvsPassenger a.button,
#pbvheadline a.button,
#pbvCentres a.button {
  display: inline-block;
  padding: 12px 24px; /* Padding to match the rectangular shape and size */
  background: transparent; /* No background for transparent look */
  color: #444; /* Black text */
  text-decoration: none;
  font-family: 'DesignKM', sans-serif;
  text-transform: unset;
  border: 1px solid #444; /* Thin black border matching the image */
  border-radius: 5px; /* Rounded corners */
  font-size: 1em; /* Font size for "Enquire now" text */
  text-align: center; /* Center text within button */
  transition: all 0.3s ease; /* Smooth transition for any hover */
  letter-spacing: 0.5px; /* Slight letter spacing for modern look */
  text-shadow: none;
}

#pvsCargo .button:hover,
#pvsPassenger .button:hover,
#pbvheadline .button:hover,
#pbvCentres .button:hover {
  background: #000; /* On hover, black background with white text for contrast */
  color: #fff;
}


.step {
	padding-top:20px;
}


#warranty.section img.section-image {
	max-width: 190px;
}

#pbvCentres .image-pair-container .image-pair img.section-image  {
		max-width: 490px;
}




#pbvCentres.section {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
}

#pbvCentres.section .image-pair-container {
  display: flex;
  justify-content: center;
  gap: 2rem; /* Gap between images */
  margin-top: 1rem;
}

#pbvCentres.section .image-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 50%; /* Ensures images don't stretch too wide */
}

#pbvCentres.section .image-pair .section-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem; /* Space between image and address */
}

#pbvCentres.section .image-pair p {
  font-size: 1.1rem;
  margin: 0;
  max-width: 100%;
}


#pbvEnquire.section .enquiresection {
	max-width: 890px !important;
	margin-left: auto;
	margin-right: auto;
}

#pbvEnquire .enquiresection .enquiryzone input {
	max-width: 270px !important;
}

#pbvCentres .addresssec {
	text-align: left;
  width: 100%;
}

#pbvCentres .address {
	font-size: 1.1em !important;
}

#pbvCentres .address.bold {
	 font-family: 'DesignKB', sans-serif;
}



#pbvEnquire.section div.enquiryzone {

}

#gdpr-settings {
  text-align: center;
}



  #pbvEnquire #vacancy-application-email {
    clear: unset !important;
  }


#pbvEnquire .enquiresection .enquiryzone #vacancy-application-branch label {
	text-align: left;
	font-size: 1em;
}

#pbvEnquire .enquiresection .enquiryzone #vacancy-application-branch {
	padding: 1em;
}

#pbvEnquire .enquiresection #vacancy-application-email label {
  padding-right: 71px  !important;
}
  
  

@media (max-width: 768px) {
  #pbvCentres.section .image-pair-container {
    flex-direction: column; /* Stack images vertically on mobile */
    gap: 1.5rem; /* Reduced gap on mobile */
  }

  #pbvCentres.section .image-pair {
    max-width: 100%; /* Full width on mobile */
  }
 
}







@media only screen and (min-width: 150px) and (max-width: 480px) and (orientation: portrait) {
	#pbvRange.section .text-overlay {top: 30%; max-width: 410px;}
  .kia-nav .kiapbv-logo { margin-right: 0; flex-shrink: 0.3;}
  .kia-nav .kianav-container { padding-top: 0;}
  .kia-nav .kia-nav-links { flex-direction: column;}
}


/* Reveal the campaign-banner slider scroll arrows on hover
   (the model-slider skin hides them by default). */
.mod_rocksolid_slider.modelslider-skin .rsts-prev,
.mod_rocksolid_slider.modelslider-skin .rsts-next {
  display: block !important;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mod_rocksolid_slider.modelslider-skin:hover .rsts-prev,
.mod_rocksolid_slider.modelslider-skin:hover .rsts-next {
  opacity: 1;
}