@charset "UTF-8";

.btn {
  border-radius: 10px;
}
.btn-grey {
  background-color: #363636;
  color: #FFF;
  font-weight: 100;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 25px;
  width: 250px;
  padding: 10px 20px;
}
.btn-grey:hover {
  background-color: #ffc72f;
  color: #000;
  font-weight: 300;
  letter-spacing: 0px
}
.btn-social-share {
  background-color: #f8199d;
  color: #FFF;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 5px 20px;
  border-radius: 7px;
}
.btn-social-share:hover {
  background-color: #b20a6d;
  color: #FFF;
}
.btn-pink {
  background-color: #f8199d;
  color: #FFF;
  font-weight: 100;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 25px;
  padding: 6px 20px;
}
.btn-pink:hover {
  background-color: #b20a6d;
  color: #FFF;
}



/* tablet */  
@media (max-width: 990px) {

.btn-grey {
  width: 200px;
  font-weight: 200
}
.btn-pink {
  font-weight: 200
}

}



/* mobile */  
@media (max-width: 767px) {

.btn-grey {
  width: 100%;
  margin-bottom:20px;
}
.btn-pink {
  width: 100%;
}
.btn-carousel {
  margin-bottom: -20px
}

}