#site-study {

}

#site-study .content {
    position: relative;
    border-radius: 100px;
    background-image: url(globe.gif);
    border: 1px solid var(--site-border);
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--site-primary);
    background-blend-mode: luminosity;
}

#site-study .text {
    font-size: 60px;
    color: #fff;
    padding: 250px 150px;
    position: relative;
    z-index: 1;
}

#site-study img {
    position: absolute;
    left: 0;
    right: 0;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.25;

    display: none !important;
}

#site-study img.top {
    top: -100px;
    animation: slideTop 3s linear infinite;
}

#site-study img.bottom {
    bottom: -100px;
    animation: slideBottom 3s linear infinite;
}


@keyframes slideTop {
    0% {
        top: -100px;
    }

    30% {
        top: -50px;
    }

    70% {
        top: -100px;
    }

    100% {
        top: -100px;
    }    
}



@keyframes slideBottom {
    0% {
        bottom: -100px;
    }

    30% {
        bottom: -50px;
    }

    70% {
        bottom: -100px;
    }

    100% {
        bottom: -100px;
    }    
}



@media (max-width: 1080px) {
    #site-study .text {
        font-size: 30px;
        padding: 100px 50px;  
    }

    #site-study .content {
        border-radius: 50px;
    }

    #site-study img {
        width: 80%;
    }

}