.custom-image-animation.page-width {
    max-width: 1366px;
    margin: auto;
    padding: 40px 64px 70px;
    overflow: visible;
}
.custom-image-animation .images-container{
    position: relative;
}
.custom-image-animation .small-image {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0px 24px 80px rgba(0, 0, 0, 0.28);
    border-radius: 6px;
    transform: translate3d(-10%, 100px, 0);
    opacity: 0;
    transition: transform 1s ease-in-out 0s, opacity 1s ease-in-out 0s;
    width: 30.5%;
}
.custom-image-animation .small-image img{
    width: 100%;
}
.custom-image-animation .small-image.move{
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.custom-image-animation .big-image {
    position: relative;
    justify-content: flex-end;
    display: flex;
    margin-left: 100px;
}
.custom-image-animation .video-container{
    height: 696px;
}
.custom-image-animation .video-container video{
    width: 100%;
    height: auto;
}
@media (min-width: 1300px) {
    .custom-image-animation .big-image{
        width: 1136px;
    }
    .custom-image-animation .big-image img{
        width: 100%;
    }
    .custom-image-animation .images-container{
        height: 647px;
    }
}
@media (min-width: 1024px) and (max-width: 1200px){
    .custom-image-animation .big-image {
        margin-left: 70px;
    }
    .custom-image-animation .small-image{
        width: 30.5%;
    }
    .custom-image-animation .video-container{
        height: 505px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-image-animation.page-width {
        padding: 8px 32px 70px;
    }
    .custom-image-animation .big-image {
        margin-left: 60px;
        width: calc(100% - 60px);
        height: auto;

    }
    .custom-image-animation .big-image img{
        width: 100%;
    }
    .custom-image-animation .small-image{
        width: 30.5%;
    }
    .custom-image-animation .video-container{
        height: 396px;
    }
}

@media (max-width: 767px) {
    .custom-image-animation.page-width{
        display: none;
    }
}