.preview {
    cursor: pointer;
}

.home-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 0px;
    overflow: hidden;
}

.home-image-section-phone {
    display: none;
}

@media (max-width: 1050px) {

    .home-image-section {
        display: none;
    }

    .home-image-section-phone {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        width: 100vw;
        overflow: hidden;
    }

}

.image-container {
    position: relative;
    width: 100vw;
}

#myimage {
    width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}

.preview {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    background-repeat: no-repeat;
    background-size: 200%;
    pointer-events: auto;
}

.circle-preview {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 1);
    transition: transform 0.3s ease;
    background-size: 200%;
    background-repeat: no-repeat;
    backdrop-filter: none;
    background-image: none;
}

.circle-preview.active-preview {
    width: 125px;
    height: 125px;
    z-index: 20;
}

.preview-wrapper {
    position: absolute;
    padding: 12px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 1);
    border: 6px solid white;
    animation: scaling 2s ease-in-out infinite;
    border-radius: 50%;
    pointer-events: none;
    translate: -50% -50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes scaling {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.preview-wrapper .preview {
    pointer-events: auto;
}

.preview-wrapper.roofing {
    top: 12%;
    left: 45%;
}

.preview-wrapper.automotive {
    bottom: 23%;
    right: 34%;
}

.preview-wrapper.weather {
    top: 24%;
    left: 38%;
}

.preview-wrapper.bath {
    top: 52%;
    right: 44%;
}

.preview-wrapper.door {
    bottom: 48%;
    left: 48%;
}

.preview-wrapper.crystal {
    top: 54%;
    left: 30%;
}

.preview-wrapper.high-grab {
    bottom: 34%;
    left: 45%;
}

.preview-wrapper.high-grab2 {
    bottom: 22%;
    left: 38%;
}

.preview-wrapper.concrete {
    bottom: 16%;
    left: 19%;
}

.preview-wrapper.floor {
    bottom: 10%;
    left: 23%;
}

.preview-wrapper.boat {
    top: 47%;
    right: 29%;
}


#hover-info {
    position: absolute;
    background: linear-gradient(120deg, #c4ebf9 0%, #73beea 100%);
    padding: 20px 0px 20px 30px;
    border-radius: 16px;
    font-size: 14px;
    pointer-events: none;
    display: none;
    z-index: 5;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
}