.home .backstretch {
	background-color: #000;
    overflow:hidden;
    max-height: 100dvh;
    width: 100dvw;
    max-width: 100dvw;
}

.home .backstretch img {
    display:block;
    object-fit: cover;
    top:0!important;
    max-width: 100dvw;
    overflow:hidden;
}

.home .backstretch img[src*="left"] {
    left:0!important;
}

.home .backstretch img[src*="right"] {
    right:0!important;
    left:auto!important;
}

.home .backstretch img[src*="bottom"] {
    /* top:-8%!important; */
    /* bottom: 0!important; */
}

.home .backstretch img[src*="center"] {
    /* top:-8%!important; */
    /* bottom: 0!important; */
}

.home .backstretch {
    /* animation: pan 18s linear both infinite alternate;
    animation-delay: 600ms; */
}

@keyframes pan {
    0% {
      transform: scale(1.15);
    };
    50% {
        transform: scale(1);
      };
    100% {
        transform: scale(1.15);
    }
}