
:root {
    --color-grey-light: #f6f6f6;
    --color-grey-mid: #d2d8e0;
    --color-grey-dark: #333;
    --color-gold: #ebc781;
    --color-green: #daedb0;
    --color-blue-bright: #255be3;
    --color-blue-dark: #002A54;
    --color-blue-mid: #056dae;
    --color-blue-light: #C7EDF7;
    --color-topic-light: rgba(70,183,230,.25);
    --color-topic-dark: rgba(70,183,230,.5);
    --color-red: #b92026;
    --color-red-dark: #7b1315;
    --color-orange: #ec5529;
    --color-yellow-light: #ebc781;
    --color-yellow: #f8e77d;
    --color-yellow-dark: #fbd393;
    --color-pink: #f5ded8;
    --color-cream: #FFEFC6;
    --color-cream-dark: #fde3cb;
    --gradient-gold: linear-gradient(90deg, rgba(163,132,96,1) 0%, rgba(240,204,134,1) 17%);
    --gradient-gold-reverse: linear-gradient(90deg, rgba(240,204,134,1) 0%, rgba(163,132,96,1)87%);
}

body {
    color: var(--color-grey-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'citi-sans-text',sans-serif;
}

h1, h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h6 {
    font-weight: normal;
}

a,
a:hover,
a:focus,
a:visited {
    color: var(--color-blue-bright);
}

hr {
    border-bottom: solid 2px #fff;
}

select.form-control {
    border-radius: 3rem;
    appearance: none;
}


.bg-white {
    background-color: #fff;
}

.bg-red {
    background-color: var(--color-red);
}

.bg-gold {
    background-color: var(--color-gold);
}

.bg-blue-dark {
    background-color: var(--color-blue-dark)
}

.bg-blue-bright {
    background-color: var(--color-blue-bright);
}

.bg-blue-mid {
    background-color: var(--color-blue-mid);
}

.bg-blue-light {
    background-color: var(--color-blue-light);
}

.bg-grey {
    background-color: var(--color-grey-light);
}

.bg-grey-mid {
    background-color: var(--color-grey-mid);
}

.bg-green {
    background-color: var(--color-green);
}

.bg-yellow {
    background-color: var(--color-yellow);
}

.bg-orange {
    background-color: var(--color-orange);
}

.bg-pink {
    background-color: var(--color-pink);
    color: var(--color-grey-dark);
}

.bg-cream {
    background-color: var(--color-cream);
}

.text-22 {
    font-size: 1.375rem !important;
}

.text-red {
    color: var(--color-red) !important;
}

.text-blue {
    color: var(--color-blue-bright) !important;
}

.text-blue-mid {
    color: var(--color-blue-mid) !important;
}

.text-blue-light {
    color: var(--color-blue-light) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-grey {
    color: var(--color-grey-dark) !important;
}

.text-dark {
    color: #000 !important;
}

.text-black-50.active {
    color: #000 !important;
}

.text-display {
    font-family: 'citi-sans-display',sans-serif;
}

.btn {
    border-radius: .4rem;
    padding: .75rem 1.5rem;
}

    .btn.round {
        border-radius: 3rem;
    }
.btn.cta {
    background-color: var(--color-orange);
    background-image: var(--gradient-orange);
}
hr.red {
    border-color: var(--color-red);
}

.underline {
    padding-bottom: 30px;
    position: relative;
}

    .underline:after {
        content: '';
        border-bottom: solid 2px var(--color-gold);
        width: 80px;
        left: calc(50% - 40px);
        position: absolute;
        bottom: 0;
    }


.icon {
    height: 4rem;
}

.rounded {
    border-radius: 1rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}

.rounded-top {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.cardface {
    width: 75vw;
    height: 37.5vw;
    margin-top: -17vw;
}

#faqs_toggle {
    text-decoration: underline;
}

    #faqs_toggle.expanded:before {
        content: 'Collapse all sections';
    }

    #faqs_toggle.collapsed:before {
        content: 'Expand all sections';
    }

.faqs {
    padding: 0;
    margin: 0;
}

    .faqs li {
        padding: 1rem 0;
        border-bottom: solid 1px rgba(0,0,0,.3);
    }

        .faqs li:first-of-type {
            border-top: solid 1px rgba(0,0,0,.3);
        }

.faq_qn,
.faq_ans {
    padding-left: 3rem;
    position: relative;
}

.faq_qn {
    color: var(--color-blue-bright);
    display: block;
    cursor: pointer;
}

    .faq_qn:before {
        content: '\221F';
        transform: rotateZ(-45deg);
        display: block;
        position: absolute;
        top: 0;
        left: 1rem;
        width: 1rem;
        height: 1rem;
        transition: all 1s;
    }

    .faq_qn.active:before {
        transform: rotateZ(135deg);
        top: 0.5rem;
        left: 1.5rem;
    }

.faq_ans {
    padding-top: 1rem;
    display: none;
    transition: opacity 1s;
    opacity: 0;
}

.faq_qn.active + .faq_ans {
    display: block;
    opacity: 1;
}

#banner-sticky {
    background-img: #;
	background-color: #255BE3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

    #banner-sticky.stuck {
        position: fixed;
        bottom: 0;
        left: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        display: block;
    }

@media (min-width: 576px) {
    .cardface {
        width: 319px;
        height: 204px;
        margin-top: -100px;
    }
}

@media (min-width: 768px) {
    .screen {
    }
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1500px) {
}
