@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --global-font-family: "Poppins", sans-serif;
  --global-font-size: 1rem;
  --global-font-size-html: 16px;
  --global-font-weight: 400;
  --global-font-color: #000;
  --global-background-color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
  background: #0E0C0D;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #313D97;
}

@-webkit-keyframes neechejaa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@keyframes neechejaa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes paintFill {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    opacity: 0.95;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    opacity: 1;
  }
}

@keyframes paintFill {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    opacity: 0.95;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    opacity: 1;
  }
}

@-webkit-keyframes paintShine {
  0% {
    left: -100%;
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    left: 100%;
    opacity: 0.4;
  }
}

@keyframes paintShine {
  0% {
    left: -100%;
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    left: 100%;
    opacity: 0.4;
  }
}

@-webkit-keyframes brushSweep {
  0% {
    width: 0;
    opacity: 0.8;
  }
  100% {
    width: 100%;
    opacity: 0.8;
  }
}

@keyframes brushSweep {
  0% {
    width: 0;
    opacity: 0.8;
  }
  100% {
    width: 100%;
    opacity: 0.8;
  }
}

@-webkit-keyframes colorWash {
  0% {
    -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
  }
  50% {
    -webkit-filter: brightness(1.08) saturate(1.1);
            filter: brightness(1.08) saturate(1.1);
  }
  100% {
    -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
  }
}

@keyframes colorWash {
  0% {
    -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
  }
  50% {
    -webkit-filter: brightness(1.08) saturate(1.1);
            filter: brightness(1.08) saturate(1.1);
  }
  100% {
    -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
  }
}

@-webkit-keyframes paintFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes paintFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

html {
  font-family: var(--global-font-family);
  font-size: var(--global-font-size-html);
  font-weight: var(--global-font-weight);
  color: var(--global-font-color);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--global-background-color);
  overflow-x: hidden;
}

body ::-moz-selection {
  background-color: #0E0C0D;
  color: #fff;
}

body ::selection {
  background-color: #0E0C0D;
  color: #fff;
}

body .container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 0.938rem;
}

body .center {
  text-align: center;
}

body .wpb_raw_code.wpb_raw_html {
  margin-bottom: 0;
}

body .wpb_single_image {
  margin-bottom: 0;
}

body .wpb_text_column {
  margin-bottom: 0;
}

body .vc_icon_element {
  margin-bottom: 0;
}

body .hidden {
  display: none !important;
}

body .desk-hide {
  display: none !important;
}

body p {
  font-family: var(--global-font-family);
  font-size: var(--global-font-size);
  font-weight: var(--global-font-weight);
  margin: 0 0 1em;
}

body a {
  color: var(--global-font-color);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body a:hover {
  color: #313D97;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body .m-auto {
  margin-left: auto;
  margin-right: auto;
}

body .mg-none {
  margin: 0 !important;
}

body .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body .flex-row .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.34%;
          flex: 0 0 8.34%;
  width: 8.34%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.67%;
          flex: 0 0 16.67%;
  width: 16.67%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  width: 33.33%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66%;
          flex: 0 0 41.66%;
  width: 41.66%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33%;
          flex: 0 0 58.33%;
  width: 58.33%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66%;
          flex: 0 0 66.66%;
  width: 66.66%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  width: 75%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33%;
          flex: 0 0 83.33%;
  width: 83.33%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66%;
          flex: 0 0 91.66%;
  width: 91.66%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .vc_gitem-zone-a .vc_gitem-row-position-top, body .vc_gitem-zone-b .vc_gitem-row-position-top, body .vc_gitem-zone-a .vc_gitem-row-position-middle, body .vc_gitem-zone-b .vc_gitem-row-position-middle {
  position: relative;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

body .vc-gitem-zone-height-mode-auto:before {
  padding: 0;
}

body .vc_gitem_row .vc_gitem-col {
  padding: 0;
}

body .vc_grid-item-zone-c-left .vc_gitem-animated-block {
  width: 100%;
  float: none;
}

body .no-pad {
  padding: 0 !important;
}

body .no-pad > .vc_column-inner {
  padding: 0 !important;
}

body header#masthead {
  position: relative;
  z-index: 99;
  width: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #fff;
}

body header#masthead.sticky {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

body header#masthead.sticky .top-bar {
  padding: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: 0;
  overflow: hidden;
}

body header#masthead.sticky .header-main .logo img {
  width: 70%;
}

body header#masthead.sticky .header-main ul.menu-wrapper li.menu-item a {
  font-size: 1rem;
}

body header#masthead .header-main {
  padding: 1.25rem 0;
}

body header#masthead .header-main .flex-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body header#masthead .header-main .flex-row > div {
  padding: 0;
}

body header#masthead .header-main .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body header#masthead .header-main .logo img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: auto;
  width: 100%;
}

body header#masthead .header-main ul.menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 3.12rem;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item {
  list-style: none;
  position: relative;
  text-transform: capitalize;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a {
  padding-right: 1rem;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'FontAwesome';
  position: absolute;
  top: 30%;
  right: 0;
  font-size: 0.8em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #000;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a:hover::after {
  rotate: 180deg;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.current-menu-item > a {
  color: #313D97;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.current-menu-item > a:before {
  left: 0;
  width: 100%;
  right: 0;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.btn a {
  background: #0E0C0D;
  color: #fff;
  padding: 0.469rem 2.5rem;
  border-radius: 6px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.btn a:hover {
  color: #fff;
  background: transparent !important;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.btn a:hover::after {
  -webkit-transform: skewX(-30deg) scale(1, 1);
          transform: skewX(-30deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.btn a:before {
  display: none;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.btn a::after {
  content: '';
  background: #313D97;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-45deg) scale(0, 1);
          transform: skewX(-45deg) scale(0, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item a {
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--global-font-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  padding: 0.2rem 0;
  font-weight: 400;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  width: 0;
  bottom: 0;
  background: #313D97;
  height: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item a:hover {
  color: #313D97;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item a:hover:before {
  left: 0;
  right: 0;
  width: 100%;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu {
  position: absolute;
  top: 125%;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  height: 0;
  background: #fff;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.18);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.18);
  border-top: 2px solid #7C7C7C;
  display: block;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  background: #fff;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a {
  width: 100%;
  padding: 0.5rem 1rem;
  color: #000;
  letter-spacing: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  display: block;
  position: relative;
  font-size: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 400;
  text-transform: capitalize;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a:before {
  display: none;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a:hover {
  background: #313D97;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item:last-child {
  border-bottom: 0;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item button.sub-menu-toggle {
  display: none;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item:first-child {
  margin-left: 0;
  padding-left: 0;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item:last-child {
  margin-right: 0;
  padding-right: 0;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body nav#mm-menu .mm-navbar .mm-navbar__title {
  background: #313D97;
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--global-font-family);
  font-weight: 400;
}

body nav#mm-menu .mm-navbar .mm-btn::before {
  border-color: #FFF;
}

body nav#mm-menu .mm-panels .mm-panel .mm-navbar {
  background: #313D97;
}

body nav#mm-menu .mm-panels .mm-panel .mm-navbar a.mm-navbar__title {
  font-size: 1.2rem;
  font-family: var(--global-font-family);
  font-weight: 400;
  color: #FFF;
}

body nav#mm-menu .mm-panels .mm-panel ul#primary-menu-list li {
  font-size: 1.1rem;
  font-family: var(--global-font-family);
  font-weight: 400;
}

body #content {
  /* Product specs — paste HTML from template-parts/html-snippets/product-specs.html */
  /* Contact Us */
  /* WooCommerce */
}

body #content .vc_row {
  margin: 0;
}

body #content .vc_row > .wpb_column > .vc_column-inner {
  padding-top: 0;
}

body #content .vc_section {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 3.75rem 0;
}

body #content .vc_section[data-vc-full-width].vc_hidden {
  opacity: 1;
}

body #content .vc_section .vc_row[data-vc-full-width].vc_hidden {
  opacity: 1;
}

body #content .max-50 {
  max-width: 50%;
}

body #content .max-70 {
  max-width: 70%;
}

body #content .max-80 {
  max-width: 80%;
}

body #content .max-90 {
  max-width: 90%;
}

body #content .m-auto {
  margin: 0 auto;
}

body #content .mg-bottom {
  margin-bottom: 1.875rem;
}

body #content .full-img > .vc_figure {
  display: block !important;
}

body #content .full-img > .vc_figure > .vc_single_image-wrapper {
  display: block !important;
}

body #content .full-img > .vc_figure > .vc_single_image-wrapper img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  height: auto;
  width: 100%;
  max-width: initial !important;
}

body #content .desk-hidden {
  display: none;
}

body #content .wht-head {
  color: #fff !important;
}

body #content .number-row .odometer.polyshade-number-row-odometer,
body #content .number-row .main-head.wht-head .odometer {
  color: #fff !important;
}

body #content .number-row .odometer.polyshade-number-row-odometer .odometer-digit,
body #content .number-row .odometer.polyshade-number-row-odometer .odometer-value,
body #content .number-row .main-head.wht-head .odometer .odometer-digit,
body #content .number-row .main-head.wht-head .odometer .odometer-value {
  color: #fff !important;
}

body #content .wht-txt p {
  color: #fff !important;
}

body #content .wpb_column {
  padding-left: 0;
  padding-right: 0;
}

body #content .main-head {
  font-size: 3.125rem;
  font-family: var(--global-font-family);
  font-weight: 600;
  color: #0E0C0D;
  margin-bottom: 1.167rem;
}

body #content .main-head.underline {
  padding-bottom: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

body #content .main-head.underline.m-auto::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}

body #content .main-head.underline.wht {
  color: #fff;
}

body #content .main-head.underline.wht::after {
  background: #fff;
}

body #content .main-head.underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  margin: 0 auto;
  height: 4px;
  background: #313D97;
}

body #content .main-head b {
  font-weight: 700;
  color: #313D97;
}

body #content .sub-head {
  font-size: 1.875rem;
  font-family: var(--global-font-family);
  font-weight: 600;
  color: #313D97;
  margin-bottom: 0.62rem;
}

body #content .txt ul {
  padding-left: 1.5rem;
}

body #content .txt ul li {
  color: var(--global-font-color);
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 400;
}

body #content .txt p {
  color: var(--global-font-color);
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 400;
}

body #content .txt p strong {
  color: #313D97;
  font-weight: 500;
}

body #content .txt a {
  color: var(--global-font-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: inherit;
}

body #content .txt a:hover {
  opacity: 0.8;
}

body #content .justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #content .btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

body #content .btn a {
  background: #313D97;
  color: #fff;
  padding: 0.62rem 1.25rem;
  border-radius: 6px;
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 400;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body #content .btn a:hover {
  color: #fff;
  background: transparent !important;
}

body #content .btn a:hover::after {
  -webkit-transform: skewX(-30deg) scale(1, 1);
          transform: skewX(-30deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body #content .btn a:before {
  display: none;
}

body #content .btn a::after {
  content: '';
  background: #0E0C0D;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-30deg) scale(0, 1);
          transform: skewX(-30deg) scale(0, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body #content .btn-2 {
  margin-bottom: 0;
}

body #content .btn-2 a {
  background: transparent;
  color: #fff;
  border: 1px solid #FFF;
  display: inline-block;
  z-index: 1;
  position: relative;
  font-size: 1.125rem;
  font-family: var(--global-font-family);
  border-radius: 8px;
  font-weight: 400;
  padding: 0.62rem 1.25rem;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
  cursor: pointer;
}

body #content .btn-2 a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

body #content .btn-2 a:hover {
  color: #313D97;
  -webkit-box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
          box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

body #content .btn-2 a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

body #content .btn-3 {
  margin-bottom: 0;
}

body #content .btn-3 a {
  background: transparent;
  color: #313D97;
  border: 1px solid #313D97;
  display: inline-block;
  z-index: 1;
  position: relative;
  font-size: 1.125rem;
  font-family: var(--global-font-family);
  border-radius: 8px;
  font-weight: 400;
  padding: 0.62rem 1.25rem;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
  cursor: pointer;
}

body #content .btn-3 a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313D97;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

body #content .btn-3 a:hover {
  color: #fff;
  -webkit-box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
          box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

body #content .btn-3 a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

body #content .btn-arrow {
  margin-bottom: 0;
}

body #content .btn-arrow a {
  position: relative;
  font-size: 1.125rem;
  font-family: var(--global-font-family);
  font-weight: 300;
  padding: 0 2rem 0 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: transparent;
  border: none;
  overflow: hidden;
  cursor: pointer;
  color: #313D97;
}

body #content .btn-arrow a::before {
  content: "\f061";
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  right: 0.1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.8em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #313D97;
  z-index: 1;
}

body #content .btn-arrow a:hover {
  opacity: 0.8;
}

body #content .btn-arrow a:hover::before {
  right: 0.625rem;
}

body #content .page-header {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 5rem 0;
  margin-bottom: 5rem;
  position: relative;
}

body #content .page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313D97;
  mix-blend-mode: hard-light;
  z-index: 0;
}

body #content .page-header .page-header-inner {
  position: relative;
  z-index: 1;
}

body #content .page-header .page-header-inner .page-title {
  font-size: 3.25rem;
  font-family: var(--global-font-family);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  margin-top: 0;
  text-transform: capitalize;
}

body #content .page-header .page-header-inner .page-breadcrumb {
  font-size: 1.125rem;
  font-family: var(--global-font-family);
  font-weight: 400;
  color: #fff;
  margin-top: 1rem;
}

body #content .page-header .page-header-inner .page-breadcrumb .woocommerce-breadcrumb {
  color: #ffffffbf;
}

body #content .page-header .page-header-inner .page-breadcrumb a {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body #content .page-header .page-header-inner .page-breadcrumb a:hover {
  opacity: 0.8;
}

body #content .page-header .page-header-inner .page-breadcrumb span {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body #content .page-header .page-header-inner .page-breadcrumb span:hover {
  opacity: 0.8;
}

body #content .page-header .page-header-inner .page-breadcrumb span:hover::before {
  right: 0.625rem;
}

body #content .hero-sec .hero-row {
  position: relative;
  height: 25rem;
}

body #content .hero-sec .hero-row .full-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(253deg, rgba(0, 0, 0, 0.1) 31.52%, rgba(0, 0, 0, 0.8) 79.06%);
  z-index: 0;
}

body #content .hero-sec .hero-row .full-img img {
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: fixed;
     object-position: fixed;
}

body #content .hero-sec .hero-row .hero-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: 2.5rem;
}

body #content .hero-sec .hero-row .hero-txt h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

body #content .hero-sec .hero-row .hero-txt h2 b {
  color: #fff;
}

body #content .hero-sec .hero-row .hero-txt p {
  color: #fff;
}

body #content .polyshade-cat-grid {
  padding: 3.5rem 0;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 3.12rem;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__card {
  text-align: center;
  overflow: hidden;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__card:hover .polyshade-cat-grid__media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body #content .polyshade-cat-grid .polyshade-cat-grid__media {
  display: block;
  margin: 0 0 1.125rem;
  line-height: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 255;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__name {
  font-family: var(--global-font-family);
  font-size: 1.775rem;
  font-weight: 600;
  color: #313D97;
  margin: 0 0 0.625rem;
  padding: 0;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__name a {
  color: inherit;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__name a:hover {
  opacity: 0.8;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__desc {
  font-family: var(--global-font-family);
  font-size: 1.15rem;
  font-weight: 400;
  color: #0E0C0D;
}

body #content .polyshade-cat-grid .polyshade-cat-grid__desc p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

body #content .pa-sec {
  position: relative;
  padding: 5rem 0 0 0;
}

body #content .pa-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: #313D97;
  z-index: 0;
}

body #content .product-application-grid .vc_pageable-slide-wrapper .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.06rem;
}

body #content .product-application-grid .vc_pageable-slide-wrapper .slick-arrow {
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  color: #fff;
  z-index: 9;
  border: none;
  background: #313D97;
  border-radius: 50%;
  border: none !important;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .product-application-grid .vc_pageable-slide-wrapper .slick-arrow:hover {
  background: #0E0C0D;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .product-application-grid .vc_pageable-slide-wrapper .slick-arrow.slick-prev {
  left: 0.8rem;
}

body #content .product-application-grid .vc_pageable-slide-wrapper .slick-arrow.slick-next {
  right: 0.8rem;
}

body #content .product-application-grid .vc_grid-item-mini.vc_is-hover .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem-row-position-middle {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(14, 12, 13, 0)), color-stop(85%, rgba(14, 12, 13, 0.95)));
  background: linear-gradient(180deg, rgba(14, 12, 13, 0) 40%, rgba(14, 12, 13, 0.95) 85%);
}

body #content .product-application-grid .vc_grid-item-mini.vc_is-hover .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem-row-position-middle .vc_gitem-col .txt p {
  height: auto;
  max-height: 500px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0s, -webkit-transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0s, -webkit-transform 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, visibility 0s;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, visibility 0s, -webkit-transform 0.4s ease;
}

body #content .product-application-grid .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini {
  position: relative;
  overflow: hidden;
}

body #content .product-application-grid .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem-row-position-top .full-img {
  margin-bottom: 0;
}

body #content .product-application-grid .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem-row-position-middle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(14, 12, 13, 0)), to(#0E0C0D));
  background: linear-gradient(180deg, rgba(14, 12, 13, 0) 60%, #0E0C0D 100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

body #content .product-application-grid .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem-row-position-middle .vc_gitem-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.5rem 1.25rem;
}

body #content .product-application-grid .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem-row-position-middle .vc_gitem-col .sub-head h4 {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 600;
}

body #content .product-application-grid .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem-row-position-middle .vc_gitem-col .txt {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body #content .product-application-grid .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem-row-position-middle .vc_gitem-col .txt p {
  color: #fff;
  font-size: 1.25rem;
  margin: 0;
  height: 0;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0s 0.4s, -webkit-transform 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0s 0.4s, -webkit-transform 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out, visibility 0s 0.4s;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out, visibility 0s 0.4s, -webkit-transform 0.4s ease-in-out;
}

body #content .wpoly-sec .wpoly-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #content .wpoly-sec .wpoly-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
  background: #EAECF5;
  padding: 2.5rem 1.25rem;
  margin-bottom: 2.5rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .wpoly-sec .wpoly-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover {
  background: #313D97;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

body #content .wpoly-sec .wpoly-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover .wpoly-icon > .vc_figure > .vc_single_image-wrapper {
  border-color: #fff;
}

body #content .wpoly-sec .wpoly-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover .wpoly-icon > .vc_figure > .vc_single_image-wrapper img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

body #content .wpoly-sec .wpoly-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover .sub-head {
  color: #fff !important;
}

body #content .wpoly-sec .wpoly-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover .txt p {
  color: #fff;
}

body #content .wpoly-sec .wpoly-row .wpoly-icon {
  margin-bottom: 2.5rem;
}

body #content .wpoly-sec .wpoly-row .wpoly-icon > .vc_figure > .vc_single_image-wrapper {
  border: 1px solid #313D97;
  border-radius: 8px;
  padding: 0.62rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .wpoly-sec .wpoly-row .wpoly-icon > .vc_figure > .vc_single_image-wrapper img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .polyshade-datasheet-btn {
  display: inline-block;
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 500;
  color: #fff;
  background: #313D97;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .polyshade-datasheet-btn:hover {
  color: #fff;
  background: #0E0C0D;
  opacity: 1;
}

body #content .polyshade-datasheet-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

body #content .polyshade-datasheet-file {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
}

body #content .polyshade-datasheet-file .polyshade-datasheet-file__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #313D97;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 0.25rem;
}

body #content .polyshade-datasheet-file .polyshade-datasheet-file__icon svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

body #content .product-specs .tables {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

body #content .product-specs .tables article {
  border: 1px solid #e5e8f2;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(14, 12, 13, 0.05);
          box-shadow: 0 4px 16px rgba(14, 12, 13, 0.05);
}

body #content .product-specs .tables article > h3 {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: #0E0C0D;
}

body #content .product-specs .tables article table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

body #content .product-specs .tables article thead th {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #313D97;
  padding: 0.7rem 1rem;
  white-space: nowrap;
}

body #content .product-specs .tables article tbody td {
  font-size: 0.9rem;
  color: #0E0C0D;
  padding: 0.7rem 1rem;
  border-top: 1px solid #eceef4;
  vertical-align: top;
}

body #content .product-specs .tables article tbody tr:nth-child(even) td {
  background: #f8f9fc;
}

body #content .product-specs .tables article tbody tr:hover td {
  background: #eef1fa;
}

body #content .product-specs .tables article tbody td span {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1f7a3f;
  background: #e8f6ed;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

body #content .product-specs .features {
  margin-bottom: 2rem;
}

body #content .product-specs .features > h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0E0C0D;
  margin: 0 0 1.25rem;
}

body #content .product-specs .features .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

body #content .product-specs .features .grid article {
  border: 1px solid #e5e8f2;
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
  -webkit-transition: border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

body #content .product-specs .features .grid article:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: #d4d9ef;
  -webkit-box-shadow: 0 10px 22px rgba(49, 61, 151, 0.12);
          box-shadow: 0 10px 22px rgba(49, 61, 151, 0.12);
}

body #content .product-specs .features .grid article i {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(145deg, #313D97 0%, #4a57b8 100%);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #fff;
}

body #content .product-specs .features .grid article h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #0E0C0D;
  margin: 0 0 0.45rem;
}

body #content .product-specs .features .grid article p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #5d5d5d;
  margin: 0;
}

body #content .product-specs .contact {
  border-radius: 12px;
  background: #f4f6fc;
  border: 1px solid #e2e6f2;
  padding: 1.25rem 1.5rem;
}

body #content .product-specs .contact h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0E0C0D;
  margin: 0 0 0.75rem;
}

body #content .product-specs .contact p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #0E0C0D;
  margin: 0 0 0.5rem;
}

body #content .product-specs .contact p a {
  color: #313D97;
  font-weight: 600;
}

body #content .product-specs .contact p a:hover {
  text-decoration: underline;
}

body #content .polyshade-datasheets-page {
  padding-bottom: 3rem;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-page__intro {
  margin-bottom: 2rem;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-page__empty {
  font-size: 1.125rem;
  color: #5D5D5D;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table-wrap {
  overflow-x: auto;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--global-font-family);
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table thead th {
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #313D97;
  padding: 0.85rem 1rem;
  border-bottom: 2px solid #313D97;
  white-space: nowrap;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table tbody tr {
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table tbody tr:hover td {
  background: #f4f6fb;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.9375rem;
  color: #0E0C0D;
  vertical-align: middle;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table tbody tr:last-child td {
  border-bottom: none;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table .polyshade-datasheets-table__product a {
  color: #313D97;
  font-weight: 500;
}

body #content .polyshade-datasheets-page .polyshade-datasheets-table .polyshade-datasheets-table__product a:hover {
  text-decoration: underline;
}

body #content .fd-sec .fd-row .full-img img {
  height: 25rem;
}

body #content .fd-sec .fd-row .contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body #content .fd-sec .fd-row .contact-wrap .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}

body #content .fd-sec .fd-row .contact-wrap .contact-item .icon {
  width: 50px;
  height: 50px;
  background: #ecebff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6c63ff;
  font-size: 1.25rem;
}

body #content ul.benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

body #content ul.benefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #fff;
}

body #content ul.benefits li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #cfd3ff;
}

body #content .contact-sec .cont-details-row {
  margin-bottom: 3em;
}

body #content .contact-sec .cont-details-row .wpb_column:first-child .cont-detail {
  margin-left: 0;
}

body #content .contact-sec .cont-details-row .wpb_column:last-child .cont-detail {
  margin-right: 0;
}

body #content .contact-sec .cont-details-row .sub-head {
  font-size: 1.5rem;
  margin-bottom: 0;
}

body #content .contact-sec .cont-details-row .cont-detail {
  text-align: center;
  background: #EAECF5;
  border-radius: 0;
  padding: 1rem 1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0 0 1rem 0;
}

body #content .contact-sec .cont-details-row .cont-detail .contact-icon {
  background: #313D97;
  border-radius: 0;
  height: 60px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .contact-sec .cont-details-row .cont-detail .cont-link {
  margin-bottom: 0;
  text-align: start;
}

body #content .contact-sec .cont-details-row .cont-detail .cont-link a {
  color: #0e0c0dd3;
  text-decoration: none;
  text-transform: none;
}

body #content .contact-sec .cont-details-row .cont-detail .cont-link a:hover {
  text-decoration: underline;
}

body #content .contact-sec .cont-details-row .cont-detail .cont-link p {
  color: #313D97;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
}

body #content .contact-sec .contact-row form {
  padding: 1.25rem;
  background: #EAECF5;
}

body #content ul.slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 2em;
}

body #content ul.slick-dots li {
  margin: 0;
}

body #content ul.slick-dots li button {
  outline: none;
  font-size: 0;
  padding: 0;
  width: 3rem;
  height: 0.125rem;
  border: none;
  border-radius: 0px;
  background: #0E0C0D;
  cursor: pointer;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content ul.slick-dots li.slick-active button {
  height: 0.125rem;
  background: #313D97;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .woocommerce-content h1.page-title {
  font-size: 2.5rem;
  font-family: var(--global-font-family);
  font-weight: 600;
  color: #0E0C0D;
  margin-bottom: 1.167rem;
  text-transform: capitalize;
}

body #content .woocommerce-content nav.woocommerce-breadcrumb {
  font-family: var(--global-font-family);
  font-size: 1rem;
  color: #0E0C0D;
  margin: 0;
}

body #content .woocommerce-content .woocommerce-pagination {
  margin: 2rem 0;
}

body #content .woocommerce-content .woof_reset_button_2 {
  background: transparent;
  color: #313D97;
  border: 1px solid #313D97;
  border-radius: 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .woocommerce-content .woof_reset_button_2:hover {
  background: #313D97;
  color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .woocommerce-content .woo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}

body #content .woocommerce-content .woo-wrap .woo-filters {
  width: 25%;
}

body #content .woocommerce-content .woo-wrap .woo-filters #filters-toggle {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
  padding: 0.3125rem;
  width: 100%;
  background: #000;
}

body #content .woocommerce-content .woo-wrap .woo-filters .woof_sid_flat_white {
  background: transparent !important;
  border: none !important;
}

body #content .woocommerce-content .woo-wrap .woo-filters .woof_container_inner h4 {
  font-size: 1.4rem;
  background: transparent;
  font-family: var(--global-font-family);
  text-align: left;
  font-weight: 600;
  color: #313D97;
  text-transform: capitalize;
}

body #content .woocommerce-content .woo-wrap .woo-filters button {
  background: transparent;
  color: #313D97;
  border: 1px solid #313D97;
  border-radius: 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .woocommerce-content .woo-wrap .woo-filters button:hover {
  background: #313D97;
  color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .woocommerce-content .woo-wrap .woo-content {
  width: 75%;
}

body #content .woocommerce-content .woo-wrap .woo-content form.woocommerce-ordering select.orderby {
  font-family: var(--global-font-family);
  font-size: 1rem;
  color: #000;
  padding: 0.5rem;
  border: 0.0625rem solid #000;
}

body #content .woocommerce-content .woo-product nav.woocommerce-breadcrumb {
  margin-bottom: 1.5625rem;
}

body #content .woocommerce-content .woo-product .product {
  /* WooCommerce Tabs & Reviews */
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper span.onsale {
  font-size: 0.75rem;
  font-weight: normal;
  color: #0E0C0D;
  padding: 0.5rem;
  line-height: normal;
  min-width: initial;
  min-height: initial;
  position: absolute;
  z-index: 99;
  top: 1%;
  left: 43%;
  right: initial;
  border-radius: 0;
  background-color: #FFF;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .woocommerce-product-gallery {
  float: none;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .woocommerce-product-gallery ol.flex-control-nav button.slick-arrow {
  width: 100%;
  padding: 0;
  position: absolute;
  z-index: 9;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .woocommerce-product-gallery ol.flex-control-nav button.slick-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .woocommerce-product-gallery ol.flex-control-nav button.slick-arrow svg path {
  fill: #FFF;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary {
  float: none;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary h1.product_title {
  font-family: var(--global-font-family);
  font-size: 2.25rem;
  color: #0E0C0D;
  font-weight: 500;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .stock-status {
  font-size: 0.75rem;
  display: inline-block;
  padding: 0.3125rem;
  margin-bottom: 0.9375rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .stock-status.instock {
  border: 0.0625rem solid #008000;
  background: #98FB98;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .stock-status.backorder {
  border: 0.0625rem solid #313D97;
  background: #F69697;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .price {
  margin-bottom: 1.25rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .price .amount {
  font-family: var(--global-font-size);
  font-size: 1.125rem;
  color: #0E0C0D;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .price .amount .woocommerce-Price-currencySymbol {
  margin-right: 0.3125rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .wpcsc-size-charts-list .wpcsc-btn {
  font-weight: 600;
  text-decoration: underline;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary form.cart {
  margin-top: 1em;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary form.cart table.variations tbody .label {
  font-size: 1rem;
  font-weight: 600;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary form.cart table.variations tbody .value select {
  font-size: 1rem;
  padding: 0.1875rem;
  margin: 0;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary form.cart table.variations tbody .value .reset_variations {
  font-size: 1.125rem;
  color: #FFF;
  padding: 0.1875rem;
  border-radius: 0.3125rem;
  background: #313D97;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary form.cart .single_variation_wrap .woocommerce-variation p.stock {
  font-size: 1.125rem;
  color: #008000;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary form.cart .quantity input.qty {
  font-family: var(--global-font-family);
  font-size: 1rem;
  color: #0E0C0D;
  height: 1.875rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary form.cart button[type=submit] {
  font-family: var(--global-font-family);
  color: #FFF;
  padding: 0.625rem;
  margin: 0;
  border-radius: 0 !important;
  background: #000;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary button.woosw-btn {
  padding: 0;
  margin-bottom: 1.25rem;
  border: none !important;
  background: transparent;
  cursor: pointer;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary button.woosw-btn .woosw-btn-icon {
  font-size: 1.375rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .product_meta {
  font-family: var(--global-font-family);
  font-size: 1rem;
  color: #0E0C0D;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .polyshade-product-datasheets {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d9d9d9;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .polyshade-product-datasheets .polyshade-product-datasheets__title {
  font-family: var(--global-font-family);
  font-size: 1.563rem;
  font-weight: 600;
  color: #0E0C0D;
  margin: 0 0 1rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .polyshade-product-datasheets .polyshade-product-datasheets__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .polyshade-product-datasheets .polyshade-product-datasheets__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70% 30%;
      grid-template-columns: 70% 30%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e5e5e5;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .polyshade-product-datasheets .polyshade-product-datasheets__item:last-child {
  border-bottom: none;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .polyshade-product-datasheets .polyshade-product-datasheets__name {
  font-size: 1rem;
  font-weight: 500;
  color: #0E0C0D;
  line-break: anywhere;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .woocommerce-product-details__short-description h3 {
  color: #0E0C0D;
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .woocommerce-product-details__short-description p {
  color: #0E0C0D;
  font-size: 1.125rem;
  font-weight: 400;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .woocommerce-product-details__short-description ul li {
  list-style: none;
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  font-size: 1.125rem;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .woocommerce-product-details__short-description ul li::before {
  content: "\f0c8";
  position: absolute;
  left: 0;
  top: 3px;
  color: #0E0C0D;
  font-size: 1.125rem;
  font-family: 'FontAwesome';
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .show {
  margin: 1rem 0;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .show a.button {
  background: #313D97 !important;
  color: #fff;
  padding: 0.469rem 2.5rem;
  border-radius: 25px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .show a.button:hover {
  color: #fff;
  background: transparent !important;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .show a.button:hover::after {
  -webkit-transform: skewX(-45deg) scale(1, 1);
          transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .show a.button:before {
  display: none;
}

body #content .woocommerce-content .woo-product .product .product-upper-wrapper .summary .show a.button::after {
  content: '';
  background: #0E0C0D;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-45deg) scale(0, 1);
          transform: skewX(-45deg) scale(0, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  clear: both;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-bottom: 2px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li {
  margin: 0;
  padding: 0;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li a {
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  font-weight: 500;
  color: #0E0C0D;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  border: none;
  border-radius: 0;
  background: transparent;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  margin-bottom: -2px;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li a:hover {
  color: #313D97;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li.active a {
  color: #313D97;
  border-bottom: 2px solid #313D97;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel {
  padding: 1.5rem 0;
  font-family: var(--global-font-family);
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel > h2 {
  display: none;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews {
  padding-top: 0;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #reviews.woocommerce-Reviews .woocommerce-Reviews-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0E0C0D;
  margin-bottom: 1.25rem;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #reviews.woocommerce-Reviews .woocommerce-noreviews {
  font-size: 1rem;
  color: #7C7C7C;
  margin-bottom: 1.5rem;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-reply-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0E0C0D;
  margin-bottom: 1.25rem;
  display: block;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-reply-title small a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #313D97;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-reply-title small a:hover {
  text-decoration: underline;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating {
  margin-bottom: 1.25rem;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating label {
  font-size: 1rem;
  font-weight: 500;
  color: #0E0C0D;
  margin-bottom: 0.5rem;
  display: block;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating label .required {
  color: #313D97;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating .stars {
  margin: 0.5rem 0;
  line-height: 1;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating .stars span[role="group"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating .stars a {
  color: #d4d4d4;
  font-size: 2rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating .stars a::before {
  content: '\2605';
  position: absolute;
  left: 0;
  top: 0;
  color: inherit;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating .stars a:hover {
  color: #313D97;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating .stars a:hover ~ a {
  color: #d4d4d4;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating .stars a.active,
body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-rating .stars a[aria-checked="true"] {
  color: #313D97;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-comment {
  margin-bottom: 1.25rem;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-comment label {
  font-size: 1rem;
  font-weight: 500;
  color: #0E0C0D;
  margin-bottom: 0.5rem;
  display: block;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-comment label .required {
  color: #313D97;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-comment textarea {
  width: 100%;
  min-height: 8rem;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #F5F5F5;
  border: 1px solid transparent;
  border-left: 1px solid #313D97;
  outline: none;
  font-family: var(--global-font-family);
  font-size: 1rem;
  color: #0E0C0D;
  border-radius: 0;
  resize: vertical;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .comment-form-comment textarea:focus {
  outline: none;
  border-color: #313D97;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .form-submit {
  margin: 1.5rem 0 0;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .form-submit input#submit {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  background: #0E0C0D;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  text-transform: capitalize;
}

body #content .woocommerce-content .woo-product .product .woocommerce-tabs.wc-tabs-wrapper #review_form_wrapper #review_form .form-submit input#submit:hover {
  background: #313D97;
  color: #fff;
}

body #content .woocommerce-content .woo-product .product .related {
  margin-bottom: 2rem;
}

body #content .woocommerce-content .woo-product .product .related > h2 {
  font-size: 2.5rem;
  font-family: var(--global-font-family);
  font-weight: 600;
  color: #0E0C0D;
  margin-bottom: 1.167rem;
  text-transform: capitalize;
}

body #content .woocommerce-content .woo-product .product .related ul.products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

body #content .woocommerce-content .woo-product .product .related ul.products li.product .upper-part a.button:before {
  content: " ";
  display: none;
}

body #content ul.products {
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

body #content ul.products::before {
  display: none;
}

body #content ul.products::after {
  display: none;
}

body #content ul.products li.product {
  position: relative;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: 0 4px 18px rgba(14, 12, 13, 0.06);
          box-shadow: 0 4px 18px rgba(14, 12, 13, 0.06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  -webkit-transition: border-color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: border-color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}

body #content ul.products li.product:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: #d4d8ea;
  -webkit-box-shadow: 0 14px 28px rgba(49, 61, 151, 0.14);
          box-shadow: 0 14px 28px rgba(49, 61, 151, 0.14);
}

body #content ul.products li.product:hover .upper-part a.woocommerce-LoopProduct-link img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

body #content ul.products li.product:hover .lower-part h2.woocommerce-loop-product__title {
  color: #313D97;
}

body #content ul.products li.product:hover .lower-part .polyshade-request-quote-btn {
  color: #fff;
  background: #313D97;
  border-color: #313D97;
}

body #content ul.products li.product:hover .lower-part .polyshade-request-quote-btn::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

body #content ul.products li.product .upper-part {
  position: relative;
  padding: 0.75rem 0.75rem 0;
}

body #content ul.products li.product .upper-part a.woocommerce-LoopProduct-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f6f7fb;
}

body #content ul.products li.product .upper-part a.woocommerce-LoopProduct-link img {
  display: block;
  width: 100%;
  height: auto !important;
  margin: 0;
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}

body #content ul.products li.product .upper-part span.sold-out-badge, body #content ul.products li.product .upper-part span.onsale {
  font-family: var(--global-font-family);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #fff;
  padding: 0.35rem 0.65rem;
  line-height: 1.2;
  min-width: initial;
  min-height: initial;
  position: absolute;
  z-index: 2;
  top: 1rem;
  border-radius: 999px;
  background-color: #313D97;
  margin: 0;
  -webkit-box-shadow: 0 2px 8px rgba(14, 12, 13, 0.15);
          box-shadow: 0 2px 8px rgba(14, 12, 13, 0.15);
}

body #content ul.products li.product .upper-part span.sold-out-badge {
  left: 1rem;
  right: auto;
  background-color: #5d5d5d;
}

body #content ul.products li.product .upper-part span.onsale {
  left: auto;
  right: 1rem;
}

body #content ul.products li.product .lower-part {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.65rem;
  padding: 0.85rem 0.85rem 1rem;
}

body #content ul.products li.product .lower-part h2.woocommerce-loop-product__title {
  font-family: var(--global-font-family);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: #0E0C0D;
  margin: 0;
  padding: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

body #content ul.products li.product .lower-part .polyshade-request-quote-btn {
  margin-top: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.45rem;
  width: 100%;
  font-family: var(--global-font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: #313D97;
  text-decoration: none;
  padding: 0.7rem 1.15rem;
  border: 1px solid #d4d9ef;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f4f6fc));
  background: linear-gradient(180deg, #fff 0%, #f4f6fc 100%);
  -webkit-box-shadow: 0 1px 2px rgba(49, 61, 151, 0.08);
          box-shadow: 0 1px 2px rgba(49, 61, 151, 0.08);
  -webkit-transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

body #content ul.products li.product .lower-part .polyshade-request-quote-btn::after {
  content: '\f061';
  font-family: 'FontAwesome';
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

body #content ul.products li.product .lower-part .polyshade-request-quote-btn:hover {
  color: #fff;
  background: #313D97;
  border-color: #313D97;
  -webkit-box-shadow: 0 6px 14px rgba(49, 61, 151, 0.25);
          box-shadow: 0 6px 14px rgba(49, 61, 151, 0.25);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

body #content ul.products li.product .lower-part .polyshade-request-quote-btn:hover::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

body form .form-group.col-6, body form .form-group.col-12 {
  padding: 0 0.5rem;
}

body form label {
  font-size: 1.125rem;
  font-weight: 400;
  color: #0E0C0D;
  font-family: var(--global-font-family);
  line-height: 2rem;
}

body form label span {
  color: #313D97;
}

body form input[type="text"], body form input[type="email"], body form input[type="tel"], body form input[type="date"], body form input[type="number"] {
  width: 100%;
  background: #fff;
  padding: 1.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E0E0E0;
  outline: none;
  font-size: 1.125rem;
  color: #0E0C0D;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body form input[type="text"]:focus, body form input[type="email"]:focus, body form input[type="tel"]:focus, body form input[type="date"]:focus, body form input[type="number"]:focus {
  outline: none;
  border-color: #313D97;
  -webkit-transition: .4s;
  transition: .4s;
}

body form input[type="radio"] {
  accent-color: #313D97;
  height: 2rem;
  width: 2rem;
}

body form select {
  width: 100%;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 1.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E0E0E0;
  outline: none;
  font-size: 1.125rem;
  color: #0E0C0D;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'><path d='M1.5 1.5l5 5 5-5' fill='none' stroke='%23000' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
}

body form select:focus {
  outline: none;
  border-color: #313D97;
  -webkit-transition: .4s;
  transition: .4s;
}

body form .wpcf7-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

body form textarea {
  width: 100%;
  background: #fff;
  padding: 1.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E0E0E0;
  outline: none;
  font-size: 1.125rem;
  color: #0E0C0D;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400;
  resize: none;
  height: 10rem;
  width: 100%;
}

body form textarea:focus {
  outline: none;
  border-color: #313D97;
  -webkit-transition: .4s;
  transition: .4s;
}

body form input[type="submit"] {
  background: #313D97 !important;
  font-size: 1.125rem;
  color: #fff !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  padding: 0.469rem 2.5rem;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400 !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

body form input[type="submit"]:hover {
  color: #fff;
  background: #0E0C0D !important;
}

body form input[type="submit"]:hover::after {
  -webkit-transform: skewX(-45deg) scale(1, 1);
          transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body form input[type="submit"]::after {
  content: '';
  background: #0E0C0D;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-45deg) scale(0, 1);
          transform: skewX(-45deg) scale(0, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body form .submit-btn {
  text-align: center;
}

body form .submit-btn input {
  background: #313D97;
  font-size: 1.125rem;
  color: #fff;
  width: 100%;
  border: none;
  padding: 0.469rem 2.5rem;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

body form .submit-btn input:hover {
  color: #fff;
  background: #0E0C0D !important;
}

body form .submit-btn input:hover::after {
  -webkit-transform: skewX(-45deg) scale(1, 1);
          transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body form .submit-btn input::after {
  content: '';
  background: #0E0C0D;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-45deg) scale(0, 1);
          transform: skewX(-45deg) scale(0, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body form .submit-btn .wpcf7-spinner {
  display: none;
}

body .whatsapp-float {
  display: none;
}

body .whatsapp-float a {
  position: fixed;
  bottom: 1rem;
  left: auto;
  right: 1rem;
  z-index: 9;
  height: 60px;
  width: 60px;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.39));
          filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.39));
  -webkit-animation: neechejaa 3s ease-in-out infinite;
          animation: neechejaa 3s ease-in-out infinite;
}

body .whatsapp-float img {
  width: 100%;
}

@keyframes neechejaa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

body .whatsapp {
  position: fixed;
  bottom: 50px;
  left: auto;
  right: 40px;
  z-index: 9;
  height: 60px;
  width: 60px;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.39));
          filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.39));
  -webkit-animation: neechejaa 3s ease-in-out infinite;
          animation: neechejaa 3s ease-in-out infinite;
}

body .whatsapp img {
  width: 100%;
}

body footer#colophon .footer-main {
  padding: 5rem 0 2.5rem;
  background: #0E0C0D;
}

body footer#colophon .footer-main .flex-row {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: 40% 20% 20% 20%;
      grid-template-columns: 40% 20% 20% 20%;
  grid-column-gap: 2rem;
}

body footer#colophon .footer-main .foot-1 .logo {
  margin-bottom: 1rem;
}

body footer#colophon .footer-main .foot-1 .logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

body footer#colophon .footer-main .foot-1 ul.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
  gap: 1.56rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}

body footer#colophon .footer-main .foot-1 ul.social-icons li {
  font-size: 1.2rem;
  margin-bottom: 0;
}

body footer#colophon .footer-main .foot-1 ul.social-icons li a {
  color: #fff;
  font-size: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body footer#colophon .footer-main .foot-1 ul.social-icons li a i {
  margin-right: 0;
  color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body footer#colophon .footer-main .foot-1 ul.social-icons li a:hover {
  color: #313D97;
}

body footer#colophon .footer-main .foot-1 ul.social-icons li a:hover i {
  color: #313D97;
}

body footer#colophon .footer-main section.widget h2.widget-title {
  font-family: var(--global-font-family);
  font-weight: 400;
  font-size: 1.5625rem;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 1.5rem;
}

body footer#colophon .footer-main section.widget p {
  font-size: 1.125rem;
  font-family: var(--global-font-family);
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

body footer#colophon .footer-main section.widget ul {
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 0.5em;
}

body footer#colophon .footer-main section.widget ul li {
  font-family: var(--global-font-family);
  font-weight: 400;
  font-size: 1.125rem;
  color: #fff;
}

body footer#colophon .footer-main section.widget ul li a {
  font-size: inherit;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body footer#colophon .footer-main section.widget ul li a i {
  margin-right: 0.5rem;
  color: #313D97;
}

body footer#colophon .footer-main section.widget ul li a:hover {
  color: #313D97;
}

body footer#colophon .copyright {
  padding: 1rem 0;
  background: #0E0C0D;
  border-top: 1px solid #fff;
}

body footer#colophon .copyright .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body footer#colophon .copyright p {
  font-size: 0.95rem;
  font-family: var(--global-font-family);
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

body footer#colophon .copyright p a {
  color: #fff;
}

body footer#colophon .copyright p a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
/*# sourceMappingURL=template.css.map */