form#search1 {
    min-width: 250px; height: 90px;
    position: absolute; right: 0px; top: 0px;
}

input[type=text] {
    display: block; width: 220px; height: 40px;
    background-color: transparent;
    border: 2px solid #eee;
    transform: translate(0px, 23px);
    font-size: 1.7em; padding-left: 4px;
    color: #eee;
}

input[type=submit] {
    display: block; width: 34px; height: 34px;
    position: absolute; top: 27px; right: 33px;
    font-size: 30px; line-height: 0;
    background-color: transparent;
    color: #eee;
    transform: rotate(-30deg);
    cursor: pointer;
}

nav.herocta {
    position: absolute;
    bottom: 50px; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px black;
    z-index: 10;
}

nav.herocta li {
    width: 180px; height: 35px;
    background-color: white;
    list-style-type: none;
}

nav.herocta > ul > li:hover {
    background-color: lightgray;
}

nav.herocta a {
    display: block;
    width: 100%; height: 100%;
    text-decoration: none;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: .9em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: black;
}

nav.herocta li ul {
    display: block;
    box-shadow: 5px 9px 30px #444;
    position: absolute;
    height: 0px;
    transition: height 300ms ease-in-out;
}

nav.herocta li ul li {
    height: 0px;
    font-size: 0px;
}

nav.herocta li:hover ul {
    display: block;
    height: 140px;
}

nav.herocta li:hover ul li {
    height: 35px;
    font-size: .9em;
}