@keyframes opacityanimation {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes loading {
  to {
    text-shadow: 20px 0 70px #BE9E44;
    color: #BE9E44; } }

@keyframes movecolorbackgorund {
  from {
    background-position: 0 0; }
  to {
    background-position: 400% 0; } }

@keyframes MoveBackgroundPosition {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.image-hover-text-container {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  transition: all 0.2s linear; }
  .image-hover-text-container .image-hover-image {
    display: block;
    overflow: hidden;
    border-radius: 4px; }
    .image-hover-text-container .image-hover-image .field--type-image {
      margin: 0; }
      .image-hover-text-container .image-hover-image .field--type-image img {
        width: 100%;
        height: 100%;
        margin: 0; }
        .image-hover-text-container .image-hover-image .field--type-image img:hover {
          -webkit-filter: grayscale(100%) blur(3px);
          filter: grayscale(100%) blur(3px);
          transform: scale(1.15); }
  .image-hover-text-container .image-hover-text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    opacity: 0;
    cursor: default;
    transition: opacity 0.2s linear; }
    .image-hover-text-container .image-hover-text:hover {
      opacity: 1; }
    .image-hover-text-container .image-hover-text .image-hover-text-bubble {
      position: relative;
      box-sizing: border-box;
      top: 0;
      left: 0;
      right: 100%;
      height: 100%;
      text-align: center;
      background: #212121;
      border-radius: 0;
      margin: 0 auto;
      overflow: hidden;
      font-size: 17px;
      text-align: center;
      word-wrap: break-word;
      padding: .5rem;
      padding-top: 2rem; }
      .image-hover-text-container .image-hover-text .image-hover-text-bubble .image-hover-text-title {
        font-size: 1rem;
        display: block;
        color: #BE9E44; }
      .image-hover-text-container .image-hover-text .image-hover-text-bubble .image-hover-text-subtitle {
        font-size: 0.8rem;
        color: white; }

.list-group-item {
  border-radius: 4px; }
