/* =========================================================================
   TEMPORARY Bootstrap 4 shim
   -------------------------------------------------------------------------
   Replicates just the Bootstrap classes used by legacy pages (e.g. the
   "Life on Life Discipleship Materials" page) so the custom classes already
   applied to blocks render correctly — no editor changes required.

   Every rule is scoped to .entry-content (the page/post content wrapper the
   block theme outputs), so it ONLY affects editable page content and never
   touches the theme's own header, footer, or chrome.

   Delete this file (and its enqueue in functions.php) once these pages are
   reformatted with native blocks.
   ========================================================================= */

.entry-content {
	--bs-primary: #1e3a5f;   /* navy — matches theme.json */
	--bs-secondary: #00aa00; /* green CTA */
	--bs-light: #f8f9fa;
	--bs-gray: #6c757d;
}

/* ---- page breathing room ----------------------------------------------
   Legacy pages were authored against a theme that padded the content area;
   the FSE page template is deliberately flush (so full-bleed covers touch
   the header). Give content top/bottom space UNLESS the page starts/ends
   with a full-bleed (alignfull) block. Graceful: browsers without :has()
   simply stay flush. Scoped to body.page: CPT singles (leadership bio,
   testimony description, …) render post-content inline in their own
   layouts and must stay flush. */
.page .entry-content:not(:has(> .alignfull:first-child)) { padding-top: clamp(2.5rem, 6vw, 4rem); }
.page .entry-content:not(:has(> .alignfull:last-child))  { padding-bottom: clamp(3rem, 7vw, 5rem); }

/* ---- grid ------------------------------------------------------------- */
.entry-content .container,
.entry-content .container-fluid {
	width: 100%;
	margin-inline: auto;
	padding-inline: 15px;
}
@media (min-width: 576px)  { .entry-content .container { max-width: 540px; } }
@media (min-width: 768px)  { .entry-content .container { max-width: 720px; } }
@media (min-width: 992px)  { .entry-content .container { max-width: 960px; } }
@media (min-width: 1200px) { .entry-content .container { max-width: 1140px; } }

.entry-content .row {
	display: flex;
	flex-wrap: wrap;
	margin-inline: -15px;
}
.entry-content [class^="col-"],
.entry-content [class*=" col-"],
.entry-content .col-md {
	position: relative;
	width: 100%;
	padding-inline: 15px;
}
@media (min-width: 768px) {
	.entry-content .col-md   { flex: 1 0 0%; max-width: 100%; }
	.entry-content .col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.entry-content .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 992px) {
	.entry-content .col-lg-2    { flex: 0 0 16.6667%; max-width: 16.6667%; }
	.entry-content .col-lg-4    { flex: 0 0 33.3333%; max-width: 33.3333%; }
	.entry-content .offset-lg-2 { margin-left: 16.6667%; }
}

/* ---- display / responsive text --------------------------------------- */
.entry-content .d-none { display: none; }
.entry-content .text-center { text-align: center; }
.entry-content .justify-content-end { justify-content: flex-end; }
@media (max-width: 767.98px) {
	.entry-content .text-sm-center { text-align: center; }
}
@media (min-width: 768px) {
	.entry-content .d-md-block  { display: block; }
	.entry-content .text-md-left  { text-align: left; }
	.entry-content .text-md-right { text-align: right; }
}
@media (min-width: 992px) {
	.entry-content .text-lg-right { text-align: right; }
}

/* ---- spacing: site-specific extras (full BS4.6 set is generated below) - */
.entry-content .pt-3px { padding-top: 3px; }

/* ---- misc helpers ----------------------------------------------------- */
.entry-content .clearfix::after,
.entry-content .clear { display: block; clear: both; content: ""; }
.entry-content .shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075); }
.entry-content .lead  { font-size: 1.25rem; font-weight: 300; }
.entry-content .small { font-size: 80%; }

/* ---- borders / rounding (BS 4.6.0) ------------------------------------ */
.entry-content .rounded-sm     { border-radius: .2rem !important; }
.entry-content .rounded        { border-radius: .25rem !important; }
.entry-content .rounded-lg     { border-radius: .3rem !important; }
.entry-content .rounded-circle { border-radius: 50% !important; }
.entry-content .rounded-pill   { border-radius: 50rem !important; }
.entry-content .rounded-0      { border-radius: 0 !important; }

/* ---- background utilities (BS 4.6.0 stock palette) -------------------- */
.entry-content .bg-primary   { background-color: #007bff !important; }
.entry-content a.bg-primary:hover,   .entry-content a.bg-primary:focus,
.entry-content button.bg-primary:hover,   .entry-content button.bg-primary:focus   { background-color: #0062cc !important; }
.entry-content .bg-secondary { background-color: #6c757d !important; }
.entry-content a.bg-secondary:hover, .entry-content a.bg-secondary:focus,
.entry-content button.bg-secondary:hover, .entry-content button.bg-secondary:focus { background-color: #545b62 !important; }
.entry-content .bg-success   { background-color: #28a745 !important; }
.entry-content a.bg-success:hover,   .entry-content a.bg-success:focus,
.entry-content button.bg-success:hover,   .entry-content button.bg-success:focus   { background-color: #1e7e34 !important; }
.entry-content .bg-info      { background-color: #17a2b8 !important; }
.entry-content a.bg-info:hover,      .entry-content a.bg-info:focus,
.entry-content button.bg-info:hover,      .entry-content button.bg-info:focus      { background-color: #117a8b !important; }
.entry-content .bg-warning   { background-color: #ffc107 !important; }
.entry-content a.bg-warning:hover,   .entry-content a.bg-warning:focus,
.entry-content button.bg-warning:hover,   .entry-content button.bg-warning:focus   { background-color: #d39e00 !important; }
.entry-content .bg-danger    { background-color: #dc3545 !important; }
.entry-content a.bg-danger:hover,    .entry-content a.bg-danger:focus,
.entry-content button.bg-danger:hover,    .entry-content button.bg-danger:focus    { background-color: #bd2130 !important; }
.entry-content .bg-light     { background-color: #f8f9fa !important; }
.entry-content a.bg-light:hover,     .entry-content a.bg-light:focus,
.entry-content button.bg-light:hover,     .entry-content button.bg-light:focus     { background-color: #dae0e5 !important; }
.entry-content .bg-dark      { background-color: #343a40 !important; }
.entry-content a.bg-dark:hover,      .entry-content a.bg-dark:focus,
.entry-content button.bg-dark:hover,      .entry-content button.bg-dark:focus      { background-color: #1d2124 !important; }
.entry-content .bg-white       { background-color: #fff !important; }
.entry-content .bg-transparent { background-color: transparent !important; }

/* Old-theme custom bg classes still present in legacy content */
.entry-content .bg-dark-opacity-1 { background: rgba(70,72,74,0.8); }
.entry-content .bg-dark-opacity-2 { background: rgba(70,72,74,0.6); }
.entry-content .bg-dark-opacity-3 { background: rgba(70,72,74,0.4); }
.entry-content .bg-dark-opacity-4 { background: rgba(70,72,74,0.2); }
.entry-content .bg-dark-opacity-5 { background: rgba(70,72,74,0); }

/* ---- buttons ---------------------------------------------------------- */
.entry-content .btn {
	display: inline-block;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	border: 1px solid transparent;
	border-radius: .25rem;
	text-decoration: none;
	cursor: pointer;
	transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}
.entry-content .btn-outline-primary {
	color: var(--bs-primary);
	border-color: var(--bs-primary);
	background: transparent;
}
.entry-content .btn-outline-primary:hover { color: #fff; background: var(--bs-primary); }
.entry-content .btn-secondary {
	color: #fff;
	background: var(--bs-secondary);
	border-color: var(--bs-secondary);
}
.entry-content .btn-secondary:hover { filter: brightness(.92); }

/* ---- navbar (only styled if pasted into content) --------------------- */
.entry-content .navbar { padding: .5rem 1rem; }
.entry-content .navbar > .container-fluid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.entry-content .navbar-brand { display: inline-block; margin-right: 1rem; }
.entry-content .navbar-logo  { width: auto; height: auto; max-height: 56px; }
.entry-content .navbar-toggler { display: none; } /* no JS in the shim — show menu instead */
.entry-content .navbar-collapse { display: flex; flex-basis: 100%; }
.entry-content .navbar-nav {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}
.entry-content .nav-item { list-style: none; }
.entry-content .nav-link {
	display: block;
	padding: .5rem 1rem;
	color: var(--bs-primary);
	text-decoration: none;
}
.entry-content .nav-link:hover { color: var(--bs-secondary); }
@media (min-width: 992px) {
	.entry-content .navbar-expand-lg > .container-fluid { flex-wrap: nowrap; }
	.entry-content .navbar-expand-lg .navbar-collapse { flex-basis: auto; }
	.entry-content .navbar-expand-lg .navbar-nav { flex-direction: row; }
}

/* ---- list groups (the PDF/link lists) -------------------------------- */
.entry-content .list-group {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 1rem;
}
.entry-content .list-group-item {
	display: block;
	padding: .75rem 1.25rem;
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid rgba(0,0,0,.125);
	color: #313c4f;
	text-decoration: none;
}
.entry-content .list-group-item:first-child { border-top-left-radius: .25rem; border-top-right-radius: .25rem; }
.entry-content .list-group-item:last-child  { margin-bottom: 0; border-bottom-left-radius: .25rem; border-bottom-right-radius: .25rem; }
.entry-content .list-group-item-action:hover { background-color: var(--bs-light); }

/* ---- page header / breadcrumbs --------------------------------------- */
.entry-content .entry-breadcrumbs { font-size: .85rem; color: var(--bs-gray); }
.entry-content .entry-breadcrumbs a { color: var(--bs-primary); text-decoration: none; }
.entry-content .current-page { color: var(--bs-gray); }
.entry-content .page-header .divider {
	width: 60px;
	height: 3px;
	margin: .75rem auto 1.5rem;
	background: var(--bs-secondary);
}

/* ---- footer (only styled if pasted into content) --------------------- */
.entry-content .footer-4 {
	background: var(--bs-primary);
	color: #fff;
	padding: 3rem 0 1rem;
}
.entry-content .footer-4 a { color: #fff; }
.entry-content .footer-4 h4 { color: #fff; margin-bottom: .75rem; }
.entry-content .text-white,
.entry-content .text-white a { color: #fff !important; }
.entry-content .footer-4 .logo {
	display: inline-block;
	margin-bottom: .5rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}
.entry-content .nav-footer { list-style: none; margin: 0; padding: 0; }
.entry-content .nav-footer .nav-link { padding: .2rem 0; color: rgba(255,255,255,.85); }
.entry-content .nav-footer .nav-link:hover { color: #fff; }
.entry-content .copyright { margin: 0; }
.entry-content .social {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}
.entry-content .footer-4 .divider { border-top: 1px solid rgba(255,255,255,.2); margin: 1.5rem 0; }

/* =========================================================================
   GENERATED: full Bootstrap 4.6.0 spacing utilities (m*/p*, 0-5, auto,
   negative margins, sm/md/lg/xl breakpoints), scoped to .entry-content.
   ========================================================================= */
.entry-content .m-0{margin:0!important}
.entry-content .m-1{margin:.25rem!important}
.entry-content .m-2{margin:.5rem!important}
.entry-content .m-3{margin:1rem!important}
.entry-content .m-4{margin:1.5rem!important}
.entry-content .m-5{margin:3rem!important}
.entry-content .m-auto{margin:auto!important}
.entry-content .m-n0{margin:-0!important}
.entry-content .m-n1{margin:-.25rem!important}
.entry-content .m-n2{margin:-.5rem!important}
.entry-content .m-n3{margin:-1rem!important}
.entry-content .m-n4{margin:-1.5rem!important}
.entry-content .m-n5{margin:-3rem!important}
.entry-content .mt-0{margin-top:0!important}
.entry-content .mt-1{margin-top:.25rem!important}
.entry-content .mt-2{margin-top:.5rem!important}
.entry-content .mt-3{margin-top:1rem!important}
.entry-content .mt-4{margin-top:1.5rem!important}
.entry-content .mt-5{margin-top:3rem!important}
.entry-content .mt-auto{margin-top:auto!important}
.entry-content .mt-n0{margin-top:-0!important}
.entry-content .mt-n1{margin-top:-.25rem!important}
.entry-content .mt-n2{margin-top:-.5rem!important}
.entry-content .mt-n3{margin-top:-1rem!important}
.entry-content .mt-n4{margin-top:-1.5rem!important}
.entry-content .mt-n5{margin-top:-3rem!important}
.entry-content .mb-0{margin-bottom:0!important}
.entry-content .mb-1{margin-bottom:.25rem!important}
.entry-content .mb-2{margin-bottom:.5rem!important}
.entry-content .mb-3{margin-bottom:1rem!important}
.entry-content .mb-4{margin-bottom:1.5rem!important}
.entry-content .mb-5{margin-bottom:3rem!important}
.entry-content .mb-auto{margin-bottom:auto!important}
.entry-content .mb-n0{margin-bottom:-0!important}
.entry-content .mb-n1{margin-bottom:-.25rem!important}
.entry-content .mb-n2{margin-bottom:-.5rem!important}
.entry-content .mb-n3{margin-bottom:-1rem!important}
.entry-content .mb-n4{margin-bottom:-1.5rem!important}
.entry-content .mb-n5{margin-bottom:-3rem!important}
.entry-content .ml-0{margin-left:0!important}
.entry-content .ml-1{margin-left:.25rem!important}
.entry-content .ml-2{margin-left:.5rem!important}
.entry-content .ml-3{margin-left:1rem!important}
.entry-content .ml-4{margin-left:1.5rem!important}
.entry-content .ml-5{margin-left:3rem!important}
.entry-content .ml-auto{margin-left:auto!important}
.entry-content .ml-n0{margin-left:-0!important}
.entry-content .ml-n1{margin-left:-.25rem!important}
.entry-content .ml-n2{margin-left:-.5rem!important}
.entry-content .ml-n3{margin-left:-1rem!important}
.entry-content .ml-n4{margin-left:-1.5rem!important}
.entry-content .ml-n5{margin-left:-3rem!important}
.entry-content .mr-0{margin-right:0!important}
.entry-content .mr-1{margin-right:.25rem!important}
.entry-content .mr-2{margin-right:.5rem!important}
.entry-content .mr-3{margin-right:1rem!important}
.entry-content .mr-4{margin-right:1.5rem!important}
.entry-content .mr-5{margin-right:3rem!important}
.entry-content .mr-auto{margin-right:auto!important}
.entry-content .mr-n0{margin-right:-0!important}
.entry-content .mr-n1{margin-right:-.25rem!important}
.entry-content .mr-n2{margin-right:-.5rem!important}
.entry-content .mr-n3{margin-right:-1rem!important}
.entry-content .mr-n4{margin-right:-1.5rem!important}
.entry-content .mr-n5{margin-right:-3rem!important}
.entry-content .mx-0{margin-left:0!important;margin-right:0!important}
.entry-content .mx-1{margin-left:.25rem!important;margin-right:.25rem!important}
.entry-content .mx-2{margin-left:.5rem!important;margin-right:.5rem!important}
.entry-content .mx-3{margin-left:1rem!important;margin-right:1rem!important}
.entry-content .mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}
.entry-content .mx-5{margin-left:3rem!important;margin-right:3rem!important}
.entry-content .mx-auto{margin-left:auto!important;margin-right:auto!important}
.entry-content .mx-n0{margin-left:-0!important;margin-right:-0!important}
.entry-content .mx-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}
.entry-content .mx-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}
.entry-content .mx-n3{margin-left:-1rem!important;margin-right:-1rem!important}
.entry-content .mx-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}
.entry-content .mx-n5{margin-left:-3rem!important;margin-right:-3rem!important}
.entry-content .my-0{margin-top:0!important;margin-bottom:0!important}
.entry-content .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}
.entry-content .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}
.entry-content .my-3{margin-top:1rem!important;margin-bottom:1rem!important}
.entry-content .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}
.entry-content .my-5{margin-top:3rem!important;margin-bottom:3rem!important}
.entry-content .my-auto{margin-top:auto!important;margin-bottom:auto!important}
.entry-content .my-n0{margin-top:-0!important;margin-bottom:-0!important}
.entry-content .my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}
.entry-content .my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}
.entry-content .my-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}
.entry-content .my-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}
.entry-content .my-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}
.entry-content .p-0{padding:0!important}
.entry-content .p-1{padding:.25rem!important}
.entry-content .p-2{padding:.5rem!important}
.entry-content .p-3{padding:1rem!important}
.entry-content .p-4{padding:1.5rem!important}
.entry-content .p-5{padding:3rem!important}
.entry-content .pt-0{padding-top:0!important}
.entry-content .pt-1{padding-top:.25rem!important}
.entry-content .pt-2{padding-top:.5rem!important}
.entry-content .pt-3{padding-top:1rem!important}
.entry-content .pt-4{padding-top:1.5rem!important}
.entry-content .pt-5{padding-top:3rem!important}
.entry-content .pb-0{padding-bottom:0!important}
.entry-content .pb-1{padding-bottom:.25rem!important}
.entry-content .pb-2{padding-bottom:.5rem!important}
.entry-content .pb-3{padding-bottom:1rem!important}
.entry-content .pb-4{padding-bottom:1.5rem!important}
.entry-content .pb-5{padding-bottom:3rem!important}
.entry-content .pl-0{padding-left:0!important}
.entry-content .pl-1{padding-left:.25rem!important}
.entry-content .pl-2{padding-left:.5rem!important}
.entry-content .pl-3{padding-left:1rem!important}
.entry-content .pl-4{padding-left:1.5rem!important}
.entry-content .pl-5{padding-left:3rem!important}
.entry-content .pr-0{padding-right:0!important}
.entry-content .pr-1{padding-right:.25rem!important}
.entry-content .pr-2{padding-right:.5rem!important}
.entry-content .pr-3{padding-right:1rem!important}
.entry-content .pr-4{padding-right:1.5rem!important}
.entry-content .pr-5{padding-right:3rem!important}
.entry-content .px-0{padding-left:0!important;padding-right:0!important}
.entry-content .px-1{padding-left:.25rem!important;padding-right:.25rem!important}
.entry-content .px-2{padding-left:.5rem!important;padding-right:.5rem!important}
.entry-content .px-3{padding-left:1rem!important;padding-right:1rem!important}
.entry-content .px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}
.entry-content .px-5{padding-left:3rem!important;padding-right:3rem!important}
.entry-content .py-0{padding-top:0!important;padding-bottom:0!important}
.entry-content .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}
.entry-content .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}
.entry-content .py-3{padding-top:1rem!important;padding-bottom:1rem!important}
.entry-content .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}
.entry-content .py-5{padding-top:3rem!important;padding-bottom:3rem!important}
@media (min-width: 576px) {
.entry-content .m-sm-0{margin:0!important}
.entry-content .m-sm-1{margin:.25rem!important}
.entry-content .m-sm-2{margin:.5rem!important}
.entry-content .m-sm-3{margin:1rem!important}
.entry-content .m-sm-4{margin:1.5rem!important}
.entry-content .m-sm-5{margin:3rem!important}
.entry-content .m-sm-auto{margin:auto!important}
.entry-content .m-sm-n0{margin:-0!important}
.entry-content .m-sm-n1{margin:-.25rem!important}
.entry-content .m-sm-n2{margin:-.5rem!important}
.entry-content .m-sm-n3{margin:-1rem!important}
.entry-content .m-sm-n4{margin:-1.5rem!important}
.entry-content .m-sm-n5{margin:-3rem!important}
.entry-content .mt-sm-0{margin-top:0!important}
.entry-content .mt-sm-1{margin-top:.25rem!important}
.entry-content .mt-sm-2{margin-top:.5rem!important}
.entry-content .mt-sm-3{margin-top:1rem!important}
.entry-content .mt-sm-4{margin-top:1.5rem!important}
.entry-content .mt-sm-5{margin-top:3rem!important}
.entry-content .mt-sm-auto{margin-top:auto!important}
.entry-content .mt-sm-n0{margin-top:-0!important}
.entry-content .mt-sm-n1{margin-top:-.25rem!important}
.entry-content .mt-sm-n2{margin-top:-.5rem!important}
.entry-content .mt-sm-n3{margin-top:-1rem!important}
.entry-content .mt-sm-n4{margin-top:-1.5rem!important}
.entry-content .mt-sm-n5{margin-top:-3rem!important}
.entry-content .mb-sm-0{margin-bottom:0!important}
.entry-content .mb-sm-1{margin-bottom:.25rem!important}
.entry-content .mb-sm-2{margin-bottom:.5rem!important}
.entry-content .mb-sm-3{margin-bottom:1rem!important}
.entry-content .mb-sm-4{margin-bottom:1.5rem!important}
.entry-content .mb-sm-5{margin-bottom:3rem!important}
.entry-content .mb-sm-auto{margin-bottom:auto!important}
.entry-content .mb-sm-n0{margin-bottom:-0!important}
.entry-content .mb-sm-n1{margin-bottom:-.25rem!important}
.entry-content .mb-sm-n2{margin-bottom:-.5rem!important}
.entry-content .mb-sm-n3{margin-bottom:-1rem!important}
.entry-content .mb-sm-n4{margin-bottom:-1.5rem!important}
.entry-content .mb-sm-n5{margin-bottom:-3rem!important}
.entry-content .ml-sm-0{margin-left:0!important}
.entry-content .ml-sm-1{margin-left:.25rem!important}
.entry-content .ml-sm-2{margin-left:.5rem!important}
.entry-content .ml-sm-3{margin-left:1rem!important}
.entry-content .ml-sm-4{margin-left:1.5rem!important}
.entry-content .ml-sm-5{margin-left:3rem!important}
.entry-content .ml-sm-auto{margin-left:auto!important}
.entry-content .ml-sm-n0{margin-left:-0!important}
.entry-content .ml-sm-n1{margin-left:-.25rem!important}
.entry-content .ml-sm-n2{margin-left:-.5rem!important}
.entry-content .ml-sm-n3{margin-left:-1rem!important}
.entry-content .ml-sm-n4{margin-left:-1.5rem!important}
.entry-content .ml-sm-n5{margin-left:-3rem!important}
.entry-content .mr-sm-0{margin-right:0!important}
.entry-content .mr-sm-1{margin-right:.25rem!important}
.entry-content .mr-sm-2{margin-right:.5rem!important}
.entry-content .mr-sm-3{margin-right:1rem!important}
.entry-content .mr-sm-4{margin-right:1.5rem!important}
.entry-content .mr-sm-5{margin-right:3rem!important}
.entry-content .mr-sm-auto{margin-right:auto!important}
.entry-content .mr-sm-n0{margin-right:-0!important}
.entry-content .mr-sm-n1{margin-right:-.25rem!important}
.entry-content .mr-sm-n2{margin-right:-.5rem!important}
.entry-content .mr-sm-n3{margin-right:-1rem!important}
.entry-content .mr-sm-n4{margin-right:-1.5rem!important}
.entry-content .mr-sm-n5{margin-right:-3rem!important}
.entry-content .mx-sm-0{margin-left:0!important;margin-right:0!important}
.entry-content .mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}
.entry-content .mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}
.entry-content .mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}
.entry-content .mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}
.entry-content .mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}
.entry-content .mx-sm-auto{margin-left:auto!important;margin-right:auto!important}
.entry-content .mx-sm-n0{margin-left:-0!important;margin-right:-0!important}
.entry-content .mx-sm-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}
.entry-content .mx-sm-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}
.entry-content .mx-sm-n3{margin-left:-1rem!important;margin-right:-1rem!important}
.entry-content .mx-sm-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}
.entry-content .mx-sm-n5{margin-left:-3rem!important;margin-right:-3rem!important}
.entry-content .my-sm-0{margin-top:0!important;margin-bottom:0!important}
.entry-content .my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}
.entry-content .my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}
.entry-content .my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}
.entry-content .my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}
.entry-content .my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}
.entry-content .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}
.entry-content .my-sm-n0{margin-top:-0!important;margin-bottom:-0!important}
.entry-content .my-sm-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}
.entry-content .my-sm-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}
.entry-content .my-sm-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}
.entry-content .my-sm-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}
.entry-content .my-sm-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}
.entry-content .p-sm-0{padding:0!important}
.entry-content .p-sm-1{padding:.25rem!important}
.entry-content .p-sm-2{padding:.5rem!important}
.entry-content .p-sm-3{padding:1rem!important}
.entry-content .p-sm-4{padding:1.5rem!important}
.entry-content .p-sm-5{padding:3rem!important}
.entry-content .pt-sm-0{padding-top:0!important}
.entry-content .pt-sm-1{padding-top:.25rem!important}
.entry-content .pt-sm-2{padding-top:.5rem!important}
.entry-content .pt-sm-3{padding-top:1rem!important}
.entry-content .pt-sm-4{padding-top:1.5rem!important}
.entry-content .pt-sm-5{padding-top:3rem!important}
.entry-content .pb-sm-0{padding-bottom:0!important}
.entry-content .pb-sm-1{padding-bottom:.25rem!important}
.entry-content .pb-sm-2{padding-bottom:.5rem!important}
.entry-content .pb-sm-3{padding-bottom:1rem!important}
.entry-content .pb-sm-4{padding-bottom:1.5rem!important}
.entry-content .pb-sm-5{padding-bottom:3rem!important}
.entry-content .pl-sm-0{padding-left:0!important}
.entry-content .pl-sm-1{padding-left:.25rem!important}
.entry-content .pl-sm-2{padding-left:.5rem!important}
.entry-content .pl-sm-3{padding-left:1rem!important}
.entry-content .pl-sm-4{padding-left:1.5rem!important}
.entry-content .pl-sm-5{padding-left:3rem!important}
.entry-content .pr-sm-0{padding-right:0!important}
.entry-content .pr-sm-1{padding-right:.25rem!important}
.entry-content .pr-sm-2{padding-right:.5rem!important}
.entry-content .pr-sm-3{padding-right:1rem!important}
.entry-content .pr-sm-4{padding-right:1.5rem!important}
.entry-content .pr-sm-5{padding-right:3rem!important}
.entry-content .px-sm-0{padding-left:0!important;padding-right:0!important}
.entry-content .px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}
.entry-content .px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}
.entry-content .px-sm-3{padding-left:1rem!important;padding-right:1rem!important}
.entry-content .px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}
.entry-content .px-sm-5{padding-left:3rem!important;padding-right:3rem!important}
.entry-content .py-sm-0{padding-top:0!important;padding-bottom:0!important}
.entry-content .py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}
.entry-content .py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}
.entry-content .py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}
.entry-content .py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}
.entry-content .py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}
}
@media (min-width: 768px) {
.entry-content .m-md-0{margin:0!important}
.entry-content .m-md-1{margin:.25rem!important}
.entry-content .m-md-2{margin:.5rem!important}
.entry-content .m-md-3{margin:1rem!important}
.entry-content .m-md-4{margin:1.5rem!important}
.entry-content .m-md-5{margin:3rem!important}
.entry-content .m-md-auto{margin:auto!important}
.entry-content .m-md-n0{margin:-0!important}
.entry-content .m-md-n1{margin:-.25rem!important}
.entry-content .m-md-n2{margin:-.5rem!important}
.entry-content .m-md-n3{margin:-1rem!important}
.entry-content .m-md-n4{margin:-1.5rem!important}
.entry-content .m-md-n5{margin:-3rem!important}
.entry-content .mt-md-0{margin-top:0!important}
.entry-content .mt-md-1{margin-top:.25rem!important}
.entry-content .mt-md-2{margin-top:.5rem!important}
.entry-content .mt-md-3{margin-top:1rem!important}
.entry-content .mt-md-4{margin-top:1.5rem!important}
.entry-content .mt-md-5{margin-top:3rem!important}
.entry-content .mt-md-auto{margin-top:auto!important}
.entry-content .mt-md-n0{margin-top:-0!important}
.entry-content .mt-md-n1{margin-top:-.25rem!important}
.entry-content .mt-md-n2{margin-top:-.5rem!important}
.entry-content .mt-md-n3{margin-top:-1rem!important}
.entry-content .mt-md-n4{margin-top:-1.5rem!important}
.entry-content .mt-md-n5{margin-top:-3rem!important}
.entry-content .mb-md-0{margin-bottom:0!important}
.entry-content .mb-md-1{margin-bottom:.25rem!important}
.entry-content .mb-md-2{margin-bottom:.5rem!important}
.entry-content .mb-md-3{margin-bottom:1rem!important}
.entry-content .mb-md-4{margin-bottom:1.5rem!important}
.entry-content .mb-md-5{margin-bottom:3rem!important}
.entry-content .mb-md-auto{margin-bottom:auto!important}
.entry-content .mb-md-n0{margin-bottom:-0!important}
.entry-content .mb-md-n1{margin-bottom:-.25rem!important}
.entry-content .mb-md-n2{margin-bottom:-.5rem!important}
.entry-content .mb-md-n3{margin-bottom:-1rem!important}
.entry-content .mb-md-n4{margin-bottom:-1.5rem!important}
.entry-content .mb-md-n5{margin-bottom:-3rem!important}
.entry-content .ml-md-0{margin-left:0!important}
.entry-content .ml-md-1{margin-left:.25rem!important}
.entry-content .ml-md-2{margin-left:.5rem!important}
.entry-content .ml-md-3{margin-left:1rem!important}
.entry-content .ml-md-4{margin-left:1.5rem!important}
.entry-content .ml-md-5{margin-left:3rem!important}
.entry-content .ml-md-auto{margin-left:auto!important}
.entry-content .ml-md-n0{margin-left:-0!important}
.entry-content .ml-md-n1{margin-left:-.25rem!important}
.entry-content .ml-md-n2{margin-left:-.5rem!important}
.entry-content .ml-md-n3{margin-left:-1rem!important}
.entry-content .ml-md-n4{margin-left:-1.5rem!important}
.entry-content .ml-md-n5{margin-left:-3rem!important}
.entry-content .mr-md-0{margin-right:0!important}
.entry-content .mr-md-1{margin-right:.25rem!important}
.entry-content .mr-md-2{margin-right:.5rem!important}
.entry-content .mr-md-3{margin-right:1rem!important}
.entry-content .mr-md-4{margin-right:1.5rem!important}
.entry-content .mr-md-5{margin-right:3rem!important}
.entry-content .mr-md-auto{margin-right:auto!important}
.entry-content .mr-md-n0{margin-right:-0!important}
.entry-content .mr-md-n1{margin-right:-.25rem!important}
.entry-content .mr-md-n2{margin-right:-.5rem!important}
.entry-content .mr-md-n3{margin-right:-1rem!important}
.entry-content .mr-md-n4{margin-right:-1.5rem!important}
.entry-content .mr-md-n5{margin-right:-3rem!important}
.entry-content .mx-md-0{margin-left:0!important;margin-right:0!important}
.entry-content .mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}
.entry-content .mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}
.entry-content .mx-md-3{margin-left:1rem!important;margin-right:1rem!important}
.entry-content .mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}
.entry-content .mx-md-5{margin-left:3rem!important;margin-right:3rem!important}
.entry-content .mx-md-auto{margin-left:auto!important;margin-right:auto!important}
.entry-content .mx-md-n0{margin-left:-0!important;margin-right:-0!important}
.entry-content .mx-md-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}
.entry-content .mx-md-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}
.entry-content .mx-md-n3{margin-left:-1rem!important;margin-right:-1rem!important}
.entry-content .mx-md-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}
.entry-content .mx-md-n5{margin-left:-3rem!important;margin-right:-3rem!important}
.entry-content .my-md-0{margin-top:0!important;margin-bottom:0!important}
.entry-content .my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}
.entry-content .my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}
.entry-content .my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}
.entry-content .my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}
.entry-content .my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}
.entry-content .my-md-auto{margin-top:auto!important;margin-bottom:auto!important}
.entry-content .my-md-n0{margin-top:-0!important;margin-bottom:-0!important}
.entry-content .my-md-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}
.entry-content .my-md-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}
.entry-content .my-md-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}
.entry-content .my-md-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}
.entry-content .my-md-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}
.entry-content .p-md-0{padding:0!important}
.entry-content .p-md-1{padding:.25rem!important}
.entry-content .p-md-2{padding:.5rem!important}
.entry-content .p-md-3{padding:1rem!important}
.entry-content .p-md-4{padding:1.5rem!important}
.entry-content .p-md-5{padding:3rem!important}
.entry-content .pt-md-0{padding-top:0!important}
.entry-content .pt-md-1{padding-top:.25rem!important}
.entry-content .pt-md-2{padding-top:.5rem!important}
.entry-content .pt-md-3{padding-top:1rem!important}
.entry-content .pt-md-4{padding-top:1.5rem!important}
.entry-content .pt-md-5{padding-top:3rem!important}
.entry-content .pb-md-0{padding-bottom:0!important}
.entry-content .pb-md-1{padding-bottom:.25rem!important}
.entry-content .pb-md-2{padding-bottom:.5rem!important}
.entry-content .pb-md-3{padding-bottom:1rem!important}
.entry-content .pb-md-4{padding-bottom:1.5rem!important}
.entry-content .pb-md-5{padding-bottom:3rem!important}
.entry-content .pl-md-0{padding-left:0!important}
.entry-content .pl-md-1{padding-left:.25rem!important}
.entry-content .pl-md-2{padding-left:.5rem!important}
.entry-content .pl-md-3{padding-left:1rem!important}
.entry-content .pl-md-4{padding-left:1.5rem!important}
.entry-content .pl-md-5{padding-left:3rem!important}
.entry-content .pr-md-0{padding-right:0!important}
.entry-content .pr-md-1{padding-right:.25rem!important}
.entry-content .pr-md-2{padding-right:.5rem!important}
.entry-content .pr-md-3{padding-right:1rem!important}
.entry-content .pr-md-4{padding-right:1.5rem!important}
.entry-content .pr-md-5{padding-right:3rem!important}
.entry-content .px-md-0{padding-left:0!important;padding-right:0!important}
.entry-content .px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}
.entry-content .px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}
.entry-content .px-md-3{padding-left:1rem!important;padding-right:1rem!important}
.entry-content .px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}
.entry-content .px-md-5{padding-left:3rem!important;padding-right:3rem!important}
.entry-content .py-md-0{padding-top:0!important;padding-bottom:0!important}
.entry-content .py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}
.entry-content .py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}
.entry-content .py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}
.entry-content .py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}
.entry-content .py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}
}
@media (min-width: 992px) {
.entry-content .m-lg-0{margin:0!important}
.entry-content .m-lg-1{margin:.25rem!important}
.entry-content .m-lg-2{margin:.5rem!important}
.entry-content .m-lg-3{margin:1rem!important}
.entry-content .m-lg-4{margin:1.5rem!important}
.entry-content .m-lg-5{margin:3rem!important}
.entry-content .m-lg-auto{margin:auto!important}
.entry-content .m-lg-n0{margin:-0!important}
.entry-content .m-lg-n1{margin:-.25rem!important}
.entry-content .m-lg-n2{margin:-.5rem!important}
.entry-content .m-lg-n3{margin:-1rem!important}
.entry-content .m-lg-n4{margin:-1.5rem!important}
.entry-content .m-lg-n5{margin:-3rem!important}
.entry-content .mt-lg-0{margin-top:0!important}
.entry-content .mt-lg-1{margin-top:.25rem!important}
.entry-content .mt-lg-2{margin-top:.5rem!important}
.entry-content .mt-lg-3{margin-top:1rem!important}
.entry-content .mt-lg-4{margin-top:1.5rem!important}
.entry-content .mt-lg-5{margin-top:3rem!important}
.entry-content .mt-lg-auto{margin-top:auto!important}
.entry-content .mt-lg-n0{margin-top:-0!important}
.entry-content .mt-lg-n1{margin-top:-.25rem!important}
.entry-content .mt-lg-n2{margin-top:-.5rem!important}
.entry-content .mt-lg-n3{margin-top:-1rem!important}
.entry-content .mt-lg-n4{margin-top:-1.5rem!important}
.entry-content .mt-lg-n5{margin-top:-3rem!important}
.entry-content .mb-lg-0{margin-bottom:0!important}
.entry-content .mb-lg-1{margin-bottom:.25rem!important}
.entry-content .mb-lg-2{margin-bottom:.5rem!important}
.entry-content .mb-lg-3{margin-bottom:1rem!important}
.entry-content .mb-lg-4{margin-bottom:1.5rem!important}
.entry-content .mb-lg-5{margin-bottom:3rem!important}
.entry-content .mb-lg-auto{margin-bottom:auto!important}
.entry-content .mb-lg-n0{margin-bottom:-0!important}
.entry-content .mb-lg-n1{margin-bottom:-.25rem!important}
.entry-content .mb-lg-n2{margin-bottom:-.5rem!important}
.entry-content .mb-lg-n3{margin-bottom:-1rem!important}
.entry-content .mb-lg-n4{margin-bottom:-1.5rem!important}
.entry-content .mb-lg-n5{margin-bottom:-3rem!important}
.entry-content .ml-lg-0{margin-left:0!important}
.entry-content .ml-lg-1{margin-left:.25rem!important}
.entry-content .ml-lg-2{margin-left:.5rem!important}
.entry-content .ml-lg-3{margin-left:1rem!important}
.entry-content .ml-lg-4{margin-left:1.5rem!important}
.entry-content .ml-lg-5{margin-left:3rem!important}
.entry-content .ml-lg-auto{margin-left:auto!important}
.entry-content .ml-lg-n0{margin-left:-0!important}
.entry-content .ml-lg-n1{margin-left:-.25rem!important}
.entry-content .ml-lg-n2{margin-left:-.5rem!important}
.entry-content .ml-lg-n3{margin-left:-1rem!important}
.entry-content .ml-lg-n4{margin-left:-1.5rem!important}
.entry-content .ml-lg-n5{margin-left:-3rem!important}
.entry-content .mr-lg-0{margin-right:0!important}
.entry-content .mr-lg-1{margin-right:.25rem!important}
.entry-content .mr-lg-2{margin-right:.5rem!important}
.entry-content .mr-lg-3{margin-right:1rem!important}
.entry-content .mr-lg-4{margin-right:1.5rem!important}
.entry-content .mr-lg-5{margin-right:3rem!important}
.entry-content .mr-lg-auto{margin-right:auto!important}
.entry-content .mr-lg-n0{margin-right:-0!important}
.entry-content .mr-lg-n1{margin-right:-.25rem!important}
.entry-content .mr-lg-n2{margin-right:-.5rem!important}
.entry-content .mr-lg-n3{margin-right:-1rem!important}
.entry-content .mr-lg-n4{margin-right:-1.5rem!important}
.entry-content .mr-lg-n5{margin-right:-3rem!important}
.entry-content .mx-lg-0{margin-left:0!important;margin-right:0!important}
.entry-content .mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}
.entry-content .mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}
.entry-content .mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}
.entry-content .mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}
.entry-content .mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}
.entry-content .mx-lg-auto{margin-left:auto!important;margin-right:auto!important}
.entry-content .mx-lg-n0{margin-left:-0!important;margin-right:-0!important}
.entry-content .mx-lg-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}
.entry-content .mx-lg-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}
.entry-content .mx-lg-n3{margin-left:-1rem!important;margin-right:-1rem!important}
.entry-content .mx-lg-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}
.entry-content .mx-lg-n5{margin-left:-3rem!important;margin-right:-3rem!important}
.entry-content .my-lg-0{margin-top:0!important;margin-bottom:0!important}
.entry-content .my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}
.entry-content .my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}
.entry-content .my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}
.entry-content .my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}
.entry-content .my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}
.entry-content .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}
.entry-content .my-lg-n0{margin-top:-0!important;margin-bottom:-0!important}
.entry-content .my-lg-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}
.entry-content .my-lg-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}
.entry-content .my-lg-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}
.entry-content .my-lg-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}
.entry-content .my-lg-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}
.entry-content .p-lg-0{padding:0!important}
.entry-content .p-lg-1{padding:.25rem!important}
.entry-content .p-lg-2{padding:.5rem!important}
.entry-content .p-lg-3{padding:1rem!important}
.entry-content .p-lg-4{padding:1.5rem!important}
.entry-content .p-lg-5{padding:3rem!important}
.entry-content .pt-lg-0{padding-top:0!important}
.entry-content .pt-lg-1{padding-top:.25rem!important}
.entry-content .pt-lg-2{padding-top:.5rem!important}
.entry-content .pt-lg-3{padding-top:1rem!important}
.entry-content .pt-lg-4{padding-top:1.5rem!important}
.entry-content .pt-lg-5{padding-top:3rem!important}
.entry-content .pb-lg-0{padding-bottom:0!important}
.entry-content .pb-lg-1{padding-bottom:.25rem!important}
.entry-content .pb-lg-2{padding-bottom:.5rem!important}
.entry-content .pb-lg-3{padding-bottom:1rem!important}
.entry-content .pb-lg-4{padding-bottom:1.5rem!important}
.entry-content .pb-lg-5{padding-bottom:3rem!important}
.entry-content .pl-lg-0{padding-left:0!important}
.entry-content .pl-lg-1{padding-left:.25rem!important}
.entry-content .pl-lg-2{padding-left:.5rem!important}
.entry-content .pl-lg-3{padding-left:1rem!important}
.entry-content .pl-lg-4{padding-left:1.5rem!important}
.entry-content .pl-lg-5{padding-left:3rem!important}
.entry-content .pr-lg-0{padding-right:0!important}
.entry-content .pr-lg-1{padding-right:.25rem!important}
.entry-content .pr-lg-2{padding-right:.5rem!important}
.entry-content .pr-lg-3{padding-right:1rem!important}
.entry-content .pr-lg-4{padding-right:1.5rem!important}
.entry-content .pr-lg-5{padding-right:3rem!important}
.entry-content .px-lg-0{padding-left:0!important;padding-right:0!important}
.entry-content .px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}
.entry-content .px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}
.entry-content .px-lg-3{padding-left:1rem!important;padding-right:1rem!important}
.entry-content .px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}
.entry-content .px-lg-5{padding-left:3rem!important;padding-right:3rem!important}
.entry-content .py-lg-0{padding-top:0!important;padding-bottom:0!important}
.entry-content .py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}
.entry-content .py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}
.entry-content .py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}
.entry-content .py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}
.entry-content .py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}
}
@media (min-width: 1200px) {
.entry-content .m-xl-0{margin:0!important}
.entry-content .m-xl-1{margin:.25rem!important}
.entry-content .m-xl-2{margin:.5rem!important}
.entry-content .m-xl-3{margin:1rem!important}
.entry-content .m-xl-4{margin:1.5rem!important}
.entry-content .m-xl-5{margin:3rem!important}
.entry-content .m-xl-auto{margin:auto!important}
.entry-content .m-xl-n0{margin:-0!important}
.entry-content .m-xl-n1{margin:-.25rem!important}
.entry-content .m-xl-n2{margin:-.5rem!important}
.entry-content .m-xl-n3{margin:-1rem!important}
.entry-content .m-xl-n4{margin:-1.5rem!important}
.entry-content .m-xl-n5{margin:-3rem!important}
.entry-content .mt-xl-0{margin-top:0!important}
.entry-content .mt-xl-1{margin-top:.25rem!important}
.entry-content .mt-xl-2{margin-top:.5rem!important}
.entry-content .mt-xl-3{margin-top:1rem!important}
.entry-content .mt-xl-4{margin-top:1.5rem!important}
.entry-content .mt-xl-5{margin-top:3rem!important}
.entry-content .mt-xl-auto{margin-top:auto!important}
.entry-content .mt-xl-n0{margin-top:-0!important}
.entry-content .mt-xl-n1{margin-top:-.25rem!important}
.entry-content .mt-xl-n2{margin-top:-.5rem!important}
.entry-content .mt-xl-n3{margin-top:-1rem!important}
.entry-content .mt-xl-n4{margin-top:-1.5rem!important}
.entry-content .mt-xl-n5{margin-top:-3rem!important}
.entry-content .mb-xl-0{margin-bottom:0!important}
.entry-content .mb-xl-1{margin-bottom:.25rem!important}
.entry-content .mb-xl-2{margin-bottom:.5rem!important}
.entry-content .mb-xl-3{margin-bottom:1rem!important}
.entry-content .mb-xl-4{margin-bottom:1.5rem!important}
.entry-content .mb-xl-5{margin-bottom:3rem!important}
.entry-content .mb-xl-auto{margin-bottom:auto!important}
.entry-content .mb-xl-n0{margin-bottom:-0!important}
.entry-content .mb-xl-n1{margin-bottom:-.25rem!important}
.entry-content .mb-xl-n2{margin-bottom:-.5rem!important}
.entry-content .mb-xl-n3{margin-bottom:-1rem!important}
.entry-content .mb-xl-n4{margin-bottom:-1.5rem!important}
.entry-content .mb-xl-n5{margin-bottom:-3rem!important}
.entry-content .ml-xl-0{margin-left:0!important}
.entry-content .ml-xl-1{margin-left:.25rem!important}
.entry-content .ml-xl-2{margin-left:.5rem!important}
.entry-content .ml-xl-3{margin-left:1rem!important}
.entry-content .ml-xl-4{margin-left:1.5rem!important}
.entry-content .ml-xl-5{margin-left:3rem!important}
.entry-content .ml-xl-auto{margin-left:auto!important}
.entry-content .ml-xl-n0{margin-left:-0!important}
.entry-content .ml-xl-n1{margin-left:-.25rem!important}
.entry-content .ml-xl-n2{margin-left:-.5rem!important}
.entry-content .ml-xl-n3{margin-left:-1rem!important}
.entry-content .ml-xl-n4{margin-left:-1.5rem!important}
.entry-content .ml-xl-n5{margin-left:-3rem!important}
.entry-content .mr-xl-0{margin-right:0!important}
.entry-content .mr-xl-1{margin-right:.25rem!important}
.entry-content .mr-xl-2{margin-right:.5rem!important}
.entry-content .mr-xl-3{margin-right:1rem!important}
.entry-content .mr-xl-4{margin-right:1.5rem!important}
.entry-content .mr-xl-5{margin-right:3rem!important}
.entry-content .mr-xl-auto{margin-right:auto!important}
.entry-content .mr-xl-n0{margin-right:-0!important}
.entry-content .mr-xl-n1{margin-right:-.25rem!important}
.entry-content .mr-xl-n2{margin-right:-.5rem!important}
.entry-content .mr-xl-n3{margin-right:-1rem!important}
.entry-content .mr-xl-n4{margin-right:-1.5rem!important}
.entry-content .mr-xl-n5{margin-right:-3rem!important}
.entry-content .mx-xl-0{margin-left:0!important;margin-right:0!important}
.entry-content .mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}
.entry-content .mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}
.entry-content .mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}
.entry-content .mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}
.entry-content .mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}
.entry-content .mx-xl-auto{margin-left:auto!important;margin-right:auto!important}
.entry-content .mx-xl-n0{margin-left:-0!important;margin-right:-0!important}
.entry-content .mx-xl-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}
.entry-content .mx-xl-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}
.entry-content .mx-xl-n3{margin-left:-1rem!important;margin-right:-1rem!important}
.entry-content .mx-xl-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}
.entry-content .mx-xl-n5{margin-left:-3rem!important;margin-right:-3rem!important}
.entry-content .my-xl-0{margin-top:0!important;margin-bottom:0!important}
.entry-content .my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}
.entry-content .my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}
.entry-content .my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}
.entry-content .my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}
.entry-content .my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}
.entry-content .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}
.entry-content .my-xl-n0{margin-top:-0!important;margin-bottom:-0!important}
.entry-content .my-xl-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}
.entry-content .my-xl-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}
.entry-content .my-xl-n3{margin-top:-1rem!important;margin-bottom:-1rem!important}
.entry-content .my-xl-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}
.entry-content .my-xl-n5{margin-top:-3rem!important;margin-bottom:-3rem!important}
.entry-content .p-xl-0{padding:0!important}
.entry-content .p-xl-1{padding:.25rem!important}
.entry-content .p-xl-2{padding:.5rem!important}
.entry-content .p-xl-3{padding:1rem!important}
.entry-content .p-xl-4{padding:1.5rem!important}
.entry-content .p-xl-5{padding:3rem!important}
.entry-content .pt-xl-0{padding-top:0!important}
.entry-content .pt-xl-1{padding-top:.25rem!important}
.entry-content .pt-xl-2{padding-top:.5rem!important}
.entry-content .pt-xl-3{padding-top:1rem!important}
.entry-content .pt-xl-4{padding-top:1.5rem!important}
.entry-content .pt-xl-5{padding-top:3rem!important}
.entry-content .pb-xl-0{padding-bottom:0!important}
.entry-content .pb-xl-1{padding-bottom:.25rem!important}
.entry-content .pb-xl-2{padding-bottom:.5rem!important}
.entry-content .pb-xl-3{padding-bottom:1rem!important}
.entry-content .pb-xl-4{padding-bottom:1.5rem!important}
.entry-content .pb-xl-5{padding-bottom:3rem!important}
.entry-content .pl-xl-0{padding-left:0!important}
.entry-content .pl-xl-1{padding-left:.25rem!important}
.entry-content .pl-xl-2{padding-left:.5rem!important}
.entry-content .pl-xl-3{padding-left:1rem!important}
.entry-content .pl-xl-4{padding-left:1.5rem!important}
.entry-content .pl-xl-5{padding-left:3rem!important}
.entry-content .pr-xl-0{padding-right:0!important}
.entry-content .pr-xl-1{padding-right:.25rem!important}
.entry-content .pr-xl-2{padding-right:.5rem!important}
.entry-content .pr-xl-3{padding-right:1rem!important}
.entry-content .pr-xl-4{padding-right:1.5rem!important}
.entry-content .pr-xl-5{padding-right:3rem!important}
.entry-content .px-xl-0{padding-left:0!important;padding-right:0!important}
.entry-content .px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}
.entry-content .px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}
.entry-content .px-xl-3{padding-left:1rem!important;padding-right:1rem!important}
.entry-content .px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}
.entry-content .px-xl-5{padding-left:3rem!important;padding-right:3rem!important}
.entry-content .py-xl-0{padding-top:0!important;padding-bottom:0!important}
.entry-content .py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}
.entry-content .py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}
.entry-content .py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}
.entry-content .py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}
.entry-content .py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}
}
