/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2023 | 03:02:28 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 25 2023 | 06:12:35 */
.btn01 {
  display: inline-block;
  background-color: var(--color-light-brown);
  padding: 6px 15px;
  color: #fff;
  transition: 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.btn-arrow {
  margin-left: 5px;
}
.btn01:hover {
  opacity: 0.7;
}
.btn02 {
  position: relative;
  display: inline-block;
  margin: auto;
  border-radius: 10em;
  background-color: var(--color-pink);
  width: 40px;
  height: 40px;
}
.btn-arrow02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  transition: all 0.3;
}
.btn02:hover {
  border: 1px solid var(--color-pink);
  background-color: transparent;
  transition: all 0.3;
}
.btn02:hover .btn-arrow02 {
  color: var(--color-pink);
}
