



.sm-buttons {

  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

/* styles for a common effect */
.effect a {
  text-decoration: none !important;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border-radius: 50%;
	border-color: #825A41;
  margin: 10px;
  font-size: 25px;
  overflow: hidden;
  position: relative;
  color: #825A41;
}
.effect a i {
  position: relative;
  z-index: 3;
  display: inline-block;
  vertical-align: middle;
}

.effect a:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* varrius effect */
.effect.varrius a {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.effect.varrius a:after {
  content: "";
  display: block;
  width: 90%;
  height: 90%;
  top: -110%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
	border-color: #825A41;
  background-color: #825A41;
  border-radius: 50%;
}
.effect.varrius a:hover {
	color: #ffffff;
}
.effect.varrius a:hover:after {
  top: 5%;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
@media all and (min-width: 768px){
.effect a {
    border: 1px solid #825A41;;
}

}
