/*
 * BOX FANCY
 */
.bbx-fancy-box {
    position: absolute;
    z-index: 3;
    top: -24px;
    left: 50%;
    margin-left: -24px;
    margin-right: 0;
}

.bbx-fancy-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: white;
  padding: 12px 24px;
  margin-right: 24px;
  -webkit-box-shadow: inset 0px 0px 0px 1px #3498db;
  -moz-box-shadow: inset 0px 0px 0px 1px #3498db;
  -o-box-shadow: inset 0px 0px 0px 1px #3498db;
  box-shadow: inset 0px 0px 0px 1px #3498db;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: box-shadow 100ms linear;
  -moz-transition: box-shadow 100ms linear;
  -o-transition: box-shadow 100ms linear;
  -ms-transition: box-shadow 100ms linear;
  transition: box-shadow 100ms linear;
}
.bbx-fancy-link.bbx-block {
  display: block;
}
.bbx-fancy-link span.fancy-text {
  position: relative;
  z-index: 1;
  color: white;
  -webkit-transition: color 200ms linear;
  -moz-transition: color 200ms linear;
  -o-transition: color 200ms linear;
  -ms-transition: color 200ms linear;
  transition: color 200ms linear;
}
.bbx-fancy-link.center-link {
  margin: 0 12px;
}
.bbx-fancy-link:before,
.bbx-fancy-link:after {
  content: '';
  position: absolute;
  z-index: 0;
  display: block;
  top: -200%;
  bottom: -200%;
  background-color: #3498db;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.bbx-fancy-link:before {
  left: -48%;
  width: 100%;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  background-color: #4ea5e0;
}
.bbx-fancy-link:after {
  right: -48%;
  width: 100%;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.bbx-fancy-link:hover,
.bbx-fancy-link.active {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link:hover span.fancy-text,
.bbx-fancy-link.active span.fancy-text {
  text-decoration: none;
  color: #3498db;
}
.bbx-fancy-link:hover:before,
.bbx-fancy-link.active:before,
.bbx-fancy-link:hover:after,
.bbx-fancy-link.active:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 0%;
}
.bbx-fancy-link.bbx-fancy-box {
  width: 48px;
  text-align: center;
  padding: 12px 0;
}
.bbx-fancy-link.bbx-fancy-box i {
  font-size: 14px;
  text-align: center;
  width: 44px;
  margin-left: 4px;
}
.bbx-fancy-link.turquoise {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #1abc9c;
  -moz-box-shadow: inset 0px 0px 0px 1px #1abc9c;
  -o-box-shadow: inset 0px 0px 0px 1px #1abc9c;
  box-shadow: inset 0px 0px 0px 1px #1abc9c;
}
.bbx-fancy-link.turquoise span.fancy-text {
  color: white;
}
.bbx-fancy-link.turquoise:before,
.bbx-fancy-link.turquoise:after {
  background-color: #1abc9c;
}
.bbx-fancy-link.turquoise:before {
  background-color: #1ed7b2;
}
.bbx-fancy-link.turquoise:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.turquoise:hover span.fancy-text {
  color: #1abc9c;
}
.bbx-fancy-link.green-sea {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #16a085;
  -moz-box-shadow: inset 0px 0px 0px 1px #16a085;
  -o-box-shadow: inset 0px 0px 0px 1px #16a085;
  box-shadow: inset 0px 0px 0px 1px #16a085;
}
.bbx-fancy-link.green-sea span.fancy-text {
  color: white;
}
.bbx-fancy-link.green-sea:before,
.bbx-fancy-link.green-sea:after {
  background-color: #16a085;
}
.bbx-fancy-link.green-sea:before {
  background-color: #1abb9b;
}
.bbx-fancy-link.green-sea:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.green-sea:hover span.fancy-text {
  color: #16a085;
}
.bbx-fancy-link.emerald {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #2ecc71;
  -moz-box-shadow: inset 0px 0px 0px 1px #2ecc71;
  -o-box-shadow: inset 0px 0px 0px 1px #2ecc71;
  box-shadow: inset 0px 0px 0px 1px #2ecc71;
}
.bbx-fancy-link.emerald span.fancy-text {
  color: white;
}
.bbx-fancy-link.emerald:before,
.bbx-fancy-link.emerald:after {
  background-color: #2ecc71;
}
.bbx-fancy-link.emerald:before {
  background-color: #44d581;
}
.bbx-fancy-link.emerald:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.emerald:hover span.fancy-text {
  color: #2ecc71;
}
.bbx-fancy-link.nephritis {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #27ae60;
  -moz-box-shadow: inset 0px 0px 0px 1px #27ae60;
  -o-box-shadow: inset 0px 0px 0px 1px #27ae60;
  box-shadow: inset 0px 0px 0px 1px #27ae60;
}
.bbx-fancy-link.nephritis span.fancy-text {
  color: white;
}
.bbx-fancy-link.nephritis:before,
.bbx-fancy-link.nephritis:after {
  background-color: #27ae60;
}
.bbx-fancy-link.nephritis:before {
  background-color: #2dc76e;
}
.bbx-fancy-link.nephritis:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.nephritis:hover span.fancy-text {
  color: #27ae60;
}
.bbx-fancy-link.peter-river {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #3498db;
  -moz-box-shadow: inset 0px 0px 0px 1px #3498db;
  -o-box-shadow: inset 0px 0px 0px 1px #3498db;
  box-shadow: inset 0px 0px 0px 1px #3498db;
}
.bbx-fancy-link.peter-river span.fancy-text {
  color: white;
}
.bbx-fancy-link.peter-river:before,
.bbx-fancy-link.peter-river:after {
  background-color: #3498db;
}
.bbx-fancy-link.peter-river:before {
  background-color: #4ea5e0;
}
.bbx-fancy-link.peter-river:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.peter-river:hover span.fancy-text {
  color: #3498db;
}
.bbx-fancy-link.belize-hole {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #2980b9;
  -moz-box-shadow: inset 0px 0px 0px 1px #2980b9;
  -o-box-shadow: inset 0px 0px 0px 1px #2980b9;
  box-shadow: inset 0px 0px 0px 1px #2980b9;
}
.bbx-fancy-link.belize-hole span.fancy-text {
  color: white;
}
.bbx-fancy-link.belize-hole:before,
.bbx-fancy-link.belize-hole:after {
  background-color: #2980b9;
}
.bbx-fancy-link.belize-hole:before {
  background-color: #3091d1;
}
.bbx-fancy-link.belize-hole:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.belize-hole:hover span.fancy-text {
  color: #2980b9;
}
.bbx-fancy-link.amethyst {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #9b59b6;
  -moz-box-shadow: inset 0px 0px 0px 1px #9b59b6;
  -o-box-shadow: inset 0px 0px 0px 1px #9b59b6;
  box-shadow: inset 0px 0px 0px 1px #9b59b6;
}
.bbx-fancy-link.amethyst span.fancy-text {
  color: white;
}
.bbx-fancy-link.amethyst:before,
.bbx-fancy-link.amethyst:after {
  background-color: #9b59b6;
}
.bbx-fancy-link.amethyst:before {
  background-color: #a86ebf;
}
.bbx-fancy-link.amethyst:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.amethyst:hover span.fancy-text {
  color: #9b59b6;
}
.bbx-fancy-link.wisteria {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #8e44ad;
  -moz-box-shadow: inset 0px 0px 0px 1px #8e44ad;
  -o-box-shadow: inset 0px 0px 0px 1px #8e44ad;
  box-shadow: inset 0px 0px 0px 1px #8e44ad;
}
.bbx-fancy-link.wisteria span.fancy-text {
  color: white;
}
.bbx-fancy-link.wisteria:before,
.bbx-fancy-link.wisteria:after {
  background-color: #8e44ad;
}
.bbx-fancy-link.wisteria:before {
  background-color: #9d54bc;
}
.bbx-fancy-link.wisteria:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.wisteria:hover span.fancy-text {
  color: #8e44ad;
}
.bbx-fancy-link.wet-asphalt {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #34495e;
  -moz-box-shadow: inset 0px 0px 0px 1px #34495e;
  -o-box-shadow: inset 0px 0px 0px 1px #34495e;
  box-shadow: inset 0px 0px 0px 1px #34495e;
}
.bbx-fancy-link.wet-asphalt span.fancy-text {
  color: white;
}
.bbx-fancy-link.wet-asphalt:before,
.bbx-fancy-link.wet-asphalt:after {
  background-color: #34495e;
}
.bbx-fancy-link.wet-asphalt:before {
  background-color: #3f5872;
}
.bbx-fancy-link.wet-asphalt:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.wet-asphalt:hover span.fancy-text {
  color: #34495e;
}
.bbx-fancy-link.midnight-blue {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #2c3e50;
  -moz-box-shadow: inset 0px 0px 0px 1px #2c3e50;
  -o-box-shadow: inset 0px 0px 0px 1px #2c3e50;
  box-shadow: inset 0px 0px 0px 1px #2c3e50;
}
.bbx-fancy-link.midnight-blue span.fancy-text {
  color: white;
}
.bbx-fancy-link.midnight-blue:before,
.bbx-fancy-link.midnight-blue:after {
  background-color: #2c3e50;
}
.bbx-fancy-link.midnight-blue:before {
  background-color: #374d64;
}
.bbx-fancy-link.midnight-blue:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.midnight-blue:hover span.fancy-text {
  color: #2c3e50;
}
.bbx-fancy-link.sun-flower {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #f1c40f;
  -moz-box-shadow: inset 0px 0px 0px 1px #f1c40f;
  -o-box-shadow: inset 0px 0px 0px 1px #f1c40f;
  box-shadow: inset 0px 0px 0px 1px #f1c40f;
}
.bbx-fancy-link.sun-flower span.fancy-text {
  color: white;
}
.bbx-fancy-link.sun-flower:before,
.bbx-fancy-link.sun-flower:after {
  background-color: #f1c40f;
}
.bbx-fancy-link.sun-flower:before {
  background-color: #f3cb2c;
}
.bbx-fancy-link.sun-flower:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.sun-flower:hover span.fancy-text {
  color: #f1c40f;
}
.bbx-fancy-link.orange {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #f39c12;
  -moz-box-shadow: inset 0px 0px 0px 1px #f39c12;
  -o-box-shadow: inset 0px 0px 0px 1px #f39c12;
  box-shadow: inset 0px 0px 0px 1px #f39c12;
}
.bbx-fancy-link.orange span.fancy-text {
  color: white;
}
.bbx-fancy-link.orange:before,
.bbx-fancy-link.orange:after {
  background-color: #f39c12;
}
.bbx-fancy-link.orange:before {
  background-color: #f4a82f;
}
.bbx-fancy-link.orange:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.orange:hover span.fancy-text {
  color: #f39c12;
}
.bbx-fancy-link.carrot {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #e67e22;
  -moz-box-shadow: inset 0px 0px 0px 1px #e67e22;
  -o-box-shadow: inset 0px 0px 0px 1px #e67e22;
  box-shadow: inset 0px 0px 0px 1px #e67e22;
}
.bbx-fancy-link.carrot span.fancy-text {
  color: white;
}
.bbx-fancy-link.carrot:before,
.bbx-fancy-link.carrot:after {
  background-color: #e67e22;
}
.bbx-fancy-link.carrot:before {
  background-color: #e98e3d;
}
.bbx-fancy-link.carrot:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.carrot:hover span.fancy-text {
  color: #e67e22;
}
.bbx-fancy-link.pumpkin {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #d35400;
  -moz-box-shadow: inset 0px 0px 0px 1px #d35400;
  -o-box-shadow: inset 0px 0px 0px 1px #d35400;
  box-shadow: inset 0px 0px 0px 1px #d35400;
}
.bbx-fancy-link.pumpkin span.fancy-text {
  color: white;
}
.bbx-fancy-link.pumpkin:before,
.bbx-fancy-link.pumpkin:after {
  background-color: #d35400;
}
.bbx-fancy-link.pumpkin:before {
  background-color: #f26000;
}
.bbx-fancy-link.pumpkin:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.pumpkin:hover span.fancy-text {
  color: #d35400;
}
.bbx-fancy-link.alizarin {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #e74c3c;
  -moz-box-shadow: inset 0px 0px 0px 1px #e74c3c;
  -o-box-shadow: inset 0px 0px 0px 1px #e74c3c;
  box-shadow: inset 0px 0px 0px 1px #e74c3c;
}
.bbx-fancy-link.alizarin span.fancy-text {
  color: white;
}
.bbx-fancy-link.alizarin:before,
.bbx-fancy-link.alizarin:after {
  background-color: #e74c3c;
}
.bbx-fancy-link.alizarin:before {
  background-color: #ea6557;
}
.bbx-fancy-link.alizarin:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.alizarin:hover span.fancy-text {
  color: #e74c3c;
}
.bbx-fancy-link.pomegranate {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #c0392b;
  -moz-box-shadow: inset 0px 0px 0px 1px #c0392b;
  -o-box-shadow: inset 0px 0px 0px 1px #c0392b;
  box-shadow: inset 0px 0px 0px 1px #c0392b;
}
.bbx-fancy-link.pomegranate span.fancy-text {
  color: white;
}
.bbx-fancy-link.pomegranate:before,
.bbx-fancy-link.pomegranate:after {
  background-color: #c0392b;
}
.bbx-fancy-link.pomegranate:before {
  background-color: #d24637;
}
.bbx-fancy-link.pomegranate:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.pomegranate:hover span.fancy-text {
  color: #c0392b;
}
.bbx-fancy-link.clouds {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #ecf0f1;
  -moz-box-shadow: inset 0px 0px 0px 1px #ecf0f1;
  -o-box-shadow: inset 0px 0px 0px 1px #ecf0f1;
  box-shadow: inset 0px 0px 0px 1px #ecf0f1;
}
.bbx-fancy-link.clouds span.fancy-text {
  color: white;
}
.bbx-fancy-link.clouds:before,
.bbx-fancy-link.clouds:after {
  background-color: #ecf0f1;
}
.bbx-fancy-link.clouds:before {
  background-color: #fefefe;
}
.bbx-fancy-link.clouds:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.clouds:hover span.fancy-text {
  color: #ecf0f1;
}
.bbx-fancy-link.silver {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #bdc3c7;
  -moz-box-shadow: inset 0px 0px 0px 1px #bdc3c7;
  -o-box-shadow: inset 0px 0px 0px 1px #bdc3c7;
  box-shadow: inset 0px 0px 0px 1px #bdc3c7;
}
.bbx-fancy-link.silver span.fancy-text {
  color: white;
}
.bbx-fancy-link.silver:before,
.bbx-fancy-link.silver:after {
  background-color: #bdc3c7;
}
.bbx-fancy-link.silver:before {
  background-color: #ced2d5;
}
.bbx-fancy-link.silver:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.silver:hover span.fancy-text {
  color: #bdc3c7;
}
.bbx-fancy-link.concrete {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #95a5a6;
  -moz-box-shadow: inset 0px 0px 0px 1px #95a5a6;
  -o-box-shadow: inset 0px 0px 0px 1px #95a5a6;
  box-shadow: inset 0px 0px 0px 1px #95a5a6;
}
.bbx-fancy-link.concrete span.fancy-text {
  color: white;
}
.bbx-fancy-link.concrete:before,
.bbx-fancy-link.concrete:after {
  background-color: #95a5a6;
}
.bbx-fancy-link.concrete:before {
  background-color: #a6b3b4;
}
.bbx-fancy-link.concrete:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.concrete:hover span.fancy-text {
  color: #95a5a6;
}
.bbx-fancy-link.asbestos {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px #7f8c8d;
  -moz-box-shadow: inset 0px 0px 0px 1px #7f8c8d;
  -o-box-shadow: inset 0px 0px 0px 1px #7f8c8d;
  box-shadow: inset 0px 0px 0px 1px #7f8c8d;
}
.bbx-fancy-link.asbestos span.fancy-text {
  color: white;
}
.bbx-fancy-link.asbestos:before,
.bbx-fancy-link.asbestos:after {
  background-color: #7f8c8d;
}
.bbx-fancy-link.asbestos:before {
  background-color: #8f9b9b;
}
.bbx-fancy-link.asbestos:hover {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  -o-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.13);
}
.bbx-fancy-link.asbestos:hover span.fancy-text {
  color: #7f8c8d;
}