button{
  transition: all .4s ease;
  padding: 0 32px;
  height: 64px;
  color: #000;
}

button > *{
  vertical-align: middle;
}

button > svg{
  margin-right: 10px;
}

button.plane {
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
}

button.plane.small {
  height: 32px;
  line-height: 32px;
}

button.plane:hover{
  border: 1px solid #FFF;
  color: #1A1A1A;
  background: #FFF;
}

button{
  border-radius: 16px;
  border: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px; /* 160% */
}

button.private{
  background: #00F7FF;
  color: #000;
}

button.private:hover{
  background: #00D5DC;
}

button.blue-btn{
  background: #00F7FF;
  color: #1A1A1A;
}

button.blue-btn:hover{
  background: #00D5DC;
}

button.black-btn{
  background: #000;
  color: #fff;
}

button.black-btn:hover{
  background: #1A1A1A;
}

button.yellow-btn{
  background: #EAFF09;
  color: #1A1A1A;
}

button.yellow-btn:hover{
  background: #C7D908;
}

button.mini{

}

.learn-more.private{
  color: #00F7FF;
  font-size: 18px;
  cursor: pointer;
}