/**
 * This is the main CSS file for the layout, which will contain most of your site's CSS.
 */

/********** Key **********

.blockName
.blockName-elementName (for a subcomponent of a block)
.blockName_modifierName (for a variation of a block)

*/


/********** CSS Reset & Base Styles **********/

/** Use Colors - color: var(--dkBlue); */
:root {
    --blue: #567B8D;
    --ltBlue: #E0ECF2;
    --pink: #EDCDC2;
    --ltGray: #E4E5E7;
    --mdGray: #6A6A6A;
    --dkGray: #343232;

    /*--bodyFont: "Nunito", "Arial", sans-serif;*/
    --bodyFont: "omnes-pro", sans-serif;
    /*--headingFont: "Lora", serif;*/
    --headingFont: "omnes-pro", sans-serif;
    --navFont: "omnes-pro", Sans-Serif;
}

/***** HELPERS *****/
/* For clearfix, use the .group class */
.container:after,
.group:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.nobr {
    white-space: nowrap;
}

/* Responsive images */
img, object, embed {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
}

.noMargin.noMargin {
    margin: 0;
}

.noPad.noPad {
    padding: 0;
}

.clickable {
    cursor: pointer;
}

.invisible {
    visibility: hidden;
    position: absolute;
    z-index: -99;
}

body .hide {
    display: none;
}

.center {
    text-align: center;
}

.animate {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.columnize2 li, .columnize3 li, .columnize4 li {
    padding-right: 2.5em;
}

/* Helper classes for setting bottom margins */
.mb0 {
    margin-bottom: 0;
}
.mb1 {
    margin-bottom: .5rem;
}
.mb2 {
    margin-bottom: 1rem;
}
.mb3 {
    margin-bottom: 1.5rem;
}
.mb4 {
    margin-bottom: 2rem;
}
.mb5 {
    margin-bottom: 2.5rem;
}
.mb6 {
    margin-bottom: 3rem;
}

/**
 * Wrap tables and other elements with this to make it possible to enable horizontal scroll when the screen size is too small to contain the element fully
 */
.scrollWrapper {
    overflow: auto;
    position: relative;
    margin-bottom: 2em;
}
.scrollWrapper > table {
    margin: 0;
}

/***** BLOCKS *****/

html {
    font-size: 100%; /* 16px - We set the font size here so that we can use rems to adjust the text size relative to this root size. Use ems instead when you want to make it easier to resize everything in the block together, i.e. at a responsive breakpoint */
}

body {
    position: relative;
    background-color: #FFF;
    overflow-x: hidden;

    font-family: var(--bodyFont);
    font-weight: 500;
    line-height: 1.25;
    color: var(--dkGray);

    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust: 100%; /* responsive */
}

.mobileOverflowFix {
    overflow-x: hidden;
}

/* Sets site's main container width */
.container {
    padding: 0 2rem;
    min-width: 900px;
    max-width: 1200px;
    margin: 0 auto;
    zoom: 1;
    position: relative;
}
    /* Ignore nested containers */
    .container .container {
        width: auto;
        min-width: initial;
        max-width: initial;
        margin: initial;
    }
    @media screen and (max-width:1200px) {
        .container {
            min-width: 290px;
        }
    }
    @media screen and (max-width:600px) {
        .container {
            padding: 0 1rem;
        }
    }

/*** Headings ***/

.heading1 {
    font-family: var(--headingFont);
    font-weight: 500;
    font-size: 1.75em;
    color: var(--dkGray);
    margin-bottom: 1em;
}

.heading2 {
    font-family: var(--headingFont);
    font-weight: 500;
    font-size: 1.6em;
    color: var(--blue);
    margin-bottom: 1em;
    line-height: 1.4em;
}

.heading3 {
    font-family: var(--bodyFont);
    font-weight: 500;
    font-size: 1.25em;
    color: var(--blue);
    line-height: 1.4em;
    margin-bottom: .7em;
    text-transform: uppercase;
}
    @media (max-width: 600px) {
        .heading3, h3 {
            font-size: 1.7em;
        }
    }

.heading_white {
	color: #FFF;
}
	.heading_white i {
		color: #FFF;
	}

/**
 * Increase the spacing between the end of a paragraph and the start of a new heading
 */
p + .heading1, p + a + .heading1,
p + .heading2, p + a + .heading2,
p + .heading3, p + a + .heading3 {
    margin-top: 2rem;
}

/*** Rich Text ***/
/* Use the richText class to wrap content entered in rich text (wysiwyg) editor fields. */

.richTxt {
    position: relative;
    z-index: 1;
}
    .richTxt p {
        line-height: 1.45;
        margin-bottom: 1em;
        font-size: 1.15em;
    }
    .richTxt ol, .richTxt ul {
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }
    .richTxt ul {
        list-style: none;
        padding-left: 3rem;
    }
    .richTxt ul > li {}
        .richTxt ul > li:before {
            content: "";
            font-family: "Font Awesome 6 Pro";
            font-weight: 600;
            padding-right: 15px;
            margin-left: -25px;
            color: var(--pink);
        }
    .richTxt ol {
        list-style: decimal;
    }
    .richTxt li {
        margin-bottom: .65rem;
        font-size: 1.15rem;
    }
    .richTxt img {
        padding: 5px;
        max-height: 400px;
    }
    .richTxt figure {
        display: inline-block;
        margin: 1rem;
    }

.small, .richTxt .small {
    font-size: .75em;
}

.big, .richTxt .big {
    font-size: 1.3em;
    line-height: 1.5em;
}
    @media (max-width: 800px) {
        .big, .richTxt .big {
            font-size: 1.15em;
        }
    }

strong {
    font-weight: bold;
}

hr {
    border-bottom: none;
    border-top: 1px solid rgba(0,0,0,0.07);
    border-left: none;
    border-right: none;
    height: 0px;
    margin-top: 26px;
    margin-bottom: 26px;
}

.link {
    color: var(--blue);
    border-bottom: 2px solid transparent;

    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
    .link:hover, .link:focus {
        border-bottom-color: #426373;
        color: #426373;

        -moz-transition: all .3s;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

blockquote {
	font-size: 1.1em;
	font-style: italic;
	color: var(--dkGray);
	line-height: 1.4em;
	padding-top: 40px;
	margin-bottom: .9em;
	margin-left: 75px;
}
	blockquote:before {
		content: '“';
		font-family: var(--headingFont);
		font-size: 8em;
		color: var(--blue);
		display: block;
		float: left;
		margin-left: -100px;
		padding-left: 13px;
		line-height: .55;
	}
	blockquote sup {
		text-align: right;
		font-weight: bold;
	}

figure {}
	figure > img {}

figcaption {
    font-family: var(--bodyFont);
    font-style: italic;
    font-size: .8em;
    color: var(--mdGray);
    line-height: 1.4em;
    text-align: right;
    width: 50%;
    margin: 15px 0 30px;
}

/**
 * Increase the spacing between the end of a paragraph and the start of a new heading
 */
p {
    margin-bottom: 1.2em;
}
    p + h2, p + a + h2,
    p + h3, p + a + h3,
    p + h4, p + a + h4,
    p + h5, p + a + h5 {
        margin-top: 1.5em;
    }


/**
 * These classes are mainly for use in CKEditor. CKEditor can only apply one class at a time, so all subclasses must include the base class's styles
 */

.align, .align_left, .align_right, .align_center,
.align > img, .align_left > img, .align_right > img, .align_center > img {
    max-width: 100%;
    margin-bottom: 0;

    max-width: 100vw;
    width: auto; /* 264px */
    height: auto; /* 350px */
    display: block;
}
.align_left, .align_right {
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
}
.align_left {
    float: left;
    margin-right: 2em;
    -moz-border-radius: 0 50% 50% 0;
    -webkit-border-radius: 0 50% 50% 0;
    border-radius: 0 50% 50% 0;
    -webkit-shape-outside: ellipse(100% 70% at 0% 50%);
    shape-outside: ellipse(100% 70% at 0% 50%);
    margin-left: calc(-100vw/2 + 100%/2);
}
.align_right {
    float: right;
    margin-left: 2em;
    -moz-border-radius: 50% 0 0 50%;
    -webkit-border-radius: 50% 0 0 50%;
    border-radius: 50% 0 0 50%;
    -webkit-shape-outside: ellipse(80% 60% at 80% 50%);
    shape-outside: ellipse(80% 60% at 80% 50%);
    margin-right: calc(-100vw/2 + 100%/2);
}
	.align_right figcaption {
		text-align: right;
	}
.align_center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
@media (max-width:800px) {
	.align_left > figcaption,
	.align_right > figcaption,
	.align_center > figcaption {
		font-size: .75em;
	}
}
@media (max-width: 600px) {
    .align_left, .align_right, .align_center {
        float: none;
        max-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        -moz-border-radius: 100px;
        -webkit-border-radius: 100px;
        border-radius: 100px;

        width: 100%;
        height: auto;
    }
    	.align_left > figcaption,
    	.align_right > figcaption {
    		text-align: center;
    	}
}
.align_square {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	width: auto;
	height: auto;
	shape-outside: none;
}

.columnize2 li, .columnize3 li, .columnize4 li {
    padding-right: 2.5em;
}

/************** Form Styles ****************/

label {
    display: block;
    margin-bottom: 2px;
    line-height: 1.2em;
    font-size: .7em;
    font-weight: 400;
    color: var(--mdGray);
    letter-spacing: 0.99px;
    text-transform: uppercase;
}

/* Placeholder Text */

.placeholder,
::-webkit-input-placeholder,
::-moz-placeholder,
::-ms-input-placeholder,
:-moz-placeholder {
    color: #9C9C9C;
}

.txtBox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

	background: #FAFAFA;
    border: 1px solid #A6A6A6;
    font-family: var(--bodyFont);
    color: var(--dkGray);
    padding: 10px 15px;
    margin: 0 10px 10px 0;
    /* min-width: 250px; */
    height: 45px;
    line-height: 1em;
    letter-spacing: 1.5px;

    display: inline-block;
    vertical-align: top;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
    .txtBox-default.txtBox-default {
        color: #ccc;
    }
    .txtBox:hover, .txtBox:focus {
        outline: none;
        /* background-color: #eefefa; */
        border-color: var(--pink);
        background-color: #f8fbfd;
    }
    /*.txtBox:focus {
        background-color: #FFF;
    }*/
    .txtBox::placeholder,
    .txtBox::-webkit-input-placeholder,
    .txtBox::-moz-placeholder,
    .txtBox::-ms-input-placeholder,
    .txtBox:-moz-placeholder {
    	color: #9C9C9C;
    	font-weight: 200;
    }

.txtBox_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	
	-moz-appearance: button;
    -webkit-appearance: button;
    -webkit-border-radius: 2px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    background-color: #FAFAFA;
    background-image: url(images/arrow-down.png);
    background-position: right;
    background-repeat: no-repeat;
    border: 1px solid #AAA;
    color: #555;
    font-size: .8em;
    overflow: hidden;
    height: auto;
    line-height: 1.5em;
    padding: 10px;
    padding-right: 32px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
}
.txtBox_error {}


@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
    .txtBox_select {
        background-image: url(images/arrow-down@2x.png);
        background-size: 20px 7px;
    }
}
.txtBox_select:hover, .txtBox_select:focus, .txtBox_select:active {
    border-color: var(--pink);
    background-color: #f8fbfd;
}

/* for use on textareas */
.txtBox_multi {
    line-height: 1.4em;
    min-height: 150px;
	vertical-align: top;
    padding-top: 12px;
    padding-bottom: 12px;
}
	.txtBox_multi:hover, .txtBox_multi:focus, .txtBox_multi:active {
		background-color: #f8fbfd;
	}

.required {}
	.required:after {
		content: "\2217";
		color: #f5463b;
		padding-left: 5px;
		font-size: 1.5em;
	}

/********** Button Styles **********/
.btn, .btn:visited { /* default color is gray #6a6a6a */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border: 2px solid var(--mdGray);
    background-color: var(--mdGray);
    box-shadow: 1px 2px 4px 0 rgb(0 0 0 / 50%);

    z-index: 1;

    display: inline-block;
    position: relative;
    margin: 0 8px 18px;
    padding: 10px 22px;

    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;

    font-weight: 500;
    color: #fff;
    font-size: 1em;
    text-align: center;
    /*letter-spacing: 1.09px;*/

    text-decoration: none;

    -webkit-transition: all .3s;
    transition: all .3s;
}
    .btn i {
        margin-left: 5px;
    }
    .btn:hover, .btn:focus {
        background-color: var(--pink);
        border-color: var(--pink);
        color: var(--dkGray);

        -webkit-transition: all .3s;
        transition: all .3s;
    }
.btn_circle {
    height: 50px;
    width: 50px;
    padding: 0;
    line-height: 50px;
    font-size: 22px;
    cursor: pointer;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
    .btn_circle i {
        margin: 0;
        line-height: 50px;

        display: flex;
        align-items: center;
        justify-content: center;
    }
.btn_outline {
	border: 2px solid #FFF;
    background: transparent;
    color: #FFF;
}
	.btn_outline:hover, .btn_outline:focus, .btn_outline:active,
	.btn_wrap:hover .btn_outline, .btn_wrap:focus .btn_outline, .btn_wrap:active .btn_outline {
		background-color: #FFF;
		border-color: #FFF;
		color: var(--dkGray);
	}
		.btn_outline:hover i, .btn_outline:focus i, .btn_outline:active i,
		.btn_wrap:hover .btn_outline i, .btn_wrap:focus .btn_outline i, .btn_wrap:active .btn_outline i {
			color: var(--dkGray);
		}
.btn_white {
	background-color: #FFF;
    border-color: #FFF;
	color: var(--dkGray);
}
	.btn_white:hover, .btn_white:focus, .btn_white:active,
	.btn_wrap:hover .btn_white, .btn_wrap:focus .btn_white, .btn_wrap:active .btn_white {
		-moz-box-shadow: 0 0 10px rgba(255,255,255,.5);
        -webkit-box-shadow: 0 0 10px rgba(255,255,255,.5);
		box-shadow: 0 0 10px rgba(255,255,255,.5);
        background-color: #FFF;
        color: var(--blue);
	}
.btn_pink, .btn_pink:visited {
    background-color: var(--pink);
    color: var(--dkGray);
    border: 2px solid var(--pink);
    transition: all .3s;
}
	.btn_pink:hover, .btn_pink:focus, .btn_pink:active,
	.btn_wrap:hover .btn_pink, .btn_wrap:focus .btn_pink, .btn_wrap:active .btn_pink {
		background-color: var(--dkGray);
        border-color: var(--dkGray);
		color: var(--pink);
        transition: all .3s;
	}
    .section_dark .btn_pink:hover, .section_dark .btn_pink:focus, .section_dark .btn_pink:active {
        background-color: var(--blue);
        border-color: var(--blue);
        color: #FFF;
    }
.btn_blue, .btn_blue:visited {
	background-color: var(--blue);
	border: 2px solid var(--blue);
}
	.btn_blue:hover, .btn_blue:focus, .btn_blue:active,
	.btn_wrap:hover .btn_blue, .btn_wrap:focus .btn_blue, .btn_wrap:active .btn_blue
	button:hover .btn_blue, button:focus .btn_blue, button:active .btn_blue {
		background-color: var(--pink);
        border-color: var(--pink);
		color: var(--blue);
	}
/*.btn_narrow {
    padding: 4px 12px;
    font-size: .9em;
}
.btn_small {
	font-size: .8em;
	padding: 2px 60px;
}
.btn_xSmall {
    font-size: .8em;
    padding: 2px 20px;
}*/
.btn_error {
	background-color: #f5463b;
	color: #FFF;
}
.btn_wrap {}
/* Text-only buttons */
@media (max-width:600px) {
	.btn {
		padding: 10px 20px;
	}
	.btn_circle {
		padding: 0;
	}
}


/********** Site Logo **********/
.siteLogo {
    text-align: center;
	margin-top: 30px;
    flex-grow: 3;
}
    .siteLogo-img {
        max-width: 275px;
    }
    @media (max-width: 1050px) {
        .siteLogo-img {
            max-width: 250px;
        }
    }
	@media (max-width:750px) {
		.siteLogo-img {
			width: 75%;
		}
	}
	@media (max-width:600px) {
		.siteLogo-img {
			width: 70%;
		}
	}

/********** Header **********/
.header {
	position: relative;
}
	.header nav {
		width: 100%;
	}
    .header-top {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.headerConnect {
    display: grid;
    gap: .5rem;
    text-align: right;
}
    .headerConnect-icon {}
    .headerConnect-text {}
        .headerConnect-link,
        .headerConnect a[href^=tel] {
            color: var(--blue) !important;
            padding-bottom: .1em;
        }
        .headerConnect-link .headerConnect-icon,
        .headerConnect a[href^=tel] .headerConnect-icon {
            padding-right: .35em;
        }
        .headerConnect-link .headerConnect-text,
        .headerConnect a[href^=tel] .headerConnect-text {
            border-bottom: 1px solid #FFFFFF;
            -moz-transition: all .3s;
            -webkit-transition: all .3s;
            transition: all .3s;
        }
            .headerConnect-link:hover .headerConnect-text,
            .headerConnect a[href^=tel]:hover .headerConnect-text,
            .headerConnect-link:focus .headerConnect-text,
            .headerConnect a[href^=tel]:focus .headerConnect-text,
            .headerConnect-link:active .headerConnect-text,
            .headerConnect a[href^=tel]:active .headerConnect-text
            {
                border-bottom-color: var(--blue);
                -moz-transition: all .3s;
                -webkit-transition: all .3s;
                transition: all .3s;
            }
.headerConnect_mobile {
    display: none;
}
    /* Mobile Menu */
    @media (max-width: 1000px) {
        .headerConnect {
            /*display: none;*/
            text-align: left;
            order: -1;
            margin-top: 30px;
        }
        .headerConnect_mobile {
            margin-top: 4em;
            display: grid;
            gap: .75rem;
            text-align: center;
            font-size: 1.2em;
        }
    }
    @media (max-width: 650px) {
        .headerConnect {
            display: none;
        }
    }

.pageMeta {
	top: 69%;
	right: 50%;
	-webkit-transform: translate(50%,-50%);
	-ms-transform: translate(50%,-50%);
	transform: translate(50%,-50%);
	width: 90%;
}
	.pageMeta-title {
		margin-bottom: 10px;
        text-shadow: 0 1px 1px rgba(0,0,0,.5), 0 0 50px rgba(0,0,0,.5);
	}
	.pageMeta-breadcrumbs {
		font-family: var(--bodyFont);
		font-size: .75em;
		line-height: 1em;
		margin: 0 0 10px;
		padding-left: 0;
		text-shadow: 0 1px 1px rgba(0,0,0,.2), 0px 1px 20px rgba(0,0,0,0.30);
	}
		.pageMeta-breadcrumbs li {
			display: inline-block;
		}
		.pageMeta-breadcrumbs a {
			color: var(--blue);
		}
			.pageMeta-breadcrumbs a:hover, .pageMeta-breadcrumbs a:focus, .pageMeta-breadcrumbs a:active {
				border-bottom: 1px dashed var(--dkGray);
			}
		.pageMeta-breadcrumbs i {
			font-size: .9em;
			letter-spacing: 0.48px;
			line-height: 7px;
			color: var(--blue);
			margin: 0 7px;
		}
@media (max-width:1200px) {
	.pageMeta {
		top: 65%;
	}
		.pageMeta-title {
			font-size: 1.9em;
		}
}

/********** Footer **********/
.footer {}
	.footer-bgLogo {
		position: absolute;
		background-image: url('images/carenet-logo-bg.png');
		background-repeat: no-repeat;
		background-position-x: right;
		background-position-y: 0;
        background-size: 28em;
		top: -17px;
		right: 195px;
		bottom: 0;
		left: 0;
	}
        @media
        (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {
            .footer-bgLogo {
                background-image: url('images/carenet-logo-bg@2x.png');
                background-size: 505px 493px;
            }
        }

.footerUpper {
    position: relative;
    background: var(--blue);
    color: #FFF;
    padding: 60px 0;
    overflow: hidden;
}
    .footerUpper-grid {
        display: grid;
        grid-template-columns: 1fr 33%;
    }
	.footerUpper-siteMap {

	}
	.footerUpper-connect {

	}
        .footerUpper-connect .btn_white {
            color: var(--blue);
        }
    @media (max-width: 700px) {
        .footerUpper-grid {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 500px) {
        .footerUpper {
            padding-bottom: 1em;
        }
    }

.footerLower {
	padding: 20px 0;
    background: var(--blue);
    color: #FFF;
}
    .footerLower-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1em;
        border-top: 1px solid #81B1C9;
    }
	.footerLower-copy {
		font-size: .7em;
	}
	.footerLower-network {
		margin: 0 auto 20px;
		text-align: center;
	}
		.footerLower-network a {
			display: inline-block;
			opacity: 1;
			padding: 10px;
		}
			.footerLower-network a:hover,
			.footerLower-network a:focus,
			.footerLower-network a:active {
				opacity: .8;
			}
		.footerLower-network img {
			display: block;
		}
@media (max-width:750px) {
	.footerLower-copy {
		width: 80%;
		text-align: center;
		margin: 0 auto;
		line-height: 2em;
	}
}
@media (max-width:600px) {
	.footer-bgLogo {
		right: 100px;
	}
}
@media (max-width:500px) {
	.footer-bgLogo {
		right: -175px;
	}
}

main {
    display: block; /* Fix for IE */
}
.main {
    min-height: 400px;
    
    background: -moz-linear-gradient(bottom,  #FFFFFF 2%, #F0F4F6 98%); /* FF3.6+ */
    background: -webkit-linear-gradient(bottom,  #FFFFFF 2%, #F0F4F6 98%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(bottom,  #FFFFFF 2%, #F0F4F6 98%); /* Opera 11.10+ */
    background: -ms-linear-gradient(bottom,  #FFFFFF 2%, #F0F4F6 98%); /* IE10+ */
    background-image: linear-gradient(#FFFFFF 2%, #F0F4F6 98%);
    
	overflow: hidden; /* MvA to make background gradient cover entire Main section on Form pages. May need to be removed */
    padding-top: 40px;
    /*padding-bottom: 50px;*/ /* MvA removed to allow bgStyle_logo to take up the full Main section... @todo need a workaround */
}
	.main .article {
		padding-top: 25px;
		padding-bottom: 40px;
	}
.layout_modal .main {
    min-height: 0;
    background: none;
}
@media (max-width:600px) {
	.main .article {
		padding-top: 50px;
		padding-bottom: 40px;
	}
}

.template_Home .main {

}

.template_Contact .main,
.template_Donate .main,
.template_PageList .main {
	padding-top: 0;
}
.template_Donate .richTxt {
	padding: 30px 0 0;
	max-width: 80%;
	margin: 0 auto;
}
.template_Contact .richTxt {
	position: relative;
}
@media (max-width:1000px) {
	.template_PageList .container,
	.template_Donate .container,
	.template_Contact .container {
		position: static;
	}
	.template_PageList .main,
	.template_Donate .main,
	.template_Contact .main {
		position: relative;
	}
}


.MarkupPagerNav {
    margin: 1em 0 2em;
    padding: 0;
    display: inline-block;
}
    .MarkupPagerNav:hover li.MarkupPagerNavOn a,
    .MarkupPagerNav:focus li.MarkupPagerNavOn a,
    .MarkupPagerNav:active li.MarkupPagerNavOn a {
        background: none;
        color: var(--blue);
    }
    .MarkupPagerNav li {
        display: inline-block;
        list-style: none;
        margin: 0;
    }
    .MarkupPagerNav li a,
    .MarkupPagerNav li.MarkupPagerNavSeparator {
        display: inline-block;
        line-height: 37px;
        text-align: center;
        width: 40px;
        height: 40px;
        color: var(--blue);
        margin-left: 3px;
        font-size: 18px;
        font-weight: bold;
        border: 2px solid var(--blue);

        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px;
    }
    .MarkupPagerNav li.MarkupPagerNavOn a,
    .MarkupPagerNav.MarkupPagerNav li a:hover,
    .MarkupPagerNav.MarkupPagerNav li a:focus,
    .MarkupPagerNav.MarkupPagerNav li a:active {
        color: #fff;
        background: var(--blue);
        text-decoration: none;
    }

.connectBar {
	height: 80px;
}
	.connectBar ul {
		list-style: none;
		position: relative;
		height: 100%;
		padding: 0;
		margin: 0;
		line-height: 80px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
        align-items: center;
	}
	.connectBar li {
		font-weight: 500;
		font-size: .75em;
		letter-spacing: 1.06px;
		display: inline-block;
		margin-bottom: 0;
	}
	.connectBar small {
		font-size: inherit;
	}
	.connectBar a, .connectBar a:visited {
		color: #FFFFFF;
		opacity: .9;
	}
		.connectBar a:hover, .connectBar a:focus, .connectBar a:active {
			opacity: 1;
		}
	.connectBar .btn_circle, .connectFooter .btn_circle {
		margin-right: 18px;
		margin-left: 0;
		height: 38px;
		width: 38px;
		line-height: 38px;
		font-size: 1.65em;
	}
        .connectBar .btn_circle i, .connectFooter .btn_circle i {
            line-height: 38px;
        }
	.connectBar-wide {
		display: inline-block;
	}
	.connectBar-narrow {
		display: none;
	}
	.connectBar-links {}
@media (max-width:1000px) {
	.connectBar li {
		font-size: .7em;
	}
	.connectBar .btn_circle {
		margin-right: 10px;
		height: 35px;
		width: 35px;
		line-height: 35px;
		font-size: 1.4em;
	}
        .connectBar .btn_circle i {
            line-height: 35px;
        }
}
@media (max-width:850px) {
	.connectBar li {
		font-size: .65em;
	}
}
@media (max-width:750px) {
	.connectBar ul {
		width: 80%;
		margin: 0 auto;
	}
	.connectBar .btn_circle {
		margin-right: 8px;
		height: 38px;
		width: 38px;
		line-height: 38px;
		font-size: 1.65em;
	}
	.connectBar-wide {
		display: none;
	}
	.connectBar-narrow {
		display: inline-block;
	}
}
@media (max-width:600px) {
	.connectBar .btn_circle {
		margin-right: 0;
	}
	.connectBar-narrow {
		display: none;
	}
}

.connectFooter {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
	.connectFooter-contactInfo {
        flex-basis: 100%;
		font-size: .95em;

        display: grid;
        row-gap: 1em;
        align-content: start;
	}
    .connectFooter-item, .connectFooter-item:visited {
        display: grid;
        grid-template-columns: 1fr;
        text-align: right;
        align-items: center;
        column-gap: 1em;

        color: #FFF;
        font-weight: 100;
        opacity: .8;
    }
        .connectFooter a:hover, .connectFooter a:focus, .connectFooter a:active {
            opacity: 1;
        }
        .connectFooter-item .btn_circle {
            grid-column: 2;
            margin-bottom: 0;
            margin-left: 0;
            margin-right: 0;
            font-size: 1.4em;
        }
	.connectFooter-network {
		text-align: right;
        align-content: flex-end;
        flex-basis: 100%;
	}
		.connectFooter-network a {
			display: inline-block;
			opacity: .9;
		}
		.connectFooter-network img {
			display: block;
		}
@media (max-width:700px) {
    .connectFooter {
        flex-wrap: nowrap;
        padding-top: 2em;
    }
    .connectFooter-contactInfo {
        justify-content: start;
    }
    .connectFooter-item, .connectFooter-item:visited {
        text-align: left;
        grid-template-columns: auto 1fr;
    }
        .connectFooter-item > div {
            grid-area: 1 / 2;
        }
        .connectFooter-item .btn_circle {
            grid-column: 1;
        }
}
@media (max-width:500px) {
    .connectFooter {
        flex-wrap: wrap;
        row-gap: 2em;
    }
    .connectFooter-contactInfo {
        justify-content: center;
    }
    .connectFooter-network {
        text-align: center;
        order: -1;
    }
}


.leadSection, .mainSection {
	position: relative;
	min-height: 400px;
    padding-bottom: 2rem;
	/*background-image: linear-gradient(-90deg, #F0F4F6 30%, #FFF 70%);*/
}
	.leadSection .align_right {
		margin-right: calc(-100vw/2 + 100%/2);
		margin-left: 4em;
        height: 450px;
	}
	.mainSection > .container {
		width: 75%;
	}
@media (max-width:1250px) {
	.leadSection .align_right {
		margin-left: 2em;
	}
}
@media (max-width:1000px) {
    .leadSection .align_right {
        margin-left: 2em;
        margin-bottom: 3em;
        height: 400px;
    }
	.mainSection > .container {
		width: 80%;
	}
}
@media (max-width: 800px) {
    .leadSection .align_right {
        height: 350px;
    }
}
@media (max-width:600px) {
	.leadSection .align_right {
		margin: 0 auto 2.5em;
        border-radius: 100px;
        -webkit-shape-outside: circle(50%);
        shape-outside: circle(50%);
        width: 80%;
        height: auto;
	}
}

.pageTitle {
    position: relative;
    z-index: 1;
    padding-top: 2em;
    padding-bottom: 1em;
    margin-bottom: 0;
}
    .pageTitle span {
        border-bottom: var(--pink) 2px solid;
    }
    .template_BasicPage .pageTitle,
    .template_Blog .pageTitle {
        padding-top: .5em;
        padding-bottom: 2em;
    }

.bgStyle {}
.bgStyle_white {}
.bgStyle_dkblue {
	background-color: var(--blue);
	width: 100%;
}
.bgStyle_pink {
	background-color: var(--pink);
	width: 100%;
}
.bgStyle_logo {
	position: absolute;
	background-image: url('images/carenet-logo_bg.png');
	background-repeat: no-repeat;
	background-position-x: left;
	background-position-y: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: -245px;
}
.bgStyle_bubbles {
	position: absolute;
	background-image: url('images/circles.png');
	background-repeat: no-repeat;
	background-position-x: left;
	background-position-y: bottom;
	top: 0;
	right: 0;
	bottom: -100px;
	left: 0;
    z-index: 0;
}

.search {}
	.search .btn_circle {
		margin-right: 0;
        margin-bottom: 0;
		font-size: 20px;
	}
	.search-box {
		display: none;
        font-size: 2em;
        color: var(--mdGray);
        height: 100%;
        border: 0;
        outline: 0;
        background: none;
        font-weight: 200;
        padding: 0;

        -moz-appearance:none;
        -webkit-appearance:none;
	}
    .search-box::-webkit-input-placeholder {
        color: #fff;
    }
    .search-box:-moz-placeholder {
        color: #fff;
    }
    .search-box::-moz-placeholder {
        color: #fff;
    }
    .search-box::-ms-input-placeholder {
        color: #fff;
    }
	.search-btn {
		font-size: 1.65em;
        border: 0;
		width: 100%;
		padding: 0;
	}
    .search-btn:hover, .search-btn:focus, .search-btn:active {
        cursor: pointer;
        outline: none;
    }

.search_open {
    width: 100%;
}
    .search_open .search-box {
        display: block;
        float: left;
        height: 80px;
        color: #fff;
        width: 75%;
    }
    .search_open .search-btnOuter {
        height: 100%;
        float: right;
    }
    .search_open .search-btn {
    }

.siteMap {}
	.siteMap a, .siteMap a:visited {
		color: #FFF;
	}
		.siteMap a:hover, .siteMap a:focus, .siteMap a:active {
			opacity: 1;
		}
	.siteMap ul {
		list-style: none;
		padding: 0;
		margin: 0;
        margin-right: 2em;
	}
	.siteMap-child {}
	.siteMap-lvl1 {
		font-weight: 400;
		font-size: 1.3em;
		letter-spacing: 1.27px;
		margin-bottom: 2em;
	}
		.siteMap-lvl1 > a {
			opacity: .9;
			display: block;
			margin-bottom: .8em;
		}
	.siteMap-lvl2 {
		font-size: .8em;
		letter-spacing: 0.92px;
		line-height: 1.4em;
        margin-bottom: .5em;
	}
		.siteMap-lvl2 > a {
			font-weight: 100;
			opacity: .8;
		}

.designer {

}
	.designer a {
	    display: inline-block;
	    text-decoration: none;
	    opacity: 1;
	    color: #FFF;
	}
	.designer a:hover, .designer a:active, .designer a:focus {
	    text-decoration: none;
	    opacity: .7;
	}
    .designer-txt {
        border-right: 1px solid #FFF;
        padding-top: 5px;
        padding-right: 12px;
        display: inline-block;
        height: 20px;
        vertical-align: middle;
        line-height: 1.5em;
        font-size: .5em;
        font-weight: 100;
    }
    .designer-logo {
        display: inline-block;
        vertical-align: middle;
        width: 50px;
        padding-left: 6px;
    }
@media (max-width:750px) {
	.designer {
		width: 100%;
		text-align: center;
		position: relative;
		padding-top: 25px;
		padding-bottom: 15px;
	}
}

.modal {}
    .modal-exit {
    	-webkit-border-radius: 50px;
    	-moz-border-radius: 50px;
        border-radius: 50px;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        line-height: 30px;

        border: 2px solid transparent;
        color: var(--dkGray);
        background: none;
    }
    .modal-exit:hover, .modal-exit:focus, .modal-exit:active {
        background: var(--pink);
        border: 2px solid transparent;
        color: var(--dkGray);
    }

.footerNewsletter {
	padding: 50px 0;
	border-top: 1px solid #E8E8E8;
}
	.footerNewsletter button {
		color: var(--dkGray);
		letter-spacing: 2.5px;
		background: none;
		font-size: 1em;
		border: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
		font-weight: 200;
		padding: 10px 0;
		float: right;
		outline: none;
	}
		.footerNewsletter button > span {
			margin-bottom: 0;
			margin-left: 15px;
		}
		.footerNewsletter button:hover, .footerNewsletter button:focus, .footerNewsletter button:active {
			cursor: pointer;
		}
	.footerNewsletter-ctctForm {
		
	}
	.footerNewsletter .success_message {
		margin: 0 10px 0 0;
	}
@media (max-width:1100px) {
	.footerNewsletter button {
		font-size: .9em;
	}
		.footerNewsletter button > span {
			margin-left: 10px;
		}
}
@media (max-width:1050px) {
	.footerNewsletter button {
		float: none;
		display: block;
		margin: 0 auto;
	}
}
	
.ctctForm { /* Constant Contact class name */
	padding: 0;
}
	.ctctForm p {
		display: inline-block;
		margin-right: 1em;
		margin-bottom: 0;
	}
	.ctctForm .txtBox {
		margin-bottom: 0;
		width: 300px;
	}
	.ctctForm-fields {
		display: inline-block;
	}
	.ctctForm-fields label {
		text-align: left;
	}
@media (max-width:1300px) {
	.ctctForm p {
		margin-right: 30px;
	}
}
@media (max-width:1250px) {
	.ctctForm p {
		margin-right: 10px;
	}
}
@media (max-width:1050px) {
	.ctctForm p {
		margin: 0 10px;
	}
	.ctctForm-fields {
		display: block;
		text-align: center;
		margin-bottom: 20px;
	}
}
@media (max-width:750px) {
	.ctctForm p {
		margin: 10px;
	}
	.ctctForm-fields {
		margin-bottom: 10px;
	}
}
@media (max-width:400px) {
    .ctctForm .txtBox {
        width: 250px;
    }
}

.ctct-form-errorMessage { /* Constant Contact class name */
	color: #f5463b;
	font-size: .75em;
	padding-bottom: 15px;
}
	.ctct-form-errorMessage .btn_error {
		margin: 0 5px 5px 0;
		height: 33px;
		width: 33px;
		line-height: 33px;
	}

.tags {
    list-style: none;
    margin: -13px -3px 10px;
    padding: 0;
}
    .tags li {
        display: inline-block;
    }
    .tags li > a {
        display: inline-block;
        /*-moz-transform: rotate(2deg);
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);*/
        background: #FFF;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px;
        padding: 0 14px;
        font-family: var(--bodyFont);
        font-weight: 400;
        font-size: .7em;
        line-height: 1.7em;
        border: 2px solid #FFF;
        margin: 0 3px;
    }
    .tags li > a:hover, .tags li > a:focus, .tags li > a:active {
        background: transparent;
        color: #fff !important;
    }

.dataTable {
	width: 100%;
	margin-bottom: 1rem;
	font-size: .9em;
}
	.dataTable tr:first-child td {
		border-top: 1px solid #eaeaea;
	}
	.dataTable td {
		border-bottom: 1px solid #eaeaea;
		padding: .5em;
		vertical-align: middle;
		position: relative;
	}
	.dataTable th {
		padding: .5em;
		font-size: .8em;
		font-weight: bold;
		background-color: transparent;
		border-bottom: 2px solid #bdbdbd;
	}
	.dataTable tr:nth-child(odd) {
		background: #f5f5f5;
	}
	.dataTable tr:first-child {
		background: transparent;
	}
	.dataTable-label {
		font-size: .9em;
		text-transform: uppercase;
		font-weight: bold;
	}

.section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
    .section_img {
        background-size: contain;
        background-repeat-x: repeat;
        color: #FFF;
        padding: 3rem 0;
    }
    .section_light {}
    .section_dark {
        color: #FFF;
        padding: 3rem 0;
        background-color: var(--ltGray);
        position: relative;
    }
    .section_dark .heading1,
    .section_dark .heading2,
    .section_dark .heading3 {
        /*color: #FFF;*/
    }
    @media (max-width: 800px) {
        .section_dark {
            padding: 2rem 0;
        }
    }
    @media (max-width: 600px) {
        .section_dark {
            padding: 1.5rem 0;
        }
    }