@import url("https://fonts.googleapis.com/css?family=Montserrat");
/* new */
.rz-footer ::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.rz-footer ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.rz-footer ::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.rz-footer ::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* new end */
.rz-footer {
  z-index: 99999999999999;
  height: 40px;
  font-family: "Trebuchet MS", sans-serif;
  background-color: #212529;

  color: #fff;
  font-size: 14px;
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999;
}
.rz-footer p {
  margin: 10px 0;
}
.rz-footer .lv {
  color: red;
}
.rz-footer a {
  color: #3c97bf;
  text-decoration: none;
}
.rz-footer .rz-footer-text {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 2;
}
.rz-dropup-trigger {
  cursor: pointer;
  min-width: 90px;
}
/* new starts */
.rz-dropup-trigger:focus .rz-dropup {
  display: flex;
}
.rz-dropup-trigger .v-m {
  display: block;
}
.rz-dropup-trigger .v-l {
  display: none;
}
.rz-dropup-trigger:focus .v-m {
  display: none;
}
.rz-dropup-trigger:focus .v-l {
  display: block;
}
@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  } /* The following five values can be played with to make the waving more or less extreme */
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  } /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}
.rz-dropup .rz-close:hover {
  animation-name: wave-animation; /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s; /* Change to speed up or slow down */
  animation-iteration-count: infinite; /* Never stop waving :) */
  transform-origin: 70% 70%; /* Pivot around the bottom-left palm */
  display: inline-block;
}
.rz-dropup .rz-close {
  position: fixed;
  font-size: 1.5rem;
  cursor: pointer;
  top: 0;
  right: 0;
  padding: 20px 30px;
}
/* new ends */
.rz-dropup {
  cursor: auto;
  /* background-color: #28223f; */
  background-color: #212529;
  border-bottom: 1px solid #3b3b3b;
  font-family: Montserrat, sans-serif;
  /* display: none; */
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  height: calc(100vh - 30px);
  position: absolute;
  bottom: 28px;
  /* new botton change */
  left: 0;
  width: 100%;
  margin: 0;
  overflow-y: auto;
}
.rz-dropup .rz-cards {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  width: 100%;
  padding: 0 20px;
  height: 100%;
  overflow-y: auto;
  flex-wrap: wrap;
  gap: 15px;
}
.rz-dropup h3 {
  margin: 10px 0;
}
.rz-dropup h6 {
  margin: 5px 0;
  text-transform: uppercase;
}
.rz-dropup p {
  font-size: 14px;
  line-height: 21px;
}
.rz-dropup .rz-card {
  transition: all 0.5s ease-in-out;
  /* background-color: #231e39; */
  background-color: #212529;
  border-radius: 5px;
  box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.75);
  color: #b3b8cd;
  padding-top: 30px;
  position: relative;
  width: 350px;
  max-width: 100%;
  text-align: center;
}
.rz-dropup .rz-card:hover {
  scale: 1.1;
}
.rz-dropup .rz-card .pro {
  display: none;
  color: #231e39;
  background-color: #febb0b;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 7px;
  position: absolute;
  top: 30px;
  left: 30px;
}
.rz-dropup .rz-card .round {
  border: 1px solid #03bfcb;
  border-radius: 50%;
  padding: 7px;
}
.rz-dropup .rz-card button.primary {
  background-color: #03bfcb;
  border: 1px solid #03bfcb;
  border-radius: 3px;
  color: #231e39;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  padding: 10px 25px;
}
.rz-dropup .rz-card button.primary.ghost {
  background-color: transparent;
  color: #02899c;
}
.rz-dropup .rz-card .skills {
  /* background-color: #1f1a36; */
  background-color: #292f36;
  text-align: left;
  padding: 15px;
  margin-top: 30px;
}
.rz-dropup .rz-card .skills ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.rz-dropup .rz-card .skills ul li {
  border: 1px solid #212529;
  border-radius: 2px;
  display: inline-block;
  font-size: 12px;
  margin: 0 7px 7px 0;
  padding: 7px;
}
