/* Hero
   ========================================================================== */
#section_hero {
    width: 100%;
    height: 575px;

    padding: 0px;
    margin-bottom: 75px;

    display: none;
}

#hero_text {
    display: flex;
    justify-content: center; /* H */
    align-items: center; /* V */

    float: left;

    width: 60%;
    height: 100%;

    color: rgba(255, 255, 255, 1.0); /* White */
    background-color: rgba(90, 0, 20, 1.0); /* DM Brown Red */
}

#hero_text div {
    width: 50%;
    height: auto;
}

#hero_text div p {
    font-size: 1.2em;
}

#hero_image {
    float: left;

    width: 40%;
    height: 100%;

    background: url("/images/hero.jpg") no-repeat top center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-background-clip: border-box;
    -moz-background-clip: border-box;
    -o-background-clip: border-box;
    background-clip: border-box;
}

.section_terms {
    display: none;
}

/* Questionnare
   ========================================================================== */
.input_1x3, .input_2x3 {
    position: relative;

    float: left;
}

.input_1x3 {
    width: 300px;
    height: auto;
}

.input_2x3 {
    width: 400px;
    height: auto;
}

.input_1x3 input, .input_2x3 input {
    width: calc(100% - 50px);
}

.input_text, .input_input {
    position: relative;

    display: flex;
    align-items: center; /* V */

    width: 100%;
    min-height: 55px;
    }

/* Result
   ========================================================================== */
.result_1x3, .result_symbol {
    position: relative;
    float: left;

    width: auto;
    height: auto;
}

.result_header {
    height: 30px;
}

.result_text {
    height: 60px;

    display: flex;
    align-items: center; /* V */

    font-family: "DM-Bold", serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

.result_1x3 input {
    width: calc(100% - 35px);
}

#error_salary {
    font-style: italic;

    padding-top: 25px;
    
    font-size: 0.75em;
    color: rgba(140, 20, 45, 1.0); /* DM Bordeaux Red */
    
    display: none;
}

#max_coverage {
    font-family: "DM-Bold", serif;
    font-weight: 700;
    color: rgba(140, 20, 45, 1.0); /* DM Bordeaux Red */
}

.help_text {
    max-width: 210px;

    padding-top: 25px;

    font-size: 0.75em;
    color: rgba(34, 34, 34, 0.65); /* DM Text */
}

.result_symbol {
    height: 90px;

    display: flex;
    justify-content: center; /* H */
    align-items: center; /* V */

    padding-top: 30px;

    width: 60px;

    font-family: "DM-Bold", serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;

    color: rgba(140, 20, 45, 1.0); /* DM Bordeaux Red */
}

.container_coverage {
    position: relative;

    width: 280px;
}

#coverage {
    width: 250px;

    font-family: "DM-Bold", serif;
    font-weight: 700;
    font-size: 2rem;
}

#coverage_decrease, #coverage_increase {
    width: 25px;
    height: 25px;

    text-align: center;

    background-color: rgba(255, 255, 255, 1.0); /* White */
    border-style: solid;
    border-width: 1px;
    border-color: rgba(140, 20, 45, 1.0); /* DM Bordeaux Red */
}

#coverage_increase {
    position: absolute;
    top: 0px;
    right: 0px;

    background-color: rgba(255, 255, 255, 1.0); /* White */
    background-image: url("/images/icon_arrow_up.png");
    background-repeat: no-repeat;
    background-position: center center;
}

#coverage_decrease {
    position: absolute;
    bottom: 0px;
    right: 0px;

    background-color: rgba(255, 255, 255, 1.0); /* White */
    background-image: url("/images/icon_arrow_down.png");
    background-repeat: no-repeat;
    background-position: center center;
}

#coverage_decrease:hover, #coverage_increase:hover {
    cursor: pointer;
}

/* Result: Red block
   ========================================================================== */
.section_result_red {
    color: rgba(255, 255, 255, 1.0); /* White */
    background-color: rgba(205, 50, 70, 1.0); /* DM Medium Red */

    margin-bottom: 75px;
}

.section_result_red h4 {
    color: rgba(255, 255, 255, 1.0); /* White */

    margin-bottom: 15px;
}
    

.result_50 {
    position: relative;

    float: left;

    width: 50%;
    height: auto;
}

#result_price {
    display: block;

    font-family: "DM-Bold", serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

/* Contact
   ========================================================================== */
.section_contact {
    display: flex;
    justify-content: space-between;

    padding: 0px;

    background-color: transparent;
}

.section_contact article {
    width: calc(50% - 25px);
    height: auto;

    padding: 50px;

    background-color: rgba(245, 240, 235, 1.0); /* DM Beige */ 
}

.section_contact input {
    width: 400px;
}

.disclaimer {
    margin-top: 25px;

    font-size: 0.70em;
    line-height: 1.1;
}

.section_contact img {
    display: block;

    width: 387px;
    height: auto;

    margin: 0 auto;
    margin-top: 50px;
}