/***** imports     ***********/
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://use.typekit.net/ojn7sdu.css");

/*****   Root/General styles     ********/
body {
    padding-top: 60px;
}

:root {
    /* primary */
    --emory-blue: #002F6C;
    --emory-yellow: #F2A900;
    --dogwood-white: #F6F6F6;
    --waterhub-blue: #0033A0;
    /* heritage */
    --eagle-blue: #0C2340;
    --scepter-gold: #B58500;
    /* vibrant */
    --candler-lake-blue: #007DBA;
    --lullwater-green: #00482B;
    --wise-heart-red: #BE531C;
    --oxford-farm-green: #778921;
    /* fresh */
    --wisteria-purple: #C8B8F1;
    --spring-yellow: #D4C315;
    --marble-pink: #E9CDD0;
}

@-webkit-keyframes slide-horiz-rtl {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%); } }

@keyframes slide-horiz-rtl {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%); } }

.slide-horiz-rtl {
  -webkit-animation: slide-horiz-rtl 0.75s forwards;
          animation: slide-horiz-rtl 0.75s forwards; }

@-webkit-keyframes menu-slide-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); }
  to {
    height: 0;
    opacity: 0;
    -webkit-transform: translateY(-65%);
            transform: translateY(-65%); } }

@keyframes menu-slide-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); }
  to {
    height: 0;
    opacity: 0;
    -webkit-transform: translateY(-65%);
            transform: translateY(-65%); } }

@-webkit-keyframes menu-slide-in {
  from {
    height: 0;
    opacity: 0;
    -webkit-transform: translateY(-65%);
            transform: translateY(-65%); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes menu-slide-in {
  from {
    height: 0;
    opacity: 0;
    -webkit-transform: translateY(-65%);
            transform: translateY(-65%); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes menu-slide-out-compact {
  from {
    -webkit-transform: translateY(-33px);
            transform: translateY(-33px); }
  to {
    -webkit-transform: translateY(-33px);
            transform: translateY(-33px); } }

@keyframes menu-slide-out-compact {
  from {
    -webkit-transform: translateY(-33px);
            transform: translateY(-33px); }
  to {
    -webkit-transform: translateY(-33px);
            transform: translateY(-33px); } }

@-webkit-keyframes menu-slide-out-compact-2 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes menu-slide-out-compact-2 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes menu-slide-in-compact {
  from {
    -webkit-transform: translateY(-33px);
            transform: translateY(-33px); }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes menu-slide-in-compact {
  from {
    -webkit-transform: translateY(-33px);
            transform: translateY(-33px); }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes loading__img {
  0%,
  20%,
  80%,
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5); } }

@keyframes loading__img {
  0%,
  20%,
  80%,
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5); } }

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}
h1.sr-only {
    color: inherit;
    background-color: inherit;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.vw-100 {
    width: 100vw !important;
}

.vh-100 {
    height: 100vh !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

/* this was altered in Brand, but why? should be 3rem all around -LH  */
.p-5 {
    /*padding: 3rem 0rem 3rem 0rem !important;*/
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

/* this was set to 0rem in Brand, but why?-LH  */
.pl-5,
.px-5 {
  padding-left: 3rem !important; 
}

.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
    text-align: justify !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.body-text {
    font-family: "Open Sans", sans-serif font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1rem;
    line-height: 1.625;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-lighter {
    font-weight: lighter !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: var(--emory-blue) !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #0056b3 !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #494f54 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #19692c !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #0f6674 !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #ba8b00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #a71d2a !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
    color: #cbd3da !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
    color: #121416 !important;
}

.text-body {
    color: #212529 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-reset {
    color: inherit !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: var(--eagle-blue);
    text-decoration: none;
}
.btn-primary:hover {
    color:var(--emory-yellow);
}
.btn-primary-bios:hover {
    color: var(--candler-lake-blue);
} 

.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    /*left: 3px;*/
}

/*a:focus, a.focus, .form-control:focus, .form-control.focus, .btn:focus, .btn.focus {*/
/*    outline: 2px solid #41b6e6;*/
/*    box-shadow: none;*/
/*    left: 3px;*/
/*}*/

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus,
.btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
    color: #fff;
    background-color: var(--candler-lake-blue);
    border-color: var(--candler-lake-blue);
}

.btn-info:hover {
    color: #fff;
    background-color: #0076af;
    border-color: #0076af;
}

.btn-info:focus,
.btn-info.focus {
    box-shadow: 0 0 0 0.2rem rgb(0 118 175 / 50%);
}
.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show>.btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger:focus,
.btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show>.btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show>.btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
    font-weight: 400;
    color: #007bff;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
    text-decoration: underline;
    box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
    color: #6c757d;
    pointer-events: none;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block+.btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card>hr {
    margin-right: 0;
    margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem 0;
}

.card-link .card-body,
.accordion .card-body {
    padding: 1.25rem 0;
}
.card-body-padding {
    padding: 1.25rem !important;
}


.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link+.card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header.card-header-dark {
    color: #fff;
    background-color: var(--emory-blue);
    border-bottom: 0;
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header+.list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 1.25rem;/*prez - bios*/
    /* background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125); */
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

.card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group>.card {
    margin-bottom: 15px;
}

.accordion .card {
    overflow: hidden;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 0;
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0;
}

.accordion .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion .card .card-header {
    margin-bottom: -1px;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.close:hover {
    color: #000;
    text-decoration: none;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
    opacity: .75;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a.close.disabled {
    pointer-events: none;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #6c757d;
}

.fas,
.fab,
.far {
    color: var(--candler-lake-blue);
}

.divider-ornamental {
    position: relative;
    left: -50%;
    width: 12rem;
    height: 0.5rem;
    margin: 2rem auto;
    border: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    border-top: 5px solid var(--emory-yellow);
}

.divider-ornamental.align-center {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.ratio-21by9 {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.ratio-21by9::before {
    display: block;
    width: 100%;
    padding-top: 42.85714%;
    content: "";
}

.ratio-21by9>.ratio-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-16by9 {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.ratio-16by9::before {
    display: block;
    width: 100%;
    padding-top: 56.25%;
    content: "";
}

.ratio-16by9>.ratio-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-4by3 {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.ratio-4by3::before {
    display: block;
    width: 100%;
    padding-top: 75%;
    content: "";
}

.ratio-4by3>.ratio-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-3by2 {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.ratio-3by2::before {
    display: block;
    width: 100%;
    padding-top: 66.66667%;
    content: "";
}

.ratio-3by2>.ratio-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-1by1 {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.ratio-1by1::before {
    display: block;
    width: 100%;
    padding-top: 100%;
    content: "";
}

.ratio-1by1>.ratio-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.embed-responsive-3by2::before {
    padding-top: calc((2 / 3) * 100%);
}

.embed-responsive-4by3::before {
    padding-top: calc((3 / 4) * 100%);
}

.embed-responsive-smugmug {
    padding-top: 20px;
    background-color: #101820;
}

.embed-responsive-smugmug::before {
    padding-top: calc((2 / 3) * 100%);
}

.jumbotron {
    background-color: #ffffff;
    border-radius: 0.3rem;
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

.list-unordered,
.list-ordered,
.list-checks,
.list-checkbox {
    padding-left: 0;
    margin-left: 1em;
    list-style: none;
}

.list-cols,
.list-cols-2,
.list-cols-3,
.list-cols-4 {
    /*padding-left: 0;*/
    margin-left: 1em;
}

.list-unordered>li,
.list-ordered>li,
.list-checks>li,
.list-checkbox>li {
    padding-left: 1.125em;
}

.list-unordered>li,
.list-checks>li,
.list-checkbox>li {
    position: relative;
}

.list-unordered>li::before,
.list-checks>li::before,
.list-checkbox>li::before {
    position: absolute;
    left: -0.5em;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    color: var(--candler-lake-blue);
}

.list-unordered>li::before {
    top: 0;
    left: 0;
    font-weight: 700;
    content: "\2022";
}

.list-ordered {
    counter-reset: li;
}

.list-ordered>li {
    counter-increment: li;
}

.list-ordered>li::before {
    display: inline-block;
    width: 1.5em;
    margin-right: 0.5em;
    margin-left: -2em;
    font-weight: 700;
    color: var(--candler-lake-blue);
    text-align: right;
    content: "." counter(li);
    direction: rtl;
}

.list-checks>li::before {
    font-weight: 900;
    content: "\f00c";
}

.list-checkbox>li::before {
    font-weight: 400;
    content: "\f0c8";
}

.ol-lower-alpha {
    padding-left: 0;
    margin-left: 1em;
    list-style: none;
}

.ol-lower-alpha>li {
    padding-left: 1.125em;
    counter-increment: li;
}

.ol-lower-alpha>li::before {
    display: inline-block;
    width: 1.5em;
    margin-right: 0.5em;
    margin-left: -2em;
    font-weight: 700;
    color: var(--waterhub-blue);
    text-align: right;
    content: "." counter(li, lower-alpha);
    direction: rtl;
}

.ol-upper-alpha {
    padding-left: 0;
    margin-left: 1em;
    list-style: none;
}

.ol-upper-alpha>li {
    padding-left: 1.125em;
    counter-increment: li;
}

.ol-upper-alpha>li::before {
    display: inline-block;
    width: 1.5em;
    margin-right: 0.5em;
    margin-left: -2em;
    font-weight: 700;
    color: var(--waterhub-blue);
    text-align: right;
    content: "." counter(li, upper-alpha);
    direction: rtl;
}

.ol-lower-roman {
    padding-left: 0;
    margin-left: 1em;
    list-style: none;
}

.ol-lower-roman>li {
    padding-left: 1.125em;
    counter-increment: li;
}

.ol-lower-roman>li::before {
    display: inline-block;
    width: 1.5em;
    margin-right: 0.5em;
    margin-left: -2em;
    font-weight: 700;
    color: var(--waterhub-blue);
    text-align: right;
    content: "." counter(li, lower-roman);
    direction: rtl;
}

.ol-upper-roman {
    padding-left: 0;
    margin-left: 1em;
    list-style: none;
}

.ol-upper-roman>li {
    padding-left: 1.125em;
    counter-increment: li;
}

.ol-upper-roman>li::before {
    display: inline-block;
    width: 1.5em;
    margin-right: 0.5em;
    margin-left: -2em;
    font-weight: 700;
    color: var(--waterhub-blue);
    text-align: right;
    content: "." counter(li, upper-roman);
    direction: rtl;
}

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media screen and (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - (0.5rem * 2));
    content: "";
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.modal-footer> :not(:first-child) {
    margin-left: .25rem;
}

.modal-footer> :not(:last-child) {
    margin-right: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Open Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1,
h2,
h3,
h4,
h6 {
    color: var(--emory-blue);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h5 {
    color: var(--scepter-gold);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-inline-start: 40px;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #f2f2f0;
}

.breadcrumb-item {
    display: -ms-flexbox;
    display: flex;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #63666a;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #63666a;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #fff;
    background-color: var(--candler-lake-blue);
}

.breadcrumb a:link, .breadcrumb a:visited,
.breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--dogwood-white);
}
.breadcrumb a:hover, .breadcrumb a:active {
    color:white;
}

.breadcrumb a,
.breadcrumb .breadcrumb-item {
    outline: 2px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, outline-color 0.15s ease-in-out;
}

.breadcrumb a:focus,
.breadcrumb .breadcrumb-item:focus {
    z-index: 2;
    outline-color: #fff;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

.fade {
    transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.75rem;
}

h2,
.h2 {
    font-size: 2.5rem;
}

h3,
.h3 {
    font-size: 2.2rem;
}

h4,
.h4 {
    font-size: 1.75rem;
}

h5,
.h5 {
    font-size: 1.5rem;
}

h6,
.h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
    font-size: 80%;
    font-weight: 500;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.initialism {
    font-size: 90%;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "\2014\00A0";
}

/* Colors */
.font .h1 {
    color: var(--emory-blue);
}

.font .h6 {
    font-size: 1rem;
    color: var(--emory-blue);
}

.font p {
    font-size: 1.5rem;
    color: #012169;
}

.font p>span {
    color: var(--candler-lake-blue);
}

.h4 {
    font-family: 'Crimson Pro', serif;
    font-weight: 200;
    text-transform: none;
    letter-spacing: normal;
    color: var(--emory-blue);
}

.h6 {
    font-family: "Open Sans";
    font-weight: normal;
}

.font__crimson-pro {
    font-family: "Crimson Pro";
}

.font__open-sans {
    font-family: "Open Sans";
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.75;
    color: #101820;
}

body>.sr-only {
    color: #fff;
}

a {
    text-decoration: underline;
    color: var(--emory-blue);
}

a:hover {
    text-decoration: none;
    color: var(--candler-lake-blue);
}

h1,
h2,
.h1,
.h2 {
    font-family: 'Crimson Pro', serif;
    font-weight: 200;
    text-transform: none;
    letter-spacing: normal;
    margin: 3rem 0 1.5rem 0;
}

h3,
.h3 {
    font-family: 'Crimson Pro', serif;
    font-weight: 200;
    text-transform: none;
    letter-spacing: normal;
    margin: 1rem 0 .75rem 0;
}

h2 {
    line-height: 1.25;
    color: var(--emory-blue);
}

h3 {
    line-height: 1.25;
}

h4,
h5,
.h4,
.h5 {
    font-family: "Crimson Pro", serif;
    font-weight: 200;
}

h4 {
    line-height: 1.125;
    color: var(--emory-blue);
}

h5 {
    line-height: 1.125;
    color: var(--scepter-gold);
}

h6 {
    line-height: 1.125;
}

.small-headline {
    font-family: "Open Sans", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: var(--emory-blue);
}

small {
    font-family: "Open Sans", sans-serif;
    font-size: .80rem;
    font-weight: 500;
    letter-spacing: 0;
}

.btn {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.125;
    white-space: normal;
    letter-spacing: normal;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: .5rem;
    padding: 0.375rem 0.75rem;
    border: none;
    border-radius: 0;
    transition: none;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.btn.btn-sm {
    font-size: 1rem;
}

.btn.btn-dark {
    background-color: var(--emory-blue);
}

.btn.btn-dark:hover {
    background-color: var(--candler-lake-blue);
}

.btn.btn-outline {
    color: var(--emory-blue);
    background-color: transparent;
    border: solid 2px var(--scepter-gold);
}

.btn.btn-outline:hover {
    color: var(--candler-lake-blue);
    border-color: var(--candler-lake-blue);
}

.left-pagination-button .btn {
    display: block;
}

.left-pagination-button .btn img {
    margin-right: .25rem;
}

.right-pagination-button .btn {
    display: block;
}

.right-pagination-button .btn img {
    margin-left: .25rem;
}

.card,
.card-img-top {
    border-radius: 0;
}

.zoom-toggle {
    border: solid 1px #fff;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.zoom-toggle:hover {
    border-color: var(--emory-yellow);
}

.zoom-modal {
    width: 100%;
}

.zoom-modal .modal-dialog {
    max-width: 95%;
}



.download-pdf,
.contact-info {
    font-size: .92rem;
    line-height: 1.75;
}

.download-pdf a:hover img {
    border-color: var(--emory-yellow);
}

.download-pdf img {
    display: block;
    width: 100%;
    max-width: 12.5rem;
    margin-bottom: .5rem;
    border: solid 1px var(--scepter-gold);
}

.contact-info {
    -ms-flex-align: start;
    align-items: flex-start;
}

.contact-info img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 1.5rem;
    width: 1.5rem;
    margin: .375rem .5rem 0 0;
}

.jumbotron {
    color: var(--emory-blue);
    background-size: cover;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 0;
}

.hero-title h1 {
    font-size: 4rem;
}

.jumbotron h1 {
    color: var(--emory-blue);
}

.jumbotron .hero-title {
    width: 100%;
}

.jumbotron .hero-title img {
    max-width: 75%;
}

.page-title {
    background: #d0d0ce url("../images/site-wide/title-bg-xs.jpg") no-repeat left top;
    background-size: cover;
    margin-bottom: 3rem;
}

.page-title h1 .text-muted {
    font-family: "Crimson Pro", serif;
    font-weight: 200;
    font-size: 2rem;
    line-height: 1.125;
    color: #006ca1 !important;
}

.page-title .left-pagination-button .btn {
    display: inline-block;
    white-space: nowrap;
}

.jumbotron h1,
.page-title h1 {
    margin: 0;
}

ol.list-slash {
    list-style: none;
    counter-reset: slash;
    padding-left: 0;
}

ol.list-slash li {
    counter-increment: slash;
    margin-bottom: .5rem;
}

ol.list-slash li::before {
    content: counter(slash) ".";
    font-family: "Crimson Pro", serif;
    font-weight: 200;
    display: inline-block;
    margin-right: .75rem;
    color: var(--waterhub-blue);
    list-style-position: outside;
}

.palette {
    width: 125px;
    max-width: 100%;
    height: 75px;
    border: 3px solid #fff;
}

.palette.palette-primary {
    height: 125px;
}

.palette.palette__emory-blue {
    background-color: #012169;
}

.palette.palette__medium-blue {
    background-color: var(--waterhub-blue);
}

.palette.palette__dark-blue {
    background-color: var(--eagle-blue);
}

.palette.palette__light-blue {
    background-color: var(--candler-lake-blue);
}

.palette.palette__yellow {
    background-color: var(--emory-yellow);
}

.palette.palette__gold {
    background-color: var(--scepter-gold);
}

.palette.palette__metallic-gold {
    background-color: #84754e;
}

.palette.palette__cyan {
    background-color: #00aeef;
}

.palette.palette__sky-blue {
    background-color: #41b6e6;
}

.palette.palette__teal {
    background-color: #487f84;
}

.palette.palette__kelly-green {
    background-color: #348338;
}

.palette.palette__sea-green {
    background-color: #006c5b;
}

.palette.palette__olive {
    background-color: #5c8118;
}

.palette.palette__orange {
    background-color: #c35413;
}

.palette.palette__red {
    background-color: #da291c;
}

.palette.palette__magenta {
    background-color: #c6007e;
}

.palette.palette__purple {
    background-color: #6558b1;
}

.palette.palette__grape {
    background-color: #6d2077;
}

.palette.palette__black {
    background-color: #101820;
}

.palette.palette__cool-gray-1 {
    background-color: #d9d9d6;
}

.palette.palette__cool-gray-2 {
    background-color: #d0d0ce;
}

.palette.palette__cool-gray-5 {
    background-color: #b1b3b3;
}

.palette__info {
    padding: 5px;
}

.palette__info dt {
    font-family: "Crimson Pro", serif;
    font-weight: 200;
}

.palette__info dd {
    font-size: .75rem;
    line-height: .75rem;
}

main {
    background-color: #fff;
}

main a {}

main a:hover {
    border-bottom-color: var(--emory-yellow);
}

main ul {
    padding-left: 1rem;
}

.container-fluid {
    padding: 0;
    position: relative;
    z-index: 1;
}

.content-divider {
    background: url("../images/site-wide/border-gold.svg") repeat-x left top;
    height: 3px;
    border-top: none;
}

.platform-text {
    font-family: 'Crimson Pro', serif;
    font-weight: 200;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1;
    color: var(--scepter-gold);
    background: url("../images/site-wide/stripe-arrow-up.svg") no-repeat center top, url("../images/site-wide/stripe-arrow-down.svg") no-repeat center bottom;
    padding: 2rem 0 2.5rem 0;
}

.pull-quote {
    font-family: 'Crimson Pro', serif;
    font-weight: 200;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.3rem;
    line-height: 2;
    color: var(--candler-lake-blue);
    border: solid 3px var(--scepter-gold);
}

.pull-quote strong {
    font-weight: inherit;
    color: #012169;
}

.pull-quote p {
    margin: 0;
}

.brand-pillars {
    background: rgba(0, 125, 186, 0.2) url("../images/site-wide/stripe-bg-white.svg") repeat;
}

.brand-pillars .row {
    margin-right: 0;
    margin-left: 0;
    padding: .5rem;
}

.brand-pillars .row+.row {
    padding-top: 0;
}

.brand-pillar {
    background-color: #fff;
}

.sample-logo {
    height: 12.75rem;
    width: 25rem;
}

.sample-logo-lg {
    height: 12.375rem;
    width: 54.0625rem;
}

.tone-words h2,
.tone-words h3 {
    color: var(--waterhub-blue);
    font-size: 2.3rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.tone-words h4 {
    font-size: 2.5rem;
}

.tone-example h5 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 200;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.375rem;
    line-height: 1.5;
}

.tone-example blockquote {
    font-style: italic;
    padding-left: 1.5rem;
    border-left: solid 3px var(--scepter-gold);
}

.tone-slider {
    height: 19.25rem;
    width: 51.5625rem;
}

.persona-cards .card {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: .75rem;
    border: solid 1px var(--scepter-gold);
    border-top-width: 3px;
}

.persona-cards .card-body {
    padding-top: 3rem;
    position: relative;
}

.persona-cards .persona-role {
    line-height: 1.25;
    font-style: italic;
}

.persona-thumb {
    text-align: center;
    position: absolute;
    top: -2.5rem;
    right: 0;
    left: 0;
}

.persona-thumb img {
    width: 5rem;
    border: solid 3px var(--scepter-gold);
    border-radius: 50%;
}

.persona-thumb a {
    border-bottom: none;
}

.persona-thumb a:hover img {
    -webkit-filter: brightness(1.05);
    filter: brightness(1.05);
}

.persona-photo {
    width: 10rem;
    border: solid 3px var(--scepter-gold);
    border-radius: 50%;
}

.persona-quote {
    font-family: 'Crimson Pro', serif;
    font-weight: 200;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--candler-lake-blue);
}

.card-features {
    font-family: "Crimson Pro", serif;
    font-weight: 200;
    font-size: 1.5rem;
    line-height: 1.125;
}

.card-features a {
    border-bottom: none;
}

.card-features .card {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: none;
}

.card-features .card-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
}

.card-features .card-body a {
    color: var(--scepter-gold);
    display: block;
    -ms-flex: 1;
    flex: 1;
}

.card-features .card-body a:hover {
    color: var(--candler-lake-blue);
}

.card-features .card-body a:hover img {
    -webkit-filter: brightness(1.05);
    filter: brightness(1.05);
}

.card-features .card-body a img {
    display: block;
    width: 100%;
}

.card-features .card-body a span {
    display: block;
    padding: .75rem 0;
}

.anchor {
    display: block;
    padding-top: 75px;
    margin-top: -75px;
}

.wysiwyg li.anchor::before {
    top: 75px !important;
}

.anchor-main {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/*JE: commenting this out because h2 headlines in particular look horrible with the max-width since the font-size is much larger than ST3*/
/*.wysiwyg h1,*/
/*.wysiwyg h2,*/
/*.wysiwyg h3,*/
/*.wysiwyg h4,*/
/*.wysiwyg h5,*/
/*.wysiwyg h6,*/
/*.wysiwyg p,*/
/*.wysiwyg ul,*/
/*.wysiwyg ol,*/
/*.wysiwyg dl,*/
/*.wysiwyg blockquote {*/
/*    max-width: 730px;*/
/*}*/

.accordion__toggle {
    position: relative;
    padding: 1rem 3rem 1rem 1rem;
    font-size: 1.25rem;
    color: var(--waterhub-blue);
    background-color: inherit;
    margin-bottom: 0;
}

.accordion__toggle::after {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f055";
}

.accordion__toggle[aria-expanded="true"]::after {
    content: "\f056";
}

.accordion__toggle:hover,
.accordion__toggle:focus,
.accordion__toggle[aria-expanded="true"] {
    color: var(--emory-blue);
    text-decoration: none;
}

.accordion__toggle .fas {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.accordion .card:last-of-type {
    border-bottom: solid 1px #d0d0ce;
}

.accordion .card .card-header {
    padding: 2px;
    border-bottom: 0;
}

.imported-block .caption .caption-credit {
    font-size: 0.75rem;
}

.imported-block .caption p {
    margin-bottom: 0;
}

.imported-block .caption {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #53565a;
    border: solid 1px #d0d0ce;
    border-top: 0;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/******      Utilities (removing default styles for our own)   *******/
/* using clip-path polygon is a more accurate way of snipping the corner based on image size, but "notch" is an easier class to remember */
.notch,
img.notch {
    background-size: 100% auto;
    --notchSize: 25px;
    clip-path: polygon(0% var(--notchSize),
            /* top left */
            var(--notchSize) 0%,
            /* top left */
            100% 0%,
            /* top right */
            100% 0px,
            /* top right */
            100% 0px,
            /* bottom right */
            100% 100%,
            /* bottom right */
            var(--notchSize) 100%,
            /* bottom left */
            0 100%
            /* bottom left */
        );
}

/**** backgrounds ******/
.bg-eagle-blue {
    background-color: var(--eagle-blue);
    color: #ffffff;
}

.bg-emory-blue,
.bg-primary {
    background-color: var(--emory-blue);
    color: #ffffff;
}

.bg-waterhub-blue {
    background-color: var(--waterhub-blue);
    color: #ffffff;
}

.bg-spring {
    background-color: var(--spring-yellow);
    color: #000000;
}

.bg-marble {
    background-color: var(--marble-pink);
    color: #000000;
}

.bg-wisteria {
    background-color: var(--wisteria-purple);
    color: #000000;
}

.bg-candler-lake {
    background-color: var(--candler-lake-blue);
    color: #ffffff;
}

.bg-wise-heart {
    background-color: var(--wise-heart-red);
    color: #ffffff;
}

.bg-lullwater {
    background-color: var(--lullwater-green);
    color: #ffffff;
}

.bg-oxford-farm {
    background-color: var(--oxford-farm-green);
    color: #000000;
}

.bg-scepter-gold {
    background-color: var(--scepter-gold);
    color: #000000;
}

.bg-eagle-blue {
    background-color: var(--eagle-blue);
    color: #ffffff;
}

.bg-dogwood-white {
    background-color: var(--dogwood-white);
    color: #000000;
}

.bg-emory-yellow {
    background-color: var(--emory-yellow);
    color: #000000;
}

.bg-pale-blue {
    /*defaulting this to dogwood white*/
    background-color: var(--dogwood-white);
    color: #000000;
}

/**** not-backgrounds (text, headings, icons) ******/
.scepter-gold {
    color: var(--scepter-gold);
}

.oxford-farm {
    color: var(--oxford-farm-green);
}

.wisteria {
    color: var(--wisteria-purple);
}

.spring {
    color: var(--spring-yellow);
}

.emory-blue {
    color: var(--emory-blue);
}

.candler-lake-blue {
    color: var(--candler-lake-blue);
}

.lullwater {
    color: var(--lullwater-green);
}

.wise-heart {
    color: var(--wise-heart-red);
}

.marble {
    color: var(--marble-pink);
}

.heading-dogwood-white,
.dogwood-white {
    color: var(--dogwood-white);
}

.heading-white,
.text-white {
    color: #ffffff;
}

.eagle-blue {
    color: var(--eagle-blue);
}

.waterhub-blue {
    color: var(--waterhub-blue);
}

.emory-yellow,
.btn-yellow,
.btn-arrow-gold {
    color: var(--emory-yellow);
}

/*** special A styles for dark backgrounds ***/
.bg-eagle-blue a:link,
.bg-waterhub-blue a:link,
.bg-lullwater a:link,
.bg-candler-lake a:link,
.bg-wise-heart a:link {
    color: #ffffff;
}
.bg-eagle-blue a:visited,
.bg-waterhub-blue a:visited,
.bg-lullwater a:visited,
.bg-candler-lake a:visited,
.bg-wise-heart a:visited {
    color: var(--emory-yellow);
}

.bg-oxford-farm a:link {
    color: #000000;
}

.bg-scepter-gold a:link {
    color: var(--eagle-blue);
}

.bg-emory-blue a:link,
.bg-emory-blue a:visited {
    color: #ffffff;
}

.bg-emory-blue a:hover,
.bg-emory-blue a:active {
    color: #f4f4f4;
}

.over-graphic {
    z-index: 12;
    position: relative;
    max-width: 730px;
}

.info-box {
    position: relative;
    z-index: 1;
}



.short-info-block h2 {
    margin-top: 0;
}

/*.short-info-block .torch-trumpet-graphic, .short-info-block .torch-trumpet-graphic-white, .short-info-block .torch-trumpet-graphic-eagle {*/
/*    top: -2rem;*/
/*}*/

.torch-trumpet-graphic,
.torch-trumpet-graphic-white,
.torch-trumpet-graphic-eagle {
    right: 0;
    top: 0;
    display: block;
    width: 300px;
    height: 300px;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 0;
    position: absolute;
    overflow: hidden;
}

.torch-trumpet-graphic {
    background-image: url("https://brand.emory.edu/_includes/images/site-wide/torchtrumpet-watehub.svg");
}

.torch-trumpet-graphic-white {
    background-image: url("https://brand.emory.edu/_includes/images/site-wide/torchtrumpet-dogwoodwhite.svg");
}

.torch-trumpet-graphic-eagle {
    background-image: url("https://brand.emory.edu/_includes/images/site-wide/torchtrumpet-eagleblue.svg");
}

/* to show torch on narrower widths desktop bc of sidebars */
.imported-block>section .wysiwyg p {
    max-width: 530px;
}

.brand-narrative {
    column-count: 2;
    column-fill: balance;
    column-gap: 4rem;
    column-rule: var(--dogwood-white) 2pt solid;
    column-width: 9vw;
    font-size: 1.15rem;
    /*margin-bottom:4rem;*/
}


/******* heading graphic **********/
.torch-trumpet-graphic-hero {
    right: 0;
    top: 3rem;
    display: block;
    width: 300px;
    height: 300px;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 0;
    position: absolute;
    overflow: hidden;
}

.no-hero-overlay-brand {
    overflow: hidden;
    position: relative;
}

.hero-content-heading {
    color: white;
    z-index: 3;
}
.hero-content.hero-content-primary {
    z-index: 3;
}

p.hero-content-text {
    font-size: 1.25rem;
}

.hero-quote p {
    font-family: 'Crimson Pro';
    font-weight: 200;
    /*color: yellow;*/
}

.hero-quote .h4,
.hero-quote .h6 {
    font-family: 'Open Sans';
    font-weight: 400;
}

/**** BG fill on hero for white text *****/
.hero.hero-parallax.hero-overlay {
    background-color: var(--emory-blue);
}

.contact-info>p>a,
.sticky-section-nav>.wysiwyg>p>a {
    color: var(--candler-lake-blue);
}

.contact-icon-spacing {
    margin-left: 32px;
}

/***** hover effect image ******/
img.img-1-original,
img.img-2-original,
img.tile-lg-img.img-1-original, img.img-2-original,
img.tile-lg-img.img-1-hover, img.img-2-hover {
    position: relative;
    background-size: contain;
    opacity: 1;
    transition: opacity 1s;
    height: auto;
    width: 100%;
}
/*img.img-2-hover, img.tile-lg-img.img-1-hover {*/
/*    height:100%;*/
/*    position:absolute;*/
/*    -o-object-fit: cover;*/
/*    object-fit: cover;*/
/*}*/

.col-4.col-md-6.tile-img,
.tile ~ .tile-img > img.tile-lg-img.img-1-original, 
.tile ~ .tile-img > img.img-2-original {
    position: relative;
    width: 100%;
    z-index: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

img.small-img-original, 
.tile ~ .tile-img > img.tile-lg-img.img-1-original, 
.tile ~ .tile-img > img.img-2-original {
    position: absolute;
    top: 0;
    left: 0;
    z-index:1;
}

/* hide hover photo on load */
img.small-img-hover, 
.tile ~ .tile-img > img.tile-lg-img.img-1-hover, 
.tile ~ .tile-img > img.img-2-hover  {
    opacity: 0;
    z-index:0;
}

/* hide on hover */
img.tile-lg-img.img-1-original:hover,
img.img-2-original:hover,
.tile:hover ~ .tile-img > img.img-2-original:hover,
.tile:hover ~ .tile-img > img.tile-lg-img.img-1-original:hover {
    opacity: 0;
}

/* show on hover */
img.tile-lg-img.img-1-hover:hover,
img.img-2-hover:hover,
.tile:hover ~ .tile-img > img.img-2-hover:hover,
.tile:hover ~ .tile-img > img.tile-lg-img.img-1-hover:hover,
.tile ~ .tile-img > img.img-2-hover:hover,
.tile ~ .tile-img > img.tile-lg-img.img-1-hover:hover {
    opacity: 1;
    transition: opacity 1s;
}
 .tile:hover ~ .tile-img > img {
	 opacity:0;
}
 .tile ~ .tile-img {
	 position: relative;
}
 .tile ~ .tile-img::after {
	 content: '';
	 position: absolute;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
}

 .tile ~ .tile-img > img {
	 width: 100%;
	 height: 100%;
	 -o-object-fit: cover;
	 object-fit: cover;
}
 .tile:hover .arrow::before {
	 right: 0;
	 width: 3rem;
}
 .tile:hover .arrow::after {
	 right: -6px;
}
 .tile:hover__content {
	 color: #fff;
}
 .tile .arrow {
	 margin: 1.5rem auto;
}

@media (min-width: 568px) and (max-width: 1180px) and (orientation:landscape) {
    .tile ~ .tile-img > img.tile-lg-img.img-1-original {
        height:100%;
        position: relative;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        left: 0;
        z-index: 6;
    }
}

 @media (min-width: 992px) {
	 .tile .tile-lg-img {
		 position: absolute;
		 top: 0;
		 left: 0;
		 height: auto;
	}
	 .tile-lg .tile {
		 position: absolute;
		 bottom: 0;
		 z-index: 2;
	}
}

/* fixing hover fit only on mobile -LH */
@media (max-width:1199px) {
    img.img-2-hover, img.tile-lg-img.img-1-hover {
        height:100%;
        position:absolute;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        left: 0;
        z-index: 0;
    }
}

.e-shield-icon {
    background-position: bottom left;
    position: absolute;
    bottom: 1.25rem;
}

.btn-outline-secondary,
.btn-primary,
.btn-secondary,
.btn-arrow,
.link-arrow-gold,
.link-arrow-blue,
.btn-arrow-gold,
.btn-arrow-blue,
.btn-arrow-eagle,
.btn-arrow-black,
.btn-arrow-white,
.btn-primary-bios,
.btn-info-bios {
    font-family: "Open Sans", sans-serif;
    text-transform: inherit;
    text-align: left;
    line-height: 1.4;
    padding: 1rem 3rem 1rem 0;
    position: relative;
    color: var(--emory-blue);
    transition: outline-color 0s;
    font-weight: bold;
    text-decoration: none;
    display: inline;
    font-size: 1rem;
    margin-left: 3px;
}

.btn-primary-bios {
    padding: .5rem .5rem .5rem 0;
    background-color: white;
    outline-color: transparent !important;
    color: var(--emory-blue);
    font-size: .9rem;
    margin-left: 0 !important;
}
.btn-info-bios {
    padding: 1rem;
    color: white !important;
    outline-color: transparent !important;
    background-color: var(--candler-lake-blue) !important;
}
a.link-info-bios:link, a.link-info-bios:visited  {
    color: var(--candler-lake-blue) !important;
    text-decoration:underline;
    margin-bottom: .5rem;
}
a.link-info-bios:hover, a.link-info-bios:active  {
    color: var(--eagle-blue) !important;
    text-decoration:underline;
     margin-bottom: .5rem;
}

.fa.fas.fa-expand-alt {
    color:var(--scepter-gold);
}

.btn.btn-outline-secondary,
.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-arrow-gold,
.btn.btn-arrow-blue,
.btn.btn-arrow-eagle {
    padding: 1rem 3rem 1rem 0;
    display: inline;
}

.btn-outline-secondary:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-arrow-gold:hover,
.link-arrow-gold:hover,
.link-arrow-blue:hover,
.btn-arrow-blue:hover,
.btn-arrow-eagle:hover,
.btn-arrow-black:hover,
.btn-arrow-white:hover {
    outline-color: transparent !important;
    color: var(--candler-lake-blue);
    position: relative;
}

.btn-outline-secondary:after,
.btn-primary:after,
.btn-arrow-blue:after,
.link-arrow-blue:after {
    content: url(../images/site-wide/arrowblue.svg);
}

.btn-secondary:after,
.btn-arrow-gold:after,
.link-arrow-gold:after {
    content: url(../images/site-wide/arrowgold.svg);
}

.btn-arrow-eagle:after,
.link-arrow-eagle:after {
    content: url(../images/site-wide/arroweagle.svg);
}

.btn-arrow-black:after,
.link-arrow-black:after {
    content: url(../images/site-wide/arrow-black.svg);
}

.btn-arrow-white:after,
.link-arrow-white:after {
    content: url(../images/site-wide/arrow-white.svg);
}

.btn-secondary,
.btn-arrow-gold,
.link-arrow-gold {
    color: var(--emory-yellow) !important;
}

.btn-outline-secondary,
.btn-primary,
.btn-arrow-blue,
.link-arrow-blue {
    color: var(--emory-blue) !important;
}

.btn-arrow-eagle,
.link-arrow-eagle {
    color: var(--eagle-blue) !important;
}

.btn-arrow-black,
.link-arrow-black {
    color: #000000 !important;
}

.btn-arrow-white,
.link-arrow-white {
    color: #ffffff !important;
}

.btn-outline-secondary:after,
.btn-primary:after,
.btn-secondary:after,
.btn-arrow-gold:after,
.link-arrow-gold:after,
.link-arrow-blue:after,
.btn-arrow-blue:after,
.btn-arrow-eagle:after,
.btn-arrow-black:after,
.btn-arrow-white:after {
    display: inline-block;
    width: 90px;
    position: absolute;
    transition: right 0.15s ease, width 0.15s ease;
    right: -38px;
    margin-top: 2px;
}

.btn-outline-secondary:hover::after,
.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-arrow-gold:hover::after,
.link-arrow-gold:hover::after,
.link-arrow-blue:hover::after,
.btn-arrow-blue:hover::after,
.btn-arrow-eagle:hover::after,
.btn-arrow-black:hover::after,
.btn-arrow-white:hover::after {
    display: inline-block;
    right: -54px;
    width: 90px;
}

.btn-shield-container {
    color: #fff;
    background-color: #012169;
    border-color: #012169;
}

.btn-shield-container:hover {
    background-color: var(--eagle-blue);
    border-color: var(--eagle-blue);
    color: white;
}

.btn-shield svg {
    width: 20px;
    margin-top: -3px;
    margin-right: 6px;
}

.btn.btn-sm.btn-shield-container {
    font-size: .875rem;
}

/*GRAPHICAL ELEMENT*/
.graphical-element-card {
    border: 1px solid #d0d0ce;
    position: relative;
}

.graphical-element-img {
    background-repeat: no-repeat;
    background-position: center center;
    height: 350px;
    webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



/*********** alert from ST3 AKA Info Box, needed to move down for hierarchy-LH **************/
.alert {
    position: relative;
    padding: 1.25rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

/*PILLARS*/
.pillar-pre-heading {
    color: var(--emory-blue);
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0;
}

.pillar-heading {
    color: var(--emory-blue);
}

.pillar-bullets-heading {
    font-size: 1.175rem;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    color: var(--scepter-gold);
    font-weight: bold;
}

.pillar-content {
    border-left: 3px solid var(--emory-yellow);
    padding-left: 3.5rem;
    margin-left: 3.5rem;
    padding-top: 1rem;
}

/*QUOTES*/
.blockquote {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: calc(1rem - 2.5px);
    margin-bottom: 1rem;
    margin-left: 1rem;
    color: #53565a;
    border-left: 5px solid #41b6e6;
}

.blockquote p:last-of-type {
    /*margin-bottom: 0;*/
}

.blockquote footer {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-style: normal;
}

.blockquote cite {
    font-style: italic;
}

.blockquote-alt {
    padding: 0;
    font-family: 'Crimson Pro', serif;
    font-weight: 200;
    font-size: 1.5rem;
    font-style: italic;
    border-left: 0;
}

.blockquote-alt footer,
.blockquote-alt .blockquote-footer {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
}

/*TWO-COLUMN CARDS*/
.card-two-col {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.5rem;
    background-color: var(--dogwood-white);
}

.card-two-col__right {
    -ms-flex-order: 1;
    order: 1;
    width: 35%;
}

.card-two-col__left {
    -ms-flex-order: 2;
    order: 2;
    width: 65%;
}

.card-two-col-bottom {
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    padding-left: .5rem;
}

.card-two-col__right,
.card-two-col__left {
    padding: 0.5rem;
}

.card-two-col .card-title {
    font-size: 1.25rem;
    color: #012169;
}

.card-two-col .card-text {
    font-size: 0.875rem;
}

/* adding missing card styles plus card-link */
.card.card-link> ::after {
    position: absolute;
    top: 0;
    right: 0;
    padding: .25em;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.75);
    background-color: var(--candler-lake-blue);
    content: "\f35d";
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, outline-color 0.15s ease-in-out;
}

.card.card-link> :hover::after,
.card.card-link> :focus::after {
    color: #fff;
}

.card.card-link>[data-toggle="modal"]::after {
    content: "\f065";
}

.card.card-link>[href^="mailto:"]::after {
    font-weight: 400;
    content: "\f0e0";
}

.card.card-link>[href^="tel:"]::after {
    content: "\f095";
}

.card.card-link>a,
.card.card-link>button {
    width: 100%;
    height: 100%;
    position: relative;
    color: #101820;
    text-decoration: none;
    border-color: var(--candler-lake-blue);
    outline: 2px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, outline-color 0.15s ease-in-out;
}

.card.card-link>a:focus,
.card.card-link>a:hover,
.card.card-link>button:focus,
.card.card-link>button:hover {
    z-index: 2;
     outline-color: white;
}
.card.card-link.card-link-featured-news>a:focus,
.card.card-link.card-link-featured-news>a:hover,
.card.card-link.card-link-featured-news>button:focus,
.card.card-link.card-link-featured-news>button:hover {
     outline-color: var(--candler-lake-blue);
}

.card.card-link>a .card-body .card-title:first-child,
.card.card-link>button .card-body .card-title:first-child {
    padding-right: 1.5rem;
}

.card.card-link>a:first-child .card-header,
.card.card-link>button:first-child .card-header {
    padding-right: 3rem;
}

.card.card-link>a:first-child .card-header~.card-body>.card-title,
.card.card-link>button:first-child .card-header~.card-body>.card-title {
    padding-right: 0;
}

.card.card-link>button {
    background-color: #fff;
    border: 0;
    padding: 0;
    text-align: left;
    -webkit-appearance: none;
    border-radius: 0;
}

.card.card-link>button .card-body {
    height: 100%;
}

.card.card-button {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    line-height: 1.1;
    color: #fff !important;
    background-color: var(--emory-blue);
}

.card.card-button:hover {
    background-color: #006596;
}

.card.card-button .card-body {
    padding: 1rem;
    text-align: center;
}

.list-group+.card-footer,
.calendar .card-footer {
    border-top: 0;
}

.card-title.h5,
.card-title.h6 {
    color: var(--scepter-gold);
}
/* bios prez*/
h3.h5.card-title.text-primary {
    color: var(--scepter-gold) !important;
}
.special {
    margin: .65rem 0 .25rem 0;
}

.card__icon {
    margin-bottom: 0.5rem;
    font-size: 3rem;
    line-height: 1;
}

.card.border-primary .card-header {
    border-bottom-color: var(--emory-blue);
}

.card.border-primary .card-footer {
    border-top-color: var(--emory-blue);
}

.card.border-secondary .card-header {
    border-bottom-color: var(--candler-lake-blue);
}

.card.border-secondary .card-footer {
    border-top-color: var(--candler-lake-blue);
}

.card.border-success .card-header {
    border-bottom-color: #348338;
}

.card.border-success .card-footer {
    border-top-color: #348338;
}

.card.border-info .card-header {
    border-bottom-color: #63666a;
}

.card.border-info .card-footer {
    border-top-color: #63666a;
}

.card.border-warning .card-header {
    border-bottom-color: #ffcd59;
}

.card.border-warning .card-footer {
    border-top-color: #ffcd59;
}

.card.border-danger .card-header {
    border-bottom-color: #da291c;
}

.card.border-danger .card-footer {
    border-top-color: #da291c;
}

.card.border-light .card-header {
    border-bottom-color: #fff;
}

.card.border-light .card-footer {
    border-top-color: #fff;
}

.card.border-dark .card-header {
    border-bottom-color: #424447;
}

.card.border-dark .card-footer {
    border-top-color: #424447;
}
.card.border-white {
    border-color: #fff !important;
}
.card,
.card-deck .card,
.card-group .card {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card-header,
.card-footer,
.card-body,
.card-img-top,
.card>.list-group {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.card-two-col {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.5rem;
    background-color: #fff;
    border: 1px solid #d0d0ce;
}

.card-two-col__right {
    -ms-flex-order: 1;
    order: 1;
    width: 35%;
}

.card-two-col__left {
    -ms-flex-order: 2;
    order: 2;
    width: 65%;
}

.card-two-col__right,
.card-two-col__left {
    padding: 0.5rem;
}





@media (min-width: 768px) {

    .card,
    .card-group>.card,
    .card-deck>.card {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    
    .card-two-col__right,
    .card-two-col__left {
        width: 100%;
    }
}







@media (min-width: 992px) {

    .card-two-col__right,
    .card-two-col__left {
        width: 50%;
    }
}

.card-two-col .card-title {
    font-size: 1.25rem;
    color: var(--emory-blue)
}

.card-two-col .card-text {
    font-size: 0.875rem;
}

/*CONTENT GRID*/
/* TILE/CONTENT GRID */
 .tile {
	 position: relative;
	 z-index: 1;
	 display: block;
}
 @media (min-width: 576px) {
	 .tile {
		 height: 0;
		 padding-bottom: 50%;
	}
}
 .tile__content {
	 display: -ms-flexbox;
	 display: flex;
	 -ms-flex-direction: column;
	 flex-direction: column;
	 -ms-flex-pack: center;
	 justify-content: center;
	 width: 100%;
	 height: 100%;
	 padding: 1rem;
	 font-size: 0.875rem;
	 line-height: 1.35;
	 color: #fff;
	 text-align: center;
	 text-decoration: none;
	 outline: 2px solid transparent;
	 transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, outline-color 0.15s ease-in-out;
}
 .tile__content:focus {
	 z-index: 2;
	 /*outline-color: #41b6e6;*/
	 outline-color: var(--candler-lake-blue);
}
 @media (min-width: 576px) {
	 .tile__content {
		 position: absolute;
		 top: 0;
		 left: 0;
	}
}
 .tile__content:hover {
	 color: #fff;
}
 .tile__content::after {
	 position: absolute;
	 top: 50%;
	 right: -10px;
	 z-index: 1;
	 width: 0;
	 height: 0;
	 content: "";
	 border-color: transparent transparent transparent #fff;
	 border-style: solid;
	 border-width: 9px 0 9px 10px;
	 -webkit-transform: translateY(-50%);
	 transform: translateY(-50%);
}
 .tile__content p {
	 margin-bottom: 0;
}
 .tile-white {
	 background-color: #fff;
}
.tile-white .tile__content, .tile-white:hover .tile__content {
    color: var(--emory-blue);
}
 .tile-white .tile__heading {
	 color: var(--emory-blue);
}
 .tile-white .arrow::before {
	 background-color: var(--emory-blue);
}
 .tile-white .arrow::after {
	 border-left-color: var(--emory-blue);
}
 .tile-candler-lake-blue {
	 background-color: var(--candler-lake-blue);
}
 .tile-candler-lake-blue .tile__content::after {
	 border-left-color: var(--candler-lake-blue);
}
 .tile-eagle-blue {
	 background-color: var(--eagle-blue);
}
 .tile-eagle-blue .tile__content::after {
	 border-left-color: var(--eagle-blue);
}
 .tile-scepter-gold {
	 background-color: var(--scepter-gold);
}
.tile-scepter-gold .tile__heading, .tile-scepter-gold .tile__content {
    color:var(--eagle-blue);
}
 .tile-scepter-gold .tile__content::after {
	 border-left-color: var(--scepter-gold);
}
 .tile-lullwater-green {
	 background-color: var(--lullwater-green);
}
 .tile-lullwater-green .tile__content::after {
	 border-left-color: var(--lullwater-green);
}
 .tile-wise-heart-red {
	 background-color: var(--wise-heart-red);
}
 .tile-wise-heart-red .tile__content::after {
	 border-left-color: var(--wise-heart-red);
}
 .tile-navy {
	 background-color: #012169;
}
 .tile-navy .tile__content::after {
	 border-left-color: #012169;
}
 .tile-brown {
	 background-color: #94712F;
}
 .tile-brown .tile__content::after {
	 border-left-color: #aa7a20;
}
 .tile-black {
	 background-color: #000000;
}
 .tile-black .tile__content::after {
	 border-left-color: #000000;
}
.tile__heading {
    margin-bottom: 0.5rem;
    font-family: 'Open Sans';
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
 .tile .arrow::before {
	 background-color: #fff;
}
 .tile .arrow::after {
	 border-left-color: #fff;
}


.topic-tag {
    display: inline-block;
    padding: 0.35rem 0 2rem;
    font-family: 'Open Sans';
    font-weight: 700;
    text-transform: uppercase;
    color: var(--emory-blue);
    border-top: 5px solid var(--emory-yellow);
}
h2.topic-tag {
    font-size: inherit;
    margin: inherit;
}

/*CAROUSEL*/
.carousel {
    position: relative;
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg'fill='%23fff'viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg'fill='%23fff'viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.carousel:not(.lightbox) .carousel-inner {
    background-color: #101820;
}

.carousel:not(.lightbox).carousel-interior .carousel-inner {
    background-color: #fff;
}

.carousel-indicators {
    margin: 0;
    bottom: 30px;
}

.carousel-caption {
    max-width: 730px;
    padding: 2rem 4rem;
    margin: 0 auto;
}

.carousel-caption__title {
    font-family: "Spectral", serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    color: #fff;
}

.carousel-caption__credit {
    margin: 0.5rem 0;
    font-style: italic;
    color: #63666a;
}

.carousel-caption__credit::before {
    content: "-" "";
}

.carousel-indicators {
    max-width: 100%;
}

.carousel-indicators li {
    padding: 0 !important;
    cursor: pointer;
    outline: 2px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, outline-color 0.15s ease-in-out;
    counter-increment: none !important;
    box-shadow: 0 0 0 5px #101820;
    margin-right: 5px;
    margin-left: 5px;
}

.carousel-indicators li:focus {
    z-index: 2;
    outline-color: var(--candler-lake-blue);
}

.carousel-indicators li::after {
    content: initial;
}

.carousel-indicators li::before {
    content: none !important;
}

.carousel-control-prev,
.carousel-control-next {
    font-size: 2.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
}

.carousel-control-prev:focus span,
.carousel-control-next:focus span {
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-control-prev .fas,
.carousel-control-next .fas {
    color: #fff;
    background-color: #101820;
    border: 4px solid #101820;
    border-radius: 50%;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus {
    background: linear-gradient(to right, rgba(16, 24, 32, 0.5) 0%, rgba(16, 24, 32, 0) 100%);
}

.carousel-control-next:hover,
.carousel-control-next:focus {
    background: linear-gradient(to right, rgba(16, 24, 32, 0) 0%, rgba(16, 24, 32, 0.5) 100%);
}

.carousel-indicators.carousel-indicators-thumbs {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1.25rem;
    margin: 0 auto;
    color: #101820;
}

.carousel-indicators.carousel-indicators-thumbs li,
.carousel-indicators.carousel-indicators-thumbs li.active {
    width: 100px;
    height: 100px;
}

.carousel-indicators.carousel-indicators-thumbs li {
    margin: 3px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.75;
    box-shadow: none;
}

.carousel-indicators.carousel-indicators-thumbs li img {
    max-width: 100%;
    height: 100%;
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
    transition: all 0.3s ease;
    -o-object-fit: cover;
    object-fit: cover;
}

.carousel-indicators.carousel-indicators-thumbs li::after,
.carousel-indicators.carousel-indicators-thumbs li::before {
    content: none;
}

.carousel-indicators.carousel-indicators-thumbs li.active,
.carousel-indicators.carousel-indicators-thumbs li:hover {
    border-color: #00aeef;
    opacity: 1;
}

.carousel-indicators.carousel-indicators-thumbs li.active img,
.carousel-indicators.carousel-indicators-thumbs li:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.carousel.carousel-interior .carousel-item {
    border: 1px solid #e8e8e6;
}

.carousel.carousel-interior .carousel-indicators {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 10px 0.25rem 10px;
    margin: 0 auto !important;
    background-color: #fff;
    border: 1px solid #e8e8e6;
    border-top: 0;
}

.carousel.carousel-interior .carousel-indicators li {
    width: 1.5rem;
    height: 1.5rem;
    margin: 3px 6px 3px 0;
    background-color: #e8e8e6;
    border: 1px solid #d0d0ce;
    box-shadow: none;
}

.carousel.carousel-interior .carousel-indicators li:hover {
    background-color: #d9d9d6;
}

.carousel.carousel-interior .carousel-indicators li.active {
    background-color: var(--candler-lake-blue);
}

.carousel.carousel-interior .carousel-indicators li.active:hover {
    background-color: #08aeff;
}

.carousel.carousel-interior .carousel-indicators::before {
    margin-right: 10px;
    font-size: 0.75rem;
    color: #63666a;
    text-transform: uppercase;
    content: "More photos:";
    border-top: 1px solid #d0d0ce;
}

.carousel.carousel-interior .carousel-caption {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 100%;
    padding: 0.5rem 0.75rem 41px;
    font-size: 0.875rem;
    color: #101820;
    text-align: left;
    background-color: #fff;
}

.carousel.carousel-interior .carousel-caption p {
    margin-bottom: 0;
}

.carousel-indicators li,
.carousel-indicators li.active {
    position: relative;
    width: 18px;
    height: 18px;
    border-width: 0;
}

.carousel-indicators li {
    outline: 2px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, outline-color 0.15s ease-in-out;
}

.carousel-indicators li:focus {
    z-index: 2;
    outline-color: var(--candler-lake-blue);
}

.carousel-indicators-thumbs li,
.carousel-indicators-thumbs li.active {
    border-width: 2px;
}

.carousel-indicators:not(.carousel-indicators-thumbs) li:focus {
    outline-color: #fff;
}

.carousel-tablist-highlight {
    position: absolute;
    display: block;
    background-color: transparent;
}

.carousel-pause-button.focus,
.carousel-pause-play:focus {
    text-align: center;
    position: static !important;
    color: #593e00;
    background-color: #ffcd59;
    width: 100% !important;
}

.image-with-caption {
    margin: 2rem 0;
}

.card-link>a {
    height: 100%;
    border-bottom: none;
}

.card-link>a:hover .card-title {
    color: var(--candler-lake-blue);
}

.card-title {
    font-size: 1.5rem;
    line-height: 1.125;
    color: var(--emory-blue);
    margin-top: 0;
    word-break: break-word;
}

.section,
section {
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.section-lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
}



.color-card {
    border: 0;
}

.color-card .card-body {
    padding: 1rem 0 0 0;
}

.color-card .card-body .wysiwyg p,
.color-caption {
    font-size: .85rem;
    line-height: 1.4;
}

.color-card h3.card-title,
.color-card.card-title {
    font-family: 'Crimson Pro', serif;
    font-weight: 200;
    text-transform: none;
    letter-spacing: normal;
    margin: 1rem 0 .75rem 0;
    color: var(--emory-blue);
    font-size: 2.3rem
}

.persona-cards .card {
    height: calc(100% - 3.25rem);
}

.tone-example blockquote {
    font-style: italic;
    padding-left: 1.5rem;
    border-left: solid 3px var(--scepter-gold);
}

.anchor {
    display: block;
    padding-top: 75px;
    margin-top: -75px;
}

.card-linked {
    border: 0;
    background-color: transparent;
}

.card-body-linked {
    padding: 1.25rem 0;
}

span.article-author:after {
    content: ' - ';
}

/****************        media queries ***********************/
/* Styles  (max-width: 479px) */


@media (max-width: 575px) {
    .tone-slider {
        height: 23.8125rem;
        width: 19.25rem;
        max-width: 20rem;
    }

    .carousel-indicators.carousel-indicators-thumbs li,
    .carousel-indicators.carousel-indicators-thumbs li.active {
        width: 50px;
        height: 50px;
    }
}

/********* Styles  (min-width: 576px) *************/
@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    /* second chunk */
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    /* third chunk */
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }

    .m-sm-n1 {
        margin: -0.25rem !important;
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
    }

    .m-sm-n2 {
        margin: -0.5rem !important;
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
    }

    .m-sm-n3 {
        margin: -1rem !important;
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important;
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important;
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important;
    }

    .m-sm-n4 {
        margin: -1.5rem !important;
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }

    .m-sm-n5 {
        margin: -3rem !important;
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important;
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important;
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }

    /* fourth chunk */
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }

    /* fifth chunk */
    .card-deck {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .card-deck .card {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }

    /* sixth chunk */
    .card-group {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .card-group>.card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group>.card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group>.card:first-child .card-img-top,
    .card-group>.card:first-child .card-header {
        border-top-right-radius: 0;
    }

    .card-group>.card:first-child .card-img-bottom,
    .card-group>.card:first-child .card-footer {
        border-bottom-right-radius: 0;
    }

    .card-group>.card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group>.card:last-child .card-img-top,
    .card-group>.card:last-child .card-header {
        border-top-left-radius: 0;
    }

    .card-group>.card:last-child .card-img-bottom,
    .card-group>.card:last-child .card-footer {
        border-bottom-left-radius: 0;
    }

    .card-group>.card:only-child {
        border-radius: 0.25rem;
    }

    .card-group>.card:only-child .card-img-top,
    .card-group>.card:only-child .card-header {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }

    .card-group>.card:only-child .card-img-bottom,
    .card-group>.card:only-child .card-footer {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }

    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }

    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
        border-radius: 0;
    }

    /* seventh chunk */
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

    .card-columns .card {
        display: inline-block;
        width: 100%;
    }

    /* eighth chunk */
    .container {
        max-width: 540px;
    }

    /* ninth chunk */
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }

    /* tenth chunk */
    .jumbotron {
        padding: 4rem 2rem;
    }

    /* eleventh chunk */
    .list-cols {
        -webkit-column-gap: 2rem;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }

    .list-cols>li {
        -webkit-column-break-inside: avoid;
        -moz-column-break-inside: avoid;
        break-inside: avoid-column;
    }

    .list-cols.list-cols-2,
    .list-cols.list-cols-3,
    .list-cols.list-cols-4 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    /* twelfth chunk */
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }

    .modal-dialog-centered::before {
        height: calc(100vh - (1.75rem * 2));
    }

    .modal-sm {
        max-width: 300px;
    }

    /* thirteenth chunk */
    .page-title {
        background-image: url("../images/site-wide/title-bg-sm.jpg");
    }

    /* fourteenth chunk */
    .float-sm-right {
        float: right !important;
    }

    .float-sm-left {
        float: left !important;
    }

    /* fifteenth chunk */
    /*prez*/
    .hero-quote p {
        font-size: 1.75rem;
        line-height: 1.25;
        letter-spacing: .05rem;
        /*color: green;*/
    }

    .hero-quote p:last-of-type {
        padding-bottom: 1.25rem;
    }

    .hero-quote .h4 {
        font-size: 1.35rem;
        line-height: 1.5;
    }

    .hero-quote .h6 {
        font-size: 0.9rem;
        padding-bottom: .25rem;
    }
	 
}

/* after 576 to be default */
.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) and (max-width: 767px) {
    .card-deck {
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}

@media (max-width: 767px) {
    .sticky-top {
        position: static;
    }

    .btn {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .card,
    .card-group>.card,
    .card-deck>.card {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .card-deck,
    .card-group {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0;
        margin-left: 0;
    }

    .card-deck .card,
    .card-group .card {
        margin: 0 0 calc(30px / 2);
    }

    .card-deck>.card+.card,
    .card-group>.card+.card {
        border-left: 1px solid #d0d0ce;
    }
    .carousel-indicators {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        padding: 1rem;
    }

    .carousel-caption {
        background: #101820;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .carousel-indicators li {
        background-color: #012169;
    }

    .carousel-indicators li.active {
        background-color: var(--candler-lake-blue);
    }

    .carousel.carousel-interior .carousel-indicators li {
        width: 30px;
        height: 30px;
    }

    .carousel.carousel-interior .carousel-indicators::before {
        width: 100%;
        margin-right: 0;
    }

    .carousel.carousel-interior .carousel-caption {
        padding-bottom: 75px;
    }
}
@media (max-width: 767.99px) {
    .hero-title h1 {
        font-size: 2.0rem;
    }

    /*prez*/
    .hero-quote p {
        font-size: 1.45rem;
        line-height: 1.5;
        letter-spacing: .05rem;
        /*color: orange;*/
    }

    .hero-quote p:last-of-type {
        padding-bottom: 1.25rem;
    }

    .hero-quote .h4 {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .hero-quote .h6 {
        font-size: .9rem;
    }
    .tile__heading {
        letter-spacing: 0.025rem;
        font-size: 1.15rem;
    }
}

/****   Styles  (min-width: 768px) *******/
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    /*** second chunk   */
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    /* third chunk */
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-n1 {
        margin: -0.25rem !important;
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }

    .m-md-n2 {
        margin: -0.5rem !important;
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }

    .m-md-n3 {
        margin: -1rem !important;
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }

    .m-md-n4 {
        margin: -1.5rem !important;
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }

    .m-md-n5 {
        margin: -3rem !important;
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }

    /* fourth chunk */
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    /* fifth chunk */
    .container {
        max-width: 720px;
    }

    /* sixth chunk */
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }

    /* seventh chunk */
    .list-cols.list-cols-3,
    .list-cols.list-cols-4 {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }

    /* eighth chunk */
    p.home.lead {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    /* ninth chunk */
    h1 {
        line-height: 1.25;
    }

    /* tenth chunk */
    .right-pagination-button {
        text-align: right;
    }

    /* eleventh chunk */
    *[id]:before {
        display: block;
        height: 7rem;
        margin-top: -7rem;
        visibility: hidden;
        content: "";
    }

    /* twelfth chunk */
    .page-title {
        background-image: url("../images/site-wide/title-bg-md.jpg");
    }

    /* thirteenth chunk */
    .persona-intro {
        text-align: right;
    }

    /* fourteenth chunk */
    .card-features.home-features .card {
        -ms-flex-preferred-size: calc(50% - 30px);
        flex-basis: calc(50% - 30px);
        -ms-flex-positive: 0;
        flex-grow: 0;
        margin-bottom: 15px;
    }

    /* fifteenth chunk jen.css  */
    .carousel:not(.lightbox) .carousel-inner {
        background-color: #f2f2f0;
    }

    /* sixteenth chunk jen.css */
    .carousel-caption {
        padding: 2rem 1rem 3rem;
        background: rgba(16, 24, 32, 0.85);
    }

    /* seventeenth chunk overrides.css */
    /* No anchor offset as long as there's no sticky header */
    *[id]::before {
        display: none;
    }
    .info-box {
        min-height: 255px;
    }
    /*prez - newsfeed*/
    .card-header > h2.h4 {
        margin-top: 0;
    }
    .tile__heading {
        letter-spacing: 0.025rem;
        font-size: 1.15rem;
    }
    
}



@media (max-width: 915px) and (orientation:portrait) {
    .brand-narrative {
        column-count: 1 !important;
    }
}


@media (max-width: 991px) and (orientation:landscape) {
    

    .brand-narrative {
        column-count: 2 !important;
    }
}

@media (max-width: 991px) {
    .section-anchor-nav {
        display: block;
    }
}

@media (max-width: 991.99px) {
    .jumbotron {
        min-height: 35vh;
    }

    .hero-title h1 {
        font-size: 2.25rem;
    }

    .e-shield-icon {
        bottom: 0rem;
    }

    .brand-narrative {
        column-count: 1;
    }
    /* fixing ellipsis issue */
    blockquote.hero-quote > p {
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: break-word;
      -ms-hyphens: auto;
      -moz-hyphens: auto;
      -webkit-hyphens: auto;
      hyphens: auto;
      text-wrap:balance;
    }
}

/****   Styles  (min-width: 992px) *******/
@media (min-width: 992px) {
    body {
        padding-top: 100px;
    }

    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    /* second chunk */
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    /* third chunk */
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }

    .m-lg-n1 {
        margin: -0.25rem !important;
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
    }

    .m-lg-n2 {
        margin: -0.5rem !important;
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
    }

    .m-lg-n3 {
        margin: -1rem !important;
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important;
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important;
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important;
    }

    .m-lg-n4 {
        margin: -1.5rem !important;
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }

    .m-lg-n5 {
        margin: -3rem !important;
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important;
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important;
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }

    /* fourth chunk */
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    /* fourth chunk */
    .container {
        max-width: 960px;
    }

    /* fifth chunk */
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }

    /* sixth chunk */
    .list-cols.list-cols-4 {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }

    /* seventh chunk */
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }

    /* eighth chunk */
    p.home.lead {
        font-size: 1.5rem;
        line-height: 1.66;
        font-weight: 300;
    }

    /* ninth chunk */
    

    .jumbotron {
        min-height: 60vh;
    }

    /* tenth chunk */
    .page-title {
        background-image: url("../images/site-wide/title-bg-lg.jpg");
    }

    /* eleventh chunk jen.css */
    .card-two-col__right,
    .card-two-col__left {
        width: 50%;
    }

    /* twelfth chunk jen.css */
    .carousel.carousel-align-right .carousel-indicators,
    .carousel.carousel-align-right .carousel-caption {
        text-align: right;
        right: 0;
        left: auto;
    }

    .carousel.carousel-align-right .carousel-caption {
        top: auto;
        bottom: 0;
        width: 100%;
        max-width: 600px;
    }

    .carousel.carousel-align-right .carousel-indicators {
        bottom: 0;
        margin: 0 1rem 0;
    }

    .carousel.carousel-align-right .carousel-indicators li {
        border: 1px solid #101820;
    }
    .short-info-block .over-graphic {
        max-width: 60%;
    }
        /* fixing ellipsis issue to flow best on desktop */
    blockquote.hero-quote > p {
      text-wrap:auto;
    }

}

@media (min-width: 768px) and (max-width: 1199px) {
    .tone-words h3 {
        font-size: 2.0rem;
    }

    .tone-words h4 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992.98px) {

    .card-two-col__right,
    .card-two-col__left {
        width: 100%;
    }
}

/****   Styles  (max-width: 1199.99px)  *******/
@media (max-width: 1199.99px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }

    p.hero-content-text {
        max-width: 85%;
    }

    .image-with-caption>.img-responsive.img-fluid+div.caption {}

    .imported-block .caption {
        border: 0;
    }
    /* JUMBO */
    /* jumbo alignment for heading and image */
    /*.h3.heading-dogwood-white {*/
    /*    margin: 0 0 .75rem 0 !important;*/
    /*}*/
    /* Featured News */
    .card-body h3.h5 {
        margin: 0 !important;
    }
}

@media (max-width: 1200px) and (orientation:landscape) {
    p.hero-content-text {
        max-width: 80%;
    }
    .tile__heading {
        font-size:1.0rem;
    }
}

@media (max-width: 1180px) and (orientation:portrait) {
    .brand-narrative {
        column-count: 2;
    }

    /*prez*/
    .hero-quote p {
        font-size: 1.45rem;
        line-height: 1.5;
        letter-spacing: .05rem;
        /*color: pink;*/
    }

    .hero-quote p:last-of-type {
        padding-bottom: 1.25rem;
    }

    .hero-quote .h4 {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .hero-quote .h6 {
        font-size: .85rem;
        padding-bottom: .25rem;
    }
}

@media  (min-width: 992px) and (max-width: 1368px) {
    .hero-content.hero-content-primary, .hero-content-heading {
        max-width: 74vw;
    }
}

@media (max-width: 1368px) and (orientation:landscape) {
    p.hero-content-text {
        max-width: 80%;
    }
}

/****   Styles  (min-width: 1200px)  *******/
@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    /* second chunk */
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    /* third chunk */
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }

    .m-xl-n1 {
        margin: -0.25rem !important;
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }

    .m-xl-n2 {
        margin: -0.5rem !important;
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }

    .m-xl-n3 {
        margin: -1rem !important;
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }

    .m-xl-n4 {
        margin: -1.5rem !important;
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }

    .m-xl-n5 {
        margin: -3rem !important;
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }

    /* fourth chunk */
    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }

    /* fifth chunk */
    .container {
        max-width: 1140px;
    }

    /* sixth chunk */
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }

    /* seventh chunk */
    .modal-xl {
        max-width: 1140px;
    }

    /* eighth chunk */
    h1,
    .h1 {
        font-size: 4.5rem;
    }

    h2,
    .h2 {
        font-size: 3.5rem;
    }

    h3,
    .h3 {
        font-size: 2.3rem;
    }

    h4,
    .h4 {
        font-size: 2rem;
    }

    h5,
    .h5 {
        font-size: 1.75rem;
    }

    h6,
    .h6 {
        font-size: 1rem;
    }

    /* ninth chunk */


    /* tenth chunk */
    .page-title {
        background-image: url("../images/site-wide/title-bg-xl.jpg");
    }

    /* eleventh chunk */

    /*prez*/
    .hero-quote p {
        font-size: 2.5rem;
        line-height: 1.4;
        letter-spacing: .05rem;
        /*color: red;*/
    }

    .hero-quote p:last-of-type {
        padding-bottom: 1.25rem;
    }

    .hero-quote .h4 {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    .hero-quote .h6 {
        font-size: 1.125rem;
    }
    
    .imported-block > .anchor > .alert {
        margin: 3rem 0;
    }
    /* JUMBO */
    /* jumbo alignment for heading and image */
    .h3.heading-dogwood-white {
        margin: 0 0 .75rem 0 !important;
    }
    /*cards */
    h2.card-title {
        font-size: 2rem;
    }
    /* Featured News */
    .card-body h3.h5 {
        margin: 0 !important;
    }
    /* styles from ST3 for text that I think we should keep -LH*/
    p + h1,
    p + h2,
    p + h3,
    p + h4,
    p + h5,
    p + h6,
    ul + h1,
    ul + h2,
    ul + h3,
    ul + h4,
    ul + h5,
    ul + h6,
    ol + h1,
    ol + h2,
    ol + h3,
    ol + h4,
    ol + h5,
    ol + h6,
    dl + h1,
    dl + h2,
    dl + h3,
    dl + h4,
    dl + h5,
    dl + h6,
    blockquote + h1,
    blockquote + h2,
    blockquote + h3,
    blockquote + h4,
    blockquote + h5,
    blockquote + h6,
    table + h1,
    table + h2,
    table + h3,
    table + h4,
    table + h5,
    table + h6,
    a[name] + h1,
    a[name] + h2,
    a[name] + h3,
    a[name] + h4,
    a[name] + h5,
    a[name] + h6 {
      margin-top: 1em; 
    }
}


/****   Styles  @media print (s/b VERY LAST) *******/
@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    /* second chunk */
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    @page {
        size: a3;
    }

    body {
        min-width: 992px !important;
    }

    .container {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }

    .badge {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #dee2e6 !important;
    }

    .table-dark {
        color: inherit;
    }

    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody+tbody {
        border-color: #dee2e6;
    }

    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6;
    }

    #header>#siteHeader,
    header {
        display: none !important;
    }

    h1.hero-content-heading {
        color: black !important;
    }

    .no-hero-overlay-brand.bg-eagle-blue {
        background-color: white !important;
    }

    
}

/****   last gets precedence   *************/
.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

.social-button {
    display: inline-block;
    padding: 0.125rem;
    margin: 0.125rem;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--candler-lake-blue);
    background-color: transparent;
    border: 0;
    border-bottom: solid 2px transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, outline-color 0.15s ease-in-out;
}

.social-button:hover {
    color: #006fa6;
    cursor: pointer;
    border-bottom-color: var(--candler-lake-blue);
}

.social-button .fas,
.social-button .fab,
.social-button .far {
    color: inherit;
}

