/*---------------------------------------
  RHYTHMS
-----------------------------------------*/
.rhythms-section {
    /*  background-image: url('../images/backgrounds/edward-unsplash-blur.jpg');*/
  background-color: var(--white-logo-color);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.rhythms-thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.rhythms-image {
    border-radius: var(--border-radius-medium);
    display: block;
    width: 100%;
}

.rhythms-thumb:hover .rhythms-hover {
    transform: translateY(0);
    opacity: 1;
}

.rhythms-hover {
    background-color: var(--red-logo-color);
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: var(--border-radius-medium);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    margin: 0px;
    padding: 15px;
    transition: all 0.5s ease;
    transform: translateY(100%);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
}

.rhythms-hover p strong {
    color: var(--white-color);
    display: inline-block;
    min-width: 100px;
    margin-right: 10px;
}

.rhythms-hover p a {
    color: var(--secondary-color);
}

.rhythms-hover p a:hover {
    color: var(--white-color);
}

.rhythms-hover hr {
    margin: 1.5rem 0;
}
