.cloud-animation {
    position: relative;
    width: 100%;
    height: 216px;
    overflow: visible;
    margin: 0;
}

.cloud {
    position: absolute;
    top: 50%;
    width: 800px;
    height: 216px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent; /* Убираем подложку */
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: none;
    z-index: 10;
}

.cloud-left {
    left: calc(50% - 150px); /* Смещаем левее центра на 150px */
    background-image: url('../img/cloudclashik.png');
    transform: translate(-50%, -50%) scale(1) scaleX(-1); /* Отзеркаливаем по горизонтали */
}

.cloud-right {
    left: calc(50% + 150px); /* Смещаем правее центра на 150px */
    background-image: url('../img/cloudclashik.png');
}