*{
  font-family: "Inter", "Inter Placeholder", sans-serif;
 
}

/* Css For DropDown Button */

#drop-down-button, #drop-down-button-main {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
}

#drop-down-button div, #drop-down-button-main div {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  font-size: 36px;
  font-weight: 300;
  border-radius: 50%;
  opacity: 0.3;
  color: black;
  transition: 0.4s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.activate div {
  transform: rotate(45deg);

}


/* Contact Submission */
#sent, #sent-failed{
  transition: opacity 1s ease-in-out;
}

#sent.hidden, #sent-failed.hidden{
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

#sent.visible, #sent-failed.visible{
  height: auto;
  visibility: visible;
  opacity: 1;
}


#contact-form.hidden{
  display: none;
}


@media (max-width: 400px) {
.send-success-tick, .send-failed-tick{
  max-width: 190px;
  }
}