html, body {
    margin: 0;
    padding: 0;
    height: auto;
    background-color: #FAFAFA;
}

#primary-header {
    position: relative;
}

#primary-header > a {
    display: block;
    margin: 0 auto;
}

#hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("images/hero_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

    #hero .hero-content > div {
        padding: 1.5rem 1rem 0 1rem;
    }

.hero-title h1 {
    color: #FFF;
    font-size: 36px;
    font-weight: 900;
    line-height: 39px;
    text-align: center;
    margin-top:1rem;
}

@media all and (min-width: 768px) {
    .hero-title {
        max-width: 66%;
        display:block;
        margin:4rem auto;
    }

    .hero-title h1 {
        font-size: 50px;
        line-height: 69px;
    }
}

@media all and (min-width: 992px) {
    .hero-title {
        max-width: 870px;
        margin: 6rem 0 2rem 0;
    }
    .hero-title h1 {
        font-size: 70px;
        line-height: 69px;
    }
}


.hero-subtitle p{
    color: #FFF;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
}

@media all and (min-width: 768px) {
    .hero-subtitle p {
        font-size: 30px;
        line-height: 69px;
    }
}

@media all and (min-width: 768px) {
    .hero-subtitle {
        margin-bottom: 4rem;
    }
}

@media all and (min-width: 992px) {

    .hero-subtitle {
        margin-bottom: 7rem;
        margin-top: 4rem;
    }

    .hero-subtitle p {
        font-size: 40px;
        line-height: 69px;
    }
}

.hero-form {
    margin: 2rem 1rem 0 1rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px 15px 0 0;
    background: linear-gradient(133.78deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.75) 100%);
    z-index:2;
}

@media all and (min-width: 768px) {
    .hero-form {
        display: block;
        margin: 0 auto;
        max-width: 680px; /*100%*/
    }
}

.hero-form-content {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    position:relative;
}

.hero-form-fields {
    margin-top: 2rem;
}

@media all and (min-width: 768px) {
    .hero-form-content {
        flex-direction: row;
    }

    .hero-form-fields {
        margin-top: 1rem;
    }
}

.hero-form-content p,
.hero-form-content .product-container,
.hero-form-content .hero-form-fields {
    margin: 1rem 0;
}

@media all and (min-width: 768px) {
    .hero-form-content p,
    .hero-form-content .product-container,
    .hero-form-content .hero-form-fields {
        margin-bottom:1rem;
    }
}

.hero-form p {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
}

.hero-form-content #gecko_smile_img {
    display: none;
}

@media all and (min-width: 768px) {
    .hero-form-content #gecko_smile_img {
        display: block;
        position: absolute;
        z-index: -1;
        left: -50px; /*151px, -72px*/
        bottom: -91px;
    }
}

@media all and (min-width: 912px) {
    .hero-form-content #gecko_smile_img {
        left: -118px;
    }
}

@media all and (min-width: 992px) {
    .hero-form-content #gecko_smile_img {
        left: -151px;
    }
}

.product-container {
    display: flex;
    justify-content:center;
    align-items:center;
    flex-direction: row;
}

.product {
    border: none;
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 2rem;
    /*cursor: pointer;
    padding: 1rem 2rem 0 2rem;
    background-color: #FFF;
    border-radius: 0.8rem;*/
}

.product .geico-icon {
    font-size: 5rem;
    line-height: 8.6rem;
    width: 9rem;
    height: 9rem;
    color: #154995;
    /*font-size: 4rem;
line-height: 7.6rem;
width: 8rem;
height: 8rem;
color: #154995;*/
}

.product .h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}
/*    .product.selected .geico-icon,
    .product.selected span {
        color: #FFF;
    }

    .product.selected.renters {
        border-color: #f3735c;
        background-image: linear-gradient(to right, #3773ca 0%, #558de1 100%);
    }

    .product.selected.auto {
        border-color: #d89762;
        background-image: linear-gradient(to right, #3773ca 0%, #558de1 100%);
    }*/

#hero > div > div.hero-form > div > div > span {
    font-size: 39px;
    font-weight: 700;
    line-height: 41px;
}

#zip-elements {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#zip-code {
    /*width: 100%;*/
    width:120px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    border-radius: 7px 0 0 7px;
    border:none;
    background-color: #FFF;
    box-shadow: inset 0 1px 5px 0 rgba(0,0,0,0.5);
}

#zip-submit {
    /*width: 100%;*/
    width:200px;
    margin: 0 0 3.5rem 0;
    border-radius: 0 7px 7px 0;
}

@media all and (min-width: 768px) {
    #zip-code{
        width: 190px;
    }

    #zip-submit {
        width: 310px;
    }
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #222;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #222;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #222;
}

.full-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    position:relative;
}
#content {
    position:relative;
}
.column {
    width: 100%;
    height: 220px;
}

@media all and (min-width: 768px) {
    .column {
        height: 500px;
    }
}

@media all and (min-width: 992px) {
    .column {
        height: 650px;
    }
}

.column:nth-child(1) {
    background-image: url("images/home.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.column:nth-child(2) {
    background-image: url("images/auto.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
}

.full-container .column {
    flex: 1;
}

.column:nth-child(2) {
    margin: 0 0 0 8px;
}

#content #plus_icon {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:1;
}

@media all and (min-width: 768px) {
    #content #plus_icon {
        width: 80px;
        height: 80px;
    }
}

@media all and (min-width: 992px) {
    #content #plus_icon {
        width: 112px;
        height: 112px;
    }
}

#home_logo {
    width: 190px;
}

@media all and (min-width: 768px) {
    #home_logo {
        width: 200px;
    }
}

.geico-logo-div {

    display: flex;
    justify-content:center;
    align-items:center;
    padding:60px;
}

#footer-section {
    width: 100%;
    background: linear-gradient(91.72deg, #154995 0%, #1B52A2 54%, #205BAF 100%);
}

footer {
    height: auto;
}

.footer-container {
    max-width: 1140px;
    
    display:block;
    margin:3rem auto;
}

#copyright {
    color: #FFF;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    padding:20px;
}

#copyright #reference {
    display: block;
}

@media all and (min-width: 768px) {
    #copyright #reference {
        display: inline;
    }
}
