/* GENERAL */

html {
  scroll-behavior: smooth;
}

.skip-nav-btn {
    font-size: 14px;
    display: block;
    border-radius: 0;
    border: 0;
    padding: .5rem !important;
    margin: 0 !important;
}

.text-shadow {
    text-shadow: 0px 0px 10px rgba(0,0,0,.15);
}

.text-shadow-dark {
    text-shadow: 0px 0px 10px rgba(0,0,0,.54);
}

.text-shadow-none {
    text-shadow: none !important;
}

.box-shadow {
	box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

.box-shadow-dark {
	box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

.box-shadow-0 {
    box-shadow: none !important;
}

.responsive-list {
	column-count: 2 !important;
  }
  @media (min-width: 576px) {
      .responsive-list {
          column-count: 3 !important;
      }
  }
  @media (min-width: 992px) {
      .responsive-list {
          column-count: 4 !important;
      }
  }
.responsive-list li {
            break-inside: avoid;
            /* Prevent breaking inside list items */
        }

.image-overlay-25 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.155);
}

.image-overlay-50 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.54);
}

.image-overlay-75 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    padding: 1rem 1.5rem;
    color: #FFF;
}

.opacity-25 {
    opacity: .25 !important;
}

.opacity-50 {
    opacity: .5 !important;
}

.opacity-75 {
    opacity: .75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.no-hover {
	color: inherit;
}

.no-hover:hover {
	text-decoration: none;
	color: inherit;
}

.overlap {
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

.centered {
    position: absolute;
	top: 50%;
	left: 0;
	right: 0;
    transform: translateY(-50%);
	text-align: center;
	margin: auto;
}

.bg-words-light-grey {
    -webkit-background-size: 100% !important;
    -moz-background-size: 100% !important;
    -o-background-size: 100% !important;
    background-size: 100% !important;
    -webkit-background-attachment: fixed !important;
    -moz-background-attachment: fixed !important;
    -o-background-attachment: fixed !important;
    background-attachment: fixed !important;
    background: linear-gradient(rgba(255,255,255,.65),rgba(255,255,255,.65)), url('/assets/img/content/bg-words-light-grey.svg');
}

.bg-favicon-light-grey {
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;
    background: url('/assets/img/content/grey-favicon.svg') no-repeat center center;
}

.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.bg-ob-cover {
    width: 100% !important;
    height: 100% !important;
    -webkit-object-fit: cover !important;
    -moz-object-fit: cover !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.bg-fixed {
    -webkit-background-attachment: fixed !important;
    -moz-background-attachment: fixed !important;
    -o-background-attachment: fixed !important;
    background-attachment: fixed !important;
}

.bg-favicon-faded {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background: linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.95)), url('/assets/img/logos/favicons/favicon-black.svg') center center;
}

.bg-banner {
    padding: 8rem 0;
}

.bg-banner-lg {
    padding: 12rem 0;
}

@media (max-width: 1199.98px) {
    .bg-banner {
        padding: 6rem 0;
    }

    .bg-banner-lg {
        padding: 10rem 0;
    }
}

@media (max-width: 991.98px) {
    .bg-banner {
        padding: 5rem 0;
    }

    .bg-banner-lg {
        padding: 8rem 0;
    }
}

@media (max-width: 767.98px) {
    .bg-banner {
        padding: 4rem 0;
    }

    .bg-banner-lg {
        padding: 6rem 0;
    }
}

@media (max-width: 575.98px) {
    .bg-banner {
        padding: 3rem 0;
    }

    .bg-banner-lg {
        padding: 5rem 0;
    }
}

.badge {
    border-radius: 0;
    font-weight: 600;
}

.rounded-xl {
    border-radius: 30px !important;
}

.rounded-lg {
    border-radius: 20px !important;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-sm {
    border-radius: 5px !important;
}

.divided-text {
    padding: 1px 0;
    overflow: hidden;
    text-align: center;
}

.divided-text:before,
.divided-text:after {
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.divided-text:before {
    right: 7.5px;
    margin-left: -50%;
}

.divided-text:after {
    left: 7.5px;
    margin-right: -50%;
}

.divided-text:before,
.divided-text:after {
    background-color: #000;
}

.divided-text.white:before,
.divided-text.white:after {
    background-color: #FFF;
}

.divided-text.red:before,
.divided-text.red:after {
    background-color: #E6222E;
}

.divided-text.lgrey:before,
.divided-text.lgrey:after {
    background-color: #DEE2E6;
}

.divided-text-left {
    padding: 1px 0;
    overflow: hidden;
    text-align: left;
}

.divided-text-left:after {
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

.divided-text-left:after {
    left: 7.5px;
    margin-right: -100%;
}

.divided-text-left:after {
    background-color: #000;
}

.divided-text-left.white:after {
    background-color: #FFF;
}

.divided-text-left.red:after {
    background-color: #E6222E;
}

.divided-text-left.lgrey:after {
    background-color: #DEE2E6;
}

.divided-text-left.faded:after {
    background-color: rgba(255,255,255,.125);
}


/* LINE CLAMP TEXT TRUNCATE */

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
} 

.clamp-one {
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.clamp-two {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.clamp-three {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.clamp-four {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.clamp-five {
    line-clamp: 5;
    -webkit-line-clamp: 5;
}


/* LAZY LOAD */

.lazyload {
	opacity: 0;
}

.lazyloading {
	opacity: 1;
	transition: opacity 300ms;
}

img.lazyload:not([src]) {
	visibility: hidden;
}


/* MARGIN/PADDING */

.ml-125 {
    margin-left: .125rem;
}

.my-10px {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.my-15px {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mx-15px {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.mx-30px {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.m-15px {
    margin: 15px !important;
}

.mt-n375 {
    margin-top: -.375rem;
}

.mt-15px {
    margin-top: 15px !important;
}

.mt-18px {
    margin-top: 18px !important;
}

.mt-20px {
    margin-top: 20px !important;
}

.mt-30px {
    margin-top: 30px !important;
}

.mt-33px {
    margin-top: 33px !important;
}

.mb-10px {
    margin-bottom: 10px !important;
}

.mb-15px {
    margin-bottom: 15px !important;
}

.mb-18px {
    margin-bottom: 18px !important;
}

.mb-20px {
    margin-bottom: 20px !important;
}

.mb-30px {
    margin-bottom: 30px !important;
}

.mb-33px {
    margin-bottom: 33px !important;
}

.mb-38px {
    margin-bottom: 38px !important;
}

.px-15px {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.px-30px {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.py-7-5px {
    padding-top: 7.5px !important;
    padding-bottom: 7.5px !important;
}

.py-10px {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.py-15px {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.py-30px {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.pb-10px {
    padding-bottom: 10px !important;
}

.pb-15px {
    padding-bottom: 15px !important;
}

.pb-18px {
    padding-bottom: 18px !important;
}

.pb-30px {
    padding-bottom: 30px !important;
}

.pb-33px {
    padding-bottom: 33px !important;
}

.pb-38px {
    padding-bottom: 38px !important;
}

.pt-10px {
    padding-top: 10px !important;
}

.pt-15px {
    padding-top: 15px !important;
}

.pt-18px {
    padding-top: 18px !important;
}

.pt-30px {
    padding-top: 30px !important;
}

.pt-33px {
    padding-top: 33px !important;
}

.pt-38px {
    padding-top: 38px !important;
}

.p-15px {
    padding: 15px !important;
}

.row-15px {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row-15px [class*=col-],
.row-15px [class*=col] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row-small {
    justify-content: center;
}

.row-small > .col-12,
.row-small > .col-xl-12 {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

@media (min-width: 576px) {
    .row-small > .col-12,
    .row-small > .col-xl-12 {
        -ms-flex: 0 0 91.666667% !important;
        flex: 0 0 91.666667% !important;
        max-width: 91.666667% !important;
    }
}

@media (min-width: 768px) {
    .row-small > .col-12,
    .row-small > .col-xl-12 {
        -ms-flex: 0 0 83.333333% !important;
        flex: 0 0 83.333333% !important;
        max-width: 83.333333% !important;
    }
}

@media (min-width: 992px) {
    .row-small > .col-12,
    .row-small > .col-xl-12 {
        -ms-flex: 0 0 75% !important;
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }
}

@media (min-width: 1200px) {
    .row-small > .col-12,
    .row-small > .col-xl-12 {
        -ms-flex: 0 0 66.666667% !important;
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !important;
    }
}

@media (min-width: 1200px) {
    .col-xl-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 0 0 20% !important;
    }
}

@media (min-width: 992px) {
    .col-lg-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 0 0 20% !important;
    }
}

@media (min-width: 768px) {
    .col-md-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 0 0 20% !important;
    }
}

@media (min-width: 576px) {
    .col-sm-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 0 0 20% !important;
    }
}

.img-grid-section {
    padding-top: 15px;
}

.img-grid-section .img-col {
    margin-bottom: 15px;
}

.img-grid-section img {
    width: 100% !important;
}

.scholarship-row {
    font-size: 14px;
    margin-bottom: 3rem;
}

.scholarship-row ul {
    padding-left: 1.5rem;
}

/* .col-12 p:last-child,
.col-12 ol:last-child,
.col-12 ul:last-child {
    margin-bottom: 0;
} */

/* .img-fluid {
    border-radius: 30px;
} */


/* COLORS

PRIMARY:
Black: #000000;
White: #FFFFFF;
Red: #E6222E;
Dark Grey: #939598;
Light Grey: #C7C8CA;
Platinum: #757575;

*/

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

.bg-black {
    background-color: #000 !important;
}

.text-red {
    color: #E6222E !important;
}

.bg-red {
    background-color: #E6222E !important;
}

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

.bg-dark-grey {
    background-color: #939598;
}

.text-light-grey {
    color: #C7C8CA !important;
}

.bg-light-grey {
    background-color: #C7C8CA;
}

.text-platinum {
    color: #757575 !important;
}

.bg-platinum {
    background-color: #757575;
}

.bg-trans {
    background: transparent !important;
}

hr {
    margin: 1.5rem 0;
    border-top: 1px solid #DEE2E6;
}

hr.white {
    border-top: 1px solid #FFF;
}

hr.white-2 {
    border-top: 2px solid #FFF;
}

hr.black {
    border-top: 1px solid #000;
}

hr.black-2 {
    border-top: 2px solid #000;
}

hr.red {
    border-top: 1px solid #E6222E;
}

hr.light {
    border-top: 1px solid rgba(255,255,255,.125);
}

hr.dotted {
    border-top: 4px dotted #DEE2E6;
}

.border-dotted {
    border: 2px dotted #DEE2E6;
}

.border-dotted-bottom {
    border-bottom: 4px dotted #DEE2E6;
}

@-moz-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@-o-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}


/* TYPOGRAPHY

font-family: 'Red Hat Text', sans-serif;

*/

b, strong {
    font-weight: 600 !important;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.display-1 {
    font-size: 5rem;
}

.display-2 {
    font-size: 4rem;
}

.display-3 {
    font-size: 3.5rem;
}

.display-4 {
    font-size: 3rem;
}

@media (max-width: 1199.98px) {
    h1, .h1 {
        font-size: calc(2rem + 1vw);
    }

    h2, .h2 {
        font-size: calc(1.75rem + 0.5vw);
    }

    h3, .h3 {
        font-size: calc(1.5rem + 0.25vw);
    }

    h4, .h4 {
        font-size: calc(1.25rem + 0.15vw);
    }

    .display-1 {
        font-size: calc(2.25rem + 3vw);
    }

    .display-2 {
        font-size: calc(2rem + 2.75vw);
    }

    .display-3 {
        font-size: calc(1.75rem + 2.5vw);
    }

    .display-4 {
        font-size: calc(1.5rem + 2.25vw);
    }
}

body {
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 400;
    color: #000;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Bree Serif', serif;
    font-weight: 400;
    text-transform: uppercase;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-115 {
    line-height: 1.15 !important;
}

.lh-125 {
    line-height: 1.25 !important;
}

small {
    font-weight: inherit;
}

.font-12px {
    font-size: 12px !important;
}

.font-13px {
    font-size: 13px !important;
}

.font-14px {
    font-size: 14px !important;
}

.font-15px {
    font-size: 15px !important;
}

.font-16px {
    font-size: 16px !important;
}

.font-17px {
    font-size: 17px !important;
}

.font-18px {
    font-size: 18px !important;
}

.lead {
    font-size: 1.2rem;
}

@media (max-width: 1199.98px) {
    .lead {
        font-size: 1.175rem;
    }
}

@media (max-width: 991.98px) {
    .lead {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .lead {
        font-size: 1.125rem;
    }
}

@media (max-width: 575.98px) {
    .lead {
        font-size: 1.1rem;
    }
}

.eyebrow {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .25rem;
}

#main-content a:not(.btn) {
    word-wrap: break-word;
    font-weight: 500;
    color: #E6222E;
    transition: all .3s ease;
}

#main-content a:not(.btn):hover,
#main-content a:not(.btn):focus,
#main-content a:not(.btn):target,
#main-content a:not(.btn):active {
    color: #FC2633;
    text-decoration: none;
}

#main-content a:not(.btn) {
    background-image: linear-gradient(rgba(252,38,51,1),rgba(252,38,51,1));
    text-decoration: none;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all .3s ease;
}

#main-content a:not(.btn):hover,
#main-content a:not(.btn):focus {
    background-size: 100% 1px;
}

#main-content .bg-red a:not(.btn) {
    color: #FFF;
}

#main-content .bg-red a:not(.btn):hover,
#main-content .bg-red a:not(.btn):focus,
#main-content .bg-red a:not(.btn):target,
#main-content .bg-red a:not(.btn):active {
    color: #FFF;
}

#main-content .bg-red a:not(.btn) {
    background-image: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1));
}

#main-content .bg-blue a:not(.btn) {
    color: #FFF;
}

#main-content .bg-blue a:not(.btn):hover,
#main-content .bg-blue a:not(.btn):focus,
#main-content .bg-blue a:not(.btn):target,
#main-content .bg-blue a:not(.btn):active {
    color: #FFF;
}

#main-content .bg-blue a:not(.btn) {
    background-image: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1));
}

#main-content ul,
#main-content ol {
    line-height: 1.25;
}

#main-content ul li,
#main-content ol li {
    margin-bottom: 5px;
}

/* #main-content a:not(.btn) .fa-link {
    font-size: 12px;
    vertical-align: top;
    margin-top: 5px;
} */

p .fa-external-link,
p .fa-external-link-alt {
    font-size: 12px;
    vertical-align: top;
    margin-top: 6px;
}

.fa-xxs {
    font-size: 75% !important;
    margin-top: 5px !important;
}

.disabled-link {
    pointer-events: none;
    opacity: .25;
    user-select: none;
}

.no-underline {
    text-decoration: none !important;
    background-image: none !important;
}

.text-frank-ruhl {
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 400;
}

.text-roboto {
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 400;
}

ul {
    list-style-type: square;
}

p + ul.spaced-list {
    margin-top: -.5rem;
}

ul.favicon-list {
   list-style: none;
   padding-left: 10px;
}

ul.favicon-list li {
    line-height: 1.25;
    margin-left: 0px;
    margin-bottom: 15px !important;
    position: relative;
}

ul.favicon-list li:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -15px;
    background: url('/assets/img/logos/favicons/favicon-red.svg') center center no-repeat;
    width: 15px;
    height: 15px;
    background-color: #FFF;
    padding: 1px;
}

ul.favicon-list.white li:before {
    background: url('/assets/img/logos/favicons/favicon-white.svg') center center no-repeat;
}

ul.favicon-list li.reading-champion {
    margin-left: 0;
    padding: 15px 15px 15px 20px;
    text-transform: uppercase;
    color: #E6222E;
    border: 1px solid #E6222E;
}

ul.favicon-list li.reading-champion:before {
    top: 10px;
    left: -15.5px;
    width: 30px;
    height: 30px;
}

ul.favicon-list li a {
    display: inline-block;
}

.favicon-icon {
    width: 10px;
}


/* BUTTONS */

.btn-row {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}

.btn-row [class*=col-],
.btn-row [class*=col] {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}

.btn-row .btn {
    margin-bottom: 15px;
}

.btn {
    font-weight: 500;
    border-radius: 0;
}

.btn-reg {
    font-size: 14px;
    padding: .75rem 1rem;
    border-radius: 30px;
}

.btn-reg .fa-external-link-alt,
.btn-reg .fa-external-link {
    font-size: 10px;
    vertical-align: top;
    margin-top: 5px;
}

.btn-red {
    border: 2px solid #E6222E;
    background-color: #E6222E;
    color: #FFF;
}

.btn-red:hover,
.btn-red:focus,
.btn-red:target,
.btn-red:active {
    border: 2px solid #FC2633;
    background-color: #FC2633;
    color: #FFF;
    outline: 0;
}

.btn-red:focus {
    box-shadow: 0 0 0 0.2rem rgba(252,38,51,.25);
}

.btn-red.active {
    background-color: transparent;
    color: #E6222E;
    border: 2px solid #E6222E;
    text-decoration: underline;
}

.btn-outline-light {
    background-color: transparent;
}

.btn-outline-red {
    color: #E6222E;
    border: 2px solid #E6222E;
    background-color: transparent;
}

.btn-outline-red:hover {
    background-color: #FC2633;
    color: #FFF !important;
    border: 2px solid #FC2633;
}

.btn-outline-red.focus,
.btn-outline-red:focus,
.btn-outline-red:target,
.btn-outline-red:active {
    background-color: #FC2633;
    color: #FFF !important;
    border: 2px solid #FC2633;
    box-shadow: 0 0 0 .2rem rgba(252,38,51,.5);
}

.btn-black {
    border: 2px solid #000;
    background-color: #000;
    color: #FFF;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:target,
.btn-black:active {
    border: 2px solid #231F20;
    background-color: #231F20;
    color: #FFF;
    outline: 0;
}

.btn-black:focus {
    box-shadow: 0 0 0 0.2rem rgba(34,30,31,.25);
}

.btn-black.active {
    background-color: transparent;
    color: #231F20;
    border: 2px solid #231F20;
    text-decoration: underline;
}

.btn-outline-black {
    color: #000;
    border: 2px solid #000;
    background-color: transparent;
}

.btn-outline-black:hover {
    background-color: #231F20;
    color: #FFF !important;
    border: 2px solid #231F20;
}

.btn-outline-black.focus,
.btn-outline-black:focus,
.btn-outline-black:target,
.btn-outline-black:active {
    background-color: #231F20;
    color: #FFF !important;
    border: 2px solid #231F20;
    box-shadow: 0 0 0 .2rem rgba(34,30,31,.5);
}

.btn-light-grey {
    border: 2px solid #C7C8CA;
    background-color: #C7C8CA;
    color: #000;
}

.btn-light-grey:hover,
.btn-light-grey:focus,
.btn-light-grey:target,
.btn-light-grey:active {
    border: 2px solid #939598;
    background-color: #939598;
    color: #FFF;
    outline: 0;
}

.btn-light-grey:focus {
    box-shadow: 0 0 0 0.2rem rgba(146,149,152,.25);
}

.btn-light-grey.active {
    background-color: transparent;
    color: #C7C8CA;
    border: 2px solid #C7C8CA;
    text-decoration: underline;
}

.btn-outline-light-grey {
    color: #939598;
    border: 2px solid #939598;
    background-color: transparent;
}

.btn-outline-light-grey:hover {
    background-color: #939598;
    color: #FFF !important;
    border: 2px solid #939598;
}

.btn-outline-light-grey.focus,
.btn-outline-light-grey:focus,
.btn-outline-light-grey:target,
.btn-outline-light-grey:active {
    background-color: #939598;
    color: #FFF !important;
    border: 2px solid #939598;
    box-shadow: 0 0 0 .2rem rgba(146,149,152,.5);
}

.btn-white {
    border: 2px solid #FFF;
    background-color: #FFF;
    color: #E6222E;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:target,
.btn-white:active {
    border: 2px solid #FC2633;
    background-color: #FFF;
    color: #FC2633;
    outline: 0;
}

.btn-white:focus {
    box-shadow: 0 0 0 0.2rem rgba(252,38,51,.25);
}

.btn-white.active {
    background-color: transparent;
    color: #FC2633;
    border: 2px solid #FC2633;
    text-decoration: underline;
}

.btn-outline-white {
    color: #FFF;
    border: 2px solid #FFF;
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: #FFF;
    color: #E6222E !important;
    border: 2px solid #FFF;
}

.btn-outline-white.focus,
.btn-outline-white:focus,
.btn-outline-white:target,
.btn-outline-white:active {
    background-color: #FFF;
    color: #E6222E !important;
    border: 2px solid #FFF;
    box-shadow: 0 0 0 .2rem rgba(146,149,152,.5);
}


/* CALENDAR */

.fc-view-harness {
    background-color: #FFF;
}

@media (max-width: 767.98px) {
    .fc .fc-toolbar {
        flex-direction: column;
    }

    .fc-toolbar-title {
        margin: 10px 0 !important;
    }
}

.fc .fc-button .fc-icon {
    font-size: 14px !important;
}

.fc-button-primary {
    font-size: 14px !important;
    background-color: #000 !important;
    color: #FFF !important;
    border-radius: 0 !important;
}

.fc-button-primary:hover,
.fc-button-primary:focus,
.fc-button-primary:target,
.fc-button-primary:active {
    background-color: #000 !important;
    color: #FFF !important;
    opacity: .85 !important;
}


/* GLOBAL NAV */

.investor-selected {
    pointer-events: none !important;
    box-shadow: none !important;
}

.investor-selected::after {
    display: none;
}

#global-topbar {
    background-color: #000;
    color: #FFF;
}

#global-topbar p {
    font-size: 12px;
    margin-bottom: 0;
}

#global-topbar p span {
    padding: 0;
}

#global-topbar a {
    font-weight: 500;
    display: inline-block;
    padding: 7.5px;
    color: #FFF !important;
}

#global-topbar button {
    display: inline-block;
    padding: 7.5px;
    color: #FFF !important;
}

@media (max-width: 1199.98px) {
    #global-topbar {
        display: none;
    }
}

@media (min-width: 1200px) {
    .donate-mobile-btn {
        display: none;
    }
}

.donate-mobile-btn {
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-left: auto;
    margin-right: .5rem;
}

.donate-mobile-btn i,
.donate-mobile-btn svg {
    font-size: 10px !important;
    vertical-align: top !important;
    margin-top: 6px !important;
    margin-left: 4px !important;
}

#mobile-bar {
    display: block;
    font-size: 12px;
    color: #FFF !important;
    text-align: center !important;
    border: 1px solid #DEE2E6;
    padding: 15px;
    margin-bottom: 15px;
}

#mobile-bar .row {
    justify-content: center;
}

#mobile-bar p {
    margin-bottom: 0;
}

#mobile-bar p span {
    padding: 0 .5rem;
}

#mobile-bar .social-link {
    color: #FFF !important;
    display: block;
    height: 100%;
    text-decoration: none !important;
}

#mobile-bar .social-link i {
    display: block;
    margin: 5px auto 0 auto;
    margin-bottom: .25rem;
}

@media (min-width: 1200px) {
    #mobile-bar {
        display: none;
    }
}


/* NAVIGATION */

.nav-offset {
    margin-top: -80px;
}

.nav-pad-offset {
    padding-top: 80px;
}

#main-navbar {
    background: #E6222E;
    padding: 15px 0;
    transition: all .3s ease;
}

/* #main-navbar.navbar-scrolled {
    box-shadow: 0px 0px 30px rgba(0,0,0,.1);
} */

a.navbar-brand {
    font-size: 16px;
    padding: 0;
    margin: 0;
    transition: all .3s ease;
}

a.navbar-brand:hover,
a.navbar-brand:focus,
a.navbar-brand:target,
a.navbar-brand:active {
    opacity: .85;
}

.navbar-brand img {
    width: 65px;
    height: 50px;
    max-width: 100%;
}

.navbar-brand.book-bank img {
    width: 84px;
    height: 50px;
    max-width: 100%;
}

/* .navbar-brand.book-bank-favicon img {
    width: 65px;
    height: 32px;
    max-width: 100%;
} */

/* .navbar-brand.book-bank-favicon img {
    width: 76px;
    height: 40px;
    max-width: 100%;
} */

.navbar-brand.book-bank-favicon img {
    width: 95px;
    height: 50px;
    max-width: 100%;
}

.navbar-nav .nav-item .nav-link {
    font-size: 14px;
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 500;
    color: #FFF;
    position: relative;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
    color: #FFF;
    text-decoration: underline;
}

.nav-link .fa-external-link {
    font-size: 8px;
    vertical-align: top;
    margin-top: 7px;
    margin-left: 5px;
}

.dropdown.show .nav-link {
    color: #FFF;
    text-decoration: underline;
}

.dropdown-menu {
    margin: 0;
    padding: 15px;
    border-radius: 30px;
    background-color: #FFF;
    border: 0;
    background-clip: border-box;
}

.dropdown-menu.big {
    padding: 15px 15px 0 15px;
}

.dropdown-header {
    font-weight: 600;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    white-space: normal;
    letter-spacing: 1px;
    line-height: 1.25;
    margin: .25rem 0;
    padding: .25rem .75rem;
}

.dropdown-header span {
    display: inline-block;
    vertical-align: middle;
    width: 7.5px;
    height: 15px;
    margin-right: 7.5px;
}

.dropdown-item {
    font-weight: 500;
    font-size: 14px;
    color: #E6222E;
    padding: .5rem .75rem;
    line-height: 1.25;
    border-radius: 30px;
    white-space: normal;
    background-image: linear-gradient(rgba(252,38,51,1),rgba(252,38,51,1));
    text-decoration: none;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all .3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:target,
.dropdown-item:active,
.dropdown-item.active {
    color: #FC2633;
    background-color: transparent;
    background-size: 100% 1px;
}

.dropdown-item span {
    font-size: 8px;
    vertical-align: middle;
    margin-top: 6px;
    margin-left: 3px;
}

.dropdown-divider {
    margin: .5rem .75rem;
    padding: 0;
    border-top: 1px solid #DEE2E6;
}

.cta-nav-item {
    margin: 0 0 0 1rem;
}

.cta-nav-item a.nav-link {
    padding: .5rem 1.25rem !important;
    border: 2px solid #FFF !important;
    border-radius: 30px;
}

.cta-nav-item a.nav-link:hover,
.cta-nav-item a.nav-link:focus {
    color: #E6222E !important;
    background-color: #FFF !important;
    border: 2px solid #FFF !important;
    text-decoration: none !important;
}

.cta-nav-item-full {
    margin: 0 1rem;
}

.cta-nav-item-full a.nav-link {
    color: #E6222E !important;
    background-color: #FFF !important;
    border: 2px solid #FFF !important;
    padding: .5rem 1.25rem !important;
    border-radius: 30px;
}

.cta-nav-item-full a.nav-link:hover,
.cta-nav-item-full a.nav-link:focus {
    color: #E6222E !important;
    background-color: #EEEEEE !important;
    border: 2px solid #EEEEEE !important;
    text-decoration: none !important;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.social-item a:hover,
.social-item a:focus,
.social-item a:target,
.social-item a:active {
    opacity: .85;
}

.kids-nav-item a {
    transition: all .3s ease;
}

.kids-nav-item a:hover,
.kids-nav-item a:focus,
.kids-nav-item a:target,
.kids-nav-item a:active {
    opacity: .85;
}

#searchbar button {
    font-size: 15px;
    padding-left: .75rem;
    padding-right: .75rem;
    border: 1px solid #DEE2E6;
}

#search-close {
    color: #E6222E !important;
}

[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    width: 15px;
    opacity: .25;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjEyMy4wNXB4IiBoZWlnaHQ9IjEyMy4wNXB4IiB2aWV3Qm94PSIwIDAgMTIzLjA1IDEyMy4wNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTIzLjA1IDEyMy4wNTsiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZD0iTTEyMS4zMjUsMTAuOTI1bC04LjUtOC4zOTljLTIuMy0yLjMtNi4xLTIuMy04LjUsMGwtNDIuNCw0Mi4zOTlMMTguNzI2LDEuNzI2Yy0yLjMwMS0yLjMwMS02LjEwMS0yLjMwMS04LjUsMGwtOC41LDguNQ0KCQljLTIuMzAxLDIuMy0yLjMwMSw2LjEsMCw4LjVsNDMuMSw0My4xbC00Mi4zLDQyLjVjLTIuMywyLjMtMi4zLDYuMSwwLDguNWw4LjUsOC41YzIuMywyLjMsNi4xLDIuMyw4LjUsMGw0Mi4zOTktNDIuNGw0Mi40LDQyLjQNCgkJYzIuMywyLjMsNi4xLDIuMyw4LjUsMGw4LjUtOC41YzIuMy0yLjMsMi4zLTYuMSwwLTguNWwtNDIuNS00Mi40bDQyLjQtNDIuMzk5QzEyMy42MjUsMTcuMTI1LDEyMy42MjUsMTMuMzI1LDEyMS4zMjUsMTAuOTI1eiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s ease;
}

[type="search"]::-webkit-search-cancel-button:hover {
    opacity: .75;
    cursor: pointer;
}

@media (min-width: 1200px) {
    #searchbar {
        position: absolute;
        left: 75px;
        right: -10px;
        margin: auto;
        width: 1020px;
        top: 50%;
        transform: translateY(-50%);
        transition: all .3s ease;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        border-radius: 30px;
    	padding: .5rem;
        text-align: center;
    }

    .dropdown.show .dropdown-menu {
    	margin: 0;
    }

    .nav-item.dropdown:hover:before {
		content: "";
	    position: absolute;
	    bottom: -15px;
	    height: 15px;
	    width: 100%;
	    left: 0;
        right: 0;
	    display: block;
        z-index: 2;
	}

    .dropdown-toggle:after {
        background-color: none;
        border: 0;
        font-size: 10px;
        content: "\f078";
        font-family: "Font Awesome 5 Pro";
        font-weight: 400;
        right: 0;
        top: 2px;
        position: relative;
        margin-left: 4px;
        color: inherit;
        display: inline-block !important;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        transform: rotate(0deg);
        transition: all .2s ease;
    }

    .dropdown.show .dropdown-toggle:after {
    	transform: rotate(-180deg);
    	transition: all .1s ease-in-out;
    }

    .dropdown:last-of-type > .dropdown-menu {
	    left: auto;
	    right: 0;
	}

    .dropdown.show .dropdown-menu {
    	display: block;
    	margin-top: 15px;
    }

    .dropdown-menu {
        min-width: 305px;
        box-shadow: 0px 0px 30px rgba(0,0,0,.1);
    }

    .dropdown-menu.big {
        min-width: 500px;
    }

    .dropdown.show .dropdown-menu:before {
        position: absolute;
        left: 25px;
        top: -22px;
        width: 0;
        height: 0;
        content: '';
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 24px solid #FFF;
        z-index: 1;
        transition: all .3s ease;
    }

    .social-item a {
        padding: 0 .1rem !important;
    }

    #right-navbar {
        margin-left: 1rem;
    }

    .secondary-nav-item img {
        width: 50px;
    }

    .kids-img {
        width: 79px;
    }

    /* .nav-link-active a.dropdown-toggle:before {
        position: absolute;
        left: 23px;
        top: calc(100% + 1px);
        width: 0;
        height: 0;
        content: '';
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 20px solid #FFF;
        z-index: 1;
        transition: all .3s ease;
    } */
}

@media (max-width: 1199.98px) {
    #main-navbar {
        background: #E6222E;
        padding: 0 15px;
        transition: all .3s ease;
    }

    #main-navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #right-navbar {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .navbar-collapse {
        max-height: calc(80vh - 70px);
        overflow-y: auto;
    }

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    .navbar-collapse {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    a.navbar-brand {
        margin: 15px 0;
    }

    .navbar-brand img {
        width: 54px;
        height: 41px;
        transition: all .3s ease;
    }

    .navbar-brand.book-bank img {
        width: 69px;
        height: 41px;
        transition: all .3s ease;
    }

    /* .navbar-brand.book-bank-favicon img {
        width: 65px;
        height: 32px;
        transition: all .3s ease;
    } */

    .navbar-brand.book-bank-favicon img {
        width: 78px;
        height: 41px;
        transition: all .3s ease;
    }

    .navbar-nav .nav-item:first-of-type .nav-link {
        border-top: 1px solid #DEE2E6;
    }

    .navbar-nav .nav-item .nav-link {
    	padding: 12px 30px 12px 0;
        border-bottom: 1px solid #DEE2E6;
    }

    .navbar-nav .nav-item a.nav-link {
        outline: none !important;
    }

    .dropdown .dropdown-toggle:after {
        position: absolute;
        right: 6px;
        top: 11px;
    	font-size: 1rem;
        background-color: none;
        border: 0;
        font-size: 1rem;
        content: "\f078";
        font-family: "Font Awesome 5 Pro";
        font-weight: 300;
        color: inherit;
        display: inline-block !important;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        transform: rotate(0deg);
        transition: all .2s ease;
    }

    .dropdown.show .dropdown-toggle:after {
    	transform: rotate(-180deg);
    	transition: all .1s ease-in-out;
    }

    .dropdown-menu {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .cta-nav-item {
        margin: 15px 0 0 0;
    }

    .cta-nav-item-full {
        display: none;
    }

    .social-item {
        display: none;
    }

    #right-navbar {
        text-align: center;
    }

    .kids-img {
        width: 125px;
    }

    .kids-nav-item a {
        display: block;
    }

    .secondary-nav-item a {
        display: block;
    }

    .secondary-nav-item img {
        width: 50px;
    }
}

@media (max-width: 575.98px) {
    #main-navbar .container {
        padding-left: 0;
        padding-right: 0;
    }
}

.nav-link-active a.nav-link,
.nav-link.active a.nav-link {
    color: #FFF !important;
    text-decoration: underline !important;
}


/* MOBILE MENU */

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-toggler {
    margin: 0 -15px 0 0;
    padding: 15px;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: #FFF;
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 0;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 5px;
}

.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    background: #FFF;
    transform: rotate(45deg) translate(4px, 6px);
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    background: #FFF;
    transform: rotate(-45deg) translate(4px, -6px);
    transition: ease all .2s;
}


/* THIRTY ANNIVERSARY */

#thirty-years {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

#thirty-years .container {
    border-top: 1px solid #DEE2E6;
    padding-top: 15px;
}

#thirty-years .row {
    align-items: center;
}

#thirty-years .col-auto,
#thirty-years .col {
    margin-bottom: 15px;
}

#thirty-years .icon {
    width: 80px;
}

#thirty-years p {
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    #thirty-years p {
        font-size: 13px;
    }
}


/* HOME */

#hero-container {
    background-color: #000000;
    color: #FFFFFF;
}

@media (min-width: 1200px) {
    .carousel-inner:not(.carousel-all-contents) {
        -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    }

    .carousel-inner .image-hero {
        -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    }
}

@media (max-width: 1199.98px) {
    .carousel-inner:not(.carousel-all-contents) {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    }

    .carousel-inner .image-hero {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    }
}

.hero-text {
    position: relative;
    z-index: 10;
    padding: 3rem 0 3rem 3rem;
}

.hero-text p.eyebrow {
    margin-bottom: 0;
}

#hero-container .hero-heading {
    color: #E6222E !important;
    line-height: 1;
}

.hero-img-col {
    position: relative;
    overflow: hidden;
}

.triangle-cut {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    left: -12.5%;
    width: 25%;
    height: 100%;
    background: #FFF;
    transform: skew(-195deg);
}

@media (max-width: 1199.98px) {
    .triangle-cut {
        top: auto;
        bottom: -3rem;
        left: 0;
        right: 0;
        z-index: 5;
        width: 100%;
        height: 6rem;
        background: #FFF;
        transform: skewY(365deg);
    }

    .hero-text {
        padding: 0 3rem 4rem 3rem;
    }
}

@media (max-width: 575.98px) {
    .hero-text {
        padding: 15px 15px 4rem 15px;
    }
}

#hero a.carousel-control-prev,
#hero a.carousel-control-next {
    font-size: 20px;
    display: block;
    width: auto;
    background-color: #E6222E !important;
    color: #FFFFFF !important;
    background-image: none !important;
    opacity: 1;
    padding: 0 2.5px;
}

#hero a.carousel-control-prev {
    top: 15px;
    right: 50px;
    bottom: auto;
    left: auto;
}

#hero a.carousel-control-next {
    top: 15px;
    right: 15px;
    bottom: auto;
    left: auto;
}

#hero #hero-indicators {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 15px;
    bottom: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    margin: 0;
    height: auto;
    background-color: #E6222E;
    padding: 0 5px 5px 5px;
}

#hero #hero-indicators li {
    border-radius: 100%;
    width: 12px;
    height: 12px;
    margin: 5px 0 0 0;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    opacity: 1;
}

#hero #hero-indicators li.active {
    background-color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

@media (max-width: 1199.98px) {
    #hero #hero-indicators {
        top: 15px;
        transform: none;
        left: 15px;
        right: auto;
        bottom: auto;
        flex-direction: row;
        padding: 5px 5px 5px 0;
    }

    #hero #hero-indicators li {
        margin: 0 0 0 5px;
    }
}

.squiggle-top-lgrey {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.squiggle-top-lgrey svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 30px;
}

.squiggle-top-lgrey .shape-fill {
    fill: #C7C8CA;
}

.squiggle-bot-lgrey {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.squiggle-bot-lgrey svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 30px;
}

.squiggle-bot-lgrey .shape-fill {
    fill: #C7C8CA;
}

.book-divider-white {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.book-divider-white svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.book-divider-white .shape-fill {
    fill: #FFFFFF;
}

.book-divider-black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.book-divider-black svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.book-divider-black .shape-fill {
    fill: #000000;
}

.hero-pp-btn {
    font-size: 20px;
    background-color: #E6222E;
    color: #FFF;
    margin: 0;
    padding: 5px;
    border: 0;
    border-radius: 0;
    line-height: 1;
    position: absolute;
    right: 15px;
    bottom: 20px;
    z-index: 15;
    display: block !important;
    transition: all .3s ease;
}


/* ICONS */

.icon-circle-container {
    display: block;
    margin: 0 auto .5rem auto;
}

.fa-stack.fa-stack-normal {
    font-size: 1.5em;
    margin-bottom: 1rem;
    text-align: center;
}

.fa-stack.fa-stack-normal .fa-circle {
    font-size: 2.5em;
}

.fa-stack.fa-stack-normal .fa-stack-1x {
    margin-top: 5px;
}

.fa-stack .fa-stack-1x {
    color: #FFF;
}

.fa-stack .fa-stack-1x.text-red {
    color: #E6222E;
}

.fa-stack .fa-stack-1x.text-black {
    color: #000;
}


/* AWARDS */

.icon-container {
    position: relative;
    margin: auto;
}

.icon-counter {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    background-color: #E6222E;
    color: #FFF;
    padding: 5px;
    border-radius: 0;
    font-size: 12px;
    font-family: monospace;
    line-height: 1;
}


/* CARDS */

.card {
    border: 2px dotted #DEE2E6;
    border-radius: 0;
    transition: all .3s ease;
}

.card-header:first-child {
    background: #000;
    color: #FFF;
    border-radius: 0;
}

.card-header,
.card-body,
.card-footer {
    padding: 1.5rem;
}

.card-link p:last-child,
.card-link ul:last-child,
.card-link ol:last-child {
    margin-bottom: 0;
}

span.small ul:last-child,
span.small ol:last-child {
    padding-left: 1.5rem;
}

.card-body p:last-child {
    margin-bottom: 0;
}

.card-footer:last-child {
    border-radius: 0;
}

.card-link {
    color: inherit;
}

.card-link p {
    transition: all .3s ease;
}

.card-link .text-red {
    transition: all .3s ease;
}

.card-link:hover .card,
.card-link:focus .card {
    box-shadow: 0px 5px 15px rgba(0,0,0,.15);
    transition: all .3s ease;
}

.card-link:hover .text-red,
.card-link:focus .text-red {
    opacity: .8;
    transition: all .3s ease;
}

.card-link:hover p,
.card-link:focus p {
    color: #555;
    transition: all .3s ease;
}

.card-link:hover ol,
.card-link:focus ol {
    color: #555;
    transition: all .3s ease;
}

.card-link:hover ul,
.card-link:focus ul {
    color: #555;
    transition: all .3s ease;
}

.card-hover:hover {
    box-shadow: 0px 5px 15px rgba(0,0,0,.15);
}

.card-img-overlay {
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.85));
}

.card-img-overlay p {
    color: #FFF;
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0px 2px 5px rgba(0,0,0,1);
}

.quote-card {
    color: #FFF;
    background-color: transparent;
    border: 1px solid #FFF;
    text-align: left;
}

.quote-card .card-footer {
    border: 0;
    background: transparent;
    padding-top: 0;
}

.quote-circle {
    position: relative;
    background: #333;
    color: #FFF;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: inline-block;
}

.quote-circle span {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.zoom-wrapper {
	position: relative;
	overflow: hidden !important;
}

.zoom-wrapper img {
	max-width: 100% !important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card-zoom:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05);
}

.video-image {
    display: block;
    position: relative;
}

.video-image img {
    border-radius: 30px;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.video-image div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
    right: 0;
}

.video-image div span {
    font-weight: 600;
    font-size: 12px;
}


/* IMAGE BOXES */

.card-img-box {
    border: 0;
}

.card-img-box .card-body {
    padding: 0;
}

.card-img-box .row {
    padding: 0 !important;
    margin: 0 !important;
}

.card-img-box [class*=col-],
.card-img-box [class*=col] {
    padding: 0 !important;
    margin: 0 !important;
}

.img-txt-box .row {
    padding: 0 !important;
    margin: -7.5px -7.5px 0 -7.5px !important;
}

.img-txt-box [class*=col-],
.img-txt-box [class*=col] {
    padding: 0 7.5px !important;
    margin: 15px 0 0 0 !important;
}

.img-text-box {
    padding: 3rem;
}

@media (max-width: 575.98px) {
    .img-text-box {
        padding: 3rem 15px;
    }
}


/* BREADCRUMBS */

.breadcrumb {
    background-color: transparent;
    font-size: 12px;
    padding: 0;
    margin: 0;
}

.breadcrumb-item.active {
    color: #000;
}

.breadcrumb-item.active {
    color: #000;
}

.breadcrumb.white .breadcrumb-item a {
    color: #FFF !important;
}

.breadcrumb.white .breadcrumb-item.active {
    color: #FFF !important;
    opacity: .75;
}


/* SUB PAGE */

#subnav-section {
    background-color: #FFF;
    top: 80px;
    position: -webkit-sticky;
    position: sticky;
    z-index: 999;
    box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

/* .bookbank #subnav-section {
    top: 71px;
} */

/* @media (max-width: 1199.98px) {
    #subnav-section {
        top: 70px;
    }
} */

#subnav-section .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#subnav-container {
    padding: 0;
    margin: 0;
}

#subnav-container .expand-btn {
    color: #E6222E !important;
    background-color: #FFF !important;
    box-shadow: none !important;
    border: 0;
    border-radius: 0;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#subnav-container .expand-btn::after {
    right: 20px !important;
}

@media (min-width: 1200px) {
    #subnav-container .expand-btn {
        display: none;
    }
}

#subnav {
    justify-content: center;
}

#submenu {
    font-size: 12px;
    text-align: center;
    padding: .5rem 0;
    justify-content: center;
    flex-direction: row;
}

#submenu li {
    margin-bottom: 0 !important;
}

#submenu li a {
    padding: .25rem .5rem;
    color: #E6222E !important;
    font-weight: 500 !important;
}

#submenu li a i {
    font-size: 8px !important;
    vertical-align: top;
    margin-top: 3px;
    margin-left: 2px;
}

#submenu li a:hover,
#submenu li a:focus {
    color: #FC2633 !important;
    text-decoration: underline;
}

#submenu li a.active {
    color: #000 !important;
    text-decoration: none !important;
}

@media (max-width: 1199.98px) {
    #subnav-section {
        top: 71px;
    }

    body.book-bank #subnav-section {
        top: 62px;
    }

    #submenu {
        flex-direction: column;
        text-align: left;
        padding: .5rem 0;
    }

    #subnav {
        border-top: 1px solid #DEE2E6;
    }

    #submenu li a {
        font-size: 14px;
        padding: .5rem 15px;
    }
}

#submenu li a:before {
    display: none;
}

.subpage-banner {
    position: relative;
    background-color: #000;
    color: #FFF;
    overflow: hidden;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.subpage-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(rgba(0,0,0,.54),rgba(0,0,0,.54));
}

.subpage-favicon-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background: url('/assets/img/logos/favicon-faded.svg') center center;
}

.subpage-banner-text {
    color: #FFF !important;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 6rem 0;
}

.subpage-banner-text .favicon {
    width: 25px;
    margin-bottom: 1rem;
}

.subpage-banner-text .logo {
    width: 100%;
    max-width: 100%;
}

.subpage-banner-text h1 {
    color: #FFF !important;
    margin-bottom: 0;
    text-shadow: 0px 0px 10px rgba(0,0,0,.25);
}

.subpage-banner-text p {
    font-size: 1.25rem;
    margin-top: .75rem;
    margin-bottom: 0;
}

.subpage-banner-text p a:not(.btn) {
    text-shadow: 0px 0px 10px rgba(0,0,0,.25);
}

.subpage-banner-text p.eyebrow {
    font-size: 14px;
    margin: 0 0 .5rem 0;
}

.subpage-banner-text p span {
    background-color: #E6222E;
    padding: .25rem .5rem;
    text-shadow: none;
}

.subpage-banner-text .subpage-logo {
    margin-bottom: 1rem;
    width: 95px;
}

.subpage-banner-text a:not(.btn) {
    color: #FFF !important;
}

/* .subpage-banner-text a:not(.btn) {
    background-image: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1)) !important;
}

.subpage-banner-text a:not(.btn):hover,
.subpage-banner-text a:not(.btn):focus {
    background-image: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1)) !important;
} */

@media (max-width: 1199.98px) {
    .subpage-banner-text {
        padding: 6rem 0;
    }

    .subpage-banner-text p {
        font-size: 1.175rem;
    }
}

@media (max-width: 991.98px) {
    .subpage-banner-text {
        padding: 5rem 0;
    }

    .subpage-banner-text p {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .subpage-banner-text {
        padding: 4rem 0;
    }

    .subpage-banner-text p {
        font-size: 1.125rem;
    }
}

@media (max-width: 575.98px) {
    .subpage-banner-text {
        padding: 3rem 0;
    }

    .subpage-banner-text p {
        font-size: 1.1rem;
    }
}

.subpage-banner.no-image .subpage-banner-text {
    padding: 3rem 0;
}

.subpage-header {
    padding: 11rem 1rem;
    text-align: center;
}

.subpage-header h1, .subpage-header p {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 2px 2px rgba(0,0,0,1);
}

.subpage-text p {
    animation-delay: 1s;
}

@media (max-width: 1199.98px) {
	.subpage-header {
		padding: 9rem 1rem;
	}
}

@media (max-width: 991.98px) {
	.subpage-header {
		padding: 7rem 1rem;
	}
}

@media (max-width: 767.98px) {
	.subpage-header {
		padding: 5rem 1rem;
	}
}

@media (max-width: 767.98px) {
	.subpage-text h1 {
		font-size: 1.8rem;
	}

  .subpage-text p {
        font-size: 1rem;
	}
}

/* SPLIT SUBPAGE IMAGE */
.split-banner-overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgb(198,199,201);
    background: linear-gradient(0deg, rgba(198,199,201,1) 0%, rgba(198,199,201,0) 100%);
}

@media (min-width: 1200px) {
    .split-banner-overlay {
        background: rgb(198,199,201);
        background: linear-gradient(90deg, rgba(198,199,201,1) 0%, rgba(198,199,201,0) 100%);
    }

    .subpage-split-section .img-col {
        border-left: 2px dotted #FFF;
    }
}

.subpage-split-section {
    background-color: #000;
    color: #FFF;
}

.subpage-split-text {
    position: relative;
    z-index: 5;
    padding: 3rem;
}

.subpage-split-text h1 {
    margin-bottom: 0;
}

.subpage-split-text p {
    margin-top: .5rem;
    margin-bottom: 0;
}

.subpage-split-text a {
    margin-top: 1rem;
}

.subpage-split-section img {
    position: relative;
    z-index: -1;
    /* -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%); */
}

@media (max-width: 1199.98px) {
    .subpage-split-text {
        padding: 2.25rem 3rem 3rem 3rem;
    }

    .subpage-split-section .img-col {
        border-bottom: 2px dotted #FFF;
    }
}

@media (max-width: 575.98px) {
    .subpage-split-text {
        padding: 2.25rem 25px 3rem 25px;
    }
}

.inset-border {
    position: relative;
    z-index: 2;
}

.inset-border::before {
    z-index: 2;
    content: '';
    position: absolute;
    top: 7.5px;
    bottom: 7.5px;
    left: 7.5px;
    right: 7.5px;
}

.inset-border.white::before {
    border: 2px dotted #FFF;
}


/* SIDEBAR */

#sidebar {
    top: 170px;
    z-index: 998;
}

ul.sub-page-nav {
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.sub-page-nav li {
    padding: 0;
    list-style-type: none;
    border-bottom: 1px solid #EEE;
}

.sub-page-nav li:last-child {
	border-bottom: none;
}

.sub-page-nav li:hover {
    text-decoration: none;
    background-color: #EEE;
}

.sub-page-nav li a {
    color: #E6222E;
    text-decoration: none;
    font-size: .85rem;
    display: block;
    width: 100%;
    padding: .6rem 1rem;
}

.sub-page-nav .sub-nav li a {
	padding: .5rem 1rem .5rem 2rem;
	font-size: .75rem;
	background-color: #FFF;
}

.sub-page-nav .sub-nav li a:hover {
	background-color: #EEE;
}

.sub-page-nav .double-sub-nav li a {
	padding: .35rem 1rem .35rem 3.5rem;
	font-size: .75rem;
	background-color: #FFF;
}

.sub-page-nav .double-sub-nav li a:hover {
	background-color: #EEE;
}

.sub-page-nav button {
    color: #E6222E;
    font-size: .85rem;
    display: block;
    width: 100%;
    padding: .6rem 1rem;
    text-decoration: none;
    text-align: left;
    white-space: normal;
    border-radius: 0;
}

.sub-page-nav button:hover {
	background-color: #EEE !important;
}

.sub-page-nav button.collapsed:hover {
    color: #E6222E !important;
    text-decoration: none !important;
    background-color: #EEE !important;
}

.sub-page-nav.sub-nav button {
	padding: .5rem 1rem .5rem 2rem;
	font-size: .75rem;
	background-color: #F8F9FA;
	color: #E6222E;
	text-decoration: none;
	white-space: normal;
}

.sub-page-nav.sub-nav button.collapsed {
	padding: .5rem 1rem .5rem 2rem;
	font-size: .75rem;
	background-color: #FFF;
	color: #E6222E;
}

.sub-page-nav button.sub-nav.collapsed {
    color: #E6222E !important;
    text-decoration: none !important;
    background-color: #FFF;
}

.sub-page-nav button.sub-nav {
    color: #E6222E;
    text-decoration: none;
    background-color: #EEE;
    transition: all .2s ease;
}

.sub-page-nav button.sub-nav::after {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: .75rem;
	position: absolute;
	display: inline-block !important;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transition: all .2s ease;
}

.sub-page-nav button.sub-nav.collapsed::after {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: .75rem;
	position: absolute;
	display: inline-block !important;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transform: rotate(180deg);
	transition: all .2s ease;
}

.sub-page-nav button.double-sub-nav::after {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: .75rem;
	position: absolute;
	display: inline-block !important;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transition: all .2s ease;
}

.sub-page-nav button.double-sub-nav.collapsed::after {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: .75rem;
	position: absolute;
	display: inline-block !important;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transform: rotate(180deg);
	transition: all .2s ease;
}

.sub-nav-active {
    background-color: #E6222E !important;
    color: #FFF !important;
    padding: .6rem 1rem;
    text-decoration: none;
    transition: all .2s ease;
}

.sub-nav-active:hover {
    background-color: #E6222E !important;
    color: #FFF !important;
}


/* COLLAPSE */

.expand-btn {
    background-color: #E2E6EA;
    border-color: #DAE0E5;
    border-left: 2px solid #E6222E;
    display: block;
    font-size: 1rem;
    text-align: left;
    padding: .5rem 2.5rem .5rem 1rem !important;
    white-space: normal;
    position: relative;
    width: 100%;
}

.expand-btn.collapsed {
    color: #E6222E;
    background-color: #F8F9FA;
    border-color: #F8F9FA;
    border-left: 2px solid #E6222E;
    display: block;
    font-size: 1rem;
    text-align: left;
    padding: .5rem 2.5rem .5rem 1rem !important;
    white-space: normal;
    position: relative;
    width: 100%;
}

.expand-btn.collapsed:hover {
    box-shadow: none;
}

.expand-btn:hover {
    background-color: #E2E6EA;
    border-color: #DAE0E5;
    box-shadow: none;
}

.expand-btn:focus {
    background-color: #E2E6EA;
    border-color: #DAE0E5;
    box-shadow: none;
}

.expand-btn::after {
    font-size: 1rem;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    right: .85rem;
    top: .5rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    transform: rotate(-180deg);
    -webkit-font-smoothing: antialiased;
    transition: all .2s ease;
}

.expand-btn.collapsed::after {
    font-size: 1rem;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    right: .85rem;
    top: .5rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: rotate(0deg);
    transition: all .2s ease;
}

.expand-btn.disabled {
    cursor: inherit;
    opacity: .25;
}

#covid {
    background-color: #F8F9FA;
}

#covid p {
    font-size: 13px;
}

#covid .expand-btn {
    border: 0 !important;
    padding: .5rem 1rem;
    text-align: center;
    font-size: 14px;
    color: #E6222E !important;
}

#covid .expand-btn::after {
    font-size: 10px;
    right: 0;
    top: -1px;
    position: relative;
    margin-left: 4px;
    color: #E6222E;
}

#covid .expand-btn.collapsed::after {
    font-size: 10px;
    right: 0;
    top: -1px;
    position: relative;
    margin-left: 4px;
    color: #E6222E;
}

ul.link-list {
    padding: 0;
    margin: 0;
}

.link-list li {
    list-style-type: none;
}

.link-list li a {
    color: #E6222E;
    display: block;
    width: 100%;
    text-align: left;
    font-size: .9rem;
}

ul.spaced-list {
    margin: 0;
    padding-left: 1.1rem;
}

ul.spaced-list li {
    line-height: 1.25;
    margin-bottom: 10px;
}

ul.checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

ul.checklist ul {
    list-style: none;
    padding-left: 1rem;
    margin: 0;
}

.checklist li {
    line-height: 1.25;
    position: relative;
    padding: 0 0 0 1.5rem;
    margin-top: 15px;
}

.checklist li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path fill='%23E6222E' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}

.checklist li ul li {
    line-height: 1.25;
    position: relative;
    padding: 0 0 0 1.5rem;
    margin-top: 15px;
}

.checklist li ul li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path fill='%23E6222E' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}

ol.list-columns {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
}

@media (min-width: 992px) {
    ol.list-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

ul.list-columns {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
}

ul.list-columns li {
    margin-bottom: 10px;
}

ul.list-columns li a {
    display: inline !important;
}

@media (min-width: 576px) {
    ul.list-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (min-width: 992px) {
    ul.list-columns {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}

@media (min-width: 1200px) {
    ul.list-columns {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }
}

ul.reading-champion-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
}

ul.reading-champion-list li {
    margin-bottom: 15px !important;
}

ul.donor-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
}

ul.donor-list li {
    margin-bottom: 15px !important;
}

@media (min-width: 576px) {
    ul.reading-champion-list {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }

    ul.donor-list {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}

@media (min-width: 768px) {
    ul.reading-champion-list {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }

    ul.donor-list {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }
}

@media (min-width: 992px) {
    ul.reading-champion-list {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }

    ul.donor-list {
        columns: 5;
        -webkit-columns: 5;
        -moz-columns: 5;
    }
}

@media (min-width: 1200px) {
    ul.reading-champion-list {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }

    ul.donor-list {
        columns: 6;
        -webkit-columns: 6;
        -moz-columns: 6;
    }
}

ol.numberlist {
    list-style: none;
    counter-reset: my-awesome-counter;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    margin-top: .75rem;
    padding: 0;
}

ol.numberlist li {
    counter-increment: my-awesome-counter;
    display: flex;
    align-items: center;
    width: 100%;
    padding: .75rem 0;
    border-top: 2px solid #E6222E;
}

ol.numberlist li:last-of-type {
    border-bottom: 2px solid #E6222E;
}

ol.numberlist li::before {
    background-color: #E6222E;
    color: #FFF;
    border-radius: 100%;
    padding: 10px 20px;
    content: counter(my-awesome-counter);
    font-size: 45px;
    margin-left: 15px;
    margin-right: 15px;
    font-family: monospace;
    font-weight: 700;
    line-height: 1;
}

.number-counter {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #E6222E;
}


/* LOCATIONS */

.location-card {
    background-color: #E6222E;
    color: #FFF !important;
    border: 0;
    height: 100%;
}

.location-card .card-body {
    padding-bottom: 1rem;
}

.location-card .location-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: .25rem;
    line-height: 1.25;
}

.location-card .location-type {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.25;
}

.location-card hr {
    margin: .75rem 0 1rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.location-card ul {
    margin: 0;
    padding: 0;
    color: #FFF !important;
}

.location-card ul li a:not(.btn) {
    color: #FFF !important;
    background-image: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1)) !important;
}


/* TABLES */

.table {
    font-size: 14px;
    line-height: 1.35;
}

.table-responsive {
    border-radius: 30px;
    border: 1px solid #DEE2E6;
}

td.star .m-star {
    width: 20px !important;
}

caption {
    font-size: 12px;
}

.disclaimer-text {
    font-size: 12px;
    padding-top: 1rem;
}


/* SUBPAGES */

#fund-nav {
    background-color: #E6222E;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
}

#fund-nav .navbar-nav {
    margin-left: -.75rem;
    width: 100%;
    justify-content: start;
    flex-direction: row;
    /* border-bottom: 1px solid #FFF; */
}

#fund-nav li {
    position: relative;
}

#fund-nav li a {
    font-size: 12px;
    display: inline-block;
    color: #F8F9FA !important;
    padding: .75rem;
    border: 0;
    transition: all .3s ease;
}

#fund-nav li a:hover,
#fund-nav li a:focus {
    background-color: transparent;
    text-decoration: underline;
}

#fund-nav li a.active {
    color: #FFF !important;
    text-decoration: underline;
}

/* #fund-nav li a.active:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #FFF;
} */

.hscroll-menu {
    overflow-x: scroll;
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
}

.hscroll-menu::-webkit-scrollbar {
    display: none;
}

ul.team-nav {
    margin: 0 0 0 -.75rem;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    width: 100%;
}

ul.team-nav::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    z-index: 9;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

ul.team-nav li a {
    font-size: 12px;
    color: #E6222E !important;
    padding: 1rem .75rem;
    display: block;
}

ul.team-nav li a.active {
    color: #E6222E !important;
    text-decoration: underline;
}


/* SWIPERS */

.swiper {
    padding: 0 15px;
    margin: 0 -15px;
}

.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
}

.swiper-slide .card {
    width: 100%;
    height: 100%;
}

.swiper-pagination {
    position: relative;
    height: 45px;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -15px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    height: 30px;
    color: #FFF;
    background-color: #E6222E;
    border: 1px solid #E6222E;
    border-radius: 100%;
    padding: 15px;
    transition: all .3s ease;
}

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-prev:active {
    background-color: #FC2633;
    border: 1px solid #FC2633;
}

.swiper-button-next:focus,
.swiper-button-next:hover,
.swiper-button-next:active {
    background-color: #FC2633;
    border: 1px solid #FC2633;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #FC2633;
    border: 1px solid #FC2633;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
}

.swiper-button-prev {
    left: 15px;
}

.swiper-button-next {
    right: 15px;
}

/* .swiper-button-prev:focus,
.swiper-button-next:focus {
    outline: 0;
} */

.swiper-button-prev.flush {
    left: 0;
}

.swiper-button-next.flush {
    right: 0;
}

.swiper-button-prev.bottom {
    top: auto;
    bottom: 0 !important;
}

.swiper-button-next.bottom {
    top: auto;
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    position: relative;
    background: transparent;
    border: 1px solid #E6222E;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #E6222E;
    border: 1px solid #E6222E;
    opacity: 1;
}

.swiper-pagination.white .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #FFF;
    opacity: 1;
}

.swiper-pagination.white .swiper-pagination-bullet-active {
    background: #FFF;
    border: 1px solid #FFF;
    opacity: 1;
}

.swiper-pagination-fraction {
    color: #E6222E;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.swiper-horizontal > .swiper-scrollbar {
    position: relative;
    margin-top: 25px;
    height: 5px;
    bottom: 12px;
    left: 47px;
    width: calc(100% - 95px);
    border-radius: 5px;
}

.swiper-scrollbar-drag {
    background: rgba(230,34,46,1);
    border-radius: 5px;
}

.swiper-scrollbar.white .swiper-scrollbar-drag {
    background: rgba(255,255,255,1);
}


/* BLOG */

.link-card {
    text-align: left;
    height: 100% !important;
    border: 2px dotted #DEE2E6;
    background-image: none !important;
}

.link-card:hover {
    border: 2px solid #FC2633;
}

.link-card .row {
    position: relative;
}

.blog-content-col {
    align-self: center;
    position: static;
}

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

.link-card .details {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: .25rem;
}

.link-card .details span {
    letter-spacing: 1px;
}

.link-card .details small {
    font-size: 60%;
}

.link-card .heading {
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0;
}

.link-card .heading a span {
    float: right;
    margin-left: .25rem;
    font-size: 75%;
    vertical-align: top;
}

.link-card .desc {
    margin-top: .25rem;
    font-size: 14px;
}

.link-card .desc-large {
    font-size: 15px;
}


/* CAREERS */

.career-img {
    border-radius: 100%;
    margin-bottom: 1rem;
    width: 150px;
    border: 3px solid #808285;
}


/* NEWS */

.article-title {
    margin-bottom: 0;
    line-height: 1.25;
}

.article-title a {
    display: inline !important;
}

.article-title a span {
    float: right !important;
    margin-left: 1rem;
}

.article-title a span i {
    font-size: 12px;
    vertical-align: top;
    margin-top: 4px;
}

.article-summary {
    font-size: 14px;
    margin-top: .25rem;
}


/* TIMELINE */

.timeline-card p.eyebrow {
    color: #E6222E !important;
}

.timeline-icon {
    font-size: 1.5rem;
    color: #E6222E;
    margin: 0 .75rem;
}

@media (max-width: 991.98px) {
    .timeline-card p.timeline-desc {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .timeline-card {
        text-align: center;
    }

    .timeline-icon {
        padding-top: 15px;
        padding-bottom: 10px;
    }
}

.border-right-lgrey {
    border-right: 1px solid #DEE2E6;
}


/* FOOTER */

#footer {
    border-top: 4px dotted #DEE2E6;
}

#footer a:not(.btn) {
    color: #FFF;
    text-decoration: none;
    background-image: linear-gradient(rgba(252,38,51,1),rgba(252,38,51,1));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: all .3s ease;
}

#footer a:not(.btn):hover,
#footer a:not(.btn):focus {
    background-image: linear-gradient(rgba(252,38,51,1),rgba(252,38,51,1));
    background-size: 100% 1px;
}

a.footer-link {
    background-image: none !important;
    background-size: 0 0 !important;
}

footer a {
    font-weight: 500;
}

.footer-logo {
    width: 100px;
}

ul.footer-legal {
    font-size: 12px;
    margin: 15px 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

ul.footer-legal li {
    display: inline-block;
    list-style-type: none;
}

ul.footer-legal li a {
    color: #FFF !important;
    display: block;
    padding: 15px;
}

ul.footer-legal li a i {
    font-size: 10px;
}

ul.footer-legal li a i.fa-file-pdf {
    margin-right: 2px;
}

ul.footer-links {
	padding: 0;
	margin: 0;
    font-size: 13px;
}

.footer-links li {
	list-style-type: none;
    line-height: 1.25;
    margin-top: 10px;
}

.footer-links li a {
    padding: .15rem 0;
    display: inline-block;
	color: #FFF !important;
}

.footer-links li a i {
    font-size: 8px !important;
    vertical-align: top;
    margin-top: 4px;
}

ul.fa-links {
	padding: 0 0 0 1.5rem;
	margin: 0;
    font-size: 13px;
}

ul.fa-links a.text-white {
	color: #FFF !important;
}

.fa-links li {
	list-style-type: none;
    margin-bottom: 15px;
}

.fa-links li span i {
    margin-right: .25rem;
}

.fa-links li a {
    line-height: 1.25;
    display: inline-block;
    padding-bottom: .25rem;
}

#footerNavLinks {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    justify-content: center;
}

#footerNavLinks li {
    display: inline-block;
}

#footerNavLinks li a {
    color: #E6222E;
	display: block;
    margin-bottom: .15rem;
}

#footerNavLinks li a.btn:hover,
#footerNavLinks li a.btn:focus,
#footerNavLinks li a.btn:target,
#footerNavLinks li a.btn:active {
    background: #E2E6EA;
    color: #FC2633;
    text-decoration: none;
}

.footer-sm-nav {
    margin: 0 0 1.25rem -.25rem;
    padding: 0;
    list-style-type: none;
}

.footer-sm-nav li {
    display: inline-block;
}

.footer-sm-nav li a {
    font-size: 1.5rem;
    padding: .25rem;
    margin-top: -.25rem;
    margin-left: 5px;
    margin-right: 5px;
    color: #E6222E !important;
}

.footer-sm-nav li a:hover,
.footer-sm-nav li a:focus,
.footer-sm-nav li a:target,
.footer-sm-nav li a:active {
    color: #FC2633 !important;
}

.external-footer-icon {
    font-size: 8px !important;
    margin-top: 4px !important;
    margin-left: 2px;
}


/* TOOLTIPS */

.tooltip {
    opacity: 1 !important;
}

.tooltip-inner {
    color: #000;
    background-color: #FFFFFF;
    border-radius: 0;
    font-size: 12px;
    text-align: left;
    padding: 15px !important;
    box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: #FFFFFF !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: #FFFFFF !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #FFFFFF !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: #FFFFFF !important;
}


/* MODALS */

.modal-header {
    background: #FFF;
    border-bottom: 1px solid #DEE2E6 !important;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    align-self: center;
}

.modal-icon {
    width: 30px;
    max-width: 100%;
    height: auto;
}

.modal-logo {
    width: 35px;
    max-width: 100%;
    height: auto;
}

.modal-body p:last-child {
	margin-bottom: 0;
}

.modal .close {
    font-size: 18px;
    padding: 10px;
    margin-top: -5px;
    margin-right: -10px;
    color: #E6222E;
    opacity: 1;
    transition: all .3s ease;
}

.modal .close:hover,
.modal .close:focus {
    opacity: .75;
}

.modal-dialog {
    border-radius: 0;
}

.modal-header {
    padding: 1.5rem;
    border-radius: 0;
    border: 0;
}

.modal-content {
    border-radius: 0;
    border: 0;
    background-clip: border-box;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-radius: 0;
    justify-content: flex-start;
}

.modal-footer p {
    margin: 0 !important;
}

.modal-footer>* {
    margin: 0;
}


/* ALERTS */

#alert-bar {
    font-weight: 400;
    color: #000;
    background: #F8F9FA;
    border: 0;
    border-bottom: 1px solid #DEE2E6;
    border-radius: 0;
    padding: 7.5px 0;
    margin-bottom: 0;
    font-size: 12px;
}

#alert-bar strong {
    font-weight: 600;
    margin-right: 3px;
}

#alert-bar a {
    font-weight: 500;
    color: #E6222E;
    display: inline-block;
}

#alert-bar.alert .close {
    color: #E6222E;
    font-size: 16px;
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: all .3s ease;
}

#alert-bar.alert .close:hover,
#alert-bar.alert .close:focus {
    opacity: .5;
}


/* CONTACT */

#contact-map {
    width: 100%;
    height: 400px;
    border: 0 !important;
    outline: 0 !important;
    margin-bottom: -7px;
}

.success-card {
    text-align: center;
    border-left: 4px solid #28A745;
    border-right: 4px dotted #DEE2E6;
    border-top: 4px dotted #DEE2E6;
    border-bottom: 4px dotted #DEE2E6;
}


/* FORMS */

legend {
    padding-bottom: .25rem;
}

label {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    margin-bottom: 4px;
    text-align: left !important;
}

input, select, textarea, .form-control, .custom-select {
    color: #000;
}

.input-group-text {
    border-radius: 0;
    background-color: #FFF;
    border: 1px solid #DEE2E6;
}

.input-group-text label {
    margin-bottom: 0;
}

.btn-radio {
    text-align: center !important;
    background-color: #FFF;
    border: 1px solid #DEE2E6;
}

form .row {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.custom-select {
    background-color: #FFF;
    border-radius: 0;
    border: 1px solid #DEE2E6;
    transition: all .3s ease;
}

.form-control {
    background-color: #FFF;
    border-radius: 0;
    border: 1px solid #DEE2E6;
    transition: all .3s ease;
}

.form-control.flush,
.custom-select.flush {
    border: 1px solid #FFF;
}

.form-control:focus,
.custom-select:focus {
    border: 1px solid #DEE2E6;
    outline: -webkit-focus-ring-color auto 1px;
    box-shadow: none;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #E6222E;
}

.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #E6222E;
    box-shadow: 0 0 0 0.2rem rgb(209 13 31 / 25%);
}

.invalid-feedback {
    color: #E6222E;
}

.was-validated select.form-control.custom-select:invalid,
select.form-control.custom-select.is-invalid {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;
}

.custom-control-input:focus~.custom-control-label::before {
    border-color: #E6222E !important;
    box-shadow: none !important;
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #E6222E !important;
    background-color: #E6222E !important;
}

.custom-control-input:active~.custom-control-label::before {
    background-color: #E6222E !important;
    border-color: #E6222E !important;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #E6222E !important;
}

.custom-control-input-green:not(:disabled):active~.custom-control-label::before {
    background-color: #E6222E !important;
    border-color: #E6222E !important;
}
 
/* .form-control:focus,
.custom-select:focus {
    border: 1px solid #E6222E !important;
    outline: 0;
    box-shadow: 0 0 0 1px rgb(56 77 117 / 25%);
} */


/* LIGHTGALLERY */

.lg-outer .lg-thumb-item {
    border-radius: 0;
    border: 2px solid transparent;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #FFF;
    border-radius: 0;
}

.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 0;
}

.cursor:hover {
    cursor: pointer;
}

/* .lSAction>a {
    background-image: none;
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: #E6222E;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
} */


/* BOOK A TOUR SLIDE IN */

#tour-slidein {
    max-height: 100vh;
    overflow-y: auto;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1021;
    margin: 0;
    border: 0;
    border-radius: 0;
    animation-delay: 10s;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    padding: 1.5rem;
    background-color: #E6222E;
    color: #FFF;
    width: 450px;
    box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}

#tour-slidein .close {
    font-size: 18px;
    padding: 10px;
    margin-top: 5px;
    margin-right: 5px;
    color: #FFF;
    opacity: 1;
}

#tour-slidein .close:hover,
#tour-slidein .close:focus {
    opacity: .75;
}

@media (max-width: 575.98px) {
    #tour-slidein {
        width: 100%;
        border-right: 0;
    }
}


/* TO TOP */

.scroll-top {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    z-index: 9;
    background-color: #FFF;
    color: #E6222E;
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 15px;
    bottom: 15px;
    border-radius: 100%;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

.scroll-top.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

.scroll-top.show:hover,
.scroll-top.show:focus {
    color: #FC2633;
}

.grecaptcha-badge { display: none; }

/* Platinum Partners */
.link-card.platinum:hover {
    border: 2px solid #757575;
    box-shadow: 3px 3px 0px rgba(117, 117, 117, 1);
}

.link-card .shine-img {
    position: relative;
    overflow: hidden;
}

.link-card .shine-img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 1;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .75) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .75) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.link-card:hover .shine-img::before {
    -webkit-animation: shine 2s;
    animation: shine 2s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}
/* End Platinum Partners */


/* USED FOR HIDING BODY UNTIL JS LOADS - LEAVE AT THE END!! */

body {
   opacity: 0;
}
