.wrapper {
    height: 100vh;
    padding: 2vw 5vw;
    position: relative;
    overflow: hidden;
    font-family: 'Avenir';
}
img{
    pointer-events: none;
}
a {
    text-decoration: none;
    color: inherit;
    font-weight: 100;
    font-size: 1.3vw;
    display: block;

    &:first-of-type {
        margin-bottom: 2vw;
    }

    img {
        height: 2.5vw;
        margin-bottom: 0.5vw;
    }

    span {
        display: block;
    }
}

.logo {
    width: 45vw;
    margin-bottom: 5vw;
}

.icon {
    width: 47vw;
    position: absolute;
    right: -8vw;
top: 3vw;
    z-index: 2;
}

.main {
    width: 52vw;
    position: absolute;
    top: 13vw;
    right: 26vw;
}
@keyframes bird {
    0%{
        top: 11vw;
        left: 31vw;
    }
    50%{
        top: 10vw;
        left: 30vw;
    }
    100%{
        top: 11vw;
        left: 31vw;
    }
}
.birds {
    position: absolute;
    top: 11vw;
    width: 10vw;
    left: 31vw;
    transition: all .3s ease;
    animation: bird 10s linear infinite;
}
@keyframes cloud {
    0%{
        top: 6vw;
        right: 14vw;
    }
    50%{
        top: 5vw;
        right: 15vw;
    }
    100%{
        top: 6vw;
        right: 14vw;
    }
}
.cloud{
        position: absolute;
    right: 14vw;
    top: 6vw;
    width: 25vw;
    z-index: 3;
    transition: all .3s ease;
    animation: cloud 6s linear infinite;
}
.man{
    position: absolute;
    right: 10vw;
    top: 4vw;
    z-index: 4;
    width: 23vw;
    transform-origin: bottom left;
    transform: scale(0);
    transition: all .5s ease;
}
.fruit{
        position: absolute;
    z-index: 5;
    width: 30vw;
    right: 7vw;
    top: 19vw;
}
.form-wrap{
        width: 45vw;
    position: relative;
    z-index: 5;
    margin-top: 5vw;
}
button{
        background: #1f4129;
    color: #fff;
    font-weight: bold;
    border: 0;
    width: 150px;
    height: 50px;
    text-align: right;
    padding-right: 30px;
    float: right;
}
.input-wrap{
    background: #9fc62f;
    padding: 15px;
    display: flex;

    .title{
        font-size: 2vw;
        font-weight: bold;
        color: #fff;
    }
    .left{
        padding-right: 30px;
    }
    input{
        width: 100%;
        background: none;
        border-bottom: 1px solid #1f4129;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        font-size: 1vw;
        color: #1f4129;
        margin: 0.4vw 0;

        &:last-of-type{
            margin-bottom: 0 !important;
        }

        &::placeholder{
            color: #1f4129;
        }
        &:focus{
            box-shadow: none;
            outline: 0;
        }
    }
    textarea{
        width: 100%;
        background: none;
        border-bottom: 1px solid #1f4129;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        font-size: 1vw;
        color: #1f4129;
        height: 100%;

        &::placeholder{
            color: #1f4129;
        }
        &:focus{
            box-shadow: none;
            outline: 0;
        }
    }

    .left{
        width: 50%;
    }
    .right{
        width: 50%;
    }
}