/* Content Container */
#content {
    margin: 0;
    padding: 0;
}

/* Layout Container */
#layout {
    display: flex;
    width: 95%;
    margin: 1rem auto 0 auto;
    max-width: 1150px;
    height: 100%;
}

/* Headings */
h1 {
    font-size: 36px;
    font-weight: 400;
}

h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 1rem 0;
}

/* Column Layout */
.left-column {
    width: 60%;
}

.right-column {
    width: 40%;
    display: flex;
}

/* List Styles */
ul {
    padding: 0;
    margin: 0;
}

.special-list li {
    /** move the text to the right **/
    padding-left: 2.75rem;
    margin: 0 0 1rem 0;
    font-size: 18px
}

.house-point li {
    background: url("/images/house_point.png") left center no-repeat;
}

.paw-point li {
    background: url("/images/paw_point.png") left center no-repeat;
}

.ins-image {
    max-height: 350px;
}

.pet-ins-image {
    max-height: 500px;
}

.auto-layout {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.auto-cta {
    text-align: center;
    margin: 1rem 0 2rem 0;
}

.auto-headline {
    color: rgb(17, 111, 183);
    font-size: 36px;
    padding: 15px 0 5px;
    margin-bottom: 10px;
}

.auto-form-img {
    max-width: 300px;
    height: auto;
    margin: 10px auto 0 auto;
    display: block;
}

.auto-subtext {
    color: black;
    font-size: 16px;
    text-align: center;
    font-family: "Droid Sans", sans-serif;
}

.auto-quotes-button {
    display: block;
    margin: 3rem auto;
    background-color: rgb(17, 111, 183);
    padding: 1.5rem;
    border-radius: 40px;
    width: 350px;
    font-size: 1.25rem;
}

.auto-quotes-button:hover {
    background-color: rgb(10, 78, 130);
    color: white;
    text-decoration: none;
}

.blue-sep {
    border: 2px solid rgb(17, 111, 183);
    border-radius: 5px;
    margin: 50px;
}

.auto-content h1 {
    font-size: 40px;
}

.auto-content h2 {
    font-size: 32px;
    margin-bottom: 1rem;
}

.auto-content p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.auto-content {
    margin: 0 50px;
}

/* Button Container */
.insurance-button {
    display: flex;
    justify-content: flex-end;
}

button,
.lemonade-button {
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 1.25em;
    position: relative;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    background-color: darkblue;
    border-color: darkblue;
    color: #fff;
    border-radius: 15px;
    filter: drop-shadow(5px 5px 1px rgba(0, 0, 0, 0.25));
    min-width: 350px;
}

.updated-box {
    color: black;
    font-size: 16px;
    margin-bottom: 0 auto;
    text-align: center;
    background-color: #f5f5f5;
    padding: 6px;
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
    .insurance-button {
        justify-content: center;
        margin-bottom: 1rem;
    }

    #layout {
        flex-direction: column;
    }

    .ins-image {
        width: 75%;
        margin: auto;
        display: block;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    h1,
    .auto-content h1 {
        font-size: 28px
    }

    h2,
    .auto-content h2 {
        font-size: 20px
    }

    .special-list li {
        font-size: 16px;
    }

    .lemonade-button {
        width: 100%;
        min-width: unset;
    }
}