.contact-popup{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  background-color: #2c3e50;
  margin-bottom: 100px;
  width: 90px;
  height: 140px;
  padding: 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-popup:hover .contact-popup-image img{
  transform: rotate(360deg);
}

.contact-popup-image {
  border-radius: 50%;
  border: 2px solid #e1b865;
  padding: 10px;
}

.contact-popup-image img {
  width: 30px;
  transition: transform .6s;
}

.contact-popup p{
  margin-top: 5px;
  text-align: center;
  color: #e1b865;
}

@media only screen and (max-width: 800px){

  .contact-popup{
    margin-bottom: 150px;
    width: 75px;
    height: 110px;
    padding: 20px;
  }
  
  .contact-popup-image {
    border-radius: 50%;
    border: 2px solid #e1b865;
    padding: 10px;
  }
  
  .contact-popup-image img {
    width: 20px;
    transition: transform .6s;
  }
  
  .contact-popup p{
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
    color: #e1b865;
  }
  
}

@media only screen and (max-height: 500px){
  .contact-popup{
    margin-bottom: 150px;
  }
}


@media only screen and (max-height: 400px){
  .contact-popup{
    margin-bottom: 50px;
  }
}