* {
    margin: 0;
    padding: 0;
}

.designConcept {
    position: relative;
    height: 100vh;
    width: 100%;
}

.layer {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    height: 100vh;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

.bg {
    background-image: url(../innergigabyteimages/designConcept/bg.jpg);
    animation: bgGlow .1s infinite linear;
    background-size: cover;
    width: 100%;
}

.bg3 {
    animation: bg3 1s infinite linear;
    width: 100%;
    transform: translate(0, 0);
}

@keyframes bg3 {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

.bg4 {
    animation: bg4 1s infinite linear;
    width: 100%;
    transform: translate(0, 0);
}

@keyframes bg4 {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

.robot {
    transform: translate(-50%, -50%) scale(1.05);
    height: 95%;
    width: unset;
    top: 50%;
}

@keyframes bgGlow {
    0% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(90deg);
    }

    100% {
        filter: hue-rotate(0deg);
    }
}

@media screen and (max-width:1200px) {
    .robot {
        height: unset;
        width: 100%;
        position: relative;
    }

    .jp1 {
        display: none;
    }

    .bg,
    .bg3,
    .bg4 {
        animation: unset;
    }
}