

#contactBlock {
    background-image: var(--img-bg-green);
    background-repeat: repeat;

    padding: 200px 0 350px;
    position: relative;
    overflow: hidden;
}

#imgAnimal1 {
    position: absolute;
    top: 100px;
    left: calc(50% - 75px);
    width: 125px;
    transform: rotateY(180deg);
}

#imgAnimal2 {
    position: absolute;
    top: 1290px;
    right: 20px;
    width: 70px;
}


#contactArea {
    width: 90%;
    margin: 0 auto;

    background-color: #f4e7c1;
    border-radius: 8px;
    border: 1px solid #727272;

    color: #EF9740;
    position: relative;
}


#contactWrapper {
    color: #EF9740;
    width: 85%;
    margin: 0 auto;
    padding: 50px 0 75px;
}

#contactWrapper > div.title {
    font-size: 30px;
}

#contactInfo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.info-item {
    width: 100%;
    background-color: white;
    border-radius: 8px;
    height: 65px;
    margin: 15px 0;
    padding: 0 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.input-title {
    color: darkgray;
}

.input-value {
    color: #EF9740;
    text-align: right;
    height: 35px;
    width: 150px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: "myriad", Arial, Helvetica, sans-serif;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: lightgrey;
}
input::-webkit-input-placeholder {
    /* Webkit browsers */
    color: lightgrey;
}
input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: lightgrey;
}
input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: lightgrey;
}

#nameTip, #emailTip, #descTip {
    position: absolute;
    top: -24px;
}

#twitter > .input-title > img {
    width: 25px;
}

#twitter > .input-title > span {
    position: relative;
    top: -5px;
}

#twitterName {
    width: 130px;
}
#type {
    position: relative;
}

#typeNameWrapper {
    position: relative;
    cursor: pointer;
}

#typeName::after {
    content: "\25BC"; /*"▼"*/
    margin-left: 10px;
}

#typeList {
    color: #EF9740;
    position: absolute;
    right: 0;
    top: 0;

    width: 150px;
    padding-left: 50px;
    background-color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 32px;
    border-radius: 8px;
    box-shadow: 2px 2px 20px lightgrey;

    z-index: 2;
}

#typeList > p {
    cursor: pointer;
}

#typeListSign {
    position: absolute;
    top: 1px;
    right: 25px;
}

#contactDesc {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

#contactDesc > textarea {
    width: 100%;
    height: 300px;
    resize: none;
    outline: none;
    border: none;
    line-height: 30px;
    white-space: break-spaces;
    word-break: break-word;
    color: #EF9740;
    font-family: "myriad", Arial, Helvetica, sans-serif;
}

textarea:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: grey;
}
textarea::-webkit-input-placeholder {
    /* Webkit browsers */
    color: grey;
}
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: grey;
}
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: grey;
}

#btnSubmit {
    background-image: var(--img-btn-red);
    background-repeat: no-repeat;
    background-size: 250px auto;
    margin: 50px auto 30px;
    width: 250px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    cursor: pointer;
}

#btnSubmit > span {
    font-size: 24px;
    margin-right: 35px;
    color: white;
}

#imgGirl {
    position: absolute;
    width: 300px;
    left: -115px;
    bottom: -200px;
}

#imgGrass {
    background-image: var(--img-fence);
    background-repeat: repeat-x;
    background-size: auto 150px;

    width: 100%;
    height: 150px;

    position: absolute;
    bottom: 0;
}

.warn-text {
    animation-name: blink;
    animation-duration: 1s;
    animation-timing-function: step-end;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
