.grid{
    position: fixed; top: 0; left: 50%;
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    transform: translateX(-50%);

    &__line{
        height: 100%;
        width: 1px;
        background-color: #F2F2F2;
    }

    @media (max-width:767px){
        &{
            width: 90%;
        }
    }
}