:root {
    --light-blue: #00BBFF;
    --blue: #00AEEF;
    --dgray: #555555;
    --light: #F8F9FA;
    --red: #ED3E2D;
    --dark-red: #DB3829;
    --light-yellow: #FDD252;
    --yellow: #FDC010;
    --green: #84BF45;
    --light-green: #96D94F;
    --black: #000000;
    --white: #FFFFFF;

    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --clear: rgba(0, 0, 0, 0);
}

@font-face {
    font-family: "Carrick Groovy";
    src: url("/assets/fonts/CarrickGroovy.ttf") format("truetype");
}


/* GENERAL */

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.no-hover {
	color: inherit;
}

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

.no-bg-line {
    background-size: 0 0 !important;
}

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

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

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

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

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

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

.bg-chalk {
	background: url('/assets/img/backgrounds/Chalkboard-background.jpg') center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.bg-wood {
	background: url('/assets/img/backgrounds/backgroundv2.jpg') center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.wood-trim {
    background: url('/assets/img/backgrounds/backgroundv2.jpg') center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: .25rem;
}

.ripped-top {
	position: relative;
}

.ripped-top:after {
	content: "";
	position: absolute;
	top: -3rem;
	height: 3rem;
	width: 100%;
	left: 0;
	background: url(/assets/img/backgrounds/white-rip-top.svg) top;
	background-size: 100%;
	z-index: 2;
}

.ripped-bot {
	position: relative;
}

.ripped-bot:after {
	content: "";
	position: absolute;
	top: 100%;
	bottom: -3rem;
	height: 3rem;
	width: 100%;
	left: 0;
	background: url(/assets/img/backgrounds/white-rip-bottom.svg) bottom;
	background-size: 100%;
	z-index: 2;
}

@media (min-width: 768px) {
	.ripped-top {
		padding-top: .75rem;
	}

	.ripped-bot {
		padding-bottom: .75rem;
	}
}

@media (min-width: 992px) {
	.ripped-top {
		padding-top: 1.5rem;
	}

	.ripped-bot {
		padding-bottom: 1.5rem;
	}
}

@media (min-width: 1200px) {
	.ripped-top {
		padding-top: 3rem;
	}

	.ripped-bot {
		padding-bottom: 3rem;
	}
}

.img-banner {
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	color: var(--white) !important;
	text-align: center;
}

.img-banner .eyebrow {
	color: var(--white) !important;
}

.bg-banner {
    position: relative;
    overflow: hidden;
	padding: 8rem 0;
}

.bg-banner-lg {
    position: relative;
    overflow: hidden;
	padding: 12rem 0;
}

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

.bg-banner .container,
.bg-banner-lg .container {
    position: relative;
    z-index: 5;
}

.bg-banner h2,
.bg-banner-lg h2,
.bg-banner .h2,
.bg-banner-lg h2 {
    color: #FFF;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.divided-text:before,
.divided-text:after {
	background-color: var(--black);
}

.divided-text.white:before,
.divided-text.white:after {
	background-color: var(--white);
}

.divided-text.red:before,
.divided-text.red:after {
	background-color: var(--red);
}

.divided-text.yellow:before,
.divided-text.yellow:after {
	background-color: var(--yellow);
}

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

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

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

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

.divided-text-left:after {
	background-color: var(--black);
}

.divided-text-left.white:after {
	background-color: var(--white);
}

.divided-text-left.red:after {
	background-color: var(--red);
}

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

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


/* LAZY LOAD */

.lazyload {
	opacity: 0;
}

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

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


/* MARGIN/PADDING */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.col-xl-7ths {
		-ms-flex: 0 0 14.285714% !important;
		flex: 0 0 14.285714% !important;
		max-width: 0 0 14.285714% !important;
	}
}

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

	.col-lg-7ths {
		-ms-flex: 0 0 14.285714% !important;
		flex: 0 0 14.285714% !important;
		max-width: 0 0 14.285714% !important;
	}
}

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

	.col-md-7ths {
		-ms-flex: 0 0 14.285714% !important;
		flex: 0 0 14.285714% !important;
		max-width: 0 0 14.285714% !important;
	}
}

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

	.col-sm-7ths {
		-ms-flex: 0 0 14.285714% !important;
		flex: 0 0 14.285714% !important;
		max-width: 0 0 14.285714% !important;
	}
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

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

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

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

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

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

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

.bg-black {
	background-color: var(--black) !important;
}

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

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

.border-y-blue {
	border-top: 4px solid var(--blue);
	border-bottom: 4px solid var(--blue);
}

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

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

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

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

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

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

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

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

.bg-clear {
	background: var(--clear) !important;
}

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

.border-white-2 {
	border: 2px solid var(--white);
}

hr {
	margin: 1.5rem 0;
	border-top: 1px dotted var(--black);
}

hr.white {
	border-top: 1px dotted var(--white);
}

hr.white-2 {
	border-top: 2px dotted var(--white);
}

hr.black {
	border-top: 1px dotted var(--black);
}

hr.black-2 {
	border-top: 2px dotted var(--black);
}

hr.red {
	border-top: 1px dotted var(--red);
}

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

hr.gray-300 {
	border-top: 1px dotted #DEE2E6;
}

hr.dotted {
	border-top: 2px dotted var(--black);
}

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

@-moz-keyframes growDown {
	0% {
		transform: scaleY(0);
	}

	100% {
		transform: scaleY(1);
	}
}

@-webkit-keyframes growDown {
	0% {
		transform: scaleY(0);
	}

	100% {
		transform: scaleY(1);
	}
}

@-o-keyframes growDown {
	0% {
		transform: scaleY(0);
	}

	100% {
		transform: scaleY(1);
	}
}

@keyframes growDown {
	0% {
		transform: scaleY(0);
	}

	100% {
		transform: scaleY(1);
	}
}


/* TYPOGRAPHY

font-family: 'Carrick Groovy', sans-serif;

font-family: 'Fjalla One',
sans-serif;

font-family: 'Roboto Condensed',
sans-serif;

*/

.font-carrick-groovy {
	font-family: 'Carrick Groovy', sans-serif !important;
}

.font-fjalla-one {
	font-family: 'Fjalla One', sans-serif !important;
}

.font-roboto-condensed {
	font-family: 'Roboto Condensed', sans-serif !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
    font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
    color: var(--black);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
.display-1,
.display-2,
.display-3,
.display-4 {
	font-family: 'Carrick Groovy', sans-serif;
    letter-spacing: .5px;
	color: var(--black);
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Fjalla One', sans-serif;
    color: var(--black);
}

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

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

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

small {
	font-weight: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eyebrow {
	font-size: 12px;
    font-family: 'Fjalla One', sans-serif;
	text-transform: uppercase;
    letter-spacing: 1px;
	margin-bottom: .25rem;
    color: var(--black);
}

#main-content a:not(.btn) {
	word-wrap: break-word;
	color: var(--black);
	transition: all .3s ease;
}

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

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

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

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

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

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

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

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

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

/* #main-content ul,
#main-content ol {
	line-height: 1.35;
} */

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

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

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

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

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

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

ul {
	list-style-type: square;
}

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

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

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

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

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

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

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

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

.favicon {
	width: 60px;
}

.favicon-icon {
	width: 10px;
}


/* BUTTONS */

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

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

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

.btn {
	font-weight: 700;
	border-radius: 0;
	transition: all .3s ease;
}

.btn-reg {
	text-transform: uppercase;
	font-size: 14px;
	padding: .75rem 1.5rem;
}

.btn-reg:focus {
    box-shadow: none !important;
    outline: -webkit-focus-ring-color auto 1px !important;
}

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

.btn-red {
	border: 2px solid var(--red);
	background-color: var(--red);
	color: var(--white);
}

.btn-red:hover,
.btn-red:focus,
.btn-red:target,
.btn-red:active {
	border: 2px solid var(--dark-red);
	background-color: var(--dark-red);
	color: var(--white);
	outline: 0;
}

.btn-red.active {
	background-color: transparent;
	color: var(--dark-red);
	border: 2px solid var(--dark-red);
	text-decoration: underline;
}

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

.btn-outline-red {
	color: var(--red);
	border: 2px solid var(--red);
	background-color: transparent;
}

.btn-outline-red:hover {
	background-color: var(--red);
	color: var(--white) !important;
	border: 2px solid var(--red);
}

.btn-outline-red.focus,
.btn-outline-red:focus,
.btn-outline-red:target,
.btn-outline-red:active {
	background-color: var(--red);
	color: var(--white) !important;
	border: 2px solid var(--red);
}

.btn-blue {
	border: 2px solid var(--blue);
	background-color: var(--blue);
	color: var(--black);
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:target,
.btn-blue:active {
	border: 2px solid var(--light-blue);
	background-color: var(--light-blue);
	color: var(--black);
	outline: 0;
}

.btn-green {
	border: 2px solid var(--green);
	background-color: var(--green);
	color: var(--black);
}

.btn-green:hover,
.btn-green:focus,
.btn-green:target,
.btn-green:active {
	border: 2px solid var(--light-green);
	background-color: var(--light-green);
	color: var(--black);
	outline: 0;
}

.btn-yellow {
	border: 2px solid var(--yellow);
	background-color: var(--yellow);
	color: var(--black);
}

.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:target,
.btn-yellow:active {
	border: 2px solid var(--light-yellow);
	background-color: var(--light-yellow);
	color: var(--black);
	outline: 0;
}

.btn-black {
	border: 2px solid var(--black);
	background-color: var(--black);
	color: var(--white);
}

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

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

.btn-outline-black {
	color: var(--black);
	border: 2px solid var(--black);
	background-color: transparent;
}

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

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

.btn-white {
	border: 2px solid var(--white);
	background-color: var(--white);
	color: var(--red);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:target,
.btn-white:active {
	border: 2px solid var(--white);
	background-color: var(--white);
	color: var(--dark-red);
	outline: 0;
    opacity: .9;
}

.btn-white.active {
	background-color: transparent;
	color: var(--red);
	border: 2px solid var(--red);
	text-decoration: underline;
}

.btn-outline-white {
	color: var(--white);
	border: 2px solid var(--white);
	background-color: transparent;
}

.btn-outline-white:hover {
	background-color: var(--white);
	color: var(--red) !important;
	border: 2px solid var(--white);
}

.btn-outline-white.focus,
.btn-outline-white:focus,
.btn-outline-white:target,
.btn-outline-white:active {
	background-color: var(--white);
	color: var(--red) !important;
	border: 2px solid var(--white);
}


/* CALENDAR */

.fc-view-harness {
	background-color: var(--white);
}

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

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

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

.fc-button-primary {
	font-size: 14px !important;
	background-color: var(--black) !important;
	color: var(--white) !important;
	border-radius: 0 !important;
}

.fc-button-primary:hover,
.fc-button-primary:focus,
.fc-button-primary:target,
.fc-button-primary:active {
	background-color: var(--black) !important;
	color: var(--white) !important;
	opacity: .85 !important;
}


/* EVENT NAV */

#location_bar {
	padding: 5px 0;
	background: var(--black);
	background: url('/assets/img/backgrounds/Chalkboard-background.jpg') center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	color: var(--white);
}

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

#location_bar a {
	color: var(--white) !important;
}

#location_bar a i,
#location_bar a svg {
	color: var(--yellow) !important;
}

/* .days,
.hours,
.minutes,
.seconds {
	font-family: SFMono-Regular Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
} */

#mobile-social-bar {
	text-align: center;
	padding-bottom: 15px;
	display: block;
}

#mobile-social-bar hr {
	margin: 0 0 15px 0;
}

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


/* NAVIGATION */

@media (min-width: 1200px) {
	.nav-offset {
		margin-top: -80px;
	}

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

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

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

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

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

.navbar-nav .nav-item .nav-link {
	font-size: 16px;
	font-family: 'Carrick Groovy', sans-serif;
    letter-spacing: .5px;
	color: var(--white);
	position: relative;
	transition: all .3s ease;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
	color: var(--white);
	text-decoration: underline;
}

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

.dropdown-menu {
	margin: 0;
	padding: 15px;
	border-radius: 0;
	background-color: var(--white);
	border: 0;
	border-top: 4px solid var(--red);
	background-clip: border-box;
}

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

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

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

.dropdown-item {
	font-weight: 400;
	font-size: 14px;
	color: var(--black);
	padding: .5rem .75rem;
	border-radius: 0;
	white-space: normal;
	transition: all .3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:target,
.dropdown-item:active,
.dropdown-item.active {
	color: var(--red);
	background-color: var(--white);
}

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

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

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

#search-close {
	color: var(--red) !important;
}

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

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

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

	.navbar {
		background: linear-gradient(rgba(0, 0, 0, .54), rgba(0, 0, 0, 0));
	}

	.navbar-brand img {
		width: 191px;
		height: 60px;
		max-width: 100%;
		-webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .54));
		filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .54));
		transition: all .3s ease;
	}

	.navbar-scrolled .navbar-brand img {
		-webkit-filter: none;
		filter: none;
		transition: all .3s ease;
	}

	.navbar-expand-xl .navbar-nav .nav-link {
		padding: .5rem .75rem;
		text-shadow: 0px 0px 10px rgba(0, 0, 0, .54);
	}

	.navbar-scrolled.navbar-expand-xl .navbar-nav .nav-link {
		color: var(--black);
		text-shadow: none;
	}

	.navbar-scrolled.navbar-expand-xl .navbar-nav .nav-link:hover,
	.navbar-scrolled.navbar-expand-xl .navbar-nav .nav-link:focus {
		color: var(--red);
		opacity: 1;
	}

	.navbar-expand-xl .navbar-nav .nav-link .icon {
		-webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .25));
		filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .54));
	}

	.navbar-scrolled.navbar-expand-xl .navbar-nav .nav-link .icon {
		-webkit-filter: none;
		filter: none;
	}

	.dropdown.show .nav-link {
		color: var(--white);
		text-decoration: underline;
	}

	.navbar-scrolled .dropdown.show .nav-link {
		color: var(--red);
		text-decoration: underline;
	}

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

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

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

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

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

	.dropdown:last-of-type > .dropdown-menu:before {
		left: auto !important;
		right: 20px !important;
	}

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

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

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

	.dropdown.show .dropdown-menu:before {
		position: absolute;
		left: 20px;
		top: -24px;
		width: 0;
		height: 0;
		content: '';
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-bottom: 24px solid var(--red);
		z-index: 1;
	}

	.dropdown-menu:after {
		content: "";
		position: absolute;
		top: 100%;
		bottom: 0;
		height: 15px;
		width: 100%;
		left: 0;
		background: url(/assets/img/backgrounds/white-rip-bottom.svg) bottom;
		background-size: 100%;
		z-index: 2;
	}

	.nav-link-active a.nav-link,
	.nav-link.active a.nav-link {
		color: var(--white) !important;
		text-decoration: underline !important;
	}

	.navbar-scrolled .nav-link-active a.nav-link,
	.navbar-scrolled .nav-link.active a.nav-link {
		color: var(--red) !important;
		text-decoration: underline !important;
	}
}

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

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

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

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

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

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

	.brand-color {
		display: none !important;
	}

	.brand-white {
		display: none !important;
	}

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

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

	.navbar-nav .nav-item .nav-link {
		color: var(--black);
	}

	.navbar-nav .nav-item .nav-link:hover,
	.navbar-nav .nav-item .nav-link:focus,
	.navbar-nav .nav-item .nav-link:target,
	.navbar-nav .nav-item .nav-link:active {
		color: var(--red);
	}

	.dropdown.show .nav-link {
		color: var(--red);
		text-decoration: underline;
	}

	.navbar-nav .nav-item .nav-link {
		border-top: 1px dotted var(--black);
	}

	.navbar-nav .nav-item:first-of-type .nav-link {
		border-top: 0;
	}

	.navbar-nav .nav-item .nav-link {
		padding: 12px 30px 12px 0;
	}

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

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

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

	.nav-link-active a.nav-link,
	.nav-link.active a.nav-link {
		color: var(--red) !important;
		text-decoration: underline !important;
	}
}

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


/* MOBILE MENU */

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

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

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

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

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

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

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

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

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

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

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

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


/* HERO */

.hero-text,
.video-text {
	color: var(--white);
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 5;
	text-align: center;
}

.hero-text h1,
.hero-text h2,
.video-text h1,
.video-text h2 {
	color: var(--white);
}

.hero-text .eyebrow,
.video-text .eyebrow {
	margin-bottom: .75rem;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .54);
}

.hero-text .favicon,
.video-text .favicon {
	margin-bottom: 1rem;
}

.hero-text h2,
.video-text h2 {
	color: var(--white);
	margin-bottom: .5rem;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .27);
}

.hero-text p.desc,
.video-text p.desc {
	color: var(--white);
	font-size: 1.25rem;
	margin-bottom: 0;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .54);
}

.hero-text a,
.video-text a {
	display: inline-block;
	/* text-shadow: 0px 0px 10px rgba(0,0,0,.5); */
}

.bg-hero {
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	height: 85vh;
	/* height: calc(100vh - 31px); */
	max-height: 1080px;
	min-height: 540px;
}

@media (max-width: 1199.98px) {
	.bg-hero {
		height: calc(95vh - 70px);
		max-height: 810px;
	}

	.hero-text p.desc,
	.video-text p.desc {
		font-size: 1.2rem;
	}
}

@media (max-width: 991.98px) {
	.bg-hero {
		height: calc(90vh - 70px);
	}

	.hero-text h2,
	.video-text h2 {
		margin-bottom: .75rem;
	}

	.hero-text p.desc,
	.video-text p.desc {
		font-size: 1.15rem;
	}
}

@media (max-width: 767.98px) {
	.bg-hero {
		height: calc(85vh - 70px);
	}

	.hero-text p.desc,
	.video-text p.desc {
		font-size: 1.1rem;
	}
}

@media (max-width: 575.98px) {
	.bg-hero {
		height: calc(85vh - 70px);
	}

	.hero-text p.desc,
	.video-text p.desc {
		font-size: 1.05rem;
	}
}

#fullwidth-video {
	overflow: hidden !important;
	position: relative;
}

.hero-mobile {
	overflow: hidden;
}

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

@media (min-width: 1200px) {
	#fullwidth-video {
		height: 100vh;
		/* height: calc(100vh - 31px); */
		max-height: 1080px;
		min-height: 540px;
	}

	.video-hero {
		display: none;
	}
}

@media (max-width: 1199.98px) {
	#fullwidth-video {
		height: auto;
	}

	.fullwidth-video-bg {
		display: none;
	}

	.video-hero {
		position: relative;
		z-index: -2;
	}
}

#fullwidth-video .fullwidth-video-bg {
	position: absolute;
	z-index: -2;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	overflow: hidden;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 0% 50%;
}

#fullwidth-video video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}

#fullwidth-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}

.video-pp-btn {
	color: var(--white);
	align-self: center;
	bottom: 15px;
	position: absolute;
	text-align: center;
	left: auto;
	right: 15px;
	border: 0;
	background-color: transparent;
	z-index: 2;
	-webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, .25));
	filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, .25));
}

@media (max-width: 1199.98px) {
	.video-pp-btn-center,
	.video-pp-btn {
		display: none;
	}

	.hero-scroller {
		left: 15px !important;
		right: 15px !important;
		text-align: center;
	}
}

.carousel-indicators {
	position: absolute;
	display: block;
	justify-content: center;
	align-items: center;
	top: auto;
	right: auto;
	bottom: 15px;
	left: 15px;
	margin-right: auto;
	margin-left: 0;
	text-align: left;
}

.carousel-indicators button.indicator {
	background-color: rgba(255, 255, 255, .5);
	border: 1px solid rgba(255, 255, 255, .5);
	width: 12px;
	height: 12px;
	margin-left: 5px;
	margin-right: 5px;
	opacity: 1;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .15);
}

.carousel-indicators button.indicator.active {
	background-color: var(--white)F;
	border: 1px solid var(--white);
	opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 35px;
	opacity: 1;
}

@media (max-width: 767.98px) {
	#hero .carousel-control-prev,
	#hero .carousel-control-next {
		display: none;
	}
}

.hero-top-places-to-work {
	position: absolute;
	z-index: 2;
	bottom: 0px;
	left: 0px;
	right: auto;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
	transition: all .3s ease;
	animation-delay: 3.5s;
}

.hero-top-places-to-work img {
	width: 75px;
}

.hero-scroller {
	color: var(--white);
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: auto;
	margin: 0;
	text-align: center;
	opacity: 1 !important;
	z-index: 2;
	transition: all .3s ease;
}

.hero-scroller a {
	font-size: 14px;
	color: var(--white);
	width: 15px;
	height: 15px;
	margin: 2px 5px 0 0;
	padding: 0;
	border: 0;
	background-color: transparent;
	line-height: 1;
	overflow: visible;
	background-size: 0 0 !important;
}

/* @media (max-width: 1199.98px) {
.hero-scroller {
	display: none;
}
} */

.carousel-inner>.carousel-item>.bg-hero {
	margin: auto;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animation: kenburns 2000ms ease-out 0s infinite;
	animation: kenburns 2000ms ease-out 0s;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

@-webkit-keyframes kenburns {
	0% {
		-webkit-transform: scale(1.1);
		-webkit-transition: -webkit-transform 2000ms ease-out 0s;
	}

	100% {
		-webkit-transform: scale(1);
		-webkit-transition: -webkit-transform 2000ms ease-out 0s;
	}
}

@-moz-keyframes kenburns {
	0% {
		-moz-transform: scale(1.1);
		-moz-transition: -moz-transform 2000ms ease-out 0s;
	}

	100% {
		-moz-transform: scale(1);
		-moz-transition: -moz-transform 2000ms ease-out 0s;
	}
}

@-ms-keyframes kenburns {
	0% {
		-ms-transform: scale(1.1);
		-ms-transition: -ms-transform 2000ms ease-out 0s;
	}

	100% {
		-ms-transform: scale(1);
		-ms-transition: -ms-transform 2000ms ease-out 0s;
	}
}

@-o-keyframes kenburns {
	0% {
		-o-transform: scale(1.1);
		-o-transition: -o-transform 2000ms ease-out 0s;
	}

	100% {
		-o-transform: scale(1);
		-o-transition: -o-transform 2000ms ease-out 0s;
	}
}

@keyframes kenburns {
	0% {
		transform: scale(1.1);
		transition: transform 2000ms ease-out 0s;
	}

	100% {
		transform: scale(1);
		transition: transform 2000ms ease-out 0s;
	}
}

.hero-pp-container {
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 5;
}

.hero-pp-btn {
	font-size: 14px;
	color: var(--white);
	width: 15px;
	height: 15px;
	margin: 2px 5px 0 5px;
	padding: 0;
	border: 0;
	background-color: transparent;
	line-height: 1;
	overflow: visible;
}


/* CIRCLE LINK */

.circle-link a {
    font-family: 'Carrick Groovy', sans-serif;
    letter-spacing: .5px;
    color: var(--black) !important;
    font-size: 16px;
    line-height: 1.25;
    /* background-size: 0 0 !important; */
    transition: all .3s ease;
}

.circle-link a:hover,
.circle-link a:focus,
.circle-link a:target,
.circle-link a:active {
    color: var(--red) !important;
}

.circle-link .wood-trim {
    border-radius: 100%;
    margin-bottom: .25rem;
}

.circle-link img {
    border-radius: 100%;
    display: block;
    margin: 0 auto;
    transition: all .3s ease;
}

.circle-link a {
    display: inline;
    padding-bottom: .125rem;
}

.circle-link .fa-external-link,
.circle-link .fa-external-link-alt {
    font-size: 10px;
    vertical-align: top;
    margin-top: 4px;
    margin-left: 3px;
}


/* MENU */

.menu-link {
	font-family: 'Carrick Groovy', sans-serif;
	text-transform: uppercase;
	color: var(--black) !important;
	font-size: 16px;
	line-height: 1.25;
	/* background-size: 0 0 !important; */
	transition: all .3s ease;
}

.menu-link:hover,
.menu-link:focus,
.menu-link:target,
.menu-link:active {
	color: var(--red) !important;
}

.menu-link .wood-trim {
    background: url('/assets/img/backgrounds/backgroundv2.jpg') center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: .25rem;
    border-radius: 100%;
}

.menu-link img {
    border-radius: 100%;
	display: block;
	margin: 0 auto;
	transition: all .3s ease;
}

.menu-link span {
	display: inline-block;
	margin-top: .5rem;
}

.menu-link .fa-external-link-alt {
	font-size: 10px;
	vertical-align: top;
	margin-top: 3px;
	margin-left: 3px;
}

.menu-card {
    height: 100%;
    border: 1px solid #DEE2E6 !important;
    /* background: url('/assets/img/backgrounds/backgroundv2.jpg') center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: .25rem; */
}

.menu-card .card-body {
    background-color: var(--white);
}

.menu-card .card-footer {
    background-color: var(--white);
    border: 0;
    margin: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.menu-card hr {
    margin: 15px 0;
}

.menu-card-pricing {
    font-size: 16px;
    font-family: 'Fjalla One', sans-serif;
    /* font-family: 'Carrick Groovy', sans-serif; */
    float: right;
    margin-left: .5rem;
}

.menu-card-heading {
    font-size: 1.25rem;
    font-family: 'Fjalla One', sans-serif;
    /* font-family: 'Carrick Groovy', sans-serif; */
    /* text-transform: uppercase; */
    color: var(--black);
    margin-bottom: .25rem;
}

.menu-card-heading i,
.menu-card-heading svg {
    color: var(--red);
}

/* .menu-card-desc {
    font-size: 16px;
} */

.menu-card-details {
    font-size: 14px;
}

ul.menu-card-list {
    font-family: 'Fjalla One', sans-serif;
    /* font-family: 'Carrick Groovy', sans-serif; */
    text-transform: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul.menu-card-list li span {
    float: right;
    margin-left: 1rem;
}

ul.menu-card-list li small {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: none;
}

.menu-card .btn {
    position: relative;
    z-index: 2;
}

ul.how-to-list {
    list-style-type: none;
    margin: 0 0 -.25rem 0;
    padding: 0;
    /* font-size: 14px; */
}

ul.how-to-list li {
    padding: .25rem 0;
}

ul.how-to-list li span {
    font-family: 'Carrick Groovy', sans-serif;
    text-transform: uppercase;
}


/* ICONS */

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

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

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

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

.fa-stack .fa-stack-1x {
	color: var(--white);
}

.fa-stack .fa-stack-1x.text-red {
	color: var(--red);
}

.fa-stack .fa-stack-1x.text-black {
	color: var(--black);
}


/* AWARDS */

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

.icon-counter {
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	background-color: var(--red);
	color: var(--white);
	padding: 5px;
	border-radius: 0;
	font-size: 12px;
	font-family: monospace;
	line-height: 1;
}


/* CARDS */

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

.card-header:first-child {
	border-radius: 0;
	background: var(--black);
	color: var(--white);
}

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

.card.bg-chalk {
    color: var(--white);
}

.card.bg-chalk .h4 {
    color: var(--white) !important;
}

.card.bg-chalk a {
    color: var(--white) !important;
	text-decoration-color: var(--white) !important;
}

.card.bg-chalk a:not(.btn) {
	background-image: linear-gradient(#fff, #fff) !important; 
}

.card.bg-chalk hr {
    border-top: 1px dotted var(--white);
}

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

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

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

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

.card-link {
	color: inherit;
}

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

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

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

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

.card-link:hover p,
.card-link:focus p {
	color: var(--grey);
	transition: all .3s ease;
}

.card-link:hover ol,
.card-link:focus ol {
	color: var(--grey);
	transition: all .3s ease;
}

.card-link:hover ul,
.card-link:focus ul {
	color: var(--grey);
	transition: all .3s ease;
}

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

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

.card-img-overlay p {
	color: var(--white);
	position: absolute;
	top: 50%;
	left: 15px;
	right: 15px;
	transform: translateY(-50%);
	font-weight: 700;
	margin: 0 auto;
	text-shadow: 0px 2px 5px rgba(0, 52, 93, .25);
}

@media (min-width: 768px) {
    .quote-card .card-body {
        padding: 3rem;
    }
}

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

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

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

.card-zoom {
	border-radius: .25rem;
	background-image: none !important;
}

.card-zoom .card {
	border: 2px solid var(--white);
}

.card-zoom:hover .card,
.card-zoom:focus .card,
.card-zoom:target .card,
.card-zoom:active .card {
	border: 2px solid var(--red);
}

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

.card-zoom.zoom-overlay:hover .card-img-overlay,
.card-zoom.zoom-overlay:focus .card-img-overlay,
.card-zoom.zoom-overlay:target .card-img-overlay,
.card-zoom.zoom-overlay:active .card-img-overlay {
	background: linear-gradient(rgba(3, 65, 107, .75), rgba(3, 65, 107, .75));
}

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

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

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

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


/* IMAGE BOXES */

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

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

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

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

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

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

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

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


/* BREADCRUMBS */

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

.breadcrumb-item.active {
	color: var(--black);
}

.breadcrumb-item.active {
	color: var(--black);
}

.breadcrumb.white .breadcrumb-item a {
	color: var(--white) !important;
}

.breadcrumb.white .breadcrumb-item.active {
	color: var(--white) !important;
	opacity: .75;
}


/* SUB PAGE */

#subnav-section {
	background-color: var(--white);
	top: 0;
	border-bottom: 1px solid #DEE2E6;
	position: -webkit-sticky;
	position: sticky;
	z-index: 999;
	/* box-shadow: 0px 0px 30px rgba(0, 0, 0, .1); */
}

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

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

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

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

#subnav-container .expand-btn {
	color: var(--black) !important;
	background-color: var(--white) !important;
	box-shadow: none !important;
	border: 0;
	border-radius: 0;
	padding-left: 15px !important;
	padding-right: 15px !important;
}

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

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

#subnav {
	justify-content: center;
}

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

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

#submenu li a {
	padding: .25rem .375rem;
	color: var(--black) !important;
	font-weight: 500 !important;
}

#submenu li a .fa-external-link {
	font-size: 8px !important;
	vertical-align: top;
	margin-top: 4px;
	margin-left: 3px;
}

#submenu li a:hover,
#submenu li a:focus {
	color: var(--red) !important;
	text-decoration: underline;
}

#submenu li a.active {
	color: var(--red) !important;
	text-decoration: none !important;
}

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

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

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

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

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

.subpage-banner {
	position: relative;
    z-index: 1;
	background-color: var(--black);
	color: var(--white);
	overflow: hidden;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
}

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

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

.subpage-banner-text {
	color: var(--white) !important;
	text-align: center;
	position: relative;
	z-index: 3;
	padding-top: calc(6rem + 60px);
	padding-bottom: 9rem;
}

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

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

.subpage-banner-text h1,
.subpage-banner-text h2 {
	color: var(--white) !important;
	margin-bottom: 0;
	text-shadow: 0px 0px 10px rgba(0,0,0,.27);
}

.subpage-banner-text p {
    /* font-style: italic; */
    color: var(--white) !important;
	font-size: 1.25rem;
	margin-top: .5rem;
	margin-bottom: 0;
    text-shadow: 0px 0px 10px rgba(0,0,0,.54);
}

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

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

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

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

.subpage-banner-text form {
    align-items: center;
    margin: 1.5rem auto 0 auto;
    width: 75%;
}

.subpage-banner-text form .row {
    align-items: center;
}

.subpage-banner-text .btn-row {
    margin-top: .5rem;
    justify-content: center;
}

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

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

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

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

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

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

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

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

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

.subpage-banner.no-image {
    background: url('/assets/img/backgrounds/Chalkboard-background.jpg') center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

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

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

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

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

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

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

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

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

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

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

	.subpage-split-section .img-col {
		border-left: 2px dotted var(--white);
	}
}

.subpage-split-section {
	background-color: var(--black);
	color: var(--white);
}

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

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

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

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

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

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

	.subpage-split-section .img-col {
		border-bottom: 2px dotted var(--white);
	}
}

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

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

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

.inset-border.white::before {
	border: 2px dotted var(--white);
}


/* SIDEBAR */

#sidebar {
	top: calc(80px + 15px);
	z-index: 998;
}

@media (min-width: 992px) {
    #sidebar {
        overflow-y: auto;
        max-height: calc(90vh - 55px);
    }
}

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

.subpage-nav li {
	padding: 0;
    margin: 0 !important;
	list-style-type: none;
}

#main-content .subpage-nav li a {
    font-family: 'Fjalla One', sans-serif;
	color: var(--black) !important;
	text-decoration: none;
	font-size: 16px;
	display: block;
	width: 100%;
	padding: .5rem;
    line-height: 1;
    margin-bottom: 1px;
    background-size: 0 2px;
}

#main-content .subpage-nav li a.active {
	color: var(--white) !important;
	background-color: var(--red);
}

#main-content .subpage-nav li a i,
#main-content .subpage-nav li a svg {
    margin-top: 5px;
}

@media (max-width: 991.98px) {
    #main-content .subpage-nav li a {
        padding: .75rem;
    }
}


/* COLLAPSE */

.expand-btn {
    font-weight: normal;
    font-size: 18px;
	color: var(--red) !important;
	background-color: var(--white);
	border: 0;
	display: block;
	text-align: left;
	padding: .5rem 2rem .5rem 0 !important;
	white-space: normal;
	position: relative;
	width: 100%;
}

.expand-btn.collapsed {
    font-weight: normal;
    font-size: 18px;
	color: var(--black) !important;
	background-color: var(--white);
	border: 0;
	display: block;
	text-align: left;
	padding: .5rem 2rem .5rem 0 !important;
	white-space: normal;
	position: relative;
	width: 100%;
}

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

.expand-btn:hover {
	background-color: var(--white);
	box-shadow: none;
}

.expand-btn:focus {
	background-color: var(--white);
	box-shadow: none;
}

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

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

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

.bg-number {
	position: relative;
}

.bg-number::before {
	position: absolute;
	z-index: -1;
	top: -5px;
	left: -35px;
	right: auto;
	color: var(--blue);
	content: 'Q:';
	display: block;
	font-size: 2rem;
	filter: drop-shadow(1px 1px 0px #E6E7E8);
	/* text-shadow: 0px 0px 30px rgba(0,0,0,.1); */
}

#covid {
	background-color: #F8F9FA;
}

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

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

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

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

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

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

.link-list li a {
	color: var(--red);
	display: block;
	width: 100%;
	text-align: left;
	font-size: .9rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol.numberlist li:last-of-type {
	border-bottom: 2px solid var(--red);
}

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

.number-counter {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--red);
}


/* LOCATIONS */

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

#location_map {
    margin-bottom: -6px;
}

#location_sidebar .card {
    height: auto;
	margin: 0 15px 15px 15px;
}

#location_sidebar_results {
	overflow-y: auto;
    background: url('/assets/img/backgrounds/Chalkboard-background.jpg') center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.location-zip-bar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px;
    background: url('/assets/img/backgrounds/Chalkboard-background.jpg') center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.location-zip-bar h2,
.location-zip-bar p,
.location-zip-bar p.eyebrow,
.location-zip-bar a {
    color: #FFF !important;
}

@media (min-width: 992px) {
	#location_sidebar {
		width: 315px;
		height: 600px;
	}

	#location_sidebar_results {
		height: 520px;
	}

	#location_sidebar_results .card {
		margin-right: 15px;
	}

	#location_map {
		height: 600px;
	}
}

@media (max-width: 991.98px) {
	#location_map {
		height: 400px;
	}

    #location_sidebar_results {
        max-height: none;
        height: auto;
    }
}

@media (max-width: 767.98px) {
	#location_map {
		height: 350px;
	}
	
	#location_sidebar_results {
        max-height: none;
        height: auto;
    }
}

@media (max-width: 575.98px) {
	#location_map {
		height: 300px;
	}
	
	#location_sidebar_results {
       max-height: none;
        height: auto;
    }
}

.location-card {
	background-color: var(--white);
	border: 1px solid var(--gray-300);
	height: 100%;
}

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

/* .location-card .location-content {
    font-size: 14px;
} */

.location-card .location-content p {
    margin: .5rem 0 0 0;
}

.location-card .location-content p i,
.location-card .location-content p svg {
    margin-right: .25rem;
}

.location-card .location-content p.details {
    font-size: 13px !important;
}

.location-card .location-content p.details span {
    color: var(--red);
}

.location-card .location-content p.eyebrow {
    font-size: 13px;
    margin: .75rem 0 0 0 !important;
}

.location-card .location-content p.hours {
    font-size: 13px !important;
    margin: 0 !important;
}

.holiday-hours p {
    font-size: 13px !important;
    margin: 0 !important;
}


.location-card .location-content address {
    margin: .5rem 0;
}

.location-card .location-content address span {
    font-size: 24px !important;
    float: right;
    margin-left: .5rem;
}

.location-card .card-footer {
    text-align: center;
    background-color: transparent;
    border: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.location-card .card-footer a {
    font-weight: 600;
    color: var(--red) !important;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
}

.location-card .location-name {
    font-family: 'Fjalla One', sans-serif;
    /* font-family: 'Carrick Groovy', sans-serif; */
    /* text-transform: uppercase; */
    color: var(--black);
	margin-bottom: .25rem;
	line-height: 1.25;
}

.location-card .location-name span.distance {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    text-transform: capitalize;
    vertical-align: middle;
    float: right;
    margin-left: .5rem;
}

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

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

.location-card ul {
	margin: 0;
	padding: 0;
	color: var(--white) !important;
}

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


/* SPECIAL DEALS */

@media (min-width: 992px) {
    .selected-location-zip-box {
        width: 177.8px;
    }

    .using-location-btn {
        width: 177.8px;
    }
}

.selected-location-zip-box {
    text-align: left;
    height: 41px;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.15;
    display: block;
    padding: 0 .5rem;
}

.selected-location-zip-box span {
    font-size: 12px;
    text-transform: uppercase;
}

.selected-location-zip-box span.remove-zip {
    position: absolute;
    top: 11px;
    left: auto;
    right: 20px;
}

.selected-location-zip-box span.remove-zip a {
    font-size: 16px;
    color: var(--red) !important;
    background-position: 0 0 !important;
    background-size: 0 0 !important;
    vertical-align: top;
}

@media (min-width: 992px) {
    #special-deals-card-col {
        width: 400px;
    }
}


/* TABLES */

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

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

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

caption {
	font-size: 12px;
}

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


/* SUBPAGES */

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

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

#fund-nav li {
	position: relative;
}

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

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

#fund-nav li a.active {
	color: var(--white) !important;
	text-decoration: underline;
}

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

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

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

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

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

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

ul.team-nav li a.active {
	color: var(--red) !important;
	text-decoration: underline;
}


/* SWIPERS */

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

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

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

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

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

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

.swiper-button-prev,
.swiper-button-next {
	width: 40px;
	height: 40px;
	color: var(--white);
	background-color: var(--red);
	border: 1px solid var(--red);
	border-radius: 0;
	padding: 15px;
	transition: all .3s ease;
}

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-prev:active {
	background-color: var(--red);
	border: 1px solid var(--red);
}

.swiper-button-next:focus,
.swiper-button-next:hover,
.swiper-button-next:active {
	background-color: var(--red);
	border: 1px solid var(--red);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: var(--red);
	border: 1px solid var(--red);
}

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
	position: relative;
	background: transparent;
	border: 1px solid var(--red);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--red);
	border: 1px solid var(--red);
	opacity: 1;
}

.swiper-pagination.white .swiper-pagination-bullet {
	background: transparent;
	border: 1px solid var(--white);
	opacity: 1;
}

.swiper-pagination.white .swiper-pagination-bullet-active {
	background: var(--white);
	border: 1px solid var(--white);
	opacity: 1;
}

.swiper-pagination-fraction {
	color: var(--red);
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 0;
}

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

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

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


/* BLOG */

.link-card {
	text-align: left;
	height: 100% !important;
	border: 0;
	background-image: none !important;
}

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

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

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

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

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

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

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

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

.link-card .source {
	margin-top: .25rem;
	margin-bottom: .25rem;
	font-size: 12px;
}

.link-card .desc {
	margin-top: .25rem;
}

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

/* .link-card .card-body {
    border-left: 2px solid var(--red);
} */


/* CAREERS */

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


/* NEWS */

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

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

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

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

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


/* LINE CLAMP TEXT TRUNCATE */

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

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

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

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

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


/* TIMELINE */

.timeline-card p.eyebrow {
	color: var(--red) !important;
}

.timeline-icon {
	font-size: 1.5rem;
	color: var(--red);
	margin: 0 .75rem;
}

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

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

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

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


/* CATERING */

@media (min-width: 1200px) {
    #catering_order_how_to {
        top: 128px;
        max-height: calc(100vh - 176px);
    }
}

@media (min-width: 992px) {
    #catering_order_how_to {
        top: 118px;
        max-height: calc(100vh - 166px);
        position: -webkit-sticky;
        position: sticky;
        z-index: 999;
        overflow-y: auto;
    }
}


/* FOOTER */

#footer a:not(.btn) {
	color: #212529;
	transition: all .3s ease;
}

#footer a:not(.btn):hover,
#footer a:not(.btn):focus {
	color: var(--black);
}

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

footer a {
	font-weight: 400;
}

.footer-logo {
	width: 100px;
}

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

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

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

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

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

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

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

.footer-links li a {
	padding: .25rem 0;
	display: inline-block;
}

.footer-links li a span {
    position: relative;
	font-size: 8px;
    vertical-align: top;
	top: 2px;
	margin-left: 2px;
}

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

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

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

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

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

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

.footer-sm-nav li a {
	font-size: 22px;
	padding: .5rem;
	color: var(--black) !important;
}

.footer-sm-nav li a:hover,
.footer-sm-nav li a:focus,
.footer-sm-nav li a:target,
.footer-sm-nav li a:active {
	color: var(--red) !important;
}

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


/* TOOLTIPS */

.tooltip {
	opacity: 1 !important;
}

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

.tooltip.bs-tooltip-right .arrow:before {
	border-right-color: var(--white) !important;
}

.tooltip.bs-tooltip-left .arrow:before {
	border-left-color: var(--white) !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
	border-bottom-color: var(--white) !important;
}

.tooltip.bs-tooltip-top .arrow:before {
	border-top-color: var(--white) !important;
}


/* MODALS */

.modal-header {
	background: var(--white);
	border-bottom: 1px solid #DEE2E6 !important;
}

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

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

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

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

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

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

.modal .floating-close {
	position: absolute;
    z-index: 2;
	top: 0;
	right: 0;
	left: auto;
}

.modal .floating-close .close {
	background-color: var(--white);
	border-radius: 100%;
	border: 2px solid var(--white);
}

.modal .floating-close .close:hover,
.modal .floating-close .close:focus {
	opacity: 1;
	border: 2px solid var(--red);
}

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

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

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

.modal-body {
	padding: 1.5rem;
}

.modal-body.bg-chalk a {
    color: var(--white) !important;
}

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

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

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

.modal-backdrop.show {
	opacity: .54;
}


/* TOASTS */

#cookies-popup {
	z-index: 99;
	position: fixed;
	left: 0;
	right: auto;
	bottom: 0;
	margin: 15px;
}

.toast.show {
	opacity: 1;
}

.toast {
	text-align: left;
	background-color: var(--white);
	border-radius: 0;
	border: 1px solid #E7E9EC;
	box-shadow: 0px 5px 15px rgba(0,0,0,.1);
}

@media (max-width: 575.98px) {
	.toast {
		max-width: 100% !important;
	}
}

.toast-title {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	display: inline-block;
	margin-right: auto;
}

.toast-header {
	border-bottom: 1px solid #E7E9EC;
}

.toast-body {
	font-size: 12px;
	background-color: var(--white);
}

.toast-body p {
	margin-bottom: .5rem;
}

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

.toast-body a {
	font-weight: 400;
	color: var(--black) !important;
	display: inline-block;
}

.toast .close {
	font-size: 16px;
	padding: 4px;
	margin-top: -2px;
	margin-right: -6px;
	color: var(--red) !important;
	opacity: 1;
}


/* ALERTS */

.alert {
    border-radius: 0;
    border: 0;
    color: var(--black);
}

#alert-carousel .carousel-control-prev,
#alert-carousel .carousel-control-next {
	font-size: 14px;
	color: var(--black);
	background-color: var(--white);
	width: 15px;
	opacity: 1;
}

#alert-carousel .carousel-control-prev {
	left: 5px;
}

#alert-carousel .carousel-control-next {
	right: 5px;
}

.nav-top-alert {
	color: var(--black);
	background: var(--white);
	border: 0;
	border-bottom: 1px solid #DEE2E6;
	border-radius: 0;
	padding: 5px 0;
	margin-bottom: 0;
	font-size: 12px;
}

.nav-top-alert strong {
	font-weight: 700;
}

.nav-top-alert a {
	font-weight: 400;
	color: var(--black) !important;
	display: inline-block;
	background-image: linear-gradient(rgba(237, 62, 45, 1), rgba(237, 62, 45, 1));
	text-decoration: none;
	background-position: 0% 100%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	transition: all .3s ease;
}

.nav-top-alert a:hover,
.nav-top-alert a:focus {
	background-size: 100% 2px;
}

.nav-top-alert.alert .close {
	color: var(--red);
	font-size: 16px;
	position: relative;
	top: 2px;
	right: -1px;
	padding: 0;
	margin: 0;
	opacity: 1;
	text-shadow: none;
	transition: all .3s ease;
}

.nav-top-alert.alert .close:hover,
.nav-top-alert.alert .close:focus {
	opacity: .75;
}


/* CONTACT */

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

.success-card {
    background-color: rgba(132,191,69,.05);
	text-align: center;
	border: 2px solid var(--green);
}

.success-card svg,
.success-card i {
    font-size: 2rem;
	color: var(--green);
}


/* FORMS */

form.white-labels label {
	color: var(--white);
}

legend {
    font-family: 'Carrick Groovy', sans-serif;
    text-transform: uppercase;
    color: var(--black) !important;
}

label {
	font-weight: 700;
	font-size: 14px;
	color: var(--black);
	margin-bottom: 5px;
	text-align: left !important;
}

.label span,
label span {
    font-size: 12px;
    font-weight: 400;
}

.form-check-label {
    font-weight: 400;
}

input,
select,
textarea,
.form-control,
.custom-select {
	border-radius: 0;
	color: var(--black);
}

.input-group-text {
	background-color: var(--gray-200);
	border: 1px solid var(--gray-300);
    border-radius: 0;
}

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

.btn-radio {
	text-align: center !important;
	background-color: var(--white);
	border: 1px solid var(--gray-300);
}

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

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

.border-black {
	border: 1px solid var(--black) !important;
}

.border-black-dotted {
	border: 1px dotted var(--black) !important;
}

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

.form-control {
	background-color: var(--white);
	border: 1px solid #DEE2E6;
	transition: all .3s ease;
}

.form-control.flush,
.custom-select.flush {
	border: 1px solid var(--white);
}

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

.form-control.is-invalid,
.was-validated .form-control:invalid {
	border-color: var(--red);
}

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

.form-control.custom-select.is-valid,
.was-validated .form-control.custom-select:valid {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,
    #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;
}

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

.invalid-feedback {
	color: var(--dark-red);
	background-color: var(--white);
    font-size: 12px;
}

/* .form-control:focus,
.custom-select:focus {
    border: 1px solid var(--red) !important;
    outline: 0;
    box-shadow: 0 0 0 1px rgb(56 77 117 / 25%);
} */


/* LIGHTGALLERY */

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

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: var(--white);
	border-radius: 0;
}

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

.cursor:hover {
	cursor: pointer;
}

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


/* TO TOP */

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

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

.scroll-top.show:hover,
.scroll-top.show:focus {
	color: var(--red);
}

.grecaptcha-badge {
	display: none;
}
