/* 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 0 0;
  position: relative; }
  @media (min-width: 1025px) {
    .home-hero {
      padding: 100px 0 100px 0; } }
  .home-hero .content h1 {
    color: white;
    font-size: clamp(3.125rem, calc(50px + (85 - 50) * ((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: white; }
    @media (min-width: 1025px) {
      .home-hero .content .lead {
        max-width: 494px; } }
  .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:nth-last-child {
        margin-right: 0; }
  @media (min-width: 1025px) {
    .home-hero .img-area {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%; } }
  .home-hero .img-area .hero-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    object-position: bottom right; }

.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 .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: #eeeff0;
        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; }
