.water-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
    gap: 20px 20px;
}

.water-container .drop3 {
    position: relative;
    width: 250px;
    height: 250px;
    box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),
    25px 35px 20px rgba(0, 0, 0, 0.05),
    25px 30px 30px rgba(0, 0, 0, 0.05),
    inset -20px -20px 25px rgba(255, 255, 255, 0.9);
    transition: 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}


.water-container .drop3:nth-child(1) {
    border-radius: 33% 67% 39% 61% / 67% 43% 57% 33%;
}

.water-container .drop3:nth-child(2) {
    border-radius: 40% 60% 43% 57% / 44% 41% 59% 56%  ;
}

.water-container .drop3:nth-child(3) {
    border-radius: 67% 33% 43% 57% / 35% 59% 41% 65% ;
}

.water-container .drop3:nth-child(4) {
    border-radius: 59% 41% 43% 57% / 67% 59% 41% 33%  ;
}

.water-container .drop3:nth-child(5) {
    border-radius: 33% 67% 39% 61% / 67% 43% 57% 33%   ;
}

.water-container .drop3:nth-child(6) {
    border-radius: 36% 64% 61% 39% / 62% 58% 42% 38%   ;
}

.water-container .drop3:nth-child(7) {
    border-radius: 57% 43% 30% 70% / 62% 58% 42% 38%     ;
}

.water-container .drop3:hover {
    border-radius: 50%;
}

.water-container .drop3::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 45px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
}

.water-container .drop3::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 35px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
}

.water-container .drop3 .water-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    
}

.water-container .drop3 .water-content h2 {
    position: relative;
    width: 50px;
    height: 50px;
    background: #eff0f4;
    border-radius: 50%;
    box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.1),
    inset -2px -5px 10px rgba(255, 255, 255, 1),
    15px 15px 10px rgba(0, 0, 0, 0.05),
    15px 10px 15px rgba(0, 0, 0, 0.025);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    color: #0063AF;
    margin: 0;

}

.water-container .drop3 .water-content p {
    color: #0063AF;
    text-align: center!important;
}