 /* INFO PAGE CSS */

.info-title {
    font-size: 32px;
    color: #fff;
    line-height: 1.3;
    font-weight: 900;
    text-align: left;
}
.info-title::after {
    content: "";
    display: block;
    height: 2px;
    max-width: 350px;
    width: 100%;
    margin-top: 17px;
    background-color: #072f26;
}

.subheading {
    font-size: 22px;
    color: #fff;
    line-height: 25px;
    padding-top: 10px;
    font-weight: 900;
}

.body-copy{
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 900px;
    text-align: left;
}

.content-img{
    width: 100%;
    max-width: 550px;
    margin-bottom: 20px;
    border: 1px solid #072f26;
}

.divider{
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #133a30;
}

.image_container{
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid #072f26;
    margin-bottom: 30px;
}

.image_container img{
    width: 100%;
    height: auto;
}

/* GAME QUIZ */
/* GAME DIALOG */
.game_dialog_hero{
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    padding: 0px;
    margin: 40px auto;
}

.outer_piece{
    height: auto;
    width: 100%;
    display: block;
    margin-bottom: 0px;
}

.outer_piece img{
    height: auto;
    width: 100%;
    display: block;
    user-drag: none; 
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.content{
    max-width: 800px;
    padding: 0px 12%;
    height: auto;
    padding-bottom: 5px;
    background-size: contain;
    background-position: bottom;
    background-image: url(../img/middle.png);
}


/* CONTENT */

.content img{
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: inset 0 0 3px #cea01d;
}

.quiz-p{
    line-height: 1.5;
    padding-bottom: 20px;
    color: #000;
}

.quiz-h{
    line-height: 1.3;
    padding-bottom: 10px;
    color: #000;
    font-weight: 700;
    margin-top: 0px;
}

blockquote {
    width: 100%;
    padding: 20px;
    background-color: #f2d857;
    display: block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 10px;
    box-shadow: inset 0 0 3px #cea01d;
    border-radius: 4px;
    color: #8e430b;
    border: none;
}

blockquote h3{
    color: #8e430b;
    margin-top: 0px;
}

blockquote p{
    color: #8e430b;
}

.quiz_options_container{
    display: block;
    width: 100%;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #fffb92;
}

.option{
    display: inline-block;
    width: 40px;
    height: 40px;   
    padding: 6px;
    margin-top: 5px;
    margin-right: 10px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    border-radius: 30px;
    background-color: #a85c07;
}
@media (min-width: 768px) {
.option:hover {
    background-color: #05b258;
}}
.btn-correct{
    background-color: #05b258;
}

@media(hover: hover) and (pointer:fine) {
    .option.hover:hover{
        background-color: #05b258;
    }
}


.btn-correct{
    background-color: #05b258;
}

.btn-incorrect{
    background-color: #ff2b2b;
}


.button_hero{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.button{
    height: 50px;
    width: 35px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-contact{
    height: 55px;
    width: 100%;
    max-width: 210px;
    min-width: 220px;
    display: flex;
    align-content: center;
    justify-content: left;
    border-radius: 60px;
    margin: 15px auto;
    background-color: #ee874f;
    box-shadow: 0px 4px 1px #13312a;
    color: #fff;
    display: block;
    align-self: center;
    padding-left: 12px;
    font-size: 18px;
    line-height: 1;
    display: block;
}

.content-hero input {
    margin: 7px auto;
    max-width: 295px;
    text-align: left;
    display: block;
    font-size: 16px;
}
.content-hero textarea.form-control {
    height: auto;
    max-width: 295px;
    margin: 0 auto;
    min-height: 150px;
    max-height: 150px;
    font-size: 16px;
}

.btn-disabled{
    opacity: 0.5;
    cursor: no-drop !important;
    filter: sepia(100%) hue-rotate(350deg) saturate(250%);
}

.next_button{
    background-image: url(../img/arrow-next.png);
}

.prev_button{
    background-image: url(../img/arrow-prev.png);
}