 *,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #333;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

.buttons {
  margin-top: 50px;
  text-align: center;
  border-radius: 30px;
}

/* Цвета */
.hero-cyan { color: #0505A9; }
.hero-dark { color: #FFFFFF; }

/* Кнопка */
.hero-blob-btn {
  position: relative;
  z-index: 1;
  padding: 20px 46px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #0505A9;
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  transition: color 0.5s;
}

/* Обводка кнопки */
.hero-blob-btn::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #0505A9;
  border-radius: 30px;
}

/* Фон под blob */
.hero-blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
  transition: transform 0.4s;
}

/* Контейнер blob с фильтром goo */
.hero-blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#goo');
}

/* Отдельные blob */
.hero-blob-btn__blob {
  position: absolute;
  top: 2px; /* толщина обводки */
  width: 25%; /* 4 blob */
  height: 100%;
  background: #0505A9;
  border-radius: 50%;
  transform: translateY(150%) scale(1.4);
  transition: transform 0.45s;
}

/* Расположение blob */
.hero-blob-btn__blob:nth-child(1) { left: 0; transition-delay: 0s; }
.hero-blob-btn__blob:nth-child(2) { left: 25%; transition-delay: 0.08s; }
.hero-blob-btn__blob:nth-child(3) { left: 50%; transition-delay: 0.16s; }
.hero-blob-btn__blob:nth-child(4) { left: 75%; transition-delay: 0.24s; }

/* Hover эффект */
.hero-blob-btn:hover {
  color: #fff;
}

.hero-blob-btn:hover .hero-blob-btn__blob {
  transform: translateY(0) scale(1.4);
}