/* For screens 600px wide or less */
@media screen and (max-width: 600px) {
  /* Adjust positioning for social icons */
  .phoneico {
    bottom: 15px; /* Adjust as needed */
    right: 185px; /* Adjust as needed */
  }
  .socialimg{
    bottom: 15px; /* Adjust as needed */
    right: 15px; /* Adjust as needed */
  } 
  .socialimg,
  .phoneico {
    height: 150px;
    width: 150px;
    position: fixed; /* Ensure icons are positioned relative to the viewport */
  }

}

/* For screens larger than 600px */
@media screen and (min-width: 601px) {
  /* Reset positioning for social icons */
  
  .phoneico {
    bottom: 15px; /* Adjust as needed */
    right: 85px; /* Adjust as needed */
  }
  .socialimg{
    bottom: 15px; /* Adjust as needed */
    right: 15px; /* Adjust as needed */
  }
  .socialimg,
.phoneico {
  height: 60px;
  width: 60px;
  position: fixed; /* Ensure icons are positioned relative to the viewport */
}
}
