.ContactMenu {
  position: fixed;
  z-index: 10;
  top: 45vh;
  right: 0;
  flex-direction: row;
  justify-content: center;
}

.ContactMenu-item {
  display: flex;
  margin-bottom: 10px;
  padding: 0;
}

.ContactMenu-item:hover .ContactMenu-icon {
      border-radius: 0 5px 5px 0;
    }

@media screen and (min-width: 1026px) {

.ContactMenu-item:hover .ContactMenu-icon {
        border-radius: 0 15px 15px 0;
    }
      }

.ContactMenu-item:hover .ContactMenu-text {
      right: 100%;
      display: flex;
      overflow: visible;
      width: -moz-max-content;
      width: max-content;
      transition: 0.2s right;
    }

.ContactMenu-item:last-child .ContactMenu-text {
    flex-direction: column;
  }

.ContactMenu-item:last-child .ContactMenu-text div {
      margin-right: auto;
    }

.ContactMenu-content {
  display: flex;
}

.ContactMenu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  font-size: 1.5rem;
  background-color: var(--clr-primary);
  color: #ffffff;
  transition: 0.2s all;
}

@media screen and (min-width: 1026px) {

.ContactMenu-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    font-size: 2.5rem;
}
  }

.ContactMenu-text {
  position: absolute;
  right: -500%;
  align-items: center;
  justify-content: left;
  overflow: hidden;
  width: 0;
  height: 60px;
  margin-top: 0;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  font-size: 1.25rem;
  background-color: var(--clr-primary);
  color: #ffffff;
}

@media screen and (min-width: 1026px) {

.ContactMenu-text {
    height: 80px;
    padding: 17px;
    border-radius: 15px 0 0 15px;
}
  }

.ContactMenu-text span {
    display: block;
  }

.ContactMenu-text a {
    color: #ffffff;
  }
