.serv-head{
  font-size: 4rem;
  text-align: center;
  margin: 10px 0px;
  color:#f48221
}
.serv-menu{
  display: flex;
}
.menu-items{
  text-align: center;
  flex: 2;
}
.menu-button{
  font-size: 1.5rem;
  margin: 10px 10px;
  color:  #0F2D59;
  cursor: pointer;
  text-decoration: 2px underline #f48221;
}

.det{
  display: none;
}
.sub_head{
  font-size: 3rem;
}
.details{
  flex: 8;
  margin-left: 20px;
  margin-top: 10px;
}
.services-button{
  display: none;
}

.img-machine{
  height: 300px;
  width: auto;
}

.cust-drop-btn{
  background-color: #f48221;
  font-size: 1.5rem;
}
.img-desk-sm{
  max-width: 400px;
  animation: zoomInOut 4s ease-in-out infinite;
  transition: transform 0.3s ease-in-out;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Zoom level */
  }
}

.zoom-image {
  animation: zoomInOut 4s ease-in-out infinite;
  transition: transform 0.3s ease-in-out;
}



@media only screen and (max-width: 600px) {
  .serv-menu{
    flex-direction: column;
  }
  .menu-button{
    margin: 10px;
    font-size: 1rem;
  }
  .grii{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
.img-machine{
  object-fit: contain;
  height: auto;
  max-height: 300px;
  max-width: 95%;
}

.cust-drop-menu.show{
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: 100%;

}

}