/**
 * Harominka frontend styles
 */

 .harominka-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.harominka-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    gap: 10px;
    overflow: hidden;
    height: 660px;
}

.harominka-image {
    position: relative;
    height: 100%;
    height: 660px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
}

.harominka-icon {
    background-color: rgb(255 255 255 / 87%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    color: #333;
}



.harominka-image:hover .harominka-icon {
    transform: rotate(-45deg);
}

.harominka-image-left {
    flex: 0.7; /* 70% */
}

.harominka-image-right {
    flex: 0.3; /* 30% */
}

@media (max-width: 767px) {
    .elementor-9 .elementor-element.elementor-element-2be95d2 .elementor-heading-title {
        font-size: 22px;
        line-height: 30px;
    }

    .harominka-image {
        position: relative;
        height: 100%;
        height: 300px;
    }

    .harominka-image-wrapper {
        height: 300px;
    }
}