/*
Theme Name: Triplyn Child
Theme URI: https://triplyn.in/
Description: A child theme for the Triplyn theme
Author: Prince Max
Author URI: https://triplyn.in/
Template: triplyn
Version: 1.0.0
*/

/* Custom CSS goes below */

/* Wrapper for the header icons */
.header-icons-wrapper {
  position: relative;
  width: 300px; /* Set the visible area width */
  overflow: hidden; /* Hide overflow for sliding effect */
  padding: 10px;
}

/* Header icons container */
.header-icons {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Smooth sliding effect */
}

/* Individual header icon */
.header-icon {
  flex: 0 0 100px; /* Set the width for each header icon */
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column; /* Arrange icon and text vertically */
  align-items: center;
}

/* Styling for img tag */
.header-icon img {
  width: 40px; /* Set the width of the icons */
  height: 40px; /* Set the height of the icons */
  object-fit: cover; /* Ensure the image fits without distortion */
}

/* Style for the icon heading text */
.header-icon p {
  font-size: 14px;
  margin-top: 5px;
  color: #333;
}

/* Arrow Buttons */
.prev-arrow, .next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

/* Positioning the arrows */
.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}
