#website-update {
    display: none;
    flex-direction: row;
    width: 1000px;
    height: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#step-data {
    color: wheat;
    position: absolute;
    bottom: 30%;
}

#models {
    background-color: #222;
}

.start-site {
    display: flex;
    flex-direction: column;
    background-color: bisque;
    color: brown;
    height: 800px;
    width: 700px;
    font-family: 'Courier New', Courier, monospace;
}

.start-headline {
    font-family: inherit;
    font-size: 3em;
}

.end-headline {
    font-family: 'Crushed';
    text-shadow: #302e25 2px 2px;
    font-size: 3em;
    text-align: center;
    color: blueviolet;
    margin-top: 20px;
    animation: headline-breathe 3s infinite;
}

@keyframes headline-breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.end-site {
    display: flex;
    flex-direction: column;
    align-content: space-between;
    background-image: url('../img/web-overhaul/web-bkg-new.jpg');
    background-size: cover;
    height: 800px;
    width: 700px;
}

.start-subheadline {
    font-family: inherit;
    font-size: 2em;
}

#end-subheadline {
    display: none;
    flex-direction: row;
    font-family: 'Crushed';
    text-shadow: #302e25 2px 2px;
    font-size: 3em;
    color: blueviolet;
    perspective: 1000px;
    transform-style: preserve-3d;
    max-width: 600px;
    position: relative;
    left: 30px;
}

.sub-throb {
    -webkit-animation: wiggle 1s ease infinite !important;
    animation: wiggle 1s infinite forwards !important;
    backface-visibility: hidden;
}

.end-subheadline-1 {
    -webkit-animation: wiggle 1s ease infinite !important;
    animation: wiggle 1s infinite forwards !important;
}

.end-subheadline-1-improved {
    -webkit-animation: wiggle-better-1 1s ease infinite !important;
    animation: wiggle-better-1 1s infinite forwards !important;
}

.end-subheadline-2 {
    -webkit-animation: wiggle2 1s ease infinite !important;
    animation: wiggle2 .2s infinite forwards !important;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.end-subheadline-2-improved {
    -webkit-animation: wiggle-better-2 1s ease infinite !important;
    animation: wiggle-better-2 .2s infinite forwards !important;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.end-subheadline-3 {
    -webkit-animation: wiggle3 1s ease infinite !important;
    animation: wiggle3 1s infinite forwards !important;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.end-subheadline-3-improved {
    -webkit-animation: wiggle-better-3 1s ease infinite !important;
    animation: wiggle-better-3 .2s infinite forwards !important;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.5s;
}

.end-subheadline-4 {
    -webkit-animation: wiggle4 1s ease infinite !important;
    animation: wiggle4 1s infinite forwards !important;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.end-subheadline-4-improved {
    -webkit-animation: wiggle-better-4 1s ease infinite !important;
    animation: wiggle-better-4 .8s infinite forwards !important;
    -webkit-animation-delay: 1s;
    animation-delay: 0.5s;
}

.end-subheadline-5 {
    -webkit-animation: wiggle3 .5s ease infinite !important;
    animation: wiggle3 .5s infinite forwards !important;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.end-subheadline-5-improved {
    -webkit-animation: wiggle-better-5 1s ease infinite !important;
    animation: wiggle-better-5 1s infinite forwards !important;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@keyframes wiggle {
    0% {
        transform: rotateY(0deg) scale(1);
    }

    25% {
        transform: rotateY(20deg) scale(1.4);
    }

    75% {
        transform: rotateY(-20deg) scale(.6);
    }

    100% {
        transform: rotateY(0deg) scale(1);
    }
}

@keyframes wiggle2 {
    0% {
        transform: translate3d(0px, 0px, 0px) scale(1);
    }

    25% {
        transform: translate3d(-20px,
                20px,
                20px) scale(1.4);
    }

    75% {
        transform: translate3d(20px, -20px, -20px) scale(.6);
    }

    100% {
        transform: translate3d(0px, 0px, 0px) scale(1);
    }
}

@keyframes wiggle3 {
    0% {
        transform: translate3d(0px, 0px, 0px) scale(1);
    }

    25% {
        transform: translate3d(30px,
                -30px,
                20px) scale(1.4);
    }

    75% {
        transform: translate3d(35px, 10px, -50px) scale(.6);
    }

    100% {
        transform: translate3d(0px, 0px, 0px) scale(1);
    }
}

@keyframes wiggle4 {
    0% {
        transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    }

    25% {
        transform: translate3d(0px, 50px, 0px) rotateX(50deg) scale(1);
    }

    75% {
        transform: translate3d(0px, 90px, 0px) rotateX(-30deg) scale(1);
    }

    100% {
        transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    }
}

@keyframes wiggle-better-1 {
    0% {
        transform: rotateY(0deg) scale(1);
    }

    25% {
        transform: rotateY(100deg) scale(1.1);
    }

    75% {
        transform: rotateY(-100deg) scale(.6);
    }

    100% {
        transform: rotateY(0deg) scale(1);
    }
}

@keyframes wiggle-better-2 {
    0% {
        transform: rotateZ(0deg) scale(1);
    }

    25% {
        transform: rotateZ(30deg) scale(1.1);
    }

    75% {
        transform: rotateZ(-30deg) scale(.9);
    }

    100% {
        transform: rotateZ(0deg) scale(1);
    }
}

@keyframes wiggle-better-3 {
    0% {
        transform: rotateY(0deg) scale(1);
    }

    25% {
        transform: rotateY(100deg) scale(1.1);
    }

    75% {
        transform: rotateY(-100deg) scale(.6);
    }

    100% {
        transform: rotateY(0deg) scale(1);
    }
}

@keyframes wiggle-better-4 {
    0% {
        transform: rotateY(0deg) scale(1);
    }

    25% {
        transform: rotateY(100deg) scale(1.1);
    }

    75% {
        transform: rotateY(-100deg) scale(.6);
    }

    100% {
        transform: rotateY(0deg) scale(1);
    }
}

@keyframes wiggle-better-5 {
    0% {
        transform: rotateY(0deg) scale(1);
    }

    25% {
        transform: rotateY(100deg) scale(1.1);
    }

    75% {
        transform: rotateY(-100deg) scale(.6);
    }

    100% {
        transform: rotateY(0deg) scale(1);
    }
}

#social-flex-pad {
    flex: 1;
}

#social {
    position: relative;
    left: 50%;
    transform: translate(-47%);
    bottom: 1%;
    width: 95%;
    height: auto;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
}

.social-icon {
    height: 30px;
    width: 30px;
    padding: 4px;
}

.start-body {
    font-family: inherit;
    font-size: 2em;
}

.start-contact {
    font-family: inherit;
    font-size: 2em;
}

#commentary {
    display: none;
    flex-direction: column;
    position: relative;
    width: 300px;
    height: 760px;
    box-shadow: #302e25 6px 6px 6px;
    border-radius: 15px;
    padding: 20px;
    opacity: 0;
    transition: opacity 2s ease-in;
    background-color: #888888ee;
}

#commentary-dialog {
    position: absolute;
    top: 10px;
    left: 0px;
    font-family: 'Dosis';
    color: #302e25;
    font-size: 1.8em;
    width: 300px;
    flex: 1;
    height: fit-content;
    text-align: center;
}

.fix-it-button {
    position: absolute;
    top: 10px;
    left: 0px;
    height: 760px;
    width: 300px;
    background-color: transparent;
    margin: 5px;
    padding: 3px;
    z-index: 3;
    border: none;

}

.fix-it-text {
    position: absolute;
    bottom: 10px;
    width: 300px;
    font-family: 'Dosis';
    color: #302e25;
    font-size: 5em;
    text-align: center;
    color: rgba(255, 255, 255, 0.1);
    background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
    background: -moz-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
    background: gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
    -webkit-background-size: 125px 100%;
    -moz-background-size: 125px 100%;
    background-size: 125px 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-animation-name: shimmer;
    -moz-animation-name: shimmer;
    animation-name: shimmer;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: #222;

}

@-moz-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@-webkit-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@-o-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

#models {
    position: absolute;
    left: 0px;
    top: 40%;
    height: auto;
    width: 100%;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
}

#single {
    display: none;
    position: absolute;
    left: 0px;
    top: 50%;
    height: auto;
    width: 100%;
}

.hood-model {
    height: 400px;
    width: 400px
}

#carousel-wrapper {
    display: none;
    align-self: center;
    margin: 30px;

}

#cCarousel {
    position: relative;
    max-width: 900px;
    margin: auto;
}

#cCarousel .arrow {
    position: absolute;
    top: 50%;
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

.pointer-left {
    background-image: url('../img/web-overhaul/left_solid.svg');
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: cover;
    height: 32px;
    width: 32px;
    z-index: 3;
}

.pointer-right {
    background-image: url('../img/web-overhaul/right_solid.svg');
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: cover;
    height: 32px;
    width: 32px;
    z-index: 3;
}

#cCarousel #prev-buddy {
    left: -50px;
}

#cCarousel #next-buddy {
    right: -50px;
}

#carousel-vp {
    width: 469px;
    height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: auto;

}

@media (max-width: 770px) {
    #carousel-vp {
        width: 510px;
    }
}

@media (max-width: 510px) {
    #carousel-vp {
        width: 250px;
    }
}

#cCarousel #cCarousel-inner {
    display: flex;
    position: absolute;
    transition: 0.3s ease-in-out;
    gap: 20px;
    left: 0px;
}

.cCarousel-item {
    width: 450px;
    height: 470px;
    display: flex;
    flex-direction: column;
    border: 2px solid rgb(16, 171, 55);
    box-shadow: #06eb2472 10px 20px 20px 10px;
    border-radius: 15px, 15px, 0, 0;
    background-image: url('../img/web-overhaul/raveb.jpg');
}

.cCarousel-item img {
    width: 100%;
    object-fit: cover;
    min-height: 246px;
    color: white;
}

.hood-model {
    width: 100%;
    object-fit: cover;
    min-height: 246px;
}

.cCarousel-item .infos {
    height: 15%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: white;
    color: blueviolet;
    font-size: 1.3em;
    font-family: 'Crushed';
    border-radius: 0, 0, 15px, 15px;
}

.cCarousel-item .infos button {
    background: #1be236;
    padding: 10px 20px;
    border-radius: 15px;
    border: inset #1a8b2987;
    color: blueviolet;
    font-size: 1.4em;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
}