/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
.card {
  --bs-card-spacer-y: 1em;
  --bs-card-spacer-x: 1em;
  --bs-card-title-spacer-y: 0.5em;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5em;
  --bs-card-cap-padding-x: 1em;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1em;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius); }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: var(--bs-card-inner-border-radius);
      border-top-right-radius: var(--bs-card-inner-border-radius); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: var(--bs-card-inner-border-radius);
      border-bottom-left-radius: var(--bs-card-inner-border-radius); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color); }

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y); }

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x); }

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; }

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); }

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0; }
  .card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg); }

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x)); }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius); }

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin); }

@media (min-width: 641px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

.home-hero {
  background-color: #343131;
  padding: 150px 0 30px 0; }
  .home-hero .content h1 {
    color: white;
    font-size: clamp(2.8125rem, calc(45px + (85 - 45) * ((100vw - 320px) / (1920 - 320))), 5.3125rem); }
    .home-hero .content h1 sup {
      font-size: clamp(1.875rem, calc(30px + (45 - 30) * ((100vw - 320px) / (1920 - 320))), 2.8125rem); }
  .home-hero .content .lead {
    color: #eeeff0; }
    @media (min-width: 1025px) {
      .home-hero .content .lead {
        max-width: 494px; } }
  .home-hero .content .hero-product-search {
    margin: 2.5rem 0 4rem 0; }
    .home-hero .content .hero-product-search #hero-product-search {
      width: 100%; }
      @media (min-width: 641px) {
        .home-hero .content .hero-product-search #hero-product-search {
          width: 60%; } }
      @media (min-width: 769px) {
        .home-hero .content .hero-product-search #hero-product-search {
          width: 50%; } }
      @media (min-width: 1025px) {
        .home-hero .content .hero-product-search #hero-product-search {
          width: 50%; } }
      @media (min-width: 1141px) {
        .home-hero .content .hero-product-search #hero-product-search {
          width: 70%; } }
    .home-hero .content .hero-product-search .select2-container .select2-selection {
      border: 0;
      border: 1px solid #ffc729;
      border-radius: 22px;
      height: 44px;
      background: transparent; }
      .home-hero .content .hero-product-search .select2-container .select2-selection .select2-selection__clear {
        display: none; }
      .home-hero .content .hero-product-search .select2-container .select2-selection .select2-selection__rendered {
        line-height: 44px;
        color: white;
        padding-right: 34px !important;
        padding-left: 20px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        font-size: 16px; }
        .home-hero .content .hero-product-search .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
          color: white !important; }
      .home-hero .content .hero-product-search .select2-container .select2-selection .select2-selection__arrow {
        right: 18px;
        top: 11px; }
        .home-hero .content .hero-product-search .select2-container .select2-selection .select2-selection__arrow b {
          display: none; }
        .home-hero .content .hero-product-search .select2-container .select2-selection .select2-selection__arrow:after {
          content: "\e903";
          font-family: "standard-icons";
          color: #ffc729; }
  .home-hero .content .cert-logos {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px; }
    .home-hero .content .cert-logos .logo-wrap {
      display: block; }
      .home-hero .content .cert-logos .logo-wrap:last-of-type {
        margin-right: 0;
        display: none; }
        @media (min-width: 1025px) {
          .home-hero .content .cert-logos .logo-wrap:last-of-type {
            display: block; } }
  .home-hero .main-explorer {
    position: relative;
    width: 100%; }
    .home-hero .main-explorer .hotspot {
      position: absolute;
      width: 9px;
      height: 9px;
      background: #ffc729;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      cursor: pointer;
      border: 0;
      /* subtle glow */
      box-shadow: 0 0 0 6px rgba(255, 199, 41, 0.21);
      transition: all 0.2s ease; }
      .home-hero .main-explorer .hotspot:hover {
        box-shadow: 0 0 0 10px rgba(255, 199, 41, 0.21);
        transform: translate(-50%, -50%) scale(1.1); }
    .home-hero .main-explorer img {
      width: 100%;
      display: block; }

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(52, 49, 49, 0.8); }
  .image-modal.is-active {
    display: flex; }
  .image-modal .image-modal__back.is-disabled, .image-modal .image-modal__back:disabled {
    opacity: 0.4;
    pointer-events: none; }
  .image-modal__box {
    padding: 12px;
    position: relative;
    width: 100%;
    max-width: 768px;
    max-height: 90vh;
    overflow: auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
  .image-modal__image-wrap {
    position: relative;
    width: 100%;
    background: #2d2b29;
    border-radius: 5px;
    overflow: hidden; }
  .image-modal__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px; }
  .image-modal__content {
    padding: 0 1rem; }
    .image-modal__content .title {
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
      padding-left: 1rem;
      border-left: 2px solid #ffc729; }
      .image-modal__content .title .h3 {
        color: #ffc729;
        margin-bottom: 10px;
        font-size: 30px; }
      .image-modal__content .title .h5 {
        color: #111111;
        margin-bottom: 0;
        font-size: 20px; }
    .image-modal__content p:not(.h3),
    .image-modal__content p:not(.h5) {
      font-size: 16px;
      margin-bottom: 1.5rem; }
  .image-modal__close, .image-modal__back {
    position: absolute;
    z-index: 3;
    border: 0;
    cursor: pointer; }
  .image-modal__close {
    top: 26px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffc729;
    color: white;
    font-size: 20px;
    line-height: 1; }
  .image-modal__back {
    background-color: transparent;
    top: 26px;
    left: 20px;
    width: 32px;
    height: 32px;
    color: #ffc729;
    font-size: 30px;
    line-height: 1; }
  @media (max-width: 600px) {
    .image-modal {
      padding: 12px; }
      .image-modal__content {
        padding: 16px; } }

.hotspot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f5b400;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(245, 180, 0, 0.2);
  transition: all 0.2s ease; }
  .hotspot:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 10px rgba(245, 180, 0, 0.35); }

.intro .vid-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden; }
  .intro .vid-box:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(17, 17, 17, 0.59);
    border-radius: 5px;
    z-index: 1; }
  .intro .vid-box span {
    position: absolute;
    z-index: 3;
    height: 42px;
    width: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 1px #ffc729; }
    .intro .vid-box span i {
      color: white; }
  .intro .vid-box:hover span {
    background-color: #ffc729; }

.intro .vid-title {
  display: flex;
  justify-content: space-between;
  text-align: right;
  align-items: center; }
  .intro .vid-title small {
    font-size: 14px;
    line-height: 1;
    max-width: 270px; }
    @media (min-width: 641px) {
      .intro .vid-title small {
        max-width: 100%; } }
    @media (min-width: 1025px) {
      .intro .vid-title small {
        max-width: 270px; } }
    @media (min-width: 1337px) {
      .intro .vid-title small {
        max-width: 100%; } }
  .intro .vid-title span {
    border: solid 1px #ffc729;
    flex: 1 1 auto;
    margin: 0 1rem 0 0;
    height: 1px; }

.features {
  padding-bottom: 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 12%, #343131 12%, #343131 100%); }
  @media (min-width: 641px) {
    .features {
      background: linear-gradient(to bottom, #ffffff 0%, #ffffff 20%, #343131 20%, #343131 100%); } }
  @media (min-width: 1141px) {
    .features {
      background: linear-gradient(to bottom, #ffffff 0%, #ffffff 48%, #343131 48%, #343131 100%); } }
  .features .feature-card {
    background: transparent linear-gradient(236deg, #343131 0%, #232323 100%) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    box-shadow: 0px 0px 20px #00000080;
    height: 100%;
    padding: 3rem 1.5rem; }
    .features .feature-card .title {
      color: #eeeff0;
      display: flex; }
      .features .feature-card .title .icon-box {
        border-radius: 2px;
        height: 54px;
        width: 54px;
        background-color: #ffc729;
        display: flex;
        justify-content: center;
        align-items: center; }
        .features .feature-card .title .icon-box i {
          font-size: 37px;
          color: #111111; }
      .features .feature-card .title h5 {
        color: #eeeff0;
        width: calc(100% - 45px);
        margin-left: 1rem; }
        .features .feature-card .title h5 span {
          display: block; }
    .features .feature-card .content {
      color: #eeeff0; }
      .features .feature-card .content p {
        font-size: 16px; }

.products {
  background-color: #343131; }
  .products .top {
    color: #eeeff0; }
    .products .top h2 {
      color: white; }
  .products .product-cat-box {
    height: 100%;
    display: flex;
    flex-direction: column; }
    .products .product-cat-box .title {
      margin-bottom: 1.5rem;
      padding-left: 1.25rem;
      border-left: 2px solid #ffc729; }
      .products .product-cat-box .title h3 {
        color: #ffc729;
        margin-bottom: 5px; }
      .products .product-cat-box .title h5 {
        color: white;
        margin-bottom: 0; }
      .products .product-cat-box .title:hover h5 {
        color: #ffc729; }
    .products .product-cat-box .content p {
      font-size: 16px; }
    .products .product-cat-box .btn-arrow {
      margin-top: auto !important; }

.project-types #project-slider {
  position: relative; }
  .project-types #project-slider .item a {
    border-radius: 10px;
    position: relative; }
    .project-types #project-slider .item a .img-box {
      border-radius: 10px;
      position: relative;
      overflow: hidden; }
      .project-types #project-slider .item a .img-box:after {
        content: "";
        background: transparent linear-gradient(1deg, #111111 0%, #11111100 100%) 0% 0% no-repeat padding-box;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 10px;
        transition: all 110ms linear; }
      .project-types #project-slider .item a .img-box .img {
        filter: grayscale(100%); }
    .project-types #project-slider .item a .content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 2rem; }
      .project-types #project-slider .item a .content h3 {
        color: #ffc729;
        margin-bottom: 12px; }
      .project-types #project-slider .item a .content p {
        color: #eeeff0;
        margin-bottom: 1.5rem;
        font-size: 16px; }
    .project-types #project-slider .item a:hover .img-box:after {
      opacity: 0; }
    .project-types #project-slider .item a:hover .img-box .img {
      filter: none;
      transform: scale(1.02, 1.02);
      transition: all 0.2s linear; }
    .project-types #project-slider .item a:hover .btn-arrow {
      color: #ffc729; }
      .project-types #project-slider .item a:hover .btn-arrow:after {
        content: "\e900";
        font-size: 16px; }
  .project-types #project-slider .owl-nav {
    position: absolute;
    left: -11px;
    right: -11px;
    top: calc(50% - 100px);
    display: flex;
    justify-content: space-between; }
    @media (min-width: 1400px) {
      .project-types #project-slider .owl-nav {
        left: -20px;
        right: -20px; } }
    .project-types #project-slider .owl-nav.disabled {
      display: none; }
    .project-types #project-slider .owl-nav button {
      height: 86px;
      width: 86px;
      border-radius: 50%;
      border: 1px solid #eeeff0;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: rgba(17, 17, 17, 0.52); }
      .project-types #project-slider .owl-nav button i {
        font-size: 14px;
        color: #ffc729; }
  .project-types #project-slider .owl-dots {
    margin: 2rem 0 1rem 0; }
    .project-types #project-slider .owl-dots button span {
      margin: 4px;
      height: 25px;
      width: 25px;
      background-color: #eeeff0; }
    .project-types #project-slider .owl-dots button.active span {
      background-color: #ffc729; }

.distribution-network-map {
  background: transparent linear-gradient(230deg, #343131 0%, #262525 100%) 0% 0% no-repeat padding-box; }
  .distribution-network-map .content {
    color: #eeeff0; }
    .distribution-network-map .content h2 {
      color: white; }
    .distribution-network-map .content ul {
      padding: 0;
      margin: 2rem 0 0 0;
      list-style: none; }
      .distribution-network-map .content ul li {
        margin-bottom: 1rem; }
        .distribution-network-map .content ul li:last-of-type {
          margin-bottom: 0; }
        .distribution-network-map .content ul li a {
          color: #eeeff0;
          font-size: 16px; }
          .distribution-network-map .content ul li a i {
            color: #ffc729;
            margin-left: 5px;
            font-size: 12px; }
          .distribution-network-map .content ul li a:hover {
            color: #ffc729; }

.recent-blogs .card {
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #00000029; }
  .recent-blogs .card .img-wrap {
    height: 285px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
    display: block; }
    .recent-blogs .card .img-wrap picture,
    .recent-blogs .card .img-wrap img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 285px;
      max-width: 100% !important;
      transition: all 0.2s linear;
      filter: grayscale(100%); }
    .recent-blogs .card .img-wrap:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: transparent linear-gradient(237deg, #111111 0%, #606060 100%) 0% 0% no-repeat padding-box;
      opacity: 0.59;
      transition: all 0.2s linear; }
    .recent-blogs .card .img-wrap:hover picture,
    .recent-blogs .card .img-wrap:hover img {
      transform: scale(1.05, 1.05);
      transition: all 0.2s linear;
      filter: grayscale(0); }
    .recent-blogs .card .img-wrap:hover:after {
      opacity: 0; }
  .recent-blogs .card .card-body {
    padding: 2rem 1.5rem 3rem 1.5rem;
    background-color: white;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column; }
    .recent-blogs .card .card-body .entry-meta {
      color: #7b7c80;
      margin-bottom: 1rem;
      font-size: 16px; }
      .recent-blogs .card .card-body .entry-meta .posted-on {
        display: block; }
      .recent-blogs .card .card-body .entry-meta .sep {
        width: 6px;
        height: 6px;
        background-color: #ffc729;
        border-radius: 50%;
        margin: 7px 8px 5px 8px; }
    .recent-blogs .card .card-body .card-title {
      margin: 0 0 1.5rem 0;
      font-size: 24px;
      line-height: 1.2; }
      .recent-blogs .card .card-body .card-title a {
        color: #111111; }
        .recent-blogs .card .card-body .card-title a:hover {
          color: #ffc729; }
    .recent-blogs .card .card-body .btn-arrow {
      margin-top: auto; }

.select2-results ul li {
  margin-bottom: 0;
  font-size: 16px; }
