/* <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> */

.main-color {
    color: var(--mainColor);
}
.sec-color {
    color: var(--secColor);
}
.main-background-color {
    background: var(--mainColor) !important;
}
.sec-background-color {
    background: var(--secColor) !important;
}
.floating_btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 150px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 70px;
  height: 70px;
  font-size: 30px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #42db87;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Animation Styles */
  transform: translateY(0px);
  animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);

  /* Shadow Animation */
  box-shadow: 0 0 0 0 #5f8dff;

  /* Other Styles */
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;

  transition: all 800ms ease-in-out;
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
