* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

 body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
    }    

    .highlight{
      color: #f7560e;
      font-weight: bold;
    }

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --nav-background-color: #f8f8f8; /*13JUL25*/
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #556270; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #F7560E; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  /*#F7560E*/
  /*--nav-color: #556270; */ /* The default color of the main navmenu links */
  --nav-color: #F7560E;  /* The default color of the main navmenu links */
  --nav-hover-color: #F7560E; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000; /* Used for navigation links of the dropdown items in the navigation menu. */
  /*--nav-dropdown-hover-color: #d9232d; *//* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --nav-dropdown-hover-color: #F7560E;
}

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f4f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3b4654;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --contrast-color: #ffffff;
}

/*13JUL25*/
.footer-dark-background {
  /*--background-color: #e0120c;*/
  --background-color: #000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

 
   

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--nav-background-color); /*13JUL25*/
  /*padding: 15px 0; */ /* 24SEP25  */
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 55px; /*24SEP25*/
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu .custom-menu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    /*padding: 18px 15px;*/
    font-size: 15px; 
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 50px; /*24SEP25*/
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }


  /**30SEP25***/

  /**30SEP25**/
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

/**30sep25**/

  .custom-menu a i:hover,
  .custom-menu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }


  .custom-menu a:hover,
  .custom-menu .active,
  .custom-menu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .custom-menu .active i,
  .custom-menu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

/**30sep25*/

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }


  /**30SEP25**/
   
  /**30SEP25**/

  
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  padding: 20px;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  /*border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0; /*25SEP25*/
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }

  section{  
     padding:1.5rem 1.5rem 1.5rem 1.5rem !important /*30sep25*/ 
   }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px; /*25SEP25*/
  position: relative;
}
/*29SEP25*/
.content_title h2{
  font-size: 1.5rem;
  font-weight: 500px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.content_title p{
  font-size: 1rem; 
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  /*min-height: calc(100vh - 90px); */ /*29sep25*/
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 1200px) {
  .hero .carousel {
    /*min-height: calc(100vh - 66px); */ /*29sep25*/
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 50%); */ /* 9SEPT25 */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.carousel-item img {
      object-fit: contain;
      width: 100%;
      height: 100%;
} /* 9SEPT25  */

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}



.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}
 
/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.product .product-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.product .product-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.product .product-filters li:hover,
.product .product-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.product .product-filters li:first-child {
  margin-left: 0;
}

.product .product-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .product .product-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.product .product-item {
  /*position: relative;
  overflow: hidden; */
}

.product .product-item .product-info {
  /*opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px; */

  min-height: 80px;
}

.product .product-item .product-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding: 5px;
  text-align: center;
}

.product .product-item .product-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.product .product-item .product-info .preview-link,
.product .product-item .product-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
} 


.preview-caption{
  /*position: absolute;
  left: 30px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;*/
} 

.product .product-item .product-info .preview-link:hover,
.product .product-item .product-info .details-link:hover {
  color: var(--accent-color);
}

.product .product-item .product-info .details-link {
  right: 14px;
  font-size: 28px;
}

.product .product-item:hover .product-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-img {
  position: relative;
  /*margin: 60px 0 0 60px;*/ /*29SEP25*/
  margin: 60px auto;
  width: 85%; /*29SEP25*/ 
    object-fit: contain; 
    aspect-ratio: 1/1;
}

.about-2 .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-2 .about-img img {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 575px) {
  .about-2 .about-img {
    margin: 30px 0 0 30px;
  }

  .about-2 .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about-2 h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-2 h3 {
    font-size: 28px;
  }
}

.about-2 .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}

.about-2 .nav-pills li+li {
  margin-left: 40px;
}

.about-2 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  text-align: center;
}

.about-2 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color); 
  text-align: center;
}

@media (max-width: 575px) {
  .about-2 .nav-link {
    font-size: 16px;
  }
}

.about-2 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.about-2 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
} 

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-details-slider img {
  width: 100%;
}

.product-details .product-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.product-details .product-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.product-details .product-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.product-details .product-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.product-details .product-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.product-details .product-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.product-details .product-info ul li+li {
  margin-top: 10px;
}

.product-details .product-description {
  padding-top: 30px;
}

.product-details .product-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-details .product-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
 

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
 

/*HOME*/
.uniform-img {
    width: 100%;
    /*height: 200px;*/ /*25SEP25*/
    object-fit: contain;
    border: 1px solid #e5e5e5;
    aspect-ratio: 1/1;
  }



/*--------------------------------------------------------------
# KODAK Section
--------------------------------------------------------------*/
.kodak .kodak-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}


.kodak .kodak-item {
  position: relative;
  overflow: hidden;
}

.kodak .kodak-item .kodak-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, #e0120c, transparent 10%); 
  padding: 15px;
}

.kodak .kodak-item .kodak-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  color: #fff;
}
  

.kodak .kodak-item:hover .kodak-info {
  opacity: 1;
  bottom: 0;
}  




/*--------------------------------------------------------------
# MEGA FRAME Section
--------------------------------------------------------------*/
.mega_frame .mega_frame-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}


.mega_frame .mega_frame-item {
  position: relative;
  overflow: hidden;
}

.mega_frame .mega_frame-item .mega_frame-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, #e0120c, transparent 10%);

  padding: 15px;
}

.mega_frame .mega_frame-item .mega_frame-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  color: #fff;
}
  

.mega_frame .mega_frame-item:hover .mega_frame-info {
  opacity: 1;
  bottom: 0;
}  




/*24SEP25*/






/** 24SEP25 START****/
  
  .herobanner{
        --bs-gutter-x: 0;  
      --bs-gutter-y: 0;   /*24SEP25*/
    }

    

/*LOGO AND NAVIGATION MENU FOR 2k, 4k, desktop screen*/
/* Desktop   */
@media (min-width: 992px) and (max-width: 2559.98px) {
      .header .logo img{
        max-height: 100px;
        border: 0px solid #ffff00;
      }
      
       

      .navmenu a,
      .navmenu a:focus { 
        padding: 18px 15px;
        font-size: 1.5rem; 
      }



      /**30sep25**/
  
 .custom-menu a,
      .custom-menu a:focus { 
        padding: 18px 15px;
        font-size: 1.5rem; 
      }
      /**30sep25**/
 
     /*section{ padding:3rem 7rem !important }*/
     section{ padding:1.5rem 3rem !important } /*30sep25*/


     /***/
 
          .navmenu a i,
          .navmenu a:focus i {
            font-size: 1rem; 
          }


        .navmenu .dropdown ul a { 
            font-size: 1.5rem; 
          }

          .navmenu .dropdown ul a i {
            font-size: 1rem;
          }


          /*****30sep25***/
            

           .custom-menu a i,
          .custom-menu a:focus i {
            font-size: 1rem; 
          }


        .custom-menu .dropdown ul a { 
            font-size: 1.5rem; 
          }

          .custom-menu .dropdown ul a i {
            font-size: 1rem;
          }
          /*******30sep25**********/


        .footer { 
          font-size: 1.5rem; 
        }


        .footer .footer-about .logo span {
          font-size: 1.5rem; 
        }

        .footer .footer-about p {
          font-size: 1.5rem; 
        }



        .footer .social-links a { 
          font-size: 1.5rem; 
        }


        .footer h4 {
          font-size: 1.5rem; 
        }




        .footer .footer-links ul i { 
          font-size: 1rem; 
        }


         


        .scroll-top i {
          font-size: 3rem;  
        }



        .page-title h1 {
          font-size: 3rem; 
        }


        .page-title .breadcrumbs ol { 
          font-size: 1.5rem; 
        }



        .section-title h2 {
          font-size: 2rem; 
        }

        /*29SEP25*/
        .content_title h2{
          font-size: 2.5rem;  
        }

        .content_title p, .product .product-filters li, .preview-caption{
          font-size: 1.5rem;  
        }


        .section-title p { 
          font-size: 3rem; 
        }

        .content p { 
          font-size: 1.5rem; 
        } 



          .kodak .kodak-item .kodak-info h4 {
            font-size: 2.5rem; 
          }


          .mega_frame .mega_frame-item .mega_frame-info h4 {
            font-size: 2.5rem; 
          }



           /*.about_content{padding: 0rem 0rem} */ /*30sep25*/

            .about-2 h3 { 
              font-size: 3.5rem; 
            }

 

             .about-2 .nav-link { 
              font-size: 1.1rem; 
               margin: 0 0.1rem 0 0;
            }


            .about-2 .tab-content h4 {
              font-size: 1.5rem; 
            }

             .about-2 .tab-content p, .tab-nav button {
              font-size: 1.5rem; 
            }

            .about-2 .tab-content ul li {
              font-size: 1.2rem; 
            }

            .about-2 .tab-content i {
              font-size: 1.5rem; 
            } 


         
}

/* 2K (2560 x 1440) */
@media (min-width: 2560px) and (max-width: 3839.98px) {
      .header .logo img{
        max-height: 150px;
        border: 0px solid #ff00ff;
      }
  
      .navmenu a, .navmenu a:focus { 
        padding: 18px 15px; 
        font-size: 2.5rem; 
      }


/***30sep25*********/
  /*.custom-menu a, .custom-menu a:focus { 
        padding: 18px 15px; 
        font-size: 2.5rem; 
      }*/

/***30sep25*******/

      section{ padding:3rem 7rem !important }


       /***/
 
          .navmenu a i,
          .navmenu a:focus i {
            font-size: 2rem; 
          }


        .navmenu .dropdown ul a { 
            font-size: 2.5rem; 
          }

          .navmenu .dropdown ul a i {
            font-size: 2rem;
          }


          /*****30sep25*************/
  .custom-menu a i,
          .custom-menu a:focus i {
            font-size: 2rem; 
          }


        .custom-menu .dropdown ul a { 
            font-size: 2.5rem; 
          }

          .custom-menu .dropdown ul a i {
            font-size: 2rem;
          }
           
          /*****30sep25*************/


        .footer { 
          font-size: 2.5rem; 
        }


        .footer .footer-about .logo span {
          font-size: 2.5rem; 
        }

        .footer .footer-about p {
          font-size: 2.5rem; 
        }



        .footer .social-links a { 
          font-size: 2.5rem; 
        }


        .footer h4 {
          font-size: 2.5rem; 
        }




        .footer .footer-links ul i { 
          font-size: 2rem; 
        }


         
        .scroll-top{padding: 4rem}

        .scroll-top i {
          font-size: 5rem;  
        }



        .page-title h1 {
          font-size: 4rem; 
        }


        .page-title .breadcrumbs ol { 
          font-size: 2.5rem; 
        }



        .section-title h2 {
          font-size: 3.5rem; 
          padding-top: 5rem;
        }


        /*29SEP25*/
        .content_title h2{
          font-size: 4rem;  
        }

        .content_title p, .product .product-filters li, .preview-caption{
          font-size: 2.5rem;  
        }



        .section-title p { 
          font-size: 5rem; 
        }

        .content p { 
          font-size: 3rem; 
        } 



          .kodak .kodak-item .kodak-info h4 {
            font-size: 3.5rem; 
             padding: 2rem;
          }


          .mega_frame .mega_frame-item .mega_frame-info h4 {
            font-size: 3.5rem; 
            padding: 2rem;
          }

          .read-more i {
            font-size: 3rem !important;
          }

          .read-more {
            margin-top: 5rem;
            font-size: 3.5rem !important;
          }




            /*.about_content{padding: 3rem 2.5rem} */ /*30sep25*/

            .about-2 h3 { 
              font-size: 4.5rem; 
            }


            .about-2 .nav-link { 
              font-size: 2.5rem; 
               margin: 0 2rem 0 0;
            }


            .about-2 .tab-content h4 { 
              font-size: 2.5rem; 
            }

             .about-2 .tab-content p, .tab-nav button {
              font-size: 2.2rem;  padding-top: 2rem;
            }

            .about-2 .tab-content ul li {
              font-size: 2.2rem; 
            }

            .about-2 .tab-content i {
              font-size: 2.5rem; 
            } 
}

/* 4K (2840x2160) */
@media (min-width: 3840px) {
      .header .logo img{
        max-height: 180px;
        border: 0px solid #ff0000; 
      }
  
      .navmenu a, .navmenu a:focus { 
        padding: 20px 50px;  
        font-size: 3.2rem; 
      }


/*****30sep25***********/ 

   /*.custom-menu a, .custom-menu a:focus { 
        padding: 20px 50px;  
        font-size: 3.2rem; 
      }
      */
/*****30sep25***********/

      section{ padding:3rem 7rem !important }



       /***/
 
          .navmenu a i,
          .navmenu a:focus i {
            font-size: 3rem; 
          }


        .navmenu .dropdown ul a { 
            font-size: 3.5rem; 
          }

          .navmenu .dropdown ul a i {
            font-size: 3rem;
          }


          /******30sep25***************/
            .custom-menu a i,
          .custom-menu a:focus i {
            font-size: 3rem; 
          }


        .custom-menu .dropdown ul a { 
            font-size: 3.5rem; 
          }

          .custom-menu .dropdown ul a i {
            font-size: 3rem;
          }

          /******30sep25***********/


        .footer { 
          font-size: 3.5rem; 
        }


        .footer .footer-about .logo span {
          font-size: 3.5rem; 
        }

        .footer .footer-about p {
          font-size: 3.5rem; 
        }



        .footer .social-links a { 
          font-size: 3.5rem; 
        }


        .footer h4 {
          font-size: 3rem; 
        }




        .footer .footer-links ul i { 
          font-size: 3rem; 
        }


          .scroll-top{padding: 4rem}

        .scroll-top i {
          font-size: 6rem;  
        }


       


        .page-title h1 {
          font-size: 5rem; 
        }


        .page-title .breadcrumbs ol { 
          font-size: 3.5rem; 
        }



        .section-title h2 {
          font-size: 4.5rem; 
          padding-top: 200px;
        }



        /*29SEP25*/
        .content_title h2{
          font-size: 5.5rem;  
        }

        .content_title p, .product .product-filters li, .preview-caption{
          font-size: 3rem;  
        }


        .section-title p { 
          font-size: 6rem; 
        }

        .content p { 
          font-size: 4rem; 
        } 



          .kodak .kodak-item .kodak-info h4 {
            font-size: 5rem; 
            padding: 3rem;
          }


          .mega_frame .mega_frame-item .mega_frame-info h4 {
            font-size: 5rem; 
            padding: 3rem;
          }

          .read-more i {
            font-size: 4rem !important;
          }

          .read-more {
            margin-top: 100px;
            font-size: 4.5rem !important;
          }


          /*.about_content{padding: 3rem 2.5rem} */ /*30sep25*/

            .about-2 h3 { 
              font-size: 5.5rem; 
            }

 
            .about-2 .nav-link { 
              font-size: 4rem; 
               margin: 0 2rem 0 0;
            }


            .about-2 .tab-content h4 {
              font-size: 3.5rem; 
            }

             .about-2 .tab-content p, .tab-nav button {
              font-size: 3.2rem; 
            }

            .about-2 .tab-content ul li {
              font-size: 3.2rem; 
            }

            .about-2 .tab-content i {
              font-size: 3.5rem; 
            } 
}

.carousel-indicators {
  list-style: none;
}

  
/**24SEP25 END****/


/**30sep25**/

 .custom-menu .active{
     color: var(--nav-dropdown-hover-color);
  }

   .custom-menu a:hover{
     color: var(--nav-dropdown-hover-color);
  }

 
  
   * {
    /*margin: 0;
    padding: 0;
    box-sizing: border-box;*/
  }

 
 
  .custom-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 12px 16px;*/
    padding: 10px; /*10OCT25*/
  }
 


  

/*adjust logo for mobile tablet, desktop, 2k, 4k start */ /*10oct25*/ 
/* Mobile Portrait */ 

@media (max-width: 740px) and (orientation: landscape){
        .custom-logo img {
          max-height: 55px; 
           margin: 10px;
        }

         .custom-header-container {
            padding: 10px; 
         } 
} 


@media (max-width: 932px) and (orientation: portrait){
        .custom-logo img {
          max-height: 55px; 
          margin: 10px;
        }

         .custom-header-container {
            padding: 10px; 
         } 
} 

/* Tablet (≥ 768px) */
@media (min-width: 768px) {
      .custom-logo img {
          max-width: 150px;
          margin: 10px;
      }
      
      .custom-header-container {
            padding: 10px; 
         } 
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .custom-logo {padding: 0; margin: 0}
      .custom-logo img {
        /*max-width: 230px; */
        max-height: 100px; 
        padding: 0px;
        margin: 10px;
      }

      .custom-header-container {
          padding: 0;
          margin: 0;
      } 
}

/* Large Desktop / 2K (≥ 1440px) */
@media (min-width: 1440px) {
      .custom-logo img {
        max-width: 400px; 
         /*max-height: 150px; */
          border: 0px solid #0000ff;
        padding: 0px;
        margin: 10px;
      }
      .custom-header-container {
          padding: 0;
          margin: 0;
      } 
}

/* 4K Screens (≥ 2560px) */
@media (min-width: 2560px) {
      .custom-logo img {
        max-width: 800px; 
         /*max-height: 300px; */
         border: 0px solid #ff0000;
        padding: 0px;
        margin: 10px;
      }
           .custom-header-container {
              padding: 0;
              margin: 0;
          } 
}
/*adjust logo for mobile tablet, desktop, 2k, 4k end */ /*10oct25*/ 



  .custom-toggler {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
  }
 
  .custom-navbar {
    position: relative;
  }

  .custom-menu {
    list-style: none;
    display: flex;
    gap: 0px;
    justify-content: flex-end; /*30OCT25*/
  } 

 
  .custom-menu li {
    position: relative;
    list-style-type: none;
  }

  .custom-menu a {
    text-decoration: none;
    color: #333;
    /*padding: 10px 12px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  /* Add chevron */
  .dropdown-toggle::after {
    /*content: "▼";*/
    font-size: 0.7rem;
    margin-left: 6px;
  }

  /* Dropdowns (Desktop) */
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    /*min-width: 180px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    z-index: 1000;
  }

  .has-dropdown:hover > .dropdown {
    display: flex;
  }

  .dropdown .has-dropdown:hover > .dropdown {
    left: 100%;
    top: 0;
  }

 

  /* MOBILE STYLES */
  @media (max-width: 932px) {

 
    .custom-toggler {
      display: block;
    }

    .custom-navbar {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #fff;
      z-index: 1000;
    }

    .custom-menu {
      display: none;
      flex-direction: column;
      width: 100%;
      padding: 0;
      border-top: 1px solid #ddd;
    }

    .custom-menu.show {
      display: flex;
    }

    .custom-menu li {
      width: 100%;
      border-bottom: 1px solid #eee;
    }

    .custom-menu a {
      padding: 12px 16px;
      width: 100%;
      color: #333;
    }

    .dropdown {
      display: none;
      position: relative;
      background: #f9f9f9;
      box-shadow: none;
      flex-direction: column;
      padding-left: 16px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .has-dropdown.open > .dropdown {
      display: flex;
      max-height: 1000px; /* large enough for any submenu */
    }

    .dropdown .has-dropdown.open > .dropdown {
      background-color: #f1f1f1;
      padding-left: 16px;
    }
  }

.bread_nav{
   display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px; 
}


.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

.about_content{padding: 0 20px}
/**30sep25*/



/*31OCT25*/

.img-hover-fade {
    transition: opacity 0.3s ease;
  }

  .img-hover-fade:hover,
  .img-hover-fade:active { /* works on touch devices too */
    opacity: 0.7;
  }



       .label-block {
        background-color: #6c757d;
        color: white;
        padding: 0.5rem 1rem;
        width: 100%;
        border-radius: 1rem;
        margin-top: 0.5rem;
        font-size: 14px; /* default for mobile */
      }

      .product_category_text{ 
          font-size: 1.8rem;  
        }

        .prod_caption{
           font-size: 1.5rem; 
        }



  @media (min-width: 576px) { /* sm */
      .label-block {
        font-size: 16px;
      }

      .product_category_text{ 
          font-size: 2.5rem;  

        }

        .prod_caption{
           font-size: 2rem; 
        }
  }

  @media (min-width: 768px) { /* md */
        .label-block {
          font-size: 18px;
        }

        .product_category_text{ 
              font-size: 3.5rem;   
            }

            .prod_caption{
               font-size: 3rem; 
            }
  }

  @media (min-width: 1200px) { /* xl */
            .label-block {
              font-size: 20px;
            }

            .product_category_text{ 
                  font-size: 4.5rem;  
                }

                .prod_caption{
                   font-size: 4rem; 
                }
  }


  .fullwidth{width: 100%}



  /*****/

  /* ===============================================
   RESPONSIVE CAPTION TEXT STYLES
   - Covers Mobile to 8K
   - Portrait & Landscape Modes
   =============================================== */

.product_caption {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  color: #525252;
  margin: 0.5em auto;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-size: 1.5rem; /* default base */
}

.caption_header { 
          font-size: 3rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

      .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:4rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:20px
    }

       .content_text { 
        font-size: 1.5rem;
        line-height: 2; 
      }

        .custom-logo img{ max-height:50px; padding: 0px; margin: 0px}

/* ========== MOBILE (up to 480px) ========== */
@media screen and (max-width: 480px) and (orientation: portrait) {
       .custom-logo img{ max-height:50px; padding: 0px; margin: 0px}
     .content_text { 
        font-size: 1.5rem;
        line-height: 2; 
      }
  .caption_header { 
          font-size: 2.5rem;
          line-height: 1.5;
          font-weight: 500;
          /*letter-spacing: 0.04em;*/
      }

  .product_caption {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
  }

  .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:4rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:20px
    }
}

@media screen and (max-width: 480px) and (orientation: landscape) {
      .custom-logo img{ max-height:50px; padding: 0px; margin: 0px}
     .content_text { 
        font-size: 1.5rem;
        line-height: 2; 
      }
  .caption_header { 
          font-size: 3rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

  .product_caption {
    /*font-size: 0.8rem;*/
    font-size: 1.5rem;
    line-height: 1.25;
  }

 .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:4rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:20px
    }
}

/* ========== SMALL TABLET (481px–767px) ========== */
@media screen and (min-width: 481px) and (max-width: 767px) and (orientation: portrait) {
     .custom-logo img{ max-height:60px; padding: 0px; margin: 0px}

     .content_text { 
        font-size: 1rem;
        line-height: 1; 
      }
  .caption_header { 
          font-size: 3rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

  .product_caption {
    font-size: 1.5rem;
    line-height: 1.4;
  }

 .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:4rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:20px
    }
}

@media screen and (min-width: 481px) and (max-width: 767px) and (orientation: landscape) {
    
  .custom-logo img{ max-height:60px; padding: 0px; margin: 0px}
     .content_text { 
        font-size: 1rem;
        line-height: 1; 
      }

  .caption_header { 
          font-size: 3rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

  .product_caption {
    /*font-size: 1rem;*/
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:4rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:20px
    }
}

/* ========== LARGE TABLET / SMALL LAPTOP (768px–1024px) ========== */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
     
  .custom-logo img{ max-height:80px; padding: 0px; margin: 0px}
     .content_text { 
        font-size: 1.5rem;
        line-height: 1; 
      }

  .caption_header { 
          font-size: 3rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

  .product_caption {
    /*font-size: 1.3rem;*/
    font-size: 1.5rem;
    line-height: 1.45;
  }

 .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:4rem; 
          text-align: right; 
          letter-spacing: 0px; 
          padding-right:20px
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
   
  .custom-logo img{ max-height:80px; padding: 0px; margin: 0px}
    .content_text { 
        font-size: 1.5rem;
        line-height: 1; 
      }

  .caption_header { 
          font-size: 3rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

  .product_caption {
    /*font-size: 1.2rem;*/
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:4rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:20px
    }
}

/* ========== LAPTOP / DESKTOP (1025px–1440px) ========== */
@media screen and (min-width: 1025px) and (max-width: 1440px) and (orientation: portrait) {
         .custom-logo img{ max-height:100px; padding:0px 20px; margin: 0px}

          .content_text { 
        font-size: 1.5rem;
        line-height: 1.5; 
      }

        .caption_header { 
          font-size: 3rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

        .product_caption {
          /*font-size: 1.6rem;*/
          font-size: 1.8rem;
          line-height: 1.5;
        }

         .custom-menu a, .custom-menu a:focus{
              font-size: 1.8rem;
               padding: 10px 20px;
            }

              .dropdown{
                  min-width: 310px;
                }

                .dropdown-toggle::after {
                     font-size: 1.2rem;
                      margin-left: 15px;
                  }

         .about_page_title{ 
                background-color:#263145; 
                color:#fff; 
                font-weight:700; 
                font-size:4rem; 
                text-align: right; 
                letter-spacing: 0px;
                padding-right:20px
          }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) and (orientation: landscape) {
        .custom-logo img{ max-height:100px; padding: 0px 20px; margin: 0px}

       .content_text { 
        font-size: 1.5rem;
        line-height: 1.5; 
      }

      .caption_header { 
          font-size: 3rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

      .product_caption {
        /*font-size: 1.4rem;*/
        font-size: 1.8rem;
        line-height: 1.45;
      }

       .custom-menu a, .custom-menu a:focus{
        font-size: 1.8rem;
         padding: 10px 20px;
      }

        .dropdown{
            min-width: 310px;
          }

          .dropdown-toggle::after {
             font-size: 1.2rem;
              margin-left: 15px;
          }

    .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:4rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:20px
    }
}

/* ========== LARGE DESKTOP / 2K (1441px–2560px) ========== */
@media screen and (min-width: 1441px) and (max-width: 2560px) and (orientation: portrait) {
   .custom-logo img{ max-height:100px; padding: 0px 20px; margin: 0px}

   .content_text { 
        font-size: 2rem;
        line-height: 2; 
      }

  .caption_header { 
          font-size: 5rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

  .product_caption {
    font-size: 2rem;
    line-height: 1.55;
    font-weight: 500;
  }


  .custom-menu a, .custom-menu a:focus{
    font-size: 2.5rem;
     padding: 10px 30px;
  }

   .dropdown{
        min-width: 450px;
      }

      .dropdown-toggle::after {
         font-size: 1.5rem;
          margin-left: 15px;
      }

      .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:8rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:120px
    }
}

@media screen and (min-width: 1441px) and (max-width: 2560px) and (orientation: landscape) {
     .custom-logo img{ max-height:100px; padding: 0px 20px; margin: 0px}

   .content_text { 
        font-size: 2rem;
        line-height: 2; 
      }

  .caption_header { 
          font-size: 5rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

  .product_caption {
    /*font-size: 1.8rem;*/
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 500;
  }


  .custom-menu a, .custom-menu a:focus{
    font-size: 2.5rem;
     padding: 10px 30px;
  }

    .dropdown{
        min-width: 450px;
      }

      .dropdown-toggle::after {
         font-size: 1.5rem;
          margin-left: 15px;
      }

      .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:8rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:120px
    }
}

/* ========== 4K DISPLAY (2561px–3840px) ========== */
@media screen and (min-width: 2561px) and (max-width: 3840px) and (orientation: portrait) {
        .custom-logo img{ max-height:120px; padding: 0px 20px; margin: 0px}

       .content_text { 
        font-size: 3rem;
        line-height: 2; 
      }

      .caption_header { 
          font-size: 5rem;
          line-height: 1.5;
          font-weight: 600;
          letter-spacing: 0.04em;
      }

      .product_caption {
          font-size: 3rem;
          line-height: 1.6;
          font-weight: 500;
          letter-spacing: 0.03em;
      }


      .custom-menu a, .custom-menu a:focus{
        font-size: 3.5rem;
        padding: 10px 50px;
      }

      .dropdown{
        min-width: 600px;
      }

      .dropdown-toggle::after {
         font-size: 2rem;
          margin-left: 30px;
      }

      .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:8rem; 
          text-align: right; 
          letter-spacing: 0px; 
          padding-right:120px
    }
}

@media screen and (min-width: 2561px) and (max-width: 3840px) and (orientation: landscape) {
       
  .custom-logo img{ max-height:120px; padding: 0px 20px; margin: 0px}

       .content_text { 
        font-size: 3rem;
        line-height: 2; 
      }

      .caption_header { 
        font-size: 5rem;
        line-height: 1.5;
        font-weight: 600;
        letter-spacing: 0.04em;
      }

      .product_caption {
        /*font-size: 2.4rem;*/
        font-size: 3rem;
        line-height: 1.55;
        font-weight: 500;
      }

      .custom-menu a, .custom-menu a:focus{
        font-size: 3.5rem;
        padding: 10px 50px;
      }

      .dropdown{
        min-width: 600px;
      }

      .dropdown-toggle::after {
         font-size: 2rem;
          margin-left: 30px;
      }

      .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:8rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:120px
    }
}

/* ========== 5K–8K ULTRA-HD DISPLAY (3841px–7680px) ========== */
@media screen and (min-width: 3841px) and (orientation: portrait) {
  .content_text { 
        font-size: 4rem;
        line-height: 2; 
      }
      .caption_header {
        /*font-size: 3.2rem;*/
        font-size: 7.5rem;
        line-height: 1.6;
        font-weight: 600;
        letter-spacing: 0.04em;
      }

      .product_caption {
        /*font-size: 3.8rem;*/
        font-size: 5.5rem;
        line-height: 1.7;
        font-weight: 500;
        letter-spacing: 0.05em;
      }

      .custom-menu a, .custom-menu a:focus{
        font-size: 5.5rem;
        padding: 50px 100px; 
      }

       .dropdown{
        min-width: 1000px;
      }

      .dropdown-toggle::after { 
          font-size: 4rem;
          margin-left: 30px;
      }

       .custom-logo img{ max-height:220px; padding: 0px 20px; margin: 0px}

       .about_page_title{ 
            background-color:#263145; 
            color:#fff; 
            font-weight:700; 
            font-size:14rem; 
            text-align: right; 
            letter-spacing: 0px;
            padding-right:120px
      }
}

@media screen and (min-width: 3841px) and (orientation: landscape) {
      .content_text { 
        font-size: 4rem;
        line-height: 2; 
      }

      .caption_header {
        /*font-size: 3.2rem;*/
        font-size: 7.5rem;
        line-height: 1.6;
        font-weight: 600;
        letter-spacing: 0.04em;
      }

      .product_caption {
        /*font-size: 3.2rem;*/
        font-size: 5.5rem;
        line-height: 1.6;
        font-weight: 500;
        letter-spacing: 0.04em;
      }

      .custom-menu a, .custom-menu a:focus{
        font-size: 5.5rem;
        padding: 50px 100px;     
      }

      .dropdown{
        min-width: 1000px;
      }

      .dropdown-toggle::after {
         font-size: 4rem;
          margin-left: 30px;
      }

     .custom-logo img{ max-height:220px; padding: 0px 20px; margin: 0px}

     .about_page_title{ 
          background-color:#263145; 
          color:#fff; 
          font-weight:700; 
          font-size:14rem; 
          text-align: right; 
          letter-spacing: 0px;
          padding-right:120px
    }



}



dl, ol, ul{
  margin: 0px;
}