div#Keypad #contactVpi {
  position: fixed;
  z-index: 90;
  bottom: 15px;
  right: 15px;
  max-width: 60px;
  padding: 4px;
  cursor: pointer;
  border: 2px solid red;
  border-radius: 50%;
  background: rgb(255 255 255 / .8);
  transition: 0.4s ease;
}
div#Keypad #contactVpi:hover {
  padding: 0px;
  transition: 0.4s ease;
}
div#Keypad h2 {
  font-size: 16px;
  letter-spacing: 3px;
  margin-top: 25px;
}
div#Keypad p {
  color: #f00;
}
.whitUs {
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 2px hsl(0deg 0% 41% / 20%);
  background-color: #fff;
}
.whitUs a {
  text-decoration: none;
  transition: 0.4s ease;
}
.whitUs a img {
  position: relative;
  width: 35px;
  height: auto !important;
  filter: invert(.5) grayscale(1);
  transition: 0.4s ease;
}
.whitUs a#msn:hover img,
.whitUs a#wa:hover img,
.whitUs a#tel:hover img {
  filter: none;
  transition: 0.4s ease;
}
.whitUs a#msn:hover {
  color: #ce05cd;
  transition: 0.3s ease;
}
.whitUs a#wa:hover {
  color: #28a745;
  transition: 0.3s ease;
}
.whitUs a#tel:hover {
  color: #ab0404;
  transition: 0.3s ease;
}
.whitUs .withUs__item {
  /* font-weight: 600; */
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
  line-height: 26px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: #6c757d;
  justify-content: space-between;
  transition: all .3s;
}
.body_content .close {
  position: absolute;
  right: 10px;
  top: 15px;
  color: #f00;
  border: 2px solid #f00;
  padding: 3px 7px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
div#Keypad .body_content {
  position: fixed;
  z-index: 95;
  top: 50%;
  right: 0%;
  transform: translate(-50%, -50%);
  width: 120px;
  min-height: 65%;
  background: rgb(255 255 255 / .9);
  padding: 30px 20px 0;
  margin-right: -350px;
  min-width: 220px;
  opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  transition: .8s;
}
div#Keypad .body_content h4 {
  margin-top: 10px;
  font-size: 20px;
}
div#Keypad .bg {
  content: "";
  position: fixed;
  z-index: 93;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgb(0 0 0 / .35);
  transition: .6s;
}
div#Keypad .body_content.show {
  width: 280px;
  min-height: 100%;
  margin-right: -140px;
  -webkit-opacity: 1;
  opacity: 1;
  transition: .8s;
}
@media(max-width:620px) {
  .whitUs a#msn img,
  .whitUs a#wa img,
  .whitUs a#tel img {
    filter: none;
  }
  .whitUs a#msn {
    color: #ce05cd;
  }
  .whitUs a#wa {
    color: #28a745;
  }
  .whitUs a#tel {
    color: #ab0404;
  }
}