* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
div,
span,
a {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin: 0;
}

p {
    margin-top: 0;
}

body main {
    position: relative;
    min-height: 100vh;
    padding-top: 3.125rem;
}

body main::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    content: "";
    background-image: url(../images/panzani-left-background-v2.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

body main::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    content: "";
    background-image: url(../images/panzani-right-background.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

body main .main {
    z-index: 2;
    position: relative;
}

body main .left-section, body main .right-section {
    position: relative;
}

@media (max-width: 480px) {
    body main .left-section, body main .right-section {
        text-align: center;
    }
}

body main .right-section .right-section-container img {
    display: block;
    margin: 20px auto;
    min-width: fit-content;
}

body main .form-section {
    position: relative;
}

@media (min-width: 1200px) {
    body main .form-section {
        margin-top: -5rem;
        padding-top: 2.5rem;
    }
}

body main .form-section .step1-image, body main .form-section .step2-image, body main .form-section .step3-image {
    opacity: 0;
}

@media (min-width: 1200px) {
    body main .form-section .step1-image, body main .form-section .step2-image {
        margin-top: -3.75rem;
    }
}

@media (max-width: 480px) {
    body main .form-section .step1-image {
        margin-bottom: 4.375rem;
    }
}

@media (max-width: 480px) {
    body main .form-section .step1-image {
        margin: 0 auto;
    }

    body main .form-section .step2-image {
        margin: 50px auto;
    }
}

@media (min-width: 1200px) {
    body main .form-section .step3-image {
        margin-top: 2.5rem;
        margin-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    body main .form-section .step3-image {
        margin: 0 auto 50px;
    }
}

@media (min-width: 1200px) {
    body main .form-section .kitchen-image {
        transform: scale(1.5);
        position: absolute;
        left: -0.875rem;
        bottom: 12.5rem;
    }
}

@media (max-width: 480px) {
    body main .form-section .kitchen-image {
        display: none;
    }
}

body main .form-section .appliance-image {
    z-index: 3;
}

@media (min-width: 1200px) {
    body main .form-section .appliance-image {
        transform: scale(1.7);
        position: absolute;
        right: 0;
        bottom: 6.25rem;
    }
}

@media (min-width: 480px) {
    body main .form-section .appliance-image {
        margin-top: 3.125rem;
    }
}

body main .mid-section {
    background-image: url(../images/panzani-cutting-board.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 2;
    width: 500px;
}

body main .mid-section form {
    padding: 12.5rem 6.25rem 9.375rem;
    background-image: url(../images/panzani-bottom-element.png), url(../images/panzani-small-element.png);
    background-position: center 88.2%, 100% center;
    background-repeat: no-repeat, no-repeat;
}

@media (max-width: 480px) {
    body main .mid-section form {
        padding: 9.375rem 2.5rem 9.375rem;
    }
}

body main .mid-section form input {
    margin-bottom: 1.25rem;
    border-radius: 3.125rem;
    border: none;
    background-color: #0c6c31;
    transition: all 300ms ease-out;
    color: #ffffff;
    box-shadow: inset 0px 4px 10px #00000078;
    padding-left: 1.25rem;
}

body main .mid-section form input::placeholder {
    color: #ffffff;
}

body main .mid-section form input:focus {
    background-color: #ffd200;
}

body main .mid-section form .upload-content input {
    cursor: pointer !important;
}

body main .mid-section form .upload-content .upload-btn {
    border-radius: 3.125rem;
    border: none;
    width: 100%;
    background-color: #dddddd;
    box-shadow: inset 0px 4px 10px #00000078;
    color: #0c6c31;
}

body main .mid-section form .accept-text {
    color: #0c6c31;
}

body main .mid-section form .uk-checkbox {
    border-radius: 0;
    background-color: white;
    box-shadow: none;
}

body main .term-container p {
    color: #ffffff;
    font-size: 12px;
    margin-top: 20px;
}

body .step1-image {
    animation-name: step1;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes step1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body .step2-image {
    animation-name: step2;
    animation-duration: 2s;
    animation-delay: 600ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes step2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body .step3-image {
    animation-name: step3;
    animation-duration: 2s;
    animation-delay: 1200ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes step3 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body .kitchen-image {
    animation-name: kitchen;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-direction: alternate;
}

@keyframes kitchen {
    0% {
        bottom: 100px;
    }
    100% {
        bottom: 250px;
    }
}

@media (min-width: 1200px) {
    body .appliance-image {
        animation-name: wobble;
        animation-duration: 4s;
        animation-iteration-count: 2;
        animation-fill-mode: forwards;
    }

    @keyframes wobble {
        0% {
            transform: scale(0);
        }
        33% {
            transform: scale(1.7);
        }
        66% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.7);
        }
    }
}

#herbs-top {
    position: absolute;
    top: -4%;
    transform: translateX(-50%);
    left: 25%;
    width: 20%;
}

#packshot_left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33%;
    max-width: 450px;
}

#panzani-kitchen-element {
    position: absolute;
    top: -120px;
    left: 0;
    transform: translate(-50%);

}


@media (max-width: 768px) {
    #panzani-kitchen-element {
        display: none;
    }
}
