.box-section {
  display: flex;
  position: relative; /* Ensure relative positioning for the container */
  margin-left: -25px;
}

.box {
  width: 110px;
  height: 110px;
  background-color: #3B6C6B;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  cursor: pointer;
  position: relative; /* Ensure relative positioning for the boxes */
  border-radius: 10%; /* Makes the square edges rounded */
}

.box:hover{
  background-color: #EF700C;
  color: #FFF;
}

.popover {
  display: none;
  position: absolute;
  background-color: #333;
  color: white;
  padding: 15px; /* Adjust or remove if this padding is causing the issue */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  word-wrap: break-word;
  overflow: hidden;
  text-align: left; /* Ensure text alignment is consistent */
}

.popover.visible {
  display: block;
}

.small-icon {
  height: 70px;
}

@media (max-width: 991.98px) {
  .popover-mobile {
    margin-left: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .popover-mobile {
    margin-left: 0px;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .container.box-section .col-6 {
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
  }
}