/* CSS Document */
:root {
    /*----- Colors -----*/
    /*----- Base  -----*/
	--color-base:#747474; /* Base Font Color */
	--color-base-rgb:29,34,46;
	--color-white:#fefefe;
	--color-white-rgb:254,254,254;
	--color-black:#0a0a0a;
	--color-black-rgb:10,10,10;
    /*----- Primary  -----*/
	--color-primary:#215da7;
	/* --color-primary-rgb:221,108,13; */
	--color-primary-dark:#0a3168;
	/* --color-primary-dark-rgb:186,91,10; */
    /*----- Secondary  -----*/
	/* --color-secondary:#1c365c;
	--color-secondary-rgb:28,54,92;
	--color-secondary-dark:#142742;
	--color-secondary-dark-rgb:20,39,66; */
    /*----- Tertiary  -----*/
	/*--color-tertiary:;
	/*--color-tertiary-rgb:;
	--color-tertiary-dark:;
	--color-tertiary-dark-rgb:;*/
    /*----- Accents  -----*/
	/* --color-gray-accent:#f5f5f5;
	--color-gray-accent-rgb:245,245,245;
    --color-gray-accent-dark:#d0d5dd;
    --color-gray-accent-dark-rgb:208,213,221;
	--color-nav-accent01:#f5f5f5;
	--color-nav-accent01-rgb:245,245,245;
	--color-nav-accent02:#e8e8e8;
	--color-nav-accent02-rgb:232,232,232;
    --color-highlight:#fff3cd;
    --color-highlight-alt:#feeaea; */
}


body {
    color: #747474;
    line-height: normal;
}

a {
    color: #a63726;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

a:hover {
    color: #143967;
}

a.no-color {
    color: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Tahoma, TrebuchetMS, sans-serif;
}

h1 {
    font-size: 1.875rem;
    color: #215da7;
    font-weight: 700;
}

h2 {
    font-size: 1.5rem;
    color: #0a3168;
    margin-bottom: .5rem;
}

h3 {
    font-size: 1.125rem;
}

h4 {
    font-size: 1rem;
    font-weight: 700;
}

dd {
    margin-left: 1.25rem;
}

hr {
    border-color: #215da7;
}

.body {
    font-family: Tahoma, TrebuchetMS, sans-serif;
    margin: 0 auto 0 auto;
    background-color: #0a3168;
    background-image: url(../images/pageBG.jpg);
    background-repeat: repeat-x;
    background-position: top center;
}

.page {
    margin: 0 auto 0 auto;
    height: auto;
    margin-top: 18px;
}

.no-touch a[href^='tel:'],
.no-touchevents a[href^='tel:'] {
    pointer-events: none;
}

.row {
    width: 100%;
    max-width: 59.5625rem;
}

.row--wide {
    max-width: 90rem;
}

.start-small {
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.center-small {
    -ms-flex-pack: center;
    justify-content: center;
}

.end-small {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.top-small {
    -ms-flex-align: start;
    align-items: flex-start;
}

.middle-small {
    -ms-flex-align: center;
    align-items: center;
}

.bottom-small {
    -ms-flex-align: end;
    align-items: flex-end;
}

.around-small {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.between-small {
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.svg-icon-container {
    position: absolute;
    height: 0;
}

svg {
    height: 32px;
    width: 32px;
}

/* Utilities */

.o-hidden {
    overflow: hidden;
}

.o-visible {
    overflow: visible;
}

.bold {
    font-weight: bold;
}

.center {
    text-align: center;
}

.caps,
.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.disp--block {
    display: block;
}

.disp--iblock {
    display: inline-block;
}

.disp--inline {
    display: inline;
}

.disp--inherit {
    display: inherit;
}

.width--100 {
    width: 100%;
}

.divided span {
    display: block;
}

.text--left {
    text-align: left;
}

.text--right {
    text-align: right;
}

.text--center {
    text-align: center;
}

.text--justify {
    text-align: justify;
}

.font--primary {
    font-family: sans-serif;
}

.font--secondary {
    font-family: serif;
}

.color--primary {
    color: #215da7;
}

.color--secondary {
    color: #a63726;
}

.color--third {
    color: #ffde00;
}

.color--white {
    color: #ffffff;
}

.color--black {
    color: #0a0a0a;
}

.background--primary {
    background: #215da7;
}

.background--secondary {
    background: #a63726;
}

.background--third {
    background: #ffde00;
}

.background--white {
    color: #ffffff;
}

.background--black {
    color: #0a0a0a;
}

.flexible-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.flexible-container iframe,
.flexible-container object,
.flexible-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pad {
    padding: 0.5rem;
}

.pad--vert {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.pad--horiz {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.pad--top {
    padding-top: 0.5rem;
}

.pad--bottom {
    padding-bottom: 0.5rem;
}

.pad--left {
    padding-left: 0.5rem;
}

.pad--right {
    padding-right: 0.5rem;
}

.pad--2x {
    padding: 1rem;
}

.pad--2x--vert {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pad--2x--horiz {
    padding-left: 1rem;
    padding-right: 1rem;
}

.pad--2x--top {
    padding-top: 1rem;
}

.pad--2x--bottom {
    padding-bottom: 1rem;
}

.pad--2x--left {
    padding-left: 1rem;
}

.pad--2x--right {
    padding-right: 1rem;
}

.pad--3x {
    padding: 1.5rem;
}

.pad--3x--vert {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.pad--3x--horiz {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pad--3x--top {
    padding-top: 1.5rem;
}

.pad--3x--bottom {
    padding-bottom: 1.5rem;
}

.pad--3x--left {
    padding-left: 1.5rem;
}

.pad--3x--right {
    padding-right: 1.5rem;
}

.header {
    background: #ffffff;
    margin-top: 1.125rem;
}

.header__logo {
    max-height: 60px;
    margin: .5rem auto;
}

.header__search {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.header__search__title {
    text-transform: uppercase;
    color: #215da7;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .5rem;
    transition: all .2s ease-in-out;
    font-weight: normal;
}

.header__search input {
    margin: 0;
    border-radius: 0;
    -webkit-appearance: textfield;
    background-color: #ffffff;
    -webkit-rtl-ordering: logical;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: auto;
    height: 40px;
    border: 2px solid inset #747474;
    padding: 5px .5rem 1px;
    box-shadow: none;
}

.header__search input:focus {
    outline: none;
    border: 2px solid inset #747474;
    box-shadow: none;
}

.header__search button {
    color: #ffde00;
    margin: 0 .25rem 0 .75rem;
    font-size: 1.5rem;
    font-family: "Calibri", Georgia, serif;
}

.header__search__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #215da7;
    position: relative;
}

.header__search.active-field .header__search__title {
    font-size: .625rem;
    top: .5rem;
}

.body--interior {
    display: block;
}

.body--home {
    display: block;
}

.main--interior {
    display: block;
    font-size: .875rem;
}

.main--home {
    display: block;
}

.main__bg {
    background-color: #ffffff;
}

.content--interior {
    display: block;
    padding: .625rem;
}

.content--home {
    display: block;
}

.sidebar--home {
    position: relative;
}

.sidebar--home p+p {
    margin-top: 2.5rem;
}

.bg--footer {
    background-image: url(../images/footerBg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer p,
.footer a {
    color: #ffde00;
}

.footer p {
    font-size: .875rem;
}

.footer a {
    text-decoration: underline;
    display: inline;
}

.footer a:hover {
    color: #ffffff;
}

.footer__contact {
    padding: .5rem 0;
}

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

.btn {
    font-size: .875rem;
    font-weight: normal;
    margin: 1em 0;
    display: inline-block;
    padding: .25rem 1rem;
    background-color: #215da7;
    color: #ffde00;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px;
}

.btn:hover {
    background: #a63726;
    color: #ffde00;
}

.btn--secondary {
    background: #a63726;
}

.btn--secondary:hover {
    background: #7d291d;
}

.btn--third {
    background: #ffde00;
}

.btn--third:hover {
    background: #ccb200;
}

.btn--block {
    display: block;
}

.bread_crumbs.active {
    color: #143967;
}

.bread_crumbs.active:hover {
    color: #215da7;
}

.newsArticles a {
    color: #215da7;
}

.newsArticles a:hover {
    color: #143967;
}

.top-menu {
    background: linear-gradient(to bottom, #0c4fa8 0%, #0e54ad 8%, #1f75d0 35%, #2784df 51%, #227bd6 62%, #1460b9 84%, #0c50a9 100%);
    position: relative;
    z-index: 99;
    -ms-flex-direction: column;
    flex-direction: column;
}

.lbThumb {
    border-color: #215da7;
    cursor: pointer;
}

.lbThumb::after {
    content: 'View Larger Image';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 93, 167, 0.8);
    color: #ffffff;
    font-size: 1.5rem;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.lbThumb:hover::after {
    opacity: 1;
}

.slideshow {
    position: relative;
}

.slideshow__slide {
    background-color: #ffffff;
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    font-size: .75rem;
    color: #414141;
}

.slideshow__slide__content {
    width: 100%;
    padding: .5rem;
    height: 250px;
    background-image: url(../images/sm-slide--bg-swoop.png);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.slideshow__slide__content p {
    margin-top: .5rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.slideshow__slide__content p:last-child {
    margin: 0;
    text-align: center;
}

.slideshow__slide__content img {
    margin: 0 auto;
    max-height: 35px;
    width: auto;
}

.callout-block {
    margin-bottom: 1rem;
}

.callout-block__title {
    font-size: 1.125rem;
}

.callout-block__img {
    margin-bottom: 1rem;
}

.callout-block__list {
    margin-bottom: 0;
}

table tbody,
table tfoot,
table thead {
    border: none;
    background-color: transparent;
}

table tbody td,
table tbody th {
    padding: 1px;
}

table tbody tr:nth-child(even) {
    background-color: transparent;
}

.table-align--top,
.table-align--top * {
    vertical-align: top;
}

.table-align--middle,
.table-align--middle * {
    vertical-align: middle;
}

.table-align--bottom,
.table-align--bottom * {
    vertical-align: bottom;
}

table p {
    margin: .75rem 0;
}

.currentForm input[type=submit] {
    font-size: .875rem;
    font-weight: normal;
    margin: .5em 0;
    display: inline-block;
    padding: .25rem 1rem;
    background-color: #215da7;
    color: #ffde00;
    text-transform: uppercase;
    text-align: center;
    border: none;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.currentForm input[type=submit]:hover {
    background: #a63726;
    color: #ffde00;
}

.contact-form .formElements .row>ul>li,
.contact-form .formElements .formRow>ul>li {
    width: 100%;
}

.example {
    position: relative;
    margin: 1rem 0;
    padding: 2rem 0;
    border-top: 2px dotted silver;
    border-bottom: 2px dotted silver;
}

.example:before {
    content: 'example';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background-color: #215da7;
    color: #ffffff;
    padding: 3px;
}

@media only screen and (min-width: 40rem) {
    .start-medium {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .center-medium {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .end-medium {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .top-medium {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-medium {
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-medium {
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-medium {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-medium {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .width--100--med {
        width: 100%;
    }

    .divided span {
        display: inline-block;
    }

    .divided span:not(:last-child) {
        position: relative;
    }

    .divided span:not(:last-child)::after {
        content: '|';
        margin: 0 .25rem;
    }

    .pad {
        padding: 0.75rem;
    }

    .pad--vert {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .pad--horiz {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .pad--top {
        padding-top: 0.75rem;
    }

    .pad--bottom {
        padding-bottom: 0.75rem;
    }

    .pad--left {
        padding-left: 0.75rem;
    }

    .pad--right {
        padding-right: 0.75rem;
    }

    .pad--2x {
        padding: 1.5rem;
    }

    .pad--2x--vert {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .pad--2x--horiz {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .pad--2x--top {
        padding-top: 1.5rem;
    }

    .pad--2x--bottom {
        padding-bottom: 1.5rem;
    }

    .pad--2x--left {
        padding-left: 1.5rem;
    }

    .pad--2x--right {
        padding-right: 1.5rem;
    }

    .pad--3x {
        padding: 2.25rem;
    }

    .pad--3x--vert {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .pad--3x--horiz {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }

    .pad--3x--top {
        padding-top: 2.25rem;
    }

    .pad--3x--bottom {
        padding-bottom: 2.25rem;
    }

    .pad--3x--left {
        padding-left: 2.25rem;
    }

    .pad--3x--right {
        padding-right: 2.25rem;
    }

    .header {
        min-height: 89px;
        border-radius: 8px 8px 0 0;
    }

    .header__logo {
        border-radius: 8px 0 0;
        max-height: none;
        margin: 0;
    }

    .header__search__title {
        position: relative;
        top: auto;
        left: auto;
        transform: translateY(0);
        color: #ffde00;
        padding-right: .5rem;
        font-size: 1.25rem;
        line-height: normal;
    }

    .header__search input {
        height: auto;
        padding: 1px;
    }

    .header__search__container {
        padding: .25rem .5rem;
    }

    .header__search.active-field .header__search__title {
        font-size: 1.25rem;
        top: auto;
    }

    .content--interior {
        padding: 1.25rem;
    }

    .sidebar--home::before {
        content: '';
        display: block;
        position: absolute;
        width: 1px;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        background-color: #215da7;
    }

    .footer p {
        font-size: .75rem;
    }

    .footer__contact {
        padding: .25rem;
    }

    .slideshow__slide__content {
        max-width: 440px;
        background: none;
        padding: .75rem 1rem 0;
        height: 224px;
    }

    .slideshow__slide__content>* {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .slideshow__slide__content p:last-child {
        text-align: right;
    }

    .slideshow__slide__content img {
        margin: 0;
    }

    .callout-block__list li * {
        font-size: .75rem;
    }
}

@media only screen and (min-width: 64rem) {
    .start-large {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .center-large {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .end-large {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .top-large {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-large {
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-large {
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-large {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-large {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .width--100--lg {
        width: 100%;
    }

    .pad {
        padding: 1rem;
    }

    .pad--vert {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .pad--horiz {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pad--top {
        padding-top: 1rem;
    }

    .pad--bottom {
        padding-bottom: 1rem;
    }

    .pad--left {
        padding-left: 1rem;
    }

    .pad--right {
        padding-right: 1rem;
    }

    .pad--2x {
        padding: 2rem;
    }

    .pad--2x--vert {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .pad--2x--horiz {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .pad--2x--top {
        padding-top: 2rem;
    }

    .pad--2x--bottom {
        padding-bottom: 2rem;
    }

    .pad--2x--left {
        padding-left: 2rem;
    }

    .pad--2x--right {
        padding-right: 2rem;
    }

    .pad--3x {
        padding: 3rem;
    }

    .pad--3x--vert {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pad--3x--horiz {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .pad--3x--top {
        padding-top: 3rem;
    }

    .pad--3x--bottom {
        padding-bottom: 3rem;
    }

    .pad--3x--left {
        padding-left: 3rem;
    }

    .pad--3x--right {
        padding-right: 3rem;
    }

    .slideshow__slide__content img {
        max-height: 50px;
    }
}

@media only screen and (min-width: 75rem) {
    .xl {
        max-width: 100%;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .xl-1 {
        max-width: 8.333%;
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
    }

    .xl-2 {
        max-width: 16.667%;
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
    }

    .xl-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    }

    .xl-4 {
        max-width: 33.333%;
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
    }

    .xl-5 {
        max-width: 41.667%;
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
    }

    .xl-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }

    .xl-7 {
        max-width: 58.333%;
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
    }

    .xl-8 {
        max-width: 66.667%;
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
    }

    .xl-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    }

    .xl-10 {
        max-width: 83.333%;
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
    }

    .xl-11 {
        max-width: 91.667%;
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
    }

    .xl-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .xl-offset-1 {
        margin-left: 8.333%;
    }

    .xl-offset-2 {
        margin-left: 16.667%;
    }

    .xl-offset-3 {
        margin-left: 25%;
    }

    .xl-offset-4 {
        margin-left: 33.333%;
    }

    .xl-offset-5 {
        margin-left: 41.667%;
    }

    .xl-offset-6 {
        margin-left: 50%;
    }

    .xl-offset-7 {
        margin-left: 58.333%;
    }

    .xl-offset-8 {
        margin-left: 66.667%;
    }

    .xl-offset-9 {
        margin-left: 75%;
    }

    .xl-offset-10 {
        margin-left: 83.333%;
    }

    .xl-offset-11 {
        margin-left: 91.667%;
    }

    .start-xl {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .center-xl {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .end-xl {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .top-xl {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-xl {
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-xl {
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-xl {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-xl {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .first-xl {
        -ms-flex-order: -1;
        order: -1;
    }

    .last-xl {
        -ms-flex-order: 1;
        order: 1;
    }

    .xl-collapse .columns,
    .xl-collapse .column {
        padding-right: 0;
        padding-left: 0;
    }

    .xl-uncollapse .columns,
    .xl-uncollapse .column {
        padding-right: 0.625rem;
        padding-left: 0.625rem;
    }
}

@media only screen and (min-width: 90rem) {
    .xxl {
        max-width: 100%;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .xxl-1 {
        max-width: 8.333%;
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
    }

    .xxl-2 {
        max-width: 16.667%;
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
    }

    .xxl-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    }

    .xxl-4 {
        max-width: 33.333%;
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
    }

    .xxl-5 {
        max-width: 41.667%;
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
    }

    .xxl-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }

    .xxl-7 {
        max-width: 58.333%;
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
    }

    .xxl-8 {
        max-width: 66.667%;
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
    }

    .xxl-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    }

    .xxl-10 {
        max-width: 83.333%;
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
    }

    .xxl-11 {
        max-width: 91.667%;
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
    }

    .xxl-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .xxl-offset-1 {
        margin-left: 8.333%;
    }

    .xxl-offset-2 {
        margin-left: 16.667%;
    }

    .xxl-offset-3 {
        margin-left: 25%;
    }

    .xxl-offset-4 {
        margin-left: 33.333%;
    }

    .xxl-offset-5 {
        margin-left: 41.667%;
    }

    .xxl-offset-6 {
        margin-left: 50%;
    }

    .xxl-offset-7 {
        margin-left: 58.333%;
    }

    .xxl-offset-8 {
        margin-left: 66.667%;
    }

    .xxl-offset-9 {
        margin-left: 75%;
    }

    .xxl-offset-10 {
        margin-left: 83.333%;
    }

    .xxl-offset-11 {
        margin-left: 91.667%;
    }

    .start-xxl {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .center-xxl {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .end-xxl {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .top-xxl {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-xxl {
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-xxl {
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-xxl {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-xxl {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .first-xxl {
        -ms-flex-order: -1;
        order: -1;
    }

    .last-xxl {
        -ms-flex-order: 1;
        order: 1;
    }

    .xxl-collapse .columns,
    .xxl-collapse .column {
        padding-right: 0;
        padding-left: 0;
    }

    .xxl-uncollapse .columns,
    .xxl-uncollapse .column {
        padding-right: 0.625rem;
        padding-left: 0.625rem;
    }
}

/*---> Social List <---*/
.social-list {
    margin-left: 0;
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    justify-content: center;
}

@media all and (min-width: 1024px) {
    .social-list {
        justify-content: flex-end;
    }
}

.social-list__item {
    line-height: 1;
}

.social-list__item:not(:last-of-type) {
    margin-right: 2rem;
}

.social-list__item::before {
    display: none;
}

.social-link {
    display: inline-block;
}

.social-link:active {
    -webkit-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary-dark);
    -moz-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary-dark);
    box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary-dark);
}

.social-link:is(:focus, :focus-visible) {
    border: 0;
    outline: 0;
}

.social-link:is(:focus-visible) {
    -webkit-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary);
}

.social-link__icon {
    fill: var(--color-base);
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    width: auto;
    height: auto;
}

.social-link:is(:hover, :active) .social-link__icon {
    fill: var(--color-primary-dark);
}

/* Alternate Circle Social Links */
.social-list__item--has-round:not(:last-of-type) {
    margin-right: 0.625rem;
}

.social-link--is-round {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--color-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link--is-round:is(:hover, :active) {
    background-color: var(--color-primary-dark);
}

/* .social-link__icon--for-round {
    position: absolute;
    inset: 0;
    margin: auto;
} */

.social-link__icon--for-round,
.social-link--is-round:is(:hover, :active, :focus, :focus-visible) .social-link__icon--for-round {
    fill: var(--color-white);
}