.button {
  display: inline-block;
  box-sizing: border-box;
  min-width: 227px;
  height: 60px;
  padding: 0 20px;
  border: 0 !important;
  border-radius: 30px;
  outline: none !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  transition: 0.5s all;
  cursor: pointer;
}

.button.small {
  min-width: 200px;
  height: 46px;
  font-size: 15px;
  line-height: 46px;
}

.button.middle {
  min-width: 192px;
  height: 48px;
  font-size: 16.2px;
  line-height: 48px;
}

.button.button-yellow {
  background-color: #ffc100;
  color: #005e92;
  min-width: 288px;
  white-space: nowrap;
}

.button.button-yellow:hover,
.button.button-yellow:focus {
  background-color: #e6ae00;
  color: #005e92;
}

.button.button-blue,
.button.button-border {
  box-sizing: border-box;
  background-color: transparent;
  border: 1px solid #005e92 !important;
  color: #005e92;
  min-width: 288px;
}

.button.button-blue:hover,
.button.button-blue:focus,
.button.button-border:hover,
.button.button-border:focus {
  background-color: rgba(0, 94, 146, 0.08);
  color: #005e92;
}

.button.button-white {
  box-sizing: border-box;
  background-color: transparent;
  border: 1px solid #ffffff !important;
  color: #ffffff;
  width: 288px;
}

.button.button-white:hover,
.button.button-white:focus {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

@media (max-width: 767px) {
  a.button,
  button.button,
  .button {
    width: 100%;
  }
  .button.small,
  .button.middle {
    width: 100%;
  }
  .button.button-blog {
    width: 100%;
  }
}
