*{
    font-family: 'Open Sans', sans-serif;
}

@media (max-width:1440px) and (min-width:769px){
    html{
        font-size: calc(0.1em + .85vw);
    }
}

@media (max-width:768px){
    html{
        font-size: 70%;
    }
}

body{
    background-color: #F7F7F7;
}

section{
    display: none;
}

a{
    text-decoration: none;
    color: inherit;
}

img{
    height: auto;
    max-width: 100%;
}

/* Page Header */
.page-header{
    background-color: #000036;
}

.page-header h1,
.page-header h2{
    color: #F99F1E;
    font-family: 'Roboto Slab', serif;
    font-size: 3.125rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 3.625rem;
    padding-bottom: 2.9375rem;
    max-width: 87.375rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.page-header h1 .img,
.page-header h2 .img{
    position: absolute;
    top: calc(50% - calc(7rem / 2));
    right: 0;
    width: 7rem;
    height: 7rem;
    border-radius: 10px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 .img.Prefer_Not_To_Answer,
.page-header h2 .img.Prefer_Not_To_Answer{
    visibility: hidden;
}

.page-header h1 .img img,
.page-header h2 .img img{
    width: 88%;
}

@media(max-width:768px){
    .page-header{
        padding: 1.5rem;
    }

    .page-header h1,
    .page-header h2{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        font-size: 3rem;
    }

    .page-header h1 .img,
    .page-header h2 .img{
        display: none !important;
    }
}

/* Page Content */
.page-content{
    max-width: 87.375rem;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 23% calc(77% - 6.3125rem);
    grid-gap: 6.3125rem;
    padding-top: 3rem;
    padding-bottom: 4.75rem;
}

.page-content .image{
}

.page-content .image img{
    box-shadow: 6px 16px 32px #0000001A;        
}

.page-content .content{
    counter-reset: section;
}

.page-content .content h3{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.25rem;
    font-weight: 900;
    color: #000036;
}

.page-content .content h4{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000036;
}

.page-content .content p{
    font-size: 1.25rem;
    line-height: 1.2;
}

.page-content .content .message.alert{
    margin: 1rem 0;
    color: #ab0000;
    font-weight: 600;
    display: none;
}

@media(max-width:768px){
    .page-content{
        grid-template-columns: 100%;
        padding: 1.5rem;
        grid-gap: 1.5rem;
    }

    .page-content .image{
        text-align: center;
    }

    .page-content .image img{
        max-width: 100%;
        margin-top: 0;
        height: 25rem;
    }
}

/* Question */
.page-content .content .question{
    background-color: #FFFFFF;
    box-shadow: 10px 5px 20px #00000014;
    border-radius: 24px;
    padding: 2.625rem 3.3125rem 1.6875rem 5.8125rem;
    position: relative;
    border-left: 5px solid #000036;
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem;
}

.page-content .content .question.complete{
    background-color: #F5FAFF;
}

.page-content .content .question .number{
    position: absolute;
    top: 2.625rem;
    left: -2.1875rem;
    width: 5.625rem;
    height: 5.625rem;
    border: 4px solid #000036;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    transition: .25s all;
    -webkit-transition: .25s all;
}

.page-content .content .question.complete .number{
    transform: rotate(180deg);
    background-color: #000036;
}

.page-content .content .question .number span{
    font-size: 2.75rem;
    font-weight: 700;
    color: #000036;
}

.page-content .content .question.complete .number span{
    color: #FFFFFF;
    transform: rotate(-180deg);
}

.page-content .content .question .number span:after{
    counter-increment: section;
    content: counter(section);    
}

.page-content .content .question p{
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.page-content .content .options{
    display: inline-flex;
    flex-wrap: wrap;
    grid-gap: 1.25rem;
}

.page-content .content .options label{
    display: inline-flex;
}

.page-content .content .options label input[type=radio]{
    display: none;
}

.page-content .content .options label input[type=radio]:checked ~ span{
    background-color: #000036;
    border-color: #000036;
    color: #FFFFFF;
}

.page-content .content .options label span{
    color: #000000;
    font-size: 1.25rem;
    border: 2px solid #0E3655;
    border-radius: 8px;
    padding: 8px 24px;
    cursor: pointer;
    transition: .25s all;
}

.page-content .content .options label:hover span{
    box-shadow: 0px 3px 6px #00000026;
}

@media(max-width:768px){
    .page-content .content .question{
        margin-left: 1.5rem;
        padding: 3rem 3rem 2em 5.5rem;
    }

    .page-content .content .question .number{
        width: 4.625rem;
        height: 4.625rem;
    }
}

/* Buttons */
.page-content .content .container-buttons{
    margin-top: 2.4375rem;
    display: flex;
    justify-content: space-between;
}

.page-content .content .btn{
    display: inline-block;
    background-color: #000036;
    border: 2px solid #000036;
    border-radius: 8px;
    max-width: 18.75rem;
    width: 100%;
    padding: 1.25rem 2.375rem;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .25s all;
}

.page-content .content .btn span{
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: .25s all;
}

.page-content .content .btn .img{
    width: 1.25rem;
    height: 1.25rem;
    background-image: url(../img/finred-icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: .25s all;
}

.page-content .content .btn.outline{
    border: 2px solid #6D747B;
    background-color: transparent;
    flex-direction: row-reverse;
}

.page-content .content .btn.outline span{
    color: #6D747B;
}

.page-content .content .btn.outline .img{
    background-image: url(../img/finred-icon-arrow-color.svg);
}

.page-content .content .btn.left .img{
}

.page-content .content .btn.right .img{
}

.page-content .content .btn.right.alert{
    background-color: #C12A2A !important;
    border-color: #C12A2A !important;
}

.page-content .content .btn.right.alert span{
    color: #FFFFFF !important;
}

.page-content .content .btn.right.alert .img{
    background-image: url(../img/finred-icon-arrow.svg) !important;
}

@media(max-width:768px){
    .page-content .content .container-buttons{
        grid-gap: 1rem;
    }
}

/* Card */
.card{
    border-radius: 24px;
    background-color: #FFFFFF;
    box-shadow: 10px 5px 20px #00000014;
    padding: 3rem 8.625rem 2.6875rem;
    border-left: 5px solid #000036;
}

.card h3{
    color: #000036;
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1.8125rem;
}

.card p{
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
}

.card .image-box{
    display: grid;
    grid-template-columns: 18% calc(82% - 3.125rem);
    grid-gap: 3.125rem;
    align-items: center;
}

.card .image-box.btn{
    border-radius: 10px;
    background-color: #F7F7F7;
    border: 2px solid #FFFFFF;
    padding: 1.625rem 3.8125rem 1.625rem 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    transition: .5s all;
    grid-template-columns: calc(75% - 3.125rem) 25%;
}

.card .image-box.btn:hover{
    border: 2px solid #D9D9D980;
}

.card .image-box.btn img{
    margin-left: auto;
    margin-right: auto;
    max-height: 5.0625rem;
}

.card .image-box.btn p{
    font-size: 1.125rem;
}

.card .image-box.btn .arrow{
    position: absolute;
    top: calc( 50% - calc( 3.375rem / 2 ));
    right: -1.55rem;
    width: 3.375rem;
    height: 3.375rem;
    border-radius: 50%;
    background-color: #6D747B;
    background-image: url(../img/finred-icon-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    transition: .5s all;
}

.card .image-box.btn:hover .arrow{
    transform: scale(1.1);
}

.card .score{
    border: 4px solid #000036;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.125rem 1.875rem;
}

.card .score strong{
    font-size: 5.5625rem;
    font-weight: 800;
    line-height: .8;
    color: #000036;
}

.card .score span{
    font-size: 2.625rem;
    font-weight: 100;
    line-height: .8;
    color: #000036;
}

.card p{
}

@media (max-width:768px) {
    .card{
        padding: 3rem 4rem 2.5rem;
    }

    .card .image-box{
        grid-template-columns: 100%;
        grid-gap: 1.5rem;
    }

    .card .image-box.btn{
        display: flex;
        flex-direction: column-reverse;
    }

    .card .image-box.btn p{
        overflow-wrap: break-word;
        overflow-wrap: anywhere;
    }
}

/* Score */
.total-score{
    width: 100%;
    height: auto;
    position: relative;
    margin: 1.5rem 0;
    background-color: #F7F7F7;
    overflow: hidden;
    max-height: 9.6875rem;
}

.total-score .bar{
    background-color: #B5B5B5;
    border-radius: 50%;
    width: 19.375rem;
    height: 19.375rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -17.75rem;
    position: relative;
    -webkit-mask-image: url(../img/Meter.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: top center;
    -webkit-mask-repeat: no-repeat;
}

.total-score .bar .bar-color{
    background-color: #1460AA;
    border-radius: 50%;
    width: 19.375rem;
    height: 19.375rem;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    transition: 1s all;
}

.total-score .min-score{
    position: absolute;
    bottom: 0;
    left: 1.75rem;
    width: 2.375rem;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #F7F7F7;
    background-color: #1460AA;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.total-score .max-score{
    position: absolute;
    bottom: 0;
    right: 2.65rem;
    width: 3.4375rem;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #F7F7F7;
    background-color: #6D747B;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.total-score .needle{
    background-image: url(../img/Needle.svg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center left;
    border-radius: 50%;
    width: 19.375rem;
    height: 19.375rem;
    position: absolute;
    top: 0;
    left: calc(50% - calc(19.375rem / 2));
    transition: 1s all;
}

.total-score .bg-total-score{
    background-color: #FFFFFF;
    border: 3px solid #B5B5B5;
    border-radius: 50%;
    width: 13.25rem;
    height: 13.25rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 0;
    position: relative;
    left: -1.1875rem;
    clip-path: polygon(0 0, 100% 0, 100% 53%, 0 53%);
}

.total-score #total_score{
    position: relative;
    top: 13%;
    width: 100%;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #000036;
}

.container-total-score{
    margin: 25px auto;
    padding: 10px 0;
    background-color: #F7F7F7;
}

@media(max-width:768px){
    .container-total-score{
        max-width: 275px;
        padding: 10px;
    }
}

/* Branchs*/
#branchs{
    display: block;
    background-color: #000036;
}

#branchs .page-content{
    background-color: #000036;
    padding-top: 0;
    grid-template-columns: 30% 70%;
    grid-gap: 0;
}

#branchs .page-content .image img{
    margin-top: 3.125rem;
    max-width: 111.5%;
    position: relative;
    z-index: 2;
}

#branchs .page-content .content{
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 2.625rem 7.625rem;
}

#branchs .page-content .content h3{
    color: #537E16;
    font-size: 1.875rem;
    font-weight: 700;
}

#branchs .page-content .content .options{
    max-width: 33.125rem;
}

#branchs .page-content .content .btn{
    max-width: 17.25rem;
    background-color: #F99F1E;
    border: none;
}

#branchs .page-content .content .btn span{
    color: #0E314C;
}

#branchs .page-content .content .container-buttons{
    margin-top: 2.375rem;
    margin-bottom: -4.5rem;
}

#branchs .page-content .content .btn .img{
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../img/finred-icon-arrow-blue.svg);
}

@media(max-width:768px){
    #branchs .page-header h2{
        text-align: center;
        padding-right: 0;
    }

    #branchs .page-content{
        grid-template-columns: 100%;
        padding-bottom: 5rem;
    }

    #branchs .page-content .image img{
        max-width: 100%;
        margin-top: 0;
        border-radius: 24px 24px 0 0;
        height: auto;
    }

    #branchs .page-content .content{
        border-radius: 0 0 24px 24px;
        padding: 3rem 4rem;
    }
}

/* Present_financial_security */

/* Future_financial_security */
#future_financial_security .page-content .content h3{
    color: #5A781D;
}

#future_financial_security .page-content .content .question{
    border-left-color: #5A781D;
}

#future_financial_security .page-content .content .question.complete{
    background-color: #FAFFF8;
}

#future_financial_security .page-content .content .options label input[type=radio]:checked ~ span{
    background-color: #5A781D;
    border-color: #5A781D;
}

#future_financial_security .page-content .content .options label span{
    border-color: #5A781D;
}

#future_financial_security .page-content .content .question .number{
    border-color: #5A781D;
    background-color: #FFFFFF;
}

#future_financial_security .page-content .content .question .number span{
    color: #5A781D;
}

#future_financial_security .page-content .content .question.complete .number{
    background-color: #5A781D;
}

#future_financial_security .page-content .content .question.complete .number span{
    color: #FFFFFF;
}

/* Present_freedom_choice */
#present_freedom_choice .page-content .content h3{
    color: #C35013;
}

#present_freedom_choice .page-content .content .question{
    border-left-color: #C35013;
}

#present_freedom_choice .page-content .content .question.complete{
    background-color: #FFF8EF;
}

#present_freedom_choice .page-content .content .options label input[type=radio]:checked ~ span{
    background-color: #C35013;
    border-color: #C35013;
}

#present_freedom_choice .page-content .content .options label span{
    border-color: #C35013;
}

#present_freedom_choice .page-content .content .question .number{
    border-color: #C35013;
    background-color: #FFFFFF;
}

#present_freedom_choice .page-content .content .question .number span{
    color: #C35013;
}

#present_freedom_choice .page-content .content .question.complete .number{
    background-color: #C35013;
}

#present_freedom_choice .page-content .content .question.complete .number span{
    color: #FFFFFF;
}

/* Future_freedom_choice */
#future_freedom_choice .page-content .content h3{
    color: #6D747B;
}

#future_freedom_choice .page-content .content .question{
    border-left-color: #6D747B;
}

#future_freedom_choice .page-content .content .question.complete{
    background-color: #F5FDFF;
}

#future_freedom_choice .page-content .content .options label input[type=radio]:checked ~ span{
    background-color: #6D747B;
    border-color: #6D747B;
}

#future_freedom_choice .page-content .content .options label span{
    border-color: #6D747B;
}

#future_freedom_choice .page-content .content .question .number{
    border-color: #6D747B;
    background-color: #FFFFFF;
}

#future_freedom_choice .page-content .content .question .number span{
    color: #6D747B;
}

#future_freedom_choice .page-content .content .question.complete .number{
    background-color: #6D747B;
}

#future_freedom_choice .page-content .content .question.complete .number span{
    color: #FFFFFF;
}

/* Overall_score */
#overall_score{
    background-color: #FFFFFF;
}

#overall_score .page-header{
}

#overall_score .page-content{
    padding-top: 6.25rem;
    grid-template-columns: 29% calc(71% - 3.6875rem);
}

#overall_score .page-content .image img{
    box-shadow: none;
    background-color: #F7F7F7;
    width: 100%;
}

#overall_score .page-content .image h3{
    font-size: 2.5rem;
    font-weight: 800;
    color: #000036;
    margin-top: 0;
    margin-bottom: 0;
}

#overall_score .page-content .content{
    grid-template-columns: 23% calc(77% - 3.6875rem);
    grid-gap: 3.6875rem;
}

#overall_score .page-content .content p{
    font-size: 1.5rem;
}

#overall_score .page-content .content p.disclaimer{
    font-size: 1.375rem;
}

#overall_score .page-content .content p.disclaimer a{
    color: #1460AA;
}

#overall_score .page-content .content p:first-child{
    margin-top: 0;
}

#overall_score .page-content .content .btn{
    border-radius: 12px;
    border: 2px solid #0D314D;
    background-color: #FFFFFF;
    max-width: fit-content;
    padding: 0.75rem 1.5rem;
}

#overall_score .page-content .content .btn:hover{
    border: 2px solid #000036;
    background-color: #000036;
}

#overall_score .page-content .content .btn span{
    color: #000036;
}

#overall_score .page-content .content .btn:hover span{
    color: #FFFFFF;
}

#overall_score .page-content .content .btn:hover .img{
    background-image: url(../img/finred-icon-arrow.svg);
}

#overall_score .page-content .content .btn .img{
    background-image: url(../img/finred-icon-arrow-blue.svg);
    margin-left: 2.5rem;
    transition: 0s all;
}

#overall_score .page-content .content .btn.download .img{
    background-image: url(../img/finred-icon-arrow.svg);
    background-size: 45% auto;
    background-color: #000036;
    border-radius: 50%;
    transform: rotate(90deg);
    width: 1.875rem;
    height: 1.875rem;
    box-sizing: border-box;
    transition: background-color .25s;
}

#overall_score .page-content .content .btn.download:hover .img{
    background-image: url(../img/finred-icon-arrow-blue.svg);
    background-color: #FFFFFF;
    border-radius: 50%;
}

#overall_score .page-content .content .btn.retake{
    border-color: #6D747B;
}

#overall_score .page-content .content .btn.retake .img{
    margin-right: 2.5rem;
    margin-left: inherit;
    background-image: url(../img/finred-icon-arrow-color.svg);
}

#overall_score .page-content .content .btn.retake span{
    color: #6D747B;
}

#overall_score .page-content .content .btn.retake:hover{
    border-color: #000036;
}

#overall_score .page-content .content .btn.retake:hover .img{
    margin-right: 2.5rem;
    margin-left: inherit;
    background-image: url(../img/finred-icon-arrow-left.svg);
}

#overall_score .page-content .content .btn.retake:hover span{
    color: #FFFFFF;
}

#overall_score .page-content.resources{
    grid-template-columns: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #F7F7F7;
    padding-top: 7.3125rem;
    padding-bottom: 6.5rem;
}

#overall_score .page-content.resources .cards{
    max-width: 87.375rem;
    margin-left: auto;
    margin-right: auto;
}

#overall_score .page-content.footer{
    grid-template-columns: 100%;
    padding-top: 4.25rem;
    padding-bottom: 6.125rem;
}

#overall_score .page-content.footer .content{
    padding-left: 8.625rem;
    padding-right: 5.625rem;
}

#overall_score .page-content.footer p{
    margin-bottom: 2.75rem;
}

#overall_score .page-content .cards .card{
    margin-bottom: 1.875rem;
}

#overall_score .page-content .cards .image-box:not(.btn){
    margin-bottom: 2.8125rem;
}

#overall_score .page-content .cards .card.green{
    border-left-color: #5A781D;
}

#overall_score .page-content .cards .card.green h3{
    color: #5A781D;
}

#overall_score .page-content .cards .card.green .score{
    border-color: #5A781D;
}

#overall_score .page-content .cards .card.green .score strong{
    color: #5A781D;
}

#overall_score .page-content .cards .card.green .score span{
    color: #5A781D;
}

#overall_score .page-content .cards .card.orange{
    border-left-color: #C35013;
}

#overall_score .page-content .cards .card.orange h3{
    color: #C35013;
}

#overall_score .page-content .cards .card.orange .score{
    border-color: #C35013;
}

#overall_score .page-content .cards .card.orange .score strong{
    color: #C35013;
}

#overall_score .page-content .cards .card.orange .score span{
    color: #C35013;
}

#overall_score .page-content .cards .card.gray{
    border-left-color: #6D747B;
}

#overall_score .page-content .cards .card.gray h3{
    color: #6D747B;
}

#overall_score .page-content .cards .card.gray .score{
    border-color: #6D747B;
}

#overall_score .page-content .cards .card.gray .score strong{
    color: #6D747B;
}

#overall_score .page-content .cards .card.gray .score span{
    color: #6D747B;
}

#overall_score .page-content h4{
    font-size: 1.25rem;
    margin-top: 0.875rem;
    margin-bottom: 0.625rem;
}

#overall_score .relief-societies.title{
    display: block;
}

#overall_score .relief-societies.title.Prefer_Not_To_Answer{
    display: none;
}

#overall_score .relief-societies.btn.Army,
#overall_score .relief-societies.btn.Marine_Corps,
#overall_score .relief-societies.btn.Navy,
#overall_score .relief-societies.btn.Air_Force,
#overall_score .relief-societies.btn.Space_Force,
#overall_score .relief-societies.btn.Coast_Guard{
    display: none;
}

#overall_score .relief-societies.btn.Army.active,
#overall_score .relief-societies.btn.Marine_Corps.active,
#overall_score .relief-societies.btn.Navy.active,
#overall_score .relief-societies.btn.Air_Force.active,
#overall_score .relief-societies.btn.Space_Force.active,
#overall_score .relief-societies.btn.Coast_Guard.active{
    display: grid;
}

@media(max-width:768px){
    #overall_score .page-content{
        grid-template-columns: 100%;
    }

    #overall_score .page-content .cards{
        max-width: inherit !important;
    }

    #overall_score .page-content.resources{
        padding-bottom: 3rem;
    }

    #overall_score .page-content.footer .content{
        padding-left: 0rem;
        padding-right: 0rem;
    }

    #overall_score .Army.active,
    #overall_score .Marine_Corps.active,
    #overall_score .Navy.active,
    #overall_score .Air_Force.active,
    #overall_score .Space_Force.active,
    #overall_score .Coast_Guard.active{
        display: flex;
    }
}

/* Print */
@media print {
    #overall_score .container-total-score{
        -webkit-print-color-adjust: exact;
        max-width: 26.0625rem;
    }

    #overall_score .total-score .bar{
        mask-image: url(../img/Meter.svg);
        mask-size: contain;
        mask-position: top center;
        mask-repeat: no-repeat;
    }

    #overall_score .page-header{
        background-color: transparent;
    }

    #overall_score .page-header h2{
        padding-right: 0;
        text-align: center;
        -webkit-print-color-adjust: exact;
    }

    #overall_score .page-header h2 .img{
        display: none;
    }

    #overall_score .page-content{
        padding-top: 2rem;
        grid-template-columns: 100%;
    }

    #overall_score .page-content.resources{
        -webkit-print-color-adjust: exact;
    }

    #overall_score .page-content .btn:not(.image-box){
        display: none;
    }

    #overall_score .page-content .btn.download{
        display: none;
    }

    #overall_score .page-content .cards .image-box{
        grid-template-columns: 18% calc(82% - 3.125rem);
        grid-gap: 3.125rem;
    }

    #overall_score .page-content.resources{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    #overall_score .page-content .cards .card{
        padding: 2rem 3rem 1.5rem;
    }

    #overall_score .card .score strong{
        font-size: 3rem;
    }

    #overall_score .card .score span{
        font-size: 1.625rem;
    }

    #overall_score .page-content .cards .image-box.btn{
        display: grid;
        grid-template-columns: calc(82% - 2.125rem) 18%;
        grid-gap: 2.125rem;
    }

    #overall_score .card .image-box.btn .arrow{
        display: none;
    }

    #overall_score .relief-societies.btn.Army,
    #overall_score .relief-societies.btn.Marine_Corps,
    #overall_score .relief-societies.btn.Navy,
    #overall_score .relief-societies.btn.Air_Force,
    #overall_score .relief-societies.btn.Space_Force,
    #overall_score .relief-societies.btn.Coast_Guard {
        display: none !important;
    }

    #overall_score .relief-societies.btn.Army.active,
    #overall_score .relief-societies.btn.Marine_Corps.active,
    #overall_score .relief-societies.btn.Navy.active,
    #overall_score .relief-societies.btn.Air_Force.active,
    #overall_score .relief-societies.btn.Space_Force.active,
    #overall_score .relief-societies.btn.Coast_Guard.active {
        display: grid !important;
    }

    #overall_score .total-score .bar{
        -webkit-mask-image: none;
    }

    #overall_score .total-score .min-score{
        left: 2.5rem;
    }

    #overall_score .total-score .max-score{
        right: 2.2rem;
    }

    #overall_score .total-score .bg-total-score{
        left: auto;
    }
}

/* IE Support */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .page-header h2 .img{
        top: 15%;
    }

    .page-content{
        display: flex;
        -ms-display: flex;
    }

    .page-content .image{
        width: 23%;
    }

    .page-content .content{
        width: calc(77% - 6.3125rem);
        margin-left: 6.3125rem;
    }

    .page-content .content .question{
        box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.08);
    }

    .page-content .content .options{
        margin: -.5rem;
    }

    .page-content .content .options label{
        margin: .5rem;
    }

    .card{
        box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.08);
    }

    .card .image-box{
        display: flex;
        -ms-display: flex;
    }

    .card .image-box > div:first-child{
        width: 18%;
    }

    .card .image-box > div:last-child{
        width: calc(82% - 3.125rem);
        margin-left: 3.125rem;
    }

    .card .image-box img{
        width: 18%;
    }

    .card .image-box p{
        width: calc(82% - 3.125rem);
        margin-left: 3.125rem;
    }

    .card .score{
        padding: 1.125rem .875rem;
    }

    .total-score .bg-total-score{
        left: inherit;
    }

    .total-score .min-score{
        left: .45rem;
    }

    .total-score .max-score{
        right: .45rem;
        width: 2.4375rem;
    }

    #branchs .page-content{
        display: flex;
    }

    #branchs .page-content .image{
        width: 30%;
    }

    #branchs .page-content .content{
        width: 70%;
    }

    #overall_score .page-content .content .btn{
        max-width: inherit;
        width: auto;
        white-space: nowrap;
    }

    #overall_score .page-content.resources{
        display: block;
    }
}