.background1{
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    bottom:0px;
    right:0px;
}
.bgcolor {
    position:absolute;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    bottom:0px;
    right:0px;
    background-color:#000000;
    opacity:0.5;
}
.abs {
    position:absolute;
    width: 100%;
    padding: 70px 0;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically if needed */
}
.box {
  display: inline-grid;
  grid-template-columns: repeat(2, auto); /* 2 columns */
  gap: 20px; /* space between icons */
  padding: 40px;
  min-width: 320px;
  min-height: 80px;
  background: #ffffff;
  border: 1px solid grey;
  padding: 40px;
  border-radius: 10px;
  box-shadow: #333 5px 5px 5px 2px;
  transition: all 0.3s ease; /* Smooth transition */
}

.box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}




