.single-hardware h1 {
  font-size:3em;
}

/* Hardware Gallery */
.slider-hardware-gallery {
  width: 100%;
}

.slider-hardware-gallery[data-is-gallery="0"] {
  width: 100%;
}

.slider-hardware-gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: inline-flex !important;
  align-items: center;
  background: #fff;
  border-radius: 5px;
}

.slider-hardware-gallery-item picture {
  width: 100%;
  height: 100%;
}

picture.hardware-logo img {
  height:100%;
  width:auto;
  object-fit:contain;
}

.slider-hardware-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slider-hardware-gallery-item video {

}

.slider-hardware-gallery-item iframe {

}

.slider-hardware-gallery-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: space-between;
  padding: 10px;
  padding-right: 20px;
  align-items: center;
  pointer-events: none;
}

.slider-hardware-gallery-arrow {
  background: #000000;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  border-radius: 30px;
  transition: all 300ms ease;
}

.slider-hardware-gallery-arrow.next.slick-arrow:hover {
  transform: translateX(4px);
  transition: all 300ms ease;
}

.slider-hardware-gallery-arrow.prev.slick-arrow:hover {
  transform: translateX(-4px);
  transition: all 300ms ease;
}

.slider-hardware-gallery-arrow.next.slick-arrow:before {
  content:'';
  height: 20px;
  width: 10px;
  background:url(/app/themes/devignstudios-toolkit/resources/icons/white-chevron.svg) no-repeat;
  background-size: cover;
  margin-left:5px;
  transform:rotate(180deg);
}

.slider-hardware-gallery-arrow.prev.slick-arrow:before {
  content:'';
  height: 20px;
  width: 10px;
  background:url(/app/themes/devignstudios-toolkit/resources/icons/white-chevron.svg) no-repeat;
  background-size: cover;
  margin-right:5px;
}

.slider-hardware-gallery-arrow svg {
  display:none;
}

[data-section="hardware-content"] {
  background: #f7f7f7;
}

.hardware-hero-wrapper {
  padding:3rem;
  border-radius:5px;
  border:1px solid #d8d8d8;
}

picture.hardware-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

[data-section="hardware-content"] .col-lg-6:nth-child(2) {
  border-left:1px solid #0000002e;
}

div#quote {
  background: #fff;
  padding: 2em;
  border-radius:5px;
  border-top: 10px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to left, #DA2327, #0179B6);
  border-width: 5px;
  overflow:hidden;
}

.read-more-container {
    position: relative;
}

.read-more-content {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Display only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(26px * 3); /* Adjust for line height */
    transition: max-height 2.4s ease; /* Smooth transition when expanding */
}

.read-more-content.expanded {
    max-height: 1000px; /* A large enough height to show all the content */
    -webkit-line-clamp: unset; /* Remove the line clamp when expanded */
    overflow-y:auto;
    transition: max-height 2.4s ease;
}

.read-more-btn {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.read-more-btn:hover {
    text-decoration: underline;
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.video-modal-content {
    position: relative;
    background-color: #000;
    margin: 0 auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.video-modal-close {
  color: #fff;
  float: right;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 10000;
}

.video-modal-close:hover {
  color: #ccc;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-top: 20px;
}

#videoEmbed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#videoEmbed iframe {
  width: 100%;
  height: 100%;
  border: none;
}


[data-section="hardware-print-carousel"] {
  padding-top:0px !important;
}
.slider-print-examples-gallery-items .slick-slide img {
  height:300px;
  width:auto;
  object-fit:cover;
  background:#fff;
  padding:20px;

}

.slider-print-examples-gallery-arrows {
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.slider-print-examples-gallery-arrow.slick-arrow {
  display:flex;
  height:40px;
  width:40px;
  background: #000;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius:20px;
  pointer-events: all !important;
}

.slider-print-examples-gallery-arrow.slick-arrow svg {
  stroke:#fff;
  stroke-width:1px;
}