@import url(https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,300&display=swap);
/**
 * This stylesheet is for styles you want to include only when displaying demo
 * styles for grids, animations, color swatches, etc.
 * These styles will not be your production CSS.
 */

:root {
	--pl-border-color: #dddddd;
	--pl-border-radius: 8px;
	--pl-grid-gap: 1rem;
	--pl-color-fpo: #69b3e7;
	--pl-color-fpo-light: #edf6fc;
}

#sg-patterns {
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
	max-width: 100%;
	padding: 0 0.5em;
}

.demo-animate {
	background: #ddd;
	padding: 1em;
	margin-bottom: 1em;
	text-align: center;
	border-radius: var(--pl-border-radius);
	cursor: pointer;
}

.sg-colors {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: grid;
	grid-gap: var(--pl-grid-gap);
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.sg-colors li {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	padding: 0.3em;
	margin: 0 0.5em 0.5em 0;
	min-width: 5em;
	max-width: 14em;
	border: 1px solid var(--pl-border-color);
	border-radius: 8px;
}

.sg-swatch {
	display: block;
	height: 4em;
	margin-bottom: 0.3em;
	border-radius: 5px;
}

.sg-label {
	font-size: 90%;
	line-height: 1;
}

/**
 * Icon grid
 * 1) Generated by Gul-SVG-Sprites
 */
.icon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 2rem;
}

.icon-grid__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--pl-border-color);
	border-radius: var(--pl-border-radius);
	padding: 8px;
	height: 5.5rem;
}

.icon-grid .c-icon {
	margin-bottom: 0.25rem;
}

.icon-grid__label {
	font-size: 10px;
}

.icon {
	width: 1rem;
	height: 1rem;
}

.icon-boxes h2 {
	font-size: 1rem;
}

/**
* For placeholder only block
* 1) Used for placeholder blocks for layouts
*/
.fpo {
	background: var(--pl-color-fpo-light);
	border: 1px dashed var(--pl-color-fpo);
	border-radius: 5px;
	padding: 1rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-weight: bold;
	text-align: center;
	color: var(--pl-color-fpo);
}

.sg-pattern-example small {
	display: none;
}

/**
 * Add height and overflow to two column fixed layout to show functionality only in style-guide example.
 */
.sg-pattern-example .l-page-layout--two-column-fixed {
	height: 10rem;
	overflow: auto;
}

/**
 * Add min-height of 0 to two column fixed to help with showing functionality only in style-guide example.
 */
.sg-pattern-example .l-page-layout--two-column-fixed .l-page-layout__secondary {
	min-height: 0;
}

/**
 * FPO block within two column fixed layout within secondary section
 * 1) Width expands entire container at small screens
 */
.sg-pattern-example
	.l-page-layout--two-column-fixed
	.l-page-layout__secondary
	.fpo-block {
	width: 100%; /* 1 */
}

/**
 * FPO block within two column fixed layout within secondary section larger screens
 * 1) Set height to 100% of viewport height
 * 2) Set width = width of vertical header
 */
@media all and (min-width: 70em) {
	.sg-pattern-example
		.l-page-layout--two-column-fixed
		.l-page-layout__secondary
		.fpo-block {
		width: 20rem; /* 1 */
		height: 100vh; /* 2 */
		margin-bottom: 0;
	}
}

/**
 * Two column fixed layout within pattern example
 * 1) Set height to height of placeholder content secondary section
 * 2) Set overflow to auto so the secondary section stays fixed while the main section scrolls
 */
.sg-pattern-example .l-page-layout--two-column-fixed {
	height: 18.3rem;
	overflow: auto;
}

/**
 * Secondary section within pattern example and two-column fixed at larger screens
 * 1) Position absolute to make this pattern similar to fixed vertical header
 * 2) Height inherits so it doesn't span longer than the pattern window on "All" PL page
 * 3) Float this left to get layout sections side by side within PL "View All" section
 */

@media all and (min-width: 70em) {
	.sg-pattern-example
		.l-page-layout--two-column-fixed
		.l-page-layout__secondary {
		position: absolute; /* 1 */
		height: inherit; /* 2 */
		float: left; /* 3 */
	}
}

/**
 *  Fpo block within pattern example, two column fixed, and secondary section
 * 1) Make fpo block width of the container on small screens
 */
.sg-pattern-example
	.l-page-layout--two-column-fixed
	.l-page-layout__secondary
	.fpo-block {
	width: 100%; /* 1 */
}

/**
 * FPO Block Within pattern example, two column fixed, and secondary layout larger screens
 * 1) Added width similar to style guide vertical header
 * 2) Height inherits so it doesn't span longer than the pattern window on "All" PL page
 */
@media all and (min-width: 70em) {
	.sg-pattern-example
		.l-page-layout--two-column-fixed
		.l-page-layout__secondary
		.fpo-block {
		width: 20rem; /* 1 */
		height: inherit; /* 2 */
	}
}

/**
 * Add height of main to get appearance of side bar staying fixed while main window scrolls.
 */
.sg-pattern-example .l-page-layout--two-column-fixed .l-page-layout__main {
	height: 30rem;
}

/**
 * Add height of fpo block to equal height of main to help with scrolling main window/fixed sidebar effect.
 */
.sg-pattern-example
	.l-page-layout--two-column-fixed
	.l-page-layout__main
	.fpo-block {
	height: 30rem;
	margin-bottom: 0;
}

/**
 * Vertical header in pattern example at large screens
 */
@media all and (min-width: 70em) {
	.sg-pattern-example .c-header--vertical {
		max-width: 20rem;
	}
}

/*------------------------------------*\
    #SVG SPRITE OVERRIDES
\*------------------------------------*/

section {
    border-top: none !important;
    padding: 0;
}

.icon-boxes {
    display: flex !important;
    flex-wrap: wrap !important;
}

style + svg + header {
    display: none !important;
}

.icon-box {
    width: initial !important;
    height: auto !important;
    background: none !important;
    border: none !important;
}

.icon-boxes li {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 6rem !important;
    height: 6rem !important;
    background: #f5f5f5 !important;
    border: 1px solid #cccccd !important;
}

.icon-boxes li h2 {
    color: #000 !important;
    font-size: 0.75rem !important;
    white-space: inherit !important;
    text-overflow: unset !important;
    overflow: inherit !important;
}

.icon-box .icon {
    height: 16px !important;
    width: 16px !important;
}

.icon-boxes li button {
    display: none !important;
}

.has-leaves {
    position: relative !important;
}

.leaves-wrap {
    display: block;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
}

.leaves {
    display: block;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
}

.leaves.leaves-a {
    width: 200px;
    top: -100px;
    /* outline: solid 1px red; */
}

.leaves.leaves-b {
    width: 200px !important;
    top: -200px !important;
    right: -100px !important;
}

/* POSITION*/
.leaves.leaves-right {
    left: initial;
    right: 0;
}

.leaves.leaves-left {
    left: 0;
    right: initial;
}

.leaves.leaves-left-bottom {
    left: 0;
    right: initial;
    top: initial;
    bottom: 0;
}

.leaves.leaves-right-bottom {
    left: initial;
    right: 0;
    top: initial;
    bottom: 0;
}

/*SCALE LEAF ANIMATIONS START*/
.leaves.leaves-25 {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(.25);
    -ms-transform: scale(.25);
    transform: scale(.25);
}

.leaves.leaves-50 {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
}

.leaves.leaves-75 {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(.75);
    -ms-transform: scale(.75);
    transform: scale(.75);
}

.leaves.leaves-100 {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.leaves.leaves-125 {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.leaves.leaves-150 {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

/*SCALE LEAF ANIMATIONS : END*/


/* animation a 1 : start */
.leaf-a-1-anim {
    -webkit-animation-name: leaf-a-1-anim-keyframes;
    animation-name: leaf-a-1-anim-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 6000ms;
    animation-duration: 6000ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    position: absolute;
    top: -50px;
    left: 75px;
}

@-webkit-keyframes leaf-a-1-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(76px, 30px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(189deg) translate(-50%, -50%);
        transform: translate(76px, 30px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(189deg) translate(-50%, -50%);
    }

    2.78% {
        -webkit-transform: translate(75.7689px, 53.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(188.2889deg) translate(-50%, -50%);
        transform: translate(75.7689px, 53.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(188.2889deg) translate(-50%, -50%);
    }

    5.56% {
        -webkit-transform: translate(75.0756px, 76.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(186.1556deg) translate(-50%, -50%);
        transform: translate(75.0756px, 76.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(186.1556deg) translate(-50%, -50%);
    }

    8.33% {
        -webkit-transform: translate(73.92px, 100px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(182.6deg) translate(-50%, -50%);
        transform: translate(73.92px, 100px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(182.6deg) translate(-50%, -50%);
    }

    11.11% {
        -webkit-transform: translate(72.3022px, 123.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(177.6222deg) translate(-50%, -50%);
        transform: translate(72.3022px, 123.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(177.6222deg) translate(-50%, -50%);
    }

    13.89% {
        opacity: 1;
        -webkit-transform: translate(70.2222px, 146.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(171.2222deg) translate(-50%, -50%);
        transform: translate(70.2222px, 146.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(171.2222deg) translate(-50%, -50%);
    }

    16.67% {
        -webkit-transform: translate(67.68px, 170px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(163.4deg) translate(-50%, -50%);
        transform: translate(67.68px, 170px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(163.4deg) translate(-50%, -50%);
    }

    19.44% {
        -webkit-transform: translate(64.6756px, 193.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(154.1556deg) translate(-50%, -50%);
        transform: translate(64.6756px, 193.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(154.1556deg) translate(-50%, -50%);
    }

    22.22% {
        -webkit-transform: translate(61.3244px, 216.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(143.8444deg) translate(-50%, -50%);
        transform: translate(61.3244px, 216.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(143.8444deg) translate(-50%, -50%);
    }

    25% {
        -webkit-transform: translate(58.32px, 240px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(134.6deg) translate(-50%, -50%);
        transform: translate(58.32px, 240px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(134.6deg) translate(-50%, -50%);
    }

    27.78% {
        -webkit-transform: translate(55.7778px, 263.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(126.7778deg) translate(-50%, -50%);
        transform: translate(55.7778px, 263.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(126.7778deg) translate(-50%, -50%);
    }

    30.56% {
        -webkit-transform: translate(53.6978px, 286.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(120.3778deg) translate(-50%, -50%);
        transform: translate(53.6978px, 286.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(120.3778deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(52.08px, 310px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(115.4deg) translate(-50%, -50%);
        transform: translate(52.08px, 310px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(115.4deg) translate(-50%, -50%);
    }

    36.11% {
        -webkit-transform: translate(50.9244px, 333.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(111.8444deg) translate(-50%, -50%);
        transform: translate(50.9244px, 333.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(111.8444deg) translate(-50%, -50%);
    }

    38.89% {
        -webkit-transform: translate(50.2311px, 356.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.7111deg) translate(-50%, -50%);
        transform: translate(50.2311px, 356.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.7111deg) translate(-50%, -50%);
    }

    41.67% {
        -webkit-transform: translate(50px, 380px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109deg) translate(-50%, -50%);
        transform: translate(50px, 380px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109deg) translate(-50%, -50%);
    }

    44.44% {
        -webkit-transform: translate(50.1511px, 403.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.8089deg) translate(-50%, -50%);
        transform: translate(50.1511px, 403.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.8089deg) translate(-50%, -50%);
    }

    47.22% {
        -webkit-transform: translate(50.6044px, 426.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(112.2356deg) translate(-50%, -50%);
        transform: translate(50.6044px, 426.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(112.2356deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(51.36px, 450.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(116.28deg) translate(-50%, -50%);
        transform: translate(51.36px, 450.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(116.28deg) translate(-50%, -50%);
    }

    52.78% {
        -webkit-transform: translate(52.4178px, 473.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(121.9422deg) translate(-50%, -50%);
        transform: translate(52.4178px, 473.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(121.9422deg) translate(-50%, -50%);
    }

    55.56% {
        -webkit-transform: translate(53.7778px, 497.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(129.2222deg) translate(-50%, -50%);
        transform: translate(53.7778px, 497.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(129.2222deg) translate(-50%, -50%);
    }

    58.33% {
        -webkit-transform: translate(55.44px, 520.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(138.12deg) translate(-50%, -50%);
        transform: translate(55.44px, 520.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(138.12deg) translate(-50%, -50%);
    }

    61.11% {
        -webkit-transform: translate(57.4044px, 544.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(148.6356deg) translate(-50%, -50%);
        transform: translate(57.4044px, 544.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(148.6356deg) translate(-50%, -50%);
    }

    63.89% {
        -webkit-transform: translate(59.5956px, 567.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.3644deg) translate(-50%, -50%);
        transform: translate(59.5956px, 567.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.3644deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(61.56px, 591.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(170.88deg) translate(-50%, -50%);
        transform: translate(61.56px, 591.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(170.88deg) translate(-50%, -50%);
    }

    69.44% {
        -webkit-transform: translate(63.2222px, 614.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(179.7778deg) translate(-50%, -50%);
        transform: translate(63.2222px, 614.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(179.7778deg) translate(-50%, -50%);
    }

    72.22% {
        -webkit-transform: translate(64.5822px, 638.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(187.0578deg) translate(-50%, -50%);
        transform: translate(64.5822px, 638.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(187.0578deg) translate(-50%, -50%);
    }

    75% {
        -webkit-transform: translate(65.64px, 661.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(192.72deg) translate(-50%, -50%);
        transform: translate(65.64px, 661.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(192.72deg) translate(-50%, -50%);
    }

    77.78% {
        -webkit-transform: translate(66.3956px, 685.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(196.7644deg) translate(-50%, -50%);
        transform: translate(66.3956px, 685.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(196.7644deg) translate(-50%, -50%);
    }

    80.56% {
        -webkit-transform: translate(66.8489px, 708.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(199.1911deg) translate(-50%, -50%);
        transform: translate(66.8489px, 708.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(199.1911deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(67px, 732px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(200deg) translate(-50%, -50%);
        transform: translate(67px, 732px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(200deg) translate(-50%, -50%);
    }

    86.11% {
        -webkit-transform: translate(66.6111px, 752.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(193.8889deg) translate(-50%, -50%);
        transform: translate(66.6111px, 752.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(193.8889deg) translate(-50%, -50%);
    }

    88.89% {
        -webkit-transform: translate(65.4444px, 769.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(188.8889deg) translate(-50%, -50%);
        transform: translate(65.4444px, 769.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(188.8889deg) translate(-50%, -50%);
    }

    91.67% {
        -webkit-transform: translate(63.5px, 783px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(185deg) translate(-50%, -50%);
        transform: translate(63.5px, 783px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(185deg) translate(-50%, -50%);
    }

    94.44% {
        -webkit-transform: translate(61.5556px, 792.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(182.2222deg) translate(-50%, -50%);
        transform: translate(61.5556px, 792.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(182.2222deg) translate(-50%, -50%);
    }

    97.22% {
        -webkit-transform: translate(60.3889px, 798.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180.5556deg) translate(-50%, -50%);
        transform: translate(60.3889px, 798.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180.5556deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(60px, 800px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) translate(-50%, -50%);
        transform: translate(60px, 800px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) translate(-50%, -50%);
    }
}

@keyframes leaf-a-1-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(76px, 30px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(189deg) translate(-50%, -50%);
        transform: translate(76px, 30px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(189deg) translate(-50%, -50%);
    }

    2.78% {
        -webkit-transform: translate(75.7689px, 53.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(188.2889deg) translate(-50%, -50%);
        transform: translate(75.7689px, 53.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(188.2889deg) translate(-50%, -50%);
    }

    5.56% {
        -webkit-transform: translate(75.0756px, 76.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(186.1556deg) translate(-50%, -50%);
        transform: translate(75.0756px, 76.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(186.1556deg) translate(-50%, -50%);
    }

    8.33% {
        -webkit-transform: translate(73.92px, 100px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(182.6deg) translate(-50%, -50%);
        transform: translate(73.92px, 100px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(182.6deg) translate(-50%, -50%);
    }

    11.11% {
        -webkit-transform: translate(72.3022px, 123.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(177.6222deg) translate(-50%, -50%);
        transform: translate(72.3022px, 123.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(177.6222deg) translate(-50%, -50%);
    }

    13.89% {
        opacity: 1;
        -webkit-transform: translate(70.2222px, 146.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(171.2222deg) translate(-50%, -50%);
        transform: translate(70.2222px, 146.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(171.2222deg) translate(-50%, -50%);
    }

    16.67% {
        -webkit-transform: translate(67.68px, 170px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(163.4deg) translate(-50%, -50%);
        transform: translate(67.68px, 170px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(163.4deg) translate(-50%, -50%);
    }

    19.44% {
        -webkit-transform: translate(64.6756px, 193.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(154.1556deg) translate(-50%, -50%);
        transform: translate(64.6756px, 193.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(154.1556deg) translate(-50%, -50%);
    }

    22.22% {
        -webkit-transform: translate(61.3244px, 216.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(143.8444deg) translate(-50%, -50%);
        transform: translate(61.3244px, 216.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(143.8444deg) translate(-50%, -50%);
    }

    25% {
        -webkit-transform: translate(58.32px, 240px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(134.6deg) translate(-50%, -50%);
        transform: translate(58.32px, 240px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(134.6deg) translate(-50%, -50%);
    }

    27.78% {
        -webkit-transform: translate(55.7778px, 263.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(126.7778deg) translate(-50%, -50%);
        transform: translate(55.7778px, 263.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(126.7778deg) translate(-50%, -50%);
    }

    30.56% {
        -webkit-transform: translate(53.6978px, 286.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(120.3778deg) translate(-50%, -50%);
        transform: translate(53.6978px, 286.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(120.3778deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(52.08px, 310px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(115.4deg) translate(-50%, -50%);
        transform: translate(52.08px, 310px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(115.4deg) translate(-50%, -50%);
    }

    36.11% {
        -webkit-transform: translate(50.9244px, 333.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(111.8444deg) translate(-50%, -50%);
        transform: translate(50.9244px, 333.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(111.8444deg) translate(-50%, -50%);
    }

    38.89% {
        -webkit-transform: translate(50.2311px, 356.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.7111deg) translate(-50%, -50%);
        transform: translate(50.2311px, 356.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.7111deg) translate(-50%, -50%);
    }

    41.67% {
        -webkit-transform: translate(50px, 380px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109deg) translate(-50%, -50%);
        transform: translate(50px, 380px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109deg) translate(-50%, -50%);
    }

    44.44% {
        -webkit-transform: translate(50.1511px, 403.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.8089deg) translate(-50%, -50%);
        transform: translate(50.1511px, 403.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.8089deg) translate(-50%, -50%);
    }

    47.22% {
        -webkit-transform: translate(50.6044px, 426.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(112.2356deg) translate(-50%, -50%);
        transform: translate(50.6044px, 426.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(112.2356deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(51.36px, 450.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(116.28deg) translate(-50%, -50%);
        transform: translate(51.36px, 450.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(116.28deg) translate(-50%, -50%);
    }

    52.78% {
        -webkit-transform: translate(52.4178px, 473.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(121.9422deg) translate(-50%, -50%);
        transform: translate(52.4178px, 473.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(121.9422deg) translate(-50%, -50%);
    }

    55.56% {
        -webkit-transform: translate(53.7778px, 497.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(129.2222deg) translate(-50%, -50%);
        transform: translate(53.7778px, 497.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(129.2222deg) translate(-50%, -50%);
    }

    58.33% {
        -webkit-transform: translate(55.44px, 520.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(138.12deg) translate(-50%, -50%);
        transform: translate(55.44px, 520.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(138.12deg) translate(-50%, -50%);
    }

    61.11% {
        -webkit-transform: translate(57.4044px, 544.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(148.6356deg) translate(-50%, -50%);
        transform: translate(57.4044px, 544.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(148.6356deg) translate(-50%, -50%);
    }

    63.89% {
        -webkit-transform: translate(59.5956px, 567.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.3644deg) translate(-50%, -50%);
        transform: translate(59.5956px, 567.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.3644deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(61.56px, 591.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(170.88deg) translate(-50%, -50%);
        transform: translate(61.56px, 591.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(170.88deg) translate(-50%, -50%);
    }

    69.44% {
        -webkit-transform: translate(63.2222px, 614.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(179.7778deg) translate(-50%, -50%);
        transform: translate(63.2222px, 614.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(179.7778deg) translate(-50%, -50%);
    }

    72.22% {
        -webkit-transform: translate(64.5822px, 638.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(187.0578deg) translate(-50%, -50%);
        transform: translate(64.5822px, 638.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(187.0578deg) translate(-50%, -50%);
    }

    75% {
        -webkit-transform: translate(65.64px, 661.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(192.72deg) translate(-50%, -50%);
        transform: translate(65.64px, 661.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(192.72deg) translate(-50%, -50%);
    }

    77.78% {
        -webkit-transform: translate(66.3956px, 685.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(196.7644deg) translate(-50%, -50%);
        transform: translate(66.3956px, 685.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(196.7644deg) translate(-50%, -50%);
    }

    80.56% {
        -webkit-transform: translate(66.8489px, 708.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(199.1911deg) translate(-50%, -50%);
        transform: translate(66.8489px, 708.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(199.1911deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(67px, 732px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(200deg) translate(-50%, -50%);
        transform: translate(67px, 732px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(200deg) translate(-50%, -50%);
    }

    86.11% {
        -webkit-transform: translate(66.6111px, 752.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(193.8889deg) translate(-50%, -50%);
        transform: translate(66.6111px, 752.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(193.8889deg) translate(-50%, -50%);
    }

    88.89% {
        -webkit-transform: translate(65.4444px, 769.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(188.8889deg) translate(-50%, -50%);
        transform: translate(65.4444px, 769.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(188.8889deg) translate(-50%, -50%);
    }

    91.67% {
        -webkit-transform: translate(63.5px, 783px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(185deg) translate(-50%, -50%);
        transform: translate(63.5px, 783px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(185deg) translate(-50%, -50%);
    }

    94.44% {
        -webkit-transform: translate(61.5556px, 792.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(182.2222deg) translate(-50%, -50%);
        transform: translate(61.5556px, 792.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(182.2222deg) translate(-50%, -50%);
    }

    97.22% {
        -webkit-transform: translate(60.3889px, 798.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180.5556deg) translate(-50%, -50%);
        transform: translate(60.3889px, 798.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180.5556deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(60px, 800px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) translate(-50%, -50%);
        transform: translate(60px, 800px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) translate(-50%, -50%);
    }
}

/* animation a 1 : end */
/* animation a 2 : start */
.leaf-a-2-anim {
    -webkit-animation-name: leaf-a-2-anim-keyframes;
    animation-name: leaf-a-2-anim-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 4000ms;
    animation-duration: 4000ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    position: absolute;
    left: 35px;
    top: -15px;
}

@-webkit-keyframes leaf-a-2-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(45px, 100px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(90deg) translate(-50%, -50%);
        transform: translate(45px, 100px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(90deg) translate(-50%, -50%);
    }

    4.17% {
        -webkit-transform: translate(45.2222px, 125px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.75deg) translate(-50%, -50%);
        transform: translate(45.2222px, 125px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.75deg) translate(-50%, -50%);
    }

    8.33% {
        -webkit-transform: translate(45.8889px, 150px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.5deg) translate(-50%, -50%);
        transform: translate(45.8889px, 150px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.5deg) translate(-50%, -50%);
    }

    12.5% {
        -webkit-transform: translate(47px, 175px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(95.25deg) translate(-50%, -50%);
        transform: translate(47px, 175px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(95.25deg) translate(-50%, -50%);
    }

    16.67% {
        opacity: 1;
        -webkit-transform: translate(48.5556px, 200px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(97deg) translate(-50%, -50%);
        transform: translate(48.5556px, 200px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(97deg) translate(-50%, -50%);
    }

    20.83% {
        -webkit-transform: translate(50.5556px, 225px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(98.75deg) translate(-50%, -50%);
        transform: translate(50.5556px, 225px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(98.75deg) translate(-50%, -50%);
    }

    25% {
        -webkit-transform: translate(53px, 250px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100.5deg) translate(-50%, -50%);
        transform: translate(53px, 250px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100.5deg) translate(-50%, -50%);
    }

    29.17% {
        -webkit-transform: translate(55.4444px, 275px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(102.25deg) translate(-50%, -50%);
        transform: translate(55.4444px, 275px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(102.25deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(57.4444px, 300px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(104deg) translate(-50%, -50%);
        transform: translate(57.4444px, 300px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(104deg) translate(-50%, -50%);
    }

    37.5% {
        -webkit-transform: translate(59px, 325px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.75deg) translate(-50%, -50%);
        transform: translate(59px, 325px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.75deg) translate(-50%, -50%);
    }

    41.67% {
        -webkit-transform: translate(60.1111px, 350px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(107.5deg) translate(-50%, -50%);
        transform: translate(60.1111px, 350px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(107.5deg) translate(-50%, -50%);
    }

    45.83% {
        -webkit-transform: translate(60.7778px, 375px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.25deg) translate(-50%, -50%);
        transform: translate(60.7778px, 375px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.25deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(61px, 400px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(111deg) translate(-50%, -50%);
        transform: translate(61px, 400px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(111deg) translate(-50%, -50%);
    }

    54.17% {
        -webkit-transform: translate(60.6049px, 427.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(122.963deg) translate(-50%, -50%);
        transform: translate(60.6049px, 427.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(122.963deg) translate(-50%, -50%);
    }

    58.33% {
        -webkit-transform: translate(59.4198px, 455.5556px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(133.5185deg) translate(-50%, -50%);
        transform: translate(59.4198px, 455.5556px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(133.5185deg) translate(-50%, -50%);
    }

    62.5% {
        -webkit-transform: translate(57.4444px, 483.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(142.6667deg) translate(-50%, -50%);
        transform: translate(57.4444px, 483.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(142.6667deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(54.679px, 511.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(150.4074deg) translate(-50%, -50%);
        transform: translate(54.679px, 511.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(150.4074deg) translate(-50%, -50%);
    }

    70.83% {
        -webkit-transform: translate(51.321px, 538.8889px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(156.7407deg) translate(-50%, -50%);
        transform: translate(51.321px, 538.8889px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(156.7407deg) translate(-50%, -50%);
    }

    75% {
        -webkit-transform: translate(48.5556px, 566.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(161.6667deg) translate(-50%, -50%);
        transform: translate(48.5556px, 566.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(161.6667deg) translate(-50%, -50%);
    }

    79.17% {
        -webkit-transform: translate(46.5802px, 594.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(165.1852deg) translate(-50%, -50%);
        transform: translate(46.5802px, 594.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(165.1852deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(45.3951px, 622.2222px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(167.2963deg) translate(-50%, -50%);
        transform: translate(45.3951px, 622.2222px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(167.2963deg) translate(-50%, -50%);
    }

    87.5% {
        -webkit-transform: translate(45px, 650px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(168deg) translate(-50%, -50%);
        transform: translate(45px, 650px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(168deg) translate(-50%, -50%);
    }

    91.67% {
        -webkit-transform: translate(45px, 677.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(163.5556deg) translate(-50%, -50%);
        transform: translate(45px, 677.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(163.5556deg) translate(-50%, -50%);
    }

    95.83% {
        -webkit-transform: translate(45px, 694.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.8889deg) translate(-50%, -50%);
        transform: translate(45px, 694.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.8889deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(45px, 700px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160deg) translate(-50%, -50%);
        transform: translate(45px, 700px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160deg) translate(-50%, -50%);
    }
}

@keyframes leaf-a-2-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(45px, 100px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(90deg) translate(-50%, -50%);
        transform: translate(45px, 100px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(90deg) translate(-50%, -50%);
    }

    4.17% {
        -webkit-transform: translate(45.2222px, 125px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.75deg) translate(-50%, -50%);
        transform: translate(45.2222px, 125px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.75deg) translate(-50%, -50%);
    }

    8.33% {
        -webkit-transform: translate(45.8889px, 150px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.5deg) translate(-50%, -50%);
        transform: translate(45.8889px, 150px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.5deg) translate(-50%, -50%);
    }

    12.5% {
        -webkit-transform: translate(47px, 175px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(95.25deg) translate(-50%, -50%);
        transform: translate(47px, 175px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(95.25deg) translate(-50%, -50%);
    }

    16.67% {
        opacity: 1;
        -webkit-transform: translate(48.5556px, 200px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(97deg) translate(-50%, -50%);
        transform: translate(48.5556px, 200px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(97deg) translate(-50%, -50%);
    }

    20.83% {
        -webkit-transform: translate(50.5556px, 225px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(98.75deg) translate(-50%, -50%);
        transform: translate(50.5556px, 225px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(98.75deg) translate(-50%, -50%);
    }

    25% {
        -webkit-transform: translate(53px, 250px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100.5deg) translate(-50%, -50%);
        transform: translate(53px, 250px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100.5deg) translate(-50%, -50%);
    }

    29.17% {
        -webkit-transform: translate(55.4444px, 275px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(102.25deg) translate(-50%, -50%);
        transform: translate(55.4444px, 275px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(102.25deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(57.4444px, 300px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(104deg) translate(-50%, -50%);
        transform: translate(57.4444px, 300px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(104deg) translate(-50%, -50%);
    }

    37.5% {
        -webkit-transform: translate(59px, 325px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.75deg) translate(-50%, -50%);
        transform: translate(59px, 325px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.75deg) translate(-50%, -50%);
    }

    41.67% {
        -webkit-transform: translate(60.1111px, 350px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(107.5deg) translate(-50%, -50%);
        transform: translate(60.1111px, 350px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(107.5deg) translate(-50%, -50%);
    }

    45.83% {
        -webkit-transform: translate(60.7778px, 375px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.25deg) translate(-50%, -50%);
        transform: translate(60.7778px, 375px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(109.25deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(61px, 400px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(111deg) translate(-50%, -50%);
        transform: translate(61px, 400px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(111deg) translate(-50%, -50%);
    }

    54.17% {
        -webkit-transform: translate(60.6049px, 427.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(122.963deg) translate(-50%, -50%);
        transform: translate(60.6049px, 427.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(122.963deg) translate(-50%, -50%);
    }

    58.33% {
        -webkit-transform: translate(59.4198px, 455.5556px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(133.5185deg) translate(-50%, -50%);
        transform: translate(59.4198px, 455.5556px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(133.5185deg) translate(-50%, -50%);
    }

    62.5% {
        -webkit-transform: translate(57.4444px, 483.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(142.6667deg) translate(-50%, -50%);
        transform: translate(57.4444px, 483.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(142.6667deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(54.679px, 511.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(150.4074deg) translate(-50%, -50%);
        transform: translate(54.679px, 511.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(150.4074deg) translate(-50%, -50%);
    }

    70.83% {
        -webkit-transform: translate(51.321px, 538.8889px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(156.7407deg) translate(-50%, -50%);
        transform: translate(51.321px, 538.8889px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(156.7407deg) translate(-50%, -50%);
    }

    75% {
        -webkit-transform: translate(48.5556px, 566.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(161.6667deg) translate(-50%, -50%);
        transform: translate(48.5556px, 566.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(161.6667deg) translate(-50%, -50%);
    }

    79.17% {
        -webkit-transform: translate(46.5802px, 594.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(165.1852deg) translate(-50%, -50%);
        transform: translate(46.5802px, 594.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(165.1852deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(45.3951px, 622.2222px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(167.2963deg) translate(-50%, -50%);
        transform: translate(45.3951px, 622.2222px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(167.2963deg) translate(-50%, -50%);
    }

    87.5% {
        -webkit-transform: translate(45px, 650px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(168deg) translate(-50%, -50%);
        transform: translate(45px, 650px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(168deg) translate(-50%, -50%);
    }

    91.67% {
        -webkit-transform: translate(45px, 677.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(163.5556deg) translate(-50%, -50%);
        transform: translate(45px, 677.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(163.5556deg) translate(-50%, -50%);
    }

    95.83% {
        -webkit-transform: translate(45px, 694.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.8889deg) translate(-50%, -50%);
        transform: translate(45px, 694.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.8889deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(45px, 700px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160deg) translate(-50%, -50%);
        transform: translate(45px, 700px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160deg) translate(-50%, -50%);
    }
}

/* animation a 2 : end */
/* animation a 3 : start */
.leaf-a-3-anim {
    -webkit-animation-name: leaf-a-3-anim-keyframes;
    animation-name: leaf-a-3-anim-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 5000ms;
    animation-duration: 5000ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    position: absolute;
    top: 0;
    left: -30px;
}

@-webkit-keyframes leaf-a-3-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(87px, 293px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) translate(-50%, -50%);
        transform: translate(87px, 293px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) translate(-50%, -50%);
    }

    3.33% {
        -webkit-transform: translate(84.9378px, 314.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-38deg) translate(-50%, -50%);
        transform: translate(84.9378px, 314.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-38deg) translate(-50%, -50%);
    }

    6.67% {
        -webkit-transform: translate(83.0178px, 336.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-31deg) translate(-50%, -50%);
        transform: translate(83.0178px, 336.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-31deg) translate(-50%, -50%);
    }

    10% {
        -webkit-transform: translate(81.24px, 358.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-24deg) translate(-50%, -50%);
        transform: translate(81.24px, 358.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-24deg) translate(-50%, -50%);
    }

    13.33% {
        -webkit-transform: translate(79.6044px, 380.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-17deg) translate(-50%, -50%);
        transform: translate(79.6044px, 380.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-17deg) translate(-50%, -50%);
    }

    16.67% {
        -webkit-transform: translate(78.1111px, 402.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-10deg) translate(-50%, -50%);
        transform: translate(78.1111px, 402.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-10deg) translate(-50%, -50%);
    }

    20% {
        opacity: 1;
        -webkit-transform: translate(76.76px, 424.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-3deg) translate(-50%, -50%);
        transform: translate(76.76px, 424.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-3deg) translate(-50%, -50%);
    }

    23.33% {
        -webkit-transform: translate(75.5511px, 446.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(4deg) translate(-50%, -50%);
        transform: translate(75.5511px, 446.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(4deg) translate(-50%, -50%);
    }

    26.67% {
        -webkit-transform: translate(74.4844px, 468.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(11deg) translate(-50%, -50%);
        transform: translate(74.4844px, 468.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(11deg) translate(-50%, -50%);
    }

    30% {
        -webkit-transform: translate(73.56px, 490.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(18deg) translate(-50%, -50%);
        transform: translate(73.56px, 490.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(18deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(72.7778px, 512.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(25deg) translate(-50%, -50%);
        transform: translate(72.7778px, 512.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(25deg) translate(-50%, -50%);
    }

    36.67% {
        -webkit-transform: translate(72.1378px, 534.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(32deg) translate(-50%, -50%);
        transform: translate(72.1378px, 534.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(32deg) translate(-50%, -50%);
    }

    40% {
        -webkit-transform: translate(71.64px, 556.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(39deg) translate(-50%, -50%);
        transform: translate(71.64px, 556.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(39deg) translate(-50%, -50%);
    }

    43.33% {
        -webkit-transform: translate(71.2844px, 578.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(46deg) translate(-50%, -50%);
        transform: translate(71.2844px, 578.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(46deg) translate(-50%, -50%);
    }

    46.67% {
        -webkit-transform: translate(71.0711px, 600.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(53deg) translate(-50%, -50%);
        transform: translate(71.0711px, 600.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(53deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(71px, 622px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(60deg) translate(-50%, -50%);
        transform: translate(71px, 622px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(60deg) translate(-50%, -50%);
    }

    53.33% {
        -webkit-transform: translate(71.9333px, 644.6844px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(75.4667deg) translate(-50%, -50%);
        transform: translate(71.9333px, 644.6844px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(75.4667deg) translate(-50%, -50%);
    }

    56.67% {
        -webkit-transform: translate(72.8667px, 665.8044px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(89.8667deg) translate(-50%, -50%);
        transform: translate(72.8667px, 665.8044px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(89.8667deg) translate(-50%, -50%);
    }

    60% {
        -webkit-transform: translate(73.8px, 685.36px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(103.2deg) translate(-50%, -50%);
        transform: translate(73.8px, 685.36px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(103.2deg) translate(-50%, -50%);
    }

    63.33% {
        -webkit-transform: translate(74.7333px, 703.3511px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(115.4667deg) translate(-50%, -50%);
        transform: translate(74.7333px, 703.3511px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(115.4667deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(75.6667px, 719.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(126.6667deg) translate(-50%, -50%);
        transform: translate(75.6667px, 719.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(126.6667deg) translate(-50%, -50%);
    }

    70% {
        -webkit-transform: translate(76.6px, 734.64px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(136.8deg) translate(-50%, -50%);
        transform: translate(76.6px, 734.64px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(136.8deg) translate(-50%, -50%);
    }

    73.33% {
        -webkit-transform: translate(77.5333px, 747.9378px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(145.8667deg) translate(-50%, -50%);
        transform: translate(77.5333px, 747.9378px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(145.8667deg) translate(-50%, -50%);
    }

    76.67% {
        -webkit-transform: translate(78.4667px, 759.6711px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(153.8667deg) translate(-50%, -50%);
        transform: translate(78.4667px, 759.6711px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(153.8667deg) translate(-50%, -50%);
    }

    80% {
        -webkit-transform: translate(79.4px, 769.84px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.8deg) translate(-50%, -50%);
        transform: translate(79.4px, 769.84px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.8deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(80.3333px, 778.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(166.6667deg) translate(-50%, -50%);
        transform: translate(80.3333px, 778.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(166.6667deg) translate(-50%, -50%);
    }

    86.67% {
        -webkit-transform: translate(81.2667px, 785.4844px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(171.4667deg) translate(-50%, -50%);
        transform: translate(81.2667px, 785.4844px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(171.4667deg) translate(-50%, -50%);
    }

    90% {
        -webkit-transform: translate(82.2px, 790.96px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(175.2deg) translate(-50%, -50%);
        transform: translate(82.2px, 790.96px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(175.2deg) translate(-50%, -50%);
    }

    93.33% {
        -webkit-transform: translate(83.1333px, 794.8711px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(177.8667deg) translate(-50%, -50%);
        transform: translate(83.1333px, 794.8711px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(177.8667deg) translate(-50%, -50%);
    }

    96.67% {
        -webkit-transform: translate(84.0667px, 797.2178px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(179.4667deg) translate(-50%, -50%);
        transform: translate(84.0667px, 797.2178px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(179.4667deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(85px, 798px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) translate(-50%, -50%);
        transform: translate(85px, 798px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) translate(-50%, -50%);
    }
}

@keyframes leaf-a-3-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(87px, 293px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) translate(-50%, -50%);
        transform: translate(87px, 293px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) translate(-50%, -50%);
    }

    3.33% {
        -webkit-transform: translate(84.9378px, 314.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-38deg) translate(-50%, -50%);
        transform: translate(84.9378px, 314.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-38deg) translate(-50%, -50%);
    }

    6.67% {
        -webkit-transform: translate(83.0178px, 336.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-31deg) translate(-50%, -50%);
        transform: translate(83.0178px, 336.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-31deg) translate(-50%, -50%);
    }

    10% {
        -webkit-transform: translate(81.24px, 358.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-24deg) translate(-50%, -50%);
        transform: translate(81.24px, 358.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-24deg) translate(-50%, -50%);
    }

    13.33% {
        -webkit-transform: translate(79.6044px, 380.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-17deg) translate(-50%, -50%);
        transform: translate(79.6044px, 380.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-17deg) translate(-50%, -50%);
    }

    16.67% {
        -webkit-transform: translate(78.1111px, 402.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-10deg) translate(-50%, -50%);
        transform: translate(78.1111px, 402.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-10deg) translate(-50%, -50%);
    }

    20% {
        opacity: 1;
        -webkit-transform: translate(76.76px, 424.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-3deg) translate(-50%, -50%);
        transform: translate(76.76px, 424.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(-3deg) translate(-50%, -50%);
    }

    23.33% {
        -webkit-transform: translate(75.5511px, 446.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(4deg) translate(-50%, -50%);
        transform: translate(75.5511px, 446.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(4deg) translate(-50%, -50%);
    }

    26.67% {
        -webkit-transform: translate(74.4844px, 468.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(11deg) translate(-50%, -50%);
        transform: translate(74.4844px, 468.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(11deg) translate(-50%, -50%);
    }

    30% {
        -webkit-transform: translate(73.56px, 490.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(18deg) translate(-50%, -50%);
        transform: translate(73.56px, 490.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(18deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(72.7778px, 512.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(25deg) translate(-50%, -50%);
        transform: translate(72.7778px, 512.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(25deg) translate(-50%, -50%);
    }

    36.67% {
        -webkit-transform: translate(72.1378px, 534.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(32deg) translate(-50%, -50%);
        transform: translate(72.1378px, 534.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(32deg) translate(-50%, -50%);
    }

    40% {
        -webkit-transform: translate(71.64px, 556.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(39deg) translate(-50%, -50%);
        transform: translate(71.64px, 556.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(39deg) translate(-50%, -50%);
    }

    43.33% {
        -webkit-transform: translate(71.2844px, 578.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(46deg) translate(-50%, -50%);
        transform: translate(71.2844px, 578.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(46deg) translate(-50%, -50%);
    }

    46.67% {
        -webkit-transform: translate(71.0711px, 600.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(53deg) translate(-50%, -50%);
        transform: translate(71.0711px, 600.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(53deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(71px, 622px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(60deg) translate(-50%, -50%);
        transform: translate(71px, 622px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(60deg) translate(-50%, -50%);
    }

    53.33% {
        -webkit-transform: translate(71.9333px, 644.6844px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(75.4667deg) translate(-50%, -50%);
        transform: translate(71.9333px, 644.6844px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(75.4667deg) translate(-50%, -50%);
    }

    56.67% {
        -webkit-transform: translate(72.8667px, 665.8044px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(89.8667deg) translate(-50%, -50%);
        transform: translate(72.8667px, 665.8044px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(89.8667deg) translate(-50%, -50%);
    }

    60% {
        -webkit-transform: translate(73.8px, 685.36px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(103.2deg) translate(-50%, -50%);
        transform: translate(73.8px, 685.36px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(103.2deg) translate(-50%, -50%);
    }

    63.33% {
        -webkit-transform: translate(74.7333px, 703.3511px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(115.4667deg) translate(-50%, -50%);
        transform: translate(74.7333px, 703.3511px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(115.4667deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(75.6667px, 719.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(126.6667deg) translate(-50%, -50%);
        transform: translate(75.6667px, 719.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(126.6667deg) translate(-50%, -50%);
    }

    70% {
        -webkit-transform: translate(76.6px, 734.64px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(136.8deg) translate(-50%, -50%);
        transform: translate(76.6px, 734.64px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(136.8deg) translate(-50%, -50%);
    }

    73.33% {
        -webkit-transform: translate(77.5333px, 747.9378px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(145.8667deg) translate(-50%, -50%);
        transform: translate(77.5333px, 747.9378px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(145.8667deg) translate(-50%, -50%);
    }

    76.67% {
        -webkit-transform: translate(78.4667px, 759.6711px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(153.8667deg) translate(-50%, -50%);
        transform: translate(78.4667px, 759.6711px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(153.8667deg) translate(-50%, -50%);
    }

    80% {
        -webkit-transform: translate(79.4px, 769.84px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.8deg) translate(-50%, -50%);
        transform: translate(79.4px, 769.84px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(160.8deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(80.3333px, 778.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(166.6667deg) translate(-50%, -50%);
        transform: translate(80.3333px, 778.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(166.6667deg) translate(-50%, -50%);
    }

    86.67% {
        -webkit-transform: translate(81.2667px, 785.4844px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(171.4667deg) translate(-50%, -50%);
        transform: translate(81.2667px, 785.4844px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(171.4667deg) translate(-50%, -50%);
    }

    90% {
        -webkit-transform: translate(82.2px, 790.96px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(175.2deg) translate(-50%, -50%);
        transform: translate(82.2px, 790.96px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(175.2deg) translate(-50%, -50%);
    }

    93.33% {
        -webkit-transform: translate(83.1333px, 794.8711px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(177.8667deg) translate(-50%, -50%);
        transform: translate(83.1333px, 794.8711px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(177.8667deg) translate(-50%, -50%);
    }

    96.67% {
        -webkit-transform: translate(84.0667px, 797.2178px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(179.4667deg) translate(-50%, -50%);
        transform: translate(84.0667px, 797.2178px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(179.4667deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(85px, 798px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) translate(-50%, -50%);
        transform: translate(85px, 798px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) translate(-50%, -50%);
    }
}

/* animation a 3 : end */

/* animation b 1 : start */
.leaf-b-1-anim {
    /* use leaf-1.png */
    -webkit-animation-name: leaf-b-1-anim-keyframes;
    animation-name: leaf-b-1-anim-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 6000ms;
    animation-duration: 6000ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    position: absolute;
    top: -70px;
    left: 0;
}

@-webkit-keyframes leaf-b-1-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(69px, 168px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(157deg) translate(-50%, -50%);
        transform: translate(69px, 168px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(157deg) translate(-50%, -50%);
    }

    2.78% {
        -webkit-transform: translate(68.8756px, 188.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(156.4133deg) translate(-50%, -50%);
        transform: translate(68.8756px, 188.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(156.4133deg) translate(-50%, -50%);
    }

    5.56% {
        -webkit-transform: translate(68.5022px, 208.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(154.6533deg) translate(-50%, -50%);
        transform: translate(68.5022px, 208.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(154.6533deg) translate(-50%, -50%);
    }

    8.33% {
        -webkit-transform: translate(67.88px, 229px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(151.72deg) translate(-50%, -50%);
        transform: translate(67.88px, 229px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(151.72deg) translate(-50%, -50%);
    }

    11.11% {
        -webkit-transform: translate(67.0089px, 249.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(147.6133deg) translate(-50%, -50%);
        transform: translate(67.0089px, 249.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(147.6133deg) translate(-50%, -50%);
    }

    13.89% {
        -webkit-transform: translate(65.8889px, 269.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(142.3333deg) translate(-50%, -50%);
        transform: translate(65.8889px, 269.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(142.3333deg) translate(-50%, -50%);
    }

    16.67% {
        opacity: 1;
        -webkit-transform: translate(64.52px, 290px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(135.88deg) translate(-50%, -50%);
        transform: translate(64.52px, 290px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(135.88deg) translate(-50%, -50%);
    }

    19.44% {
        -webkit-transform: translate(62.9022px, 310.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(128.2533deg) translate(-50%, -50%);
        transform: translate(62.9022px, 310.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(128.2533deg) translate(-50%, -50%);
    }

    22.22% {
        -webkit-transform: translate(61.0978px, 330.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(119.7467deg) translate(-50%, -50%);
        transform: translate(61.0978px, 330.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(119.7467deg) translate(-50%, -50%);
    }

    25% {
        -webkit-transform: translate(59.48px, 351px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(112.12deg) translate(-50%, -50%);
        transform: translate(59.48px, 351px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(112.12deg) translate(-50%, -50%);
    }

    27.78% {
        -webkit-transform: translate(58.1111px, 371.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.6667deg) translate(-50%, -50%);
        transform: translate(58.1111px, 371.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.6667deg) translate(-50%, -50%);
    }

    30.56% {
        -webkit-transform: translate(56.9911px, 391.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100.3867deg) translate(-50%, -50%);
        transform: translate(56.9911px, 391.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100.3867deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(56.12px, 412px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(96.28deg) translate(-50%, -50%);
        transform: translate(56.12px, 412px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(96.28deg) translate(-50%, -50%);
    }

    36.11% {
        -webkit-transform: translate(55.4978px, 432.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.3467deg) translate(-50%, -50%);
        transform: translate(55.4978px, 432.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.3467deg) translate(-50%, -50%);
    }

    38.89% {
        -webkit-transform: translate(55.1244px, 452.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.5867deg) translate(-50%, -50%);
        transform: translate(55.1244px, 452.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.5867deg) translate(-50%, -50%);
    }

    41.67% {
        -webkit-transform: translate(55px, 473px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91deg) translate(-50%, -50%);
        transform: translate(55px, 473px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91deg) translate(-50%, -50%);
    }

    44.44% {
        -webkit-transform: translate(55.1067px, 490.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.5422deg) translate(-50%, -50%);
        transform: translate(55.1067px, 490.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.5422deg) translate(-50%, -50%);
    }

    47.22% {
        -webkit-transform: translate(55.4267px, 507.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.1689deg) translate(-50%, -50%);
        transform: translate(55.4267px, 507.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.1689deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(55.96px, 524.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(95.88deg) translate(-50%, -50%);
        transform: translate(55.96px, 524.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(95.88deg) translate(-50%, -50%);
    }

    52.78% {
        -webkit-transform: translate(56.7067px, 542.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(99.6756deg) translate(-50%, -50%);
        transform: translate(56.7067px, 542.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(99.6756deg) translate(-50%, -50%);
    }

    55.56% {
        -webkit-transform: translate(57.6667px, 559.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(104.5556deg) translate(-50%, -50%);
        transform: translate(57.6667px, 559.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(104.5556deg) translate(-50%, -50%);
    }

    58.33% {
        -webkit-transform: translate(58.84px, 576.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(110.52deg) translate(-50%, -50%);
        transform: translate(58.84px, 576.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(110.52deg) translate(-50%, -50%);
    }

    61.11% {
        -webkit-transform: translate(60.2267px, 593.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(117.5689deg) translate(-50%, -50%);
        transform: translate(60.2267px, 593.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(117.5689deg) translate(-50%, -50%);
    }

    63.89% {
        -webkit-transform: translate(61.7733px, 611.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(125.4311deg) translate(-50%, -50%);
        transform: translate(61.7733px, 611.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(125.4311deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(63.16px, 628.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(132.48deg) translate(-50%, -50%);
        transform: translate(63.16px, 628.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(132.48deg) translate(-50%, -50%);
    }

    69.44% {
        -webkit-transform: translate(64.3333px, 645.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(138.4444deg) translate(-50%, -50%);
        transform: translate(64.3333px, 645.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(138.4444deg) translate(-50%, -50%);
    }

    72.22% {
        -webkit-transform: translate(65.2933px, 662.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(143.3244deg) translate(-50%, -50%);
        transform: translate(65.2933px, 662.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(143.3244deg) translate(-50%, -50%);
    }

    75% {
        -webkit-transform: translate(66.04px, 680.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(147.12deg) translate(-50%, -50%);
        transform: translate(66.04px, 680.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(147.12deg) translate(-50%, -50%);
    }

    77.78% {
        -webkit-transform: translate(66.5733px, 697.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(149.8311deg) translate(-50%, -50%);
        transform: translate(66.5733px, 697.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(149.8311deg) translate(-50%, -50%);
    }

    80.56% {
        -webkit-transform: translate(66.8933px, 714.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(151.4578deg) translate(-50%, -50%);
        transform: translate(66.8933px, 714.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(151.4578deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(67px, 732px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(152deg) translate(-50%, -50%);
        transform: translate(67px, 732px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(152deg) translate(-50%, -50%);
    }

    86.11% {
        -webkit-transform: translate(66.6111px, 752.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(136.1111deg) translate(-50%, -50%);
        transform: translate(66.6111px, 752.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(136.1111deg) translate(-50%, -50%);
    }

    88.89% {
        -webkit-transform: translate(65.4444px, 769.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(123.1111deg) translate(-50%, -50%);
        transform: translate(65.4444px, 769.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(123.1111deg) translate(-50%, -50%);
    }

    91.67% {
        -webkit-transform: translate(63.5px, 783px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(113deg) translate(-50%, -50%);
        transform: translate(63.5px, 783px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(113deg) translate(-50%, -50%);
    }

    94.44% {
        -webkit-transform: translate(61.5556px, 792.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.7778deg) translate(-50%, -50%);
        transform: translate(61.5556px, 792.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.7778deg) translate(-50%, -50%);
    }

    97.22% {
        -webkit-transform: translate(60.3889px, 798.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(101.4444deg) translate(-50%, -50%);
        transform: translate(60.3889px, 798.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(101.4444deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(60px, 800px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100deg) translate(-50%, -50%);
        transform: translate(60px, 800px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100deg) translate(-50%, -50%);
    }
}

@keyframes leaf-b-1-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(69px, 168px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(157deg) translate(-50%, -50%);
        transform: translate(69px, 168px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(157deg) translate(-50%, -50%);
    }

    2.78% {
        -webkit-transform: translate(68.8756px, 188.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(156.4133deg) translate(-50%, -50%);
        transform: translate(68.8756px, 188.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(156.4133deg) translate(-50%, -50%);
    }

    5.56% {
        -webkit-transform: translate(68.5022px, 208.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(154.6533deg) translate(-50%, -50%);
        transform: translate(68.5022px, 208.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(154.6533deg) translate(-50%, -50%);
    }

    8.33% {
        -webkit-transform: translate(67.88px, 229px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(151.72deg) translate(-50%, -50%);
        transform: translate(67.88px, 229px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(151.72deg) translate(-50%, -50%);
    }

    11.11% {
        -webkit-transform: translate(67.0089px, 249.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(147.6133deg) translate(-50%, -50%);
        transform: translate(67.0089px, 249.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(147.6133deg) translate(-50%, -50%);
    }

    13.89% {
        -webkit-transform: translate(65.8889px, 269.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(142.3333deg) translate(-50%, -50%);
        transform: translate(65.8889px, 269.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(142.3333deg) translate(-50%, -50%);
    }

    16.67% {
        opacity: 1;
        -webkit-transform: translate(64.52px, 290px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(135.88deg) translate(-50%, -50%);
        transform: translate(64.52px, 290px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(135.88deg) translate(-50%, -50%);
    }

    19.44% {
        -webkit-transform: translate(62.9022px, 310.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(128.2533deg) translate(-50%, -50%);
        transform: translate(62.9022px, 310.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(128.2533deg) translate(-50%, -50%);
    }

    22.22% {
        -webkit-transform: translate(61.0978px, 330.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(119.7467deg) translate(-50%, -50%);
        transform: translate(61.0978px, 330.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(119.7467deg) translate(-50%, -50%);
    }

    25% {
        -webkit-transform: translate(59.48px, 351px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(112.12deg) translate(-50%, -50%);
        transform: translate(59.48px, 351px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(112.12deg) translate(-50%, -50%);
    }

    27.78% {
        -webkit-transform: translate(58.1111px, 371.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.6667deg) translate(-50%, -50%);
        transform: translate(58.1111px, 371.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.6667deg) translate(-50%, -50%);
    }

    30.56% {
        -webkit-transform: translate(56.9911px, 391.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100.3867deg) translate(-50%, -50%);
        transform: translate(56.9911px, 391.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100.3867deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(56.12px, 412px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(96.28deg) translate(-50%, -50%);
        transform: translate(56.12px, 412px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(96.28deg) translate(-50%, -50%);
    }

    36.11% {
        -webkit-transform: translate(55.4978px, 432.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.3467deg) translate(-50%, -50%);
        transform: translate(55.4978px, 432.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.3467deg) translate(-50%, -50%);
    }

    38.89% {
        -webkit-transform: translate(55.1244px, 452.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.5867deg) translate(-50%, -50%);
        transform: translate(55.1244px, 452.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.5867deg) translate(-50%, -50%);
    }

    41.67% {
        -webkit-transform: translate(55px, 473px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91deg) translate(-50%, -50%);
        transform: translate(55px, 473px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91deg) translate(-50%, -50%);
    }

    44.44% {
        -webkit-transform: translate(55.1067px, 490.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.5422deg) translate(-50%, -50%);
        transform: translate(55.1067px, 490.2667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(91.5422deg) translate(-50%, -50%);
    }

    47.22% {
        -webkit-transform: translate(55.4267px, 507.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.1689deg) translate(-50%, -50%);
        transform: translate(55.4267px, 507.5333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(93.1689deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(55.96px, 524.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(95.88deg) translate(-50%, -50%);
        transform: translate(55.96px, 524.8px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(95.88deg) translate(-50%, -50%);
    }

    52.78% {
        -webkit-transform: translate(56.7067px, 542.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(99.6756deg) translate(-50%, -50%);
        transform: translate(56.7067px, 542.0667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(99.6756deg) translate(-50%, -50%);
    }

    55.56% {
        -webkit-transform: translate(57.6667px, 559.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(104.5556deg) translate(-50%, -50%);
        transform: translate(57.6667px, 559.3333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(104.5556deg) translate(-50%, -50%);
    }

    58.33% {
        -webkit-transform: translate(58.84px, 576.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(110.52deg) translate(-50%, -50%);
        transform: translate(58.84px, 576.6px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(110.52deg) translate(-50%, -50%);
    }

    61.11% {
        -webkit-transform: translate(60.2267px, 593.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(117.5689deg) translate(-50%, -50%);
        transform: translate(60.2267px, 593.8667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(117.5689deg) translate(-50%, -50%);
    }

    63.89% {
        -webkit-transform: translate(61.7733px, 611.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(125.4311deg) translate(-50%, -50%);
        transform: translate(61.7733px, 611.1333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(125.4311deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(63.16px, 628.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(132.48deg) translate(-50%, -50%);
        transform: translate(63.16px, 628.4px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(132.48deg) translate(-50%, -50%);
    }

    69.44% {
        -webkit-transform: translate(64.3333px, 645.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(138.4444deg) translate(-50%, -50%);
        transform: translate(64.3333px, 645.6667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(138.4444deg) translate(-50%, -50%);
    }

    72.22% {
        -webkit-transform: translate(65.2933px, 662.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(143.3244deg) translate(-50%, -50%);
        transform: translate(65.2933px, 662.9333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(143.3244deg) translate(-50%, -50%);
    }

    75% {
        -webkit-transform: translate(66.04px, 680.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(147.12deg) translate(-50%, -50%);
        transform: translate(66.04px, 680.2px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(147.12deg) translate(-50%, -50%);
    }

    77.78% {
        -webkit-transform: translate(66.5733px, 697.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(149.8311deg) translate(-50%, -50%);
        transform: translate(66.5733px, 697.4667px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(149.8311deg) translate(-50%, -50%);
    }

    80.56% {
        -webkit-transform: translate(66.8933px, 714.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(151.4578deg) translate(-50%, -50%);
        transform: translate(66.8933px, 714.7333px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(151.4578deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(67px, 732px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(152deg) translate(-50%, -50%);
        transform: translate(67px, 732px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(152deg) translate(-50%, -50%);
    }

    86.11% {
        -webkit-transform: translate(66.6111px, 752.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(136.1111deg) translate(-50%, -50%);
        transform: translate(66.6111px, 752.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(136.1111deg) translate(-50%, -50%);
    }

    88.89% {
        -webkit-transform: translate(65.4444px, 769.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(123.1111deg) translate(-50%, -50%);
        transform: translate(65.4444px, 769.7778px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(123.1111deg) translate(-50%, -50%);
    }

    91.67% {
        -webkit-transform: translate(63.5px, 783px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(113deg) translate(-50%, -50%);
        transform: translate(63.5px, 783px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(113deg) translate(-50%, -50%);
    }

    94.44% {
        -webkit-transform: translate(61.5556px, 792.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.7778deg) translate(-50%, -50%);
        transform: translate(61.5556px, 792.4444px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(105.7778deg) translate(-50%, -50%);
    }

    97.22% {
        -webkit-transform: translate(60.3889px, 798.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(101.4444deg) translate(-50%, -50%);
        transform: translate(60.3889px, 798.1111px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(101.4444deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(60px, 800px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100deg) translate(-50%, -50%);
        transform: translate(60px, 800px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(100deg) translate(-50%, -50%);
    }
}

/* animation b 1 : end */
/* animation b 2 : start */
.leaf-b-2-anim {
    /* use leaf-3.png */
    -webkit-animation-name: leaf-b-2-anim-keyframes;
    animation-name: leaf-b-2-anim-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 4500ms;
    animation-duration: 4500ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    position: absolute;
    top: 20px;
    left: 70px;
}

@-webkit-keyframes leaf-b-2-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(51px, 30px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(85deg) translate(-50%, -50%);
        transform: translate(51px, 30px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(85deg) translate(-50%, -50%);
    }

    3.7% {
        -webkit-transform: translate(50.9757px, 52.7917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(81.4583deg) translate(-50%, -50%);
        transform: translate(50.9757px, 52.7917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(81.4583deg) translate(-50%, -50%);
    }

    7.41% {
        -webkit-transform: translate(50.9028px, 75.5833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(77.9167deg) translate(-50%, -50%);
        transform: translate(50.9028px, 75.5833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(77.9167deg) translate(-50%, -50%);
    }

    11.11% {
        -webkit-transform: translate(50.7813px, 98.375px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(74.375deg) translate(-50%, -50%);
        transform: translate(50.7813px, 98.375px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(74.375deg) translate(-50%, -50%);
    }

    14.81% {
        -webkit-transform: translate(50.6111px, 121.1667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(70.8333deg) translate(-50%, -50%);
        transform: translate(50.6111px, 121.1667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(70.8333deg) translate(-50%, -50%);
    }

    18.52% {
        opacity: 1;
        -webkit-transform: translate(50.3924px, 143.9583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(67.2917deg) translate(-50%, -50%);
        transform: translate(50.3924px, 143.9583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(67.2917deg) translate(-50%, -50%);
    }

    22.22% {
        -webkit-transform: translate(50.125px, 166.75px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(63.75deg) translate(-50%, -50%);
        transform: translate(50.125px, 166.75px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(63.75deg) translate(-50%, -50%);
    }

    25.93% {
        -webkit-transform: translate(49.809px, 189.5417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(60.2083deg) translate(-50%, -50%);
        transform: translate(49.809px, 189.5417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(60.2083deg) translate(-50%, -50%);
    }

    29.63% {
        -webkit-transform: translate(49.4444px, 212.3333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(56.6667deg) translate(-50%, -50%);
        transform: translate(49.4444px, 212.3333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(56.6667deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(49.0313px, 235.125px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(53.125deg) translate(-50%, -50%);
        transform: translate(49.0313px, 235.125px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(53.125deg) translate(-50%, -50%);
    }

    37.04% {
        -webkit-transform: translate(48.5694px, 257.9167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(49.5833deg) translate(-50%, -50%);
        transform: translate(48.5694px, 257.9167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(49.5833deg) translate(-50%, -50%);
    }

    40.74% {
        -webkit-transform: translate(48.059px, 280.7083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(46.0417deg) translate(-50%, -50%);
        transform: translate(48.059px, 280.7083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(46.0417deg) translate(-50%, -50%);
    }

    44.44% {
        -webkit-transform: translate(47.5px, 303.5px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(42.5deg) translate(-50%, -50%);
        transform: translate(47.5px, 303.5px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(42.5deg) translate(-50%, -50%);
    }

    48.15% {
        -webkit-transform: translate(46.941px, 326.2917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(38.9583deg) translate(-50%, -50%);
        transform: translate(46.941px, 326.2917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(38.9583deg) translate(-50%, -50%);
    }

    51.85% {
        -webkit-transform: translate(46.4306px, 349.0833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(35.4167deg) translate(-50%, -50%);
        transform: translate(46.4306px, 349.0833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(35.4167deg) translate(-50%, -50%);
    }

    55.56% {
        -webkit-transform: translate(45.9688px, 371.875px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(31.875deg) translate(-50%, -50%);
        transform: translate(45.9688px, 371.875px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(31.875deg) translate(-50%, -50%);
    }

    59.26% {
        -webkit-transform: translate(45.5556px, 394.6667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(28.3333deg) translate(-50%, -50%);
        transform: translate(45.5556px, 394.6667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(28.3333deg) translate(-50%, -50%);
    }

    62.96% {
        -webkit-transform: translate(45.191px, 417.4583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(24.7917deg) translate(-50%, -50%);
        transform: translate(45.191px, 417.4583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(24.7917deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(44.875px, 440.25px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(21.25deg) translate(-50%, -50%);
        transform: translate(44.875px, 440.25px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(21.25deg) translate(-50%, -50%);
    }

    70.37% {
        -webkit-transform: translate(44.6076px, 463.0417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(17.7083deg) translate(-50%, -50%);
        transform: translate(44.6076px, 463.0417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(17.7083deg) translate(-50%, -50%);
    }

    74.07% {
        -webkit-transform: translate(44.3889px, 485.8333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(14.1667deg) translate(-50%, -50%);
        transform: translate(44.3889px, 485.8333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(14.1667deg) translate(-50%, -50%);
    }

    77.78% {
        -webkit-transform: translate(44.2188px, 508.625px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(10.625deg) translate(-50%, -50%);
        transform: translate(44.2188px, 508.625px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(10.625deg) translate(-50%, -50%);
    }

    81.48% {
        -webkit-transform: translate(44.0972px, 531.4167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(7.0833deg) translate(-50%, -50%);
        transform: translate(44.0972px, 531.4167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(7.0833deg) translate(-50%, -50%);
    }

    85.19% {
        -webkit-transform: translate(44.0243px, 554.2083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(3.5417deg) translate(-50%, -50%);
        transform: translate(44.0243px, 554.2083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(3.5417deg) translate(-50%, -50%);
    }

    88.89% {
        -webkit-transform: translate(44px, 577px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(44px, 577px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    92.59% {
        -webkit-transform: translate(44px, 599.7778px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(44px, 599.7778px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    96.3% {
        -webkit-transform: translate(44px, 613.4444px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(44px, 613.4444px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(44px, 618px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(44px, 618px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }
}

@keyframes leaf-b-2-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(51px, 30px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(85deg) translate(-50%, -50%);
        transform: translate(51px, 30px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(85deg) translate(-50%, -50%);
    }

    3.7% {
        -webkit-transform: translate(50.9757px, 52.7917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(81.4583deg) translate(-50%, -50%);
        transform: translate(50.9757px, 52.7917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(81.4583deg) translate(-50%, -50%);
    }

    7.41% {
        -webkit-transform: translate(50.9028px, 75.5833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(77.9167deg) translate(-50%, -50%);
        transform: translate(50.9028px, 75.5833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(77.9167deg) translate(-50%, -50%);
    }

    11.11% {
        -webkit-transform: translate(50.7813px, 98.375px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(74.375deg) translate(-50%, -50%);
        transform: translate(50.7813px, 98.375px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(74.375deg) translate(-50%, -50%);
    }

    14.81% {
        -webkit-transform: translate(50.6111px, 121.1667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(70.8333deg) translate(-50%, -50%);
        transform: translate(50.6111px, 121.1667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(70.8333deg) translate(-50%, -50%);
    }

    18.52% {
        opacity: 1;
        -webkit-transform: translate(50.3924px, 143.9583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(67.2917deg) translate(-50%, -50%);
        transform: translate(50.3924px, 143.9583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(67.2917deg) translate(-50%, -50%);
    }

    22.22% {
        -webkit-transform: translate(50.125px, 166.75px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(63.75deg) translate(-50%, -50%);
        transform: translate(50.125px, 166.75px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(63.75deg) translate(-50%, -50%);
    }

    25.93% {
        -webkit-transform: translate(49.809px, 189.5417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(60.2083deg) translate(-50%, -50%);
        transform: translate(49.809px, 189.5417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(60.2083deg) translate(-50%, -50%);
    }

    29.63% {
        -webkit-transform: translate(49.4444px, 212.3333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(56.6667deg) translate(-50%, -50%);
        transform: translate(49.4444px, 212.3333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(56.6667deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(49.0313px, 235.125px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(53.125deg) translate(-50%, -50%);
        transform: translate(49.0313px, 235.125px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(53.125deg) translate(-50%, -50%);
    }

    37.04% {
        -webkit-transform: translate(48.5694px, 257.9167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(49.5833deg) translate(-50%, -50%);
        transform: translate(48.5694px, 257.9167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(49.5833deg) translate(-50%, -50%);
    }

    40.74% {
        -webkit-transform: translate(48.059px, 280.7083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(46.0417deg) translate(-50%, -50%);
        transform: translate(48.059px, 280.7083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(46.0417deg) translate(-50%, -50%);
    }

    44.44% {
        -webkit-transform: translate(47.5px, 303.5px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(42.5deg) translate(-50%, -50%);
        transform: translate(47.5px, 303.5px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(42.5deg) translate(-50%, -50%);
    }

    48.15% {
        -webkit-transform: translate(46.941px, 326.2917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(38.9583deg) translate(-50%, -50%);
        transform: translate(46.941px, 326.2917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(38.9583deg) translate(-50%, -50%);
    }

    51.85% {
        -webkit-transform: translate(46.4306px, 349.0833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(35.4167deg) translate(-50%, -50%);
        transform: translate(46.4306px, 349.0833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(35.4167deg) translate(-50%, -50%);
    }

    55.56% {
        -webkit-transform: translate(45.9688px, 371.875px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(31.875deg) translate(-50%, -50%);
        transform: translate(45.9688px, 371.875px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(31.875deg) translate(-50%, -50%);
    }

    59.26% {
        -webkit-transform: translate(45.5556px, 394.6667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(28.3333deg) translate(-50%, -50%);
        transform: translate(45.5556px, 394.6667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(28.3333deg) translate(-50%, -50%);
    }

    62.96% {
        -webkit-transform: translate(45.191px, 417.4583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(24.7917deg) translate(-50%, -50%);
        transform: translate(45.191px, 417.4583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(24.7917deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(44.875px, 440.25px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(21.25deg) translate(-50%, -50%);
        transform: translate(44.875px, 440.25px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(21.25deg) translate(-50%, -50%);
    }

    70.37% {
        -webkit-transform: translate(44.6076px, 463.0417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(17.7083deg) translate(-50%, -50%);
        transform: translate(44.6076px, 463.0417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(17.7083deg) translate(-50%, -50%);
    }

    74.07% {
        -webkit-transform: translate(44.3889px, 485.8333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(14.1667deg) translate(-50%, -50%);
        transform: translate(44.3889px, 485.8333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(14.1667deg) translate(-50%, -50%);
    }

    77.78% {
        -webkit-transform: translate(44.2188px, 508.625px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(10.625deg) translate(-50%, -50%);
        transform: translate(44.2188px, 508.625px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(10.625deg) translate(-50%, -50%);
    }

    81.48% {
        -webkit-transform: translate(44.0972px, 531.4167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(7.0833deg) translate(-50%, -50%);
        transform: translate(44.0972px, 531.4167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(7.0833deg) translate(-50%, -50%);
    }

    85.19% {
        -webkit-transform: translate(44.0243px, 554.2083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(3.5417deg) translate(-50%, -50%);
        transform: translate(44.0243px, 554.2083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(3.5417deg) translate(-50%, -50%);
    }

    88.89% {
        -webkit-transform: translate(44px, 577px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(44px, 577px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    92.59% {
        -webkit-transform: translate(44px, 599.7778px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(44px, 599.7778px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    96.3% {
        -webkit-transform: translate(44px, 613.4444px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(44px, 613.4444px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(44px, 618px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(44px, 618px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }
}

/* animation b 2 : end */
/* animation b 3 : start */
.leaf-b-3-anim {
    /* use leaf-2.png */
    -webkit-animation-name: leaf-b-3-anim-keyframes;
    animation-name: leaf-b-3-anim-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 4500ms;
    animation-duration: 4500ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    position: absolute;
    top: 170px;
    left: 50px;
}

@-webkit-keyframes leaf-b-3-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(51px, 30px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-60deg) translate(-50%, -50%);
        transform: translate(51px, 30px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-60deg) translate(-50%, -50%);
    }

    3.7% {
        -webkit-transform: translate(50.9826px, 44.0417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-57.5deg) translate(-50%, -50%);
        transform: translate(50.9826px, 44.0417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-57.5deg) translate(-50%, -50%);
    }

    7.41% {
        -webkit-transform: translate(50.9306px, 58.0833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-55deg) translate(-50%, -50%);
        transform: translate(50.9306px, 58.0833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-55deg) translate(-50%, -50%);
    }

    11.11% {
        -webkit-transform: translate(50.8438px, 72.125px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-52.5deg) translate(-50%, -50%);
        transform: translate(50.8438px, 72.125px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-52.5deg) translate(-50%, -50%);
    }

    14.81% {
        -webkit-transform: translate(50.7222px, 86.1667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-50deg) translate(-50%, -50%);
        transform: translate(50.7222px, 86.1667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-50deg) translate(-50%, -50%);
    }

    18.52% {
        opacity: 1;
        -webkit-transform: translate(50.566px, 100.2083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-47.5deg) translate(-50%, -50%);
        transform: translate(50.566px, 100.2083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-47.5deg) translate(-50%, -50%);
    }

    22.22% {
        -webkit-transform: translate(50.375px, 114.25px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) translate(-50%, -50%);
        transform: translate(50.375px, 114.25px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) translate(-50%, -50%);
    }

    25.93% {
        -webkit-transform: translate(50.1493px, 128.2917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-42.5deg) translate(-50%, -50%);
        transform: translate(50.1493px, 128.2917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-42.5deg) translate(-50%, -50%);
    }

    29.63% {
        -webkit-transform: translate(49.8889px, 142.3333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-40deg) translate(-50%, -50%);
        transform: translate(49.8889px, 142.3333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-40deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(49.5938px, 156.375px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-37.5deg) translate(-50%, -50%);
        transform: translate(49.5938px, 156.375px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-37.5deg) translate(-50%, -50%);
    }

    37.04% {
        -webkit-transform: translate(49.2639px, 170.4167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-35deg) translate(-50%, -50%);
        transform: translate(49.2639px, 170.4167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-35deg) translate(-50%, -50%);
    }

    40.74% {
        -webkit-transform: translate(48.8993px, 184.4583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-32.5deg) translate(-50%, -50%);
        transform: translate(48.8993px, 184.4583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-32.5deg) translate(-50%, -50%);
    }

    44.44% {
        -webkit-transform: translate(48.5px, 198.5px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-30deg) translate(-50%, -50%);
        transform: translate(48.5px, 198.5px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-30deg) translate(-50%, -50%);
    }

    48.15% {
        -webkit-transform: translate(48.1007px, 212.5417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-27.5deg) translate(-50%, -50%);
        transform: translate(48.1007px, 212.5417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-27.5deg) translate(-50%, -50%);
    }

    51.85% {
        -webkit-transform: translate(47.7361px, 226.5833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-25deg) translate(-50%, -50%);
        transform: translate(47.7361px, 226.5833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-25deg) translate(-50%, -50%);
    }

    55.56% {
        -webkit-transform: translate(47.4063px, 240.625px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-22.5deg) translate(-50%, -50%);
        transform: translate(47.4063px, 240.625px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-22.5deg) translate(-50%, -50%);
    }

    59.26% {
        -webkit-transform: translate(47.1111px, 254.6667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-20deg) translate(-50%, -50%);
        transform: translate(47.1111px, 254.6667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-20deg) translate(-50%, -50%);
    }

    62.96% {
        -webkit-transform: translate(46.8507px, 268.7083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-17.5deg) translate(-50%, -50%);
        transform: translate(46.8507px, 268.7083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-17.5deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(46.625px, 282.75px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-15deg) translate(-50%, -50%);
        transform: translate(46.625px, 282.75px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-15deg) translate(-50%, -50%);
    }

    70.37% {
        -webkit-transform: translate(46.434px, 296.7917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-12.5deg) translate(-50%, -50%);
        transform: translate(46.434px, 296.7917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-12.5deg) translate(-50%, -50%);
    }

    74.07% {
        -webkit-transform: translate(46.2778px, 310.8333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-10deg) translate(-50%, -50%);
        transform: translate(46.2778px, 310.8333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-10deg) translate(-50%, -50%);
    }

    77.78% {
        -webkit-transform: translate(46.1563px, 324.875px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-7.5deg) translate(-50%, -50%);
        transform: translate(46.1563px, 324.875px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-7.5deg) translate(-50%, -50%);
    }

    81.48% {
        -webkit-transform: translate(46.0694px, 338.9167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-5deg) translate(-50%, -50%);
        transform: translate(46.0694px, 338.9167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-5deg) translate(-50%, -50%);
    }

    85.19% {
        -webkit-transform: translate(46.0174px, 352.9583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-2.5deg) translate(-50%, -50%);
        transform: translate(46.0174px, 352.9583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-2.5deg) translate(-50%, -50%);
    }

    88.89% {
        -webkit-transform: translate(46px, 367px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(46px, 367px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    92.59% {
        -webkit-transform: translate(46px, 380.8889px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(46px, 380.8889px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    96.3% {
        -webkit-transform: translate(46px, 389.2222px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(46px, 389.2222px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(46px, 392px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(46px, 392px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }
}

@keyframes leaf-b-3-anim-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(51px, 30px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-60deg) translate(-50%, -50%);
        transform: translate(51px, 30px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-60deg) translate(-50%, -50%);
    }

    3.7% {
        -webkit-transform: translate(50.9826px, 44.0417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-57.5deg) translate(-50%, -50%);
        transform: translate(50.9826px, 44.0417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-57.5deg) translate(-50%, -50%);
    }

    7.41% {
        -webkit-transform: translate(50.9306px, 58.0833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-55deg) translate(-50%, -50%);
        transform: translate(50.9306px, 58.0833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-55deg) translate(-50%, -50%);
    }

    11.11% {
        -webkit-transform: translate(50.8438px, 72.125px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-52.5deg) translate(-50%, -50%);
        transform: translate(50.8438px, 72.125px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-52.5deg) translate(-50%, -50%);
    }

    14.81% {
        -webkit-transform: translate(50.7222px, 86.1667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-50deg) translate(-50%, -50%);
        transform: translate(50.7222px, 86.1667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-50deg) translate(-50%, -50%);
    }

    18.52% {
        opacity: 1;
        -webkit-transform: translate(50.566px, 100.2083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-47.5deg) translate(-50%, -50%);
        transform: translate(50.566px, 100.2083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-47.5deg) translate(-50%, -50%);
    }

    22.22% {
        -webkit-transform: translate(50.375px, 114.25px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) translate(-50%, -50%);
        transform: translate(50.375px, 114.25px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) translate(-50%, -50%);
    }

    25.93% {
        -webkit-transform: translate(50.1493px, 128.2917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-42.5deg) translate(-50%, -50%);
        transform: translate(50.1493px, 128.2917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-42.5deg) translate(-50%, -50%);
    }

    29.63% {
        -webkit-transform: translate(49.8889px, 142.3333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-40deg) translate(-50%, -50%);
        transform: translate(49.8889px, 142.3333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-40deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(49.5938px, 156.375px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-37.5deg) translate(-50%, -50%);
        transform: translate(49.5938px, 156.375px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-37.5deg) translate(-50%, -50%);
    }

    37.04% {
        -webkit-transform: translate(49.2639px, 170.4167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-35deg) translate(-50%, -50%);
        transform: translate(49.2639px, 170.4167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-35deg) translate(-50%, -50%);
    }

    40.74% {
        -webkit-transform: translate(48.8993px, 184.4583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-32.5deg) translate(-50%, -50%);
        transform: translate(48.8993px, 184.4583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-32.5deg) translate(-50%, -50%);
    }

    44.44% {
        -webkit-transform: translate(48.5px, 198.5px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-30deg) translate(-50%, -50%);
        transform: translate(48.5px, 198.5px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-30deg) translate(-50%, -50%);
    }

    48.15% {
        -webkit-transform: translate(48.1007px, 212.5417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-27.5deg) translate(-50%, -50%);
        transform: translate(48.1007px, 212.5417px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-27.5deg) translate(-50%, -50%);
    }

    51.85% {
        -webkit-transform: translate(47.7361px, 226.5833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-25deg) translate(-50%, -50%);
        transform: translate(47.7361px, 226.5833px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-25deg) translate(-50%, -50%);
    }

    55.56% {
        -webkit-transform: translate(47.4063px, 240.625px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-22.5deg) translate(-50%, -50%);
        transform: translate(47.4063px, 240.625px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-22.5deg) translate(-50%, -50%);
    }

    59.26% {
        -webkit-transform: translate(47.1111px, 254.6667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-20deg) translate(-50%, -50%);
        transform: translate(47.1111px, 254.6667px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-20deg) translate(-50%, -50%);
    }

    62.96% {
        -webkit-transform: translate(46.8507px, 268.7083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-17.5deg) translate(-50%, -50%);
        transform: translate(46.8507px, 268.7083px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-17.5deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(46.625px, 282.75px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-15deg) translate(-50%, -50%);
        transform: translate(46.625px, 282.75px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-15deg) translate(-50%, -50%);
    }

    70.37% {
        -webkit-transform: translate(46.434px, 296.7917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-12.5deg) translate(-50%, -50%);
        transform: translate(46.434px, 296.7917px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-12.5deg) translate(-50%, -50%);
    }

    74.07% {
        -webkit-transform: translate(46.2778px, 310.8333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-10deg) translate(-50%, -50%);
        transform: translate(46.2778px, 310.8333px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-10deg) translate(-50%, -50%);
    }

    77.78% {
        -webkit-transform: translate(46.1563px, 324.875px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-7.5deg) translate(-50%, -50%);
        transform: translate(46.1563px, 324.875px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-7.5deg) translate(-50%, -50%);
    }

    81.48% {
        -webkit-transform: translate(46.0694px, 338.9167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-5deg) translate(-50%, -50%);
        transform: translate(46.0694px, 338.9167px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-5deg) translate(-50%, -50%);
    }

    85.19% {
        -webkit-transform: translate(46.0174px, 352.9583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-2.5deg) translate(-50%, -50%);
        transform: translate(46.0174px, 352.9583px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(-2.5deg) translate(-50%, -50%);
    }

    88.89% {
        -webkit-transform: translate(46px, 367px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(46px, 367px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    92.59% {
        -webkit-transform: translate(46px, 380.8889px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(46px, 380.8889px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    96.3% {
        -webkit-transform: translate(46px, 389.2222px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(46px, 389.2222px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(46px, 392px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(46px, 392px) scale(0.8) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }
}

/* animation b 3 : end */

.leaf-loop-1 {
    position: absolute;
    top: 100px;
    z-index: 3;
    -webkit-animation-name: leaf-loop-keyframes;
    animation-name: leaf-loop-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 3500ms;
    animation-duration: 3500ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    offset-path: path("m4.75,106.45c117,7 223,-73 301,-99c78,-26 383,118 474,118c91,0 81,-99 20,-99c-61,0 -47,79 -16,91c31,12 87,5 123,-27");
}

@-webkit-keyframes leaf-loop-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
        offset-distance: 0%;
    }

    15% {
        opacity: 1;
    }

    25% {
        -webkit-transform: rotate(50deg);
        transform: rotate(50deg);
    }

    100% {
        offset-distance: 100%;
        -webkit-transform: rotate(105deg);
        transform: rotate(105deg);
    }
}

@keyframes leaf-loop-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
        offset-distance: 0%;
    }

    15% {
        opacity: 1;
    }

    25% {
        -webkit-transform: rotate(50deg);
        transform: rotate(50deg);
    }

    100% {
        offset-distance: 100%;
        -webkit-transform: rotate(105deg);
        transform: rotate(105deg);
    }
}

.leaf-loop-2 {
    position: absolute;
    left: 60px;
    top: -20px;
    z-index: 2;
    -webkit-animation-name: leaf-loop-2-keyframes;
    animation-name: leaf-loop-2-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 4500ms;
    animation-duration: 4500ms;
    -webkit-animation-delay: 500ms;
    animation-delay: 500ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 0;
    offset-path: path("m16.5,196.95001c147,21 219,-133 324,-145c105,-12 165,24 230,33c65,9 106,-20 181,-19c75,1 144,37 147,92c3,55 -49,60 -64,28");
}

@-webkit-keyframes leaf-loop-2-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
        offset-distance: 0%;
    }

    15% {
        opacity: 1;
    }

    25% {
        -webkit-transform: rotate(-120deg);
        transform: rotate(-120deg);
    }

    75% {
        -webkit-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }

    100% {
        opacity: 1;
        offset-distance: 100%;
        -webkit-transform: rotate(-235deg);
        transform: rotate(-235deg);
    }
}

@keyframes leaf-loop-2-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
        offset-distance: 0%;
    }

    15% {
        opacity: 1;
    }

    25% {
        -webkit-transform: rotate(-120deg);
        transform: rotate(-120deg);
    }

    75% {
        -webkit-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }

    100% {
        opacity: 1;
        offset-distance: 100%;
        -webkit-transform: rotate(-235deg);
        transform: rotate(-235deg);
    }
}

.leaf-loop-3 {
    position: absolute;
    left: -50px;
    top: 100px;
    z-index: 2;
    -webkit-animation-name: leaf-loop-3-keyframes;
    animation-name: leaf-loop-3-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 5000ms;
    animation-duration: 5000ms;
    -webkit-animation-delay: 750ms;
    animation-delay: 750ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 0;
    offset-path: path("m3.5,122.95001c81,12 240,-77 341,-41c101,36 135,166 215,161c80,-5 82,-5 129.5,-28.95001");
}

@-webkit-keyframes leaf-loop-3-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-85deg) scale(.5);
        transform: rotate(-85deg) scale(.5);
        offset-distance: 0%;
    }

    15% {
        opacity: 1;
    }

    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    100% {
        opacity: 1;
        offset-distance: 100%;
        -webkit-transform: rotate(165deg) scale(1.4);
        transform: rotate(165deg) scale(1.4);
    }
}

@keyframes leaf-loop-3-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-85deg) scale(.5);
        transform: rotate(-85deg) scale(.5);
        offset-distance: 0%;
    }

    15% {
        opacity: 1;
    }

    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    100% {
        opacity: 1;
        offset-distance: 100%;
        -webkit-transform: rotate(165deg) scale(1.4);
        transform: rotate(165deg) scale(1.4);
    }
}

.leaf-single-sm {
    -webkit-animation-name: leaf-single-sm-keyframes;
    animation-name: leaf-single-sm-keyframes;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-duration: 3000ms;
    animation-duration: 3000ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

@-webkit-keyframes leaf-single-sm-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(79px, 30px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(79px, 30px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    8.33% {
        opacity: 1;
        -webkit-transform: translate(72.2778px, 53px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(25.2778deg) translate(-50%, -50%);
        transform: translate(72.2778px, 53px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(25.2778deg) translate(-50%, -50%);
    }

    16.67% {
        -webkit-transform: translate(66.7778px, 76px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(42.2222deg) translate(-50%, -50%);
        transform: translate(66.7778px, 76px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(42.2222deg) translate(-50%, -50%);
    }

    25% {
        -webkit-transform: translate(62.5px, 99px) scale(1.05) rotateX(0deg) rotateY(0deg) rotateZ(52.5deg) translate(-50%, -50%);
        transform: translate(62.5px, 99px) scale(1.05) rotateX(0deg) rotateY(0deg) rotateZ(52.5deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(59.4444px, 122px) scale(1.1) rotateX(0deg) rotateY(0deg) rotateZ(57.7778deg) translate(-50%, -50%);
        transform: translate(59.4444px, 122px) scale(1.1) rotateX(0deg) rotateY(0deg) rotateZ(57.7778deg) translate(-50%, -50%);
    }

    41.67% {
        -webkit-transform: translate(57.6111px, 145px) scale(1.15) rotateX(0deg) rotateY(0deg) rotateZ(59.7222deg) translate(-50%, -50%);
        transform: translate(57.6111px, 145px) scale(1.15) rotateX(0deg) rotateY(0deg) rotateZ(59.7222deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(57px, 168px) scale(1.2) rotateX(0deg) rotateY(0deg) rotateZ(60deg) translate(-50%, -50%);
        transform: translate(57px, 168px) scale(1.2) rotateX(0deg) rotateY(0deg) rotateZ(60deg) translate(-50%, -50%);
    }

    58.33% {
        -webkit-transform: translate(56.25px, 193.6667px) scale(1.25) rotateX(0deg) rotateY(0deg) rotateZ(47.7778deg) translate(-50%, -50%);
        transform: translate(56.25px, 193.6667px) scale(1.25) rotateX(0deg) rotateY(0deg) rotateZ(47.7778deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(54px, 214.6667px) scale(1.3) rotateX(0deg) rotateY(0deg) rotateZ(37.7778deg) translate(-50%, -50%);
        transform: translate(54px, 214.6667px) scale(1.3) rotateX(0deg) rotateY(0deg) rotateZ(37.7778deg) translate(-50%, -50%);
    }

    75% {
        -webkit-transform: translate(50.25px, 231px) scale(1.35) rotateX(0deg) rotateY(0deg) rotateZ(30deg) translate(-50%, -50%);
        transform: translate(50.25px, 231px) scale(1.35) rotateX(0deg) rotateY(0deg) rotateZ(30deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(45px, 242.6667px) scale(1.4) rotateX(0deg) rotateY(0deg) rotateZ(24.4444deg) translate(-50%, -50%);
        transform: translate(45px, 242.6667px) scale(1.4) rotateX(0deg) rotateY(0deg) rotateZ(24.4444deg) translate(-50%, -50%);
    }

    91.67% {
        -webkit-transform: translate(38.25px, 249.6667px) scale(1.45) rotateX(0deg) rotateY(0deg) rotateZ(21.1111deg) translate(-50%, -50%);
        transform: translate(38.25px, 249.6667px) scale(1.45) rotateX(0deg) rotateY(0deg) rotateZ(21.1111deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(30px, 252px) scale(1.5) rotateX(0deg) rotateY(0deg) rotateZ(20deg) translate(-50%, -50%);
        transform: translate(30px, 252px) scale(1.5) rotateX(0deg) rotateY(0deg) rotateZ(20deg) translate(-50%, -50%);
    }
}

@keyframes leaf-single-sm-keyframes {
    0% {
        opacity: 0;
        -webkit-transform: translate(79px, 30px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
        transform: translate(79px, 30px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translate(-50%, -50%);
    }

    8.33% {
        opacity: 1;
        -webkit-transform: translate(72.2778px, 53px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(25.2778deg) translate(-50%, -50%);
        transform: translate(72.2778px, 53px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(25.2778deg) translate(-50%, -50%);
    }

    16.67% {
        -webkit-transform: translate(66.7778px, 76px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(42.2222deg) translate(-50%, -50%);
        transform: translate(66.7778px, 76px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(42.2222deg) translate(-50%, -50%);
    }

    25% {
        -webkit-transform: translate(62.5px, 99px) scale(1.05) rotateX(0deg) rotateY(0deg) rotateZ(52.5deg) translate(-50%, -50%);
        transform: translate(62.5px, 99px) scale(1.05) rotateX(0deg) rotateY(0deg) rotateZ(52.5deg) translate(-50%, -50%);
    }

    33.33% {
        -webkit-transform: translate(59.4444px, 122px) scale(1.1) rotateX(0deg) rotateY(0deg) rotateZ(57.7778deg) translate(-50%, -50%);
        transform: translate(59.4444px, 122px) scale(1.1) rotateX(0deg) rotateY(0deg) rotateZ(57.7778deg) translate(-50%, -50%);
    }

    41.67% {
        -webkit-transform: translate(57.6111px, 145px) scale(1.15) rotateX(0deg) rotateY(0deg) rotateZ(59.7222deg) translate(-50%, -50%);
        transform: translate(57.6111px, 145px) scale(1.15) rotateX(0deg) rotateY(0deg) rotateZ(59.7222deg) translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(57px, 168px) scale(1.2) rotateX(0deg) rotateY(0deg) rotateZ(60deg) translate(-50%, -50%);
        transform: translate(57px, 168px) scale(1.2) rotateX(0deg) rotateY(0deg) rotateZ(60deg) translate(-50%, -50%);
    }

    58.33% {
        -webkit-transform: translate(56.25px, 193.6667px) scale(1.25) rotateX(0deg) rotateY(0deg) rotateZ(47.7778deg) translate(-50%, -50%);
        transform: translate(56.25px, 193.6667px) scale(1.25) rotateX(0deg) rotateY(0deg) rotateZ(47.7778deg) translate(-50%, -50%);
    }

    66.67% {
        -webkit-transform: translate(54px, 214.6667px) scale(1.3) rotateX(0deg) rotateY(0deg) rotateZ(37.7778deg) translate(-50%, -50%);
        transform: translate(54px, 214.6667px) scale(1.3) rotateX(0deg) rotateY(0deg) rotateZ(37.7778deg) translate(-50%, -50%);
    }

    75% {
        -webkit-transform: translate(50.25px, 231px) scale(1.35) rotateX(0deg) rotateY(0deg) rotateZ(30deg) translate(-50%, -50%);
        transform: translate(50.25px, 231px) scale(1.35) rotateX(0deg) rotateY(0deg) rotateZ(30deg) translate(-50%, -50%);
    }

    83.33% {
        -webkit-transform: translate(45px, 242.6667px) scale(1.4) rotateX(0deg) rotateY(0deg) rotateZ(24.4444deg) translate(-50%, -50%);
        transform: translate(45px, 242.6667px) scale(1.4) rotateX(0deg) rotateY(0deg) rotateZ(24.4444deg) translate(-50%, -50%);
    }

    91.67% {
        -webkit-transform: translate(38.25px, 249.6667px) scale(1.45) rotateX(0deg) rotateY(0deg) rotateZ(21.1111deg) translate(-50%, -50%);
        transform: translate(38.25px, 249.6667px) scale(1.45) rotateX(0deg) rotateY(0deg) rotateZ(21.1111deg) translate(-50%, -50%);
    }

    100% {
        -webkit-transform: translate(30px, 252px) scale(1.5) rotateX(0deg) rotateY(0deg) rotateZ(20deg) translate(-50%, -50%);
        transform: translate(30px, 252px) scale(1.5) rotateX(0deg) rotateY(0deg) rotateZ(20deg) translate(-50%, -50%);
    }
}

.leaves-wrap.play .leaves>div,
.leaves-wrap.play .leaves>img,
.leaves-wrap.play>img {
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

/**/
.has-leaves.has-leaves--b2 .leaves.leaves-right.leaves-b .leaf-b-1-anim {
    top: -200px !important;
    left: 110px !important;
}

.has-leaves.has-leaves--c2 .leaves-wrap {
    right: -120px !important;
    top: 220px !important;
}

.has-leaves.has-leaves--c2 .leaf-loop-3 {
    left: -290px !important;
}

.leaves-wrap.leaves-wrap-ab .leaves.leaves-a{
    top: -370px !important;
    left: 80px !important;
}

.leaves-wrap.leaves-wrap-ab .leaves.leaves-b{
    top: -260px !important;
    right: 40px !important;
}
@charset "UTF-8";
/*------------------------------------*\
    #TABLE OF CONTENTS
\*------------------------------------*/
/**
 * SETTINGS...............................Declarations of Sass variables & mixins
 * TOOLS..................................Mixins and functions
 * BASE...................................Default element styles
 * LAYOUT.................................Layout-specific styles
 * COMPONENTS.............................Component styles
 * UTILITIES..............................Utility classes
 */
/*------------------------------------*\
    #SETTINGS
\*------------------------------------*/
/*------------------------------------*\
    #SETTINGS
\*------------------------------------*/
/*------------------------------------*\
    #VARIABLES
\*------------------------------------*/
/**
 * CONTENTS
 *
 * COLORS
 * Brand Colors...............Globally-available variables and config
 * Neutral Colors.............Grayscale colors, including white and black
 * Utility Colors.............Info, Warning, Error, Success
 *
 * TYPOGRAPHY
 * Font Families..............The fonts used in the design system
 * Sizing.....................Font sizing
 *
 * LAYOUT
 * Max-widths.................Maximum layout container width
 *
 *
 * BORDERS
 * Border Width...............Border thicknesses
 * Border Radius..............Border radius definitions
 *
 * ANIMATION
 * Animation Speed............Transition/animation speed variables
 * Animation easing...........Easing variables
 *
 * BREAKPOINTS
 * Breakpoints................Global breakpoint definitions
 */
/*------------------------------------*\
    #BORDERS
\*------------------------------------*/
/**
 * Border widths
 */
/**
 * Border radius
 */
/*------------------------------------*\
    #ANIMATION
\*------------------------------------*/
/**
 * Transition Speed
 */
/**
 * Transition Ease
 */
/*------------------------------------*\
    #COLORS
\*------------------------------------*/
/**
 * In this file, we take the literal colors from our palette (defined in variables.scss)
 * and define them against variables that we can utilise anywhere throughout the project.
 */
/**
 * Brand Colors
 * 1) Brand=specific colors
 */
/* Subisite colors*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/*------------------------------------*\
    #GLOBAL TEXT COLOR
\*------------------------------------*/
/**
 * Body text and background colors
 */
/**
 * Highlight colors
 */
/*------------------------------------*\
    #LINKS
\*------------------------------------*/
/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
/*------------------------------------*\
    #FORMS
\*------------------------------------*/
/*------------------------------------*\
    #PUSH NOTIFICATIONS
\*------------------------------------*/
/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
/**
 * Max Width
 */
/**
 * Grid Control
 */
/*------------------------------------*\
    #SPACING
\*------------------------------------*/
/**
 * Spacing and offsets
 * 1) Used to space grids and body padding
 */
/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
/**
 * Font Family
 */
/*------------------------------------*\
    #BREAKPOINTS
\*------------------------------------*/
/**
 * Breakpoints used in media queries
 * 1) Try to stick to the bp in this map.
 */
/*------------------------------------*\
    #VARIABLES
\*------------------------------------*/
/**
 * CONTENTS
 *
 * COLORS
 * Brand Colors...............Globally-available variables and config
 * Neutral Colors.............Grayscale colors, including white and black
 * Utility Colors.............Info, Warning, Error, Success
 *
 * TYPOGRAPHY
 * Font Families..............The fonts used in the design system
 * Sizing.....................Font sizing
 *
 * LAYOUT
 * Max-widths.................Maximum layout container width
 *
 *
 * BORDERS
 * Border Width...............Border thicknesses
 * Border Radius..............Border radius definitions
 *
 * ANIMATION
 * Animation Speed............Transition/animation speed variables
 * Animation easing...........Easing variables
 *
 * BREAKPOINTS
 * Breakpoints................Global breakpoint definitions
 */
/*------------------------------------*\
    #BORDERS
\*------------------------------------*/
/**
 * Border widths
 */
/**
 * Border radius
 */
/*------------------------------------*\
    #ANIMATION
\*------------------------------------*/
/**
 * Transition Speed
 */
/**
 * Transition Ease
 */
/*------------------------------------*\
    #TOOLS
\*------------------------------------*/
/*------------------------------------*\
    #TABLE OF CONTENTS
\*------------------------------------*/
/**
 * UTIL FUNCTIONS.........................Utility mixins/functions can be used by UI mixins or by other comps
 * UI MIXINS..............................Mixins use to help keep styling of components DRY.
 */
/*------------------------------------*\
    #UTIL FUNCTIONS
\*------------------------------------*/
/**
* Returns content wrapped media query
*
* This resonsive query accepts both values from the SCSS map for queries as well as custom values
*
*/
/*------------------------------------*\
    #UI MIXINS
\*------------------------------------*/
/*------------------------------------*\
    #HEADINGS MIXIN
\*------------------------------------*/
/**
 *
 * 1) Mixins to make a type element look like an H1 - H6
 * 2) Font sizes are pulled from _settings.type.scss and use the _tools.rfs.scss to size responsively
 */
/*------------------------------------*\
    #SQUARE BAR MIXIN
\*------------------------------------*/
/**
 *
 * 1) Use this mixin to create the square pattern with bars that appears on corners of elements
 * 2) This mixin accepts params for position(topleft, topright, btmleft, btmright)
 */
/*------------------------------------*\
    #DOT PATTERN MIXIN
\*------------------------------------*/
/**
 *
 * 1) Use this mixin to create the square pattern with bars that appears on corners of elements
 * 2) This mixin accepts params for 
 *      - color(green, highlight) 
 *      - position(topleft, topright, leftcenter)
 *      - width(customVal)
 *      - height(auto, customVal)
 */
/*------------------------------------*\
    #UI LEAF
\*------------------------------------*/
.has-leaf {
  position: relative; }
  .has-leaf:after {
    content: "";
    display: block;
    position: absolute;
    right: -11px;
    bottom: -15px;
    width: 56px;
    height: 53px;
    background-image: url(../../images/leaf-1.png);
    background-repeat: no-repeat;
    z-index: 2;
    -webkit-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
            transform: rotate(10deg); }
    @media (max-width: 47em) {
      .has-leaf:after {
        right: 10px;
        bottom: -20px; } }

/*------------------------------------*\
    #MIXINS
\*------------------------------------*/
/**
 * Body Styles 
 * 1) Prevent Mobile Safari from scaling up text: https://blog.55minutes.com/2012/04/iphone-text-resizing/
 */
/**
 * XL Type Styles
 */
/*------------------------------------*\
    #BASE
\*------------------------------------*/
/*------------------------------------*\
    #RESET
\*------------------------------------*/
/**
 * Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/
 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/**
 * 1) Zero out margins and padding for elements
 */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0; }

/**
 * 1) Set HTML5 elements to display: block
 */
header, footer, nav, section, article, figure {
  display: block; }

/*------------------------------------*\
    #BODY
\*------------------------------------*/
/**
 * HTML base styles
 * 1) Set the html element's height to at least 100% of the viewport.
 *    This is used to achieve a sticky footer
 */
html {
  min-height: 100vh;
  /* 1 */ }

/**
 * Body base styles
 * 1) Set the body element's height to at least 100% of the viewport.
 *    This is used to achieve a sticky footer
 */
body {
  min-height: 100vh;
  /* 1 */
  font-family: "Fira Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  /* 1 */
  background-color: #F2F7F7;
  color: #363636; }

/*------------------------------------*\
    #LINKS
\*------------------------------------*/
/**
 * Link base styles
 */
a {
  color: #1C72AB;
  text-decoration: none;
  outline: 0;
  -webkit-transition: color 0.15s ease-out;
  -o-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out; }
  a:hover, a:focus {
    color: #15557f; }
  a:active {
    color: #15557f; }
  a:visited {
    color: #1C72AB; }

/*------------------------------------*\
    #LISTS
\*------------------------------------*/
/**
 * 1) List base styles
 */
/**
  * Remove list styles from unordered and ordered lists
  */
ol, ul {
  list-style: none; }

.link-block {
  position: relative; }
  .link-block > a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; }

.ie11 .l-grid .link-block c-icon-block {
  text-align: center; }
  .ie11 .l-grid .link-block c-icon-block > p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem; }

.l-content-holder ol,
.l-content-holder ul {
  padding-left: 15px; }

.list-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .list-columns > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%; }
  @media (min-width: 48em) {
    .list-columns.list-columns-2 > li {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      width: 50%;
      padding-right: 30px; }
    .list-columns.list-columns-3 > li {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.333333%;
              flex: 0 0 33.333333%;
      width: 33.333333%;
      padding-right: 30px; } }
  .list-columns.list-columns-gap-10 {
    padding: 10px; }
  .list-columns.list-columns-gap-20 {
    padding: 20px; }
  .list-columns.list-columns-gap-30 {
    padding: 30px; }

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
/**
 * Heading 1 base styles
 */
h1 {
  font-size: calc(1.4375rem + 2.25vw);
  font-weight: 700;
  line-height: 1; }
  @media (min-width: 1200px) {
    h1 {
      font-size: 3.125rem; } }

/**
 * Heading 2 base styles
 */
h2 {
  font-size: calc(1.3125rem + 0.75vw);
  font-weight: 700;
  line-height: 1.333; }
  @media (min-width: 1200px) {
    h2 {
      font-size: 1.875rem; } }

/**
 * Heading 3 base styles
 */
h3 {
  font-size: calc(1.2875rem + 0.45vw);
  font-weight: 700;
  line-height: 1.38; }
  @media (min-width: 1200px) {
    h3 {
      font-size: 1.625rem; } }

/**
 * Heading 4 base styles
 */
h4 {
  font-size: calc(1.275rem + 0.3vw);
  font-weight: 700;
  line-height: 1.41; }
  @media (min-width: 1200px) {
    h4 {
      font-size: 1.5rem; } }

/**
 * Heading 5 base styles
 */
h5 {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47; }
  @media (min-width: 1200px) {
    h5 {
      font-size: 1.3125rem; } }

/**
 * Heading 6 base styles
 */
h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.47; }

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
/**
 * 1) Form element base styles
 */
/**
 * Input placeholder text base styles
 */
::-webkit-input-placeholder {
  color: #707A85; }

::-moz-placeholder {
  color: #707A85; }

:-ms-input-placeholder {
  color: #707A85; }

/**
 * Fieldset base styles
 */
fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

/**
 * Legend base styles
 */
legend {
  margin-bottom: 0.25rem; }

/**
 * Label base styles
 */
label {
  display: block;
  padding-bottom: 0.25rem;
  color: #646F78;
  font-size: 0.75rem; }

/**
 * Add font size 100% of form element and margin 0 to these elements
 */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 14px;
  margin: 0; }

/**
 * Text area base styles
 */
textarea {
  resize: none; }

/**
 * Input  and text area base styles
 */
input,
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #C2D1D9;
  background: #fff;
  -webkit-transition: border-color 0.4s;
  -o-transition: border-color 0.4s;
  transition: border-color 0.4s; }
  input:focus,
  textarea:focus {
    border-color: #34CA9D;
    outline: none; }

/**
 * Remove webkit appearance styles from these elements
 */
input[type="text"],
input[type="search"],
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="url"],
input[type="number"],
textarea {
  -webkit-appearance: none;
  display: block; }

/**
 * Checkbox and radio button base styles
 */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 0.3rem;
  border-color: #C2D1D9; }

/**
 * Search input base styles
 */
input[type="search"] {
  -webkit-appearance: none;
  border-radius: 0; }

/**
 * Select
 * 1) Remove default styling
 */
select {
  display: block;
  font-size: 14px;
  width: 100%;
  border: 1px solid #C2D1D9;
  padding: 1rem;
  background: #fff;
  color: #707A85;
  appearance: button;
  -moz-appearance: button;
  -webkit-appearance: button; }
  select:focus {
    border-color: #34CA9D; }

#divcontent form > label {
  margin-top: 2rem; }

#divcontent form .g-recaptcha {
  margin-top: 2rem;
  margin-bottom: 2rem; }

/** Calendar/datepicker **/
#ui-datepicker-div {
  background: #fff;
  padding: 1rem;
  min-width: 220px; }
  #ui-datepicker-div a.ui-state-default {
    color: #363636;
    display: block;
    text-align: center; }
  #ui-datepicker-div .ui-datepicker-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      color: #363636; }
    #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
      text-align: right; }

#class-registration {
  background: #fff;
  padding: 3rem; }
  @media (max-width: 768px) {
    #class-registration {
      padding: 3rem 1rem; } }
  #class-registration .step {
    display: block;
    position: relative;
    padding: 30px;
    border: solid 1px #e2eded; }
  #class-registration label {
    font-weight: bold; }
  #class-registration input[type="number"],
  #class-registration input[type="password"],
  #class-registration input[type="date"],
  #class-registration input[type="search"],
  #class-registration input[type="text"],
  #class-registration textarea,
  #class-registration select {
    border: 1px solid #C2D1D9; }
  #class-registration input[type="number"]:focus,
  #class-registration input[type="password"]:focus,
  #class-registration input[type="date"]:focus,
  #class-registration input[type="search"]:focus,
  #class-registration input[type="text"]:focus,
  #class-registration textarea:focus,
  #class-registration select:focus {
    border-color: #34CA9D;
    outline: none; }
  #class-registration .ce-registration-select {
    position: relative; }
    #class-registration .ce-registration-select select {
      -moz-appearance: none;
           appearance: none;
      -webkit-appearance: none; }
    #class-registration .ce-registration-select select::-ms-expand {
      display: none; }
    #class-registration .ce-registration-select::after {
      color: #34CA9D;
      content: "\f078";
      font-size: 18px;
      font-family: 'Font Awesome 5 Free';
      font-weight: 700;
      position: absolute;
      right: 10px;
      top: 11px;
      pointer-events: none; }
  #class-registration .validate-message {
    font-size: 0.65rem; }

#guest-registration {
  padding: 0; }
  #guest-registration legend {
    color: #646F78;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 2rem 0; }
  #guest-registration .option-field {
    margin: 1rem 0; }
    #guest-registration .option-field .option-label {
      display: block;
      padding-bottom: 0.25rem;
      color: #646F78;
      font-size: 0.75rem;
      font-weight: bold; }

.class-total-placeholder {
  color: #646F78;
  font-size: 1em;
  font-weight: normal;
  margin: 2rem 0; }

#class-cost {
  font-weight: bold; }

#class-details {
  color: #646F78; }

#class-date-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  #class-date-time #class-time {
    margin-left: 1rem; }

#class-title {
  color: #646F78;
  font-size: 1.25em;
  font-weight: bold;
  margin: 1rem 0; }

#registration-review .option-label {
  display: block;
  padding-bottom: 0.25rem;
  color: #646F78;
  font-size: 0.75rem;
  font-weight: bold; }

#registration-review .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 650px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: .5rem 0;
  padding: .25rem .5rem;
  background-color: #F2F7F7; }
  #registration-review .option .option-label {
    font-weight: normal;
    font-size: 1rem;
    margin: 0 5px 0 0;
    padding: 0; }
    #registration-review .option .option-label > span {
      display: none; }
  #registration-review .option .option-value {
    text-align: left; }

.step h1, .step h2, .step h3, .step h4, .step h5, .step h6 {
  color: #363636; }

.step p, .step span, .step div {
  color: #646F78; }

.option-payamount + .option-optionQuantitymin {
  margin-left: 0 !important; }

#paywithcreditcard #payment-expiration-date-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  #paywithcreditcard #payment-expiration-date-field label {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    width: 100% !important; }
  #paywithcreditcard #payment-expiration-date-field .ce-registration-select {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 calc(50% - 10px) !important;
            flex: 0 0 calc(50% - 10px) !important;
    width: calc(50% - 10px) !important; }
    @media (max-width: 768px) {
      #paywithcreditcard #payment-expiration-date-field .ce-registration-select {
        -webkit-box-flex: 0 !important;
            -ms-flex: 0 0 100% !important;
                flex: 0 0 100% !important;
        width: 100% !important; } }

.class-paymenttype-onlinepayment input[type="radio"],
.class-paymenttype-onlinepayment input[type="checkbox"] {
  margin-left: 5px;
  position: relative;
  top: -1px; }

.guest-registration-options input {
  max-width: 300px; }

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
/**
 * Button and submit inputs reset
 * 1) These should be styled using c-btn
 */
button {
  cursor: pointer; }

/*------------------------------------*\
    #MAIN ELEMENT
\*------------------------------------*/
/**
 * Main element
 */
[role=main] {
  display: block;
  padding: 1rem; }

.main.subsite {
  background: #fff; }
  .main.subsite > .l-page-tools {
    position: relative;
    background: #F7FCFC;
    margin-bottom: 1rem; }
  .main.subsite .internal-2-col__header h4 {
    color: #066F61;
    font-weight: 500; }

/*------------------------------------*\
    #MEDIA
\*------------------------------------*/
/**
 * Responsive image styling
 * 1) Allows for images to flex with varying screen size
 */
img {
  max-width: 100%;
  height: auto; }

/*------------------------------------*\
    #TEXT
\*------------------------------------*/
/**
 * Paragraph base styles
 */
p {
  margin-bottom: 1rem;
  color: #646F78; }

/**
 * Blockquote base styles
 */
blockquote {
  font-style: italic;
  margin-bottom: 1rem;
  color: #646F78; }
  blockquote a,
  blockquote em,
  blockquote strong,
  blockquote p {
    color: #646F78; }

/**
 * Horizontal rule base styles
 */
hr {
  border: 0;
  height: 1px;
  margin: 2rem 0;
  background: #C2D1D9; }

/**
 * Address base styles
 */
address {
  font-style: normal; }

/**
 * Selection styles
 */
::-moz-selection {
  color: #E6F4F2;
  background: #363636;
  /* Gecko Browsers */ }

::selection {
  color: #E6F4F2;
  background: #363636;
  /* WebKit/Blink Browsers */ }

/**
 * Code base styles
 */
code {
  display: inline-block;
  background: #C2D1D9;
  border: 1px solid #C2D1D9;
  padding: 0.2rem 0.5rem;
  line-height: 1.2;
  font-size: 0.85rem; }

/**
 * Preformatted text base styles
 */
pre {
  background: #F2F7F7;
  border: 1px solid #F2F7F7;
  font-size: 18px;
  padding: 1rem;
  overflow-x: auto;
  /**
	 * Remove border from code within preformatted text block
	 */ }
  pre code {
    border: 0; }

/**
 * Code with languages associated with them
 * 1) Override Prism sysles for code blocks with language
 */
code[class*="language-"],
pre[class*="language-"] {
  font-family: monospace !important; }

.l-content-holder ul:not(.c-link-list) {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 15px;
  color: #646F78;
  text-indent: -22px;
  margin-left: 1.5rem; }

.l-content-holder ol:not(.c-link-list) {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 15px;
  color: #646F78;
  text-indent: -22px;
  margin-left: 1.5rem; }

.nowrap {
  white-space: nowrap; }

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

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

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

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

@media (max-width: 59em) {
  .text-left\:lg {
    text-align: left; }
  .text-center\:lg {
    text-align: center; }
  .text-right\:lg {
    text-align: right; }
  .text-justify\:lg {
    text-align: justify; } }

@media (max-width: 47em) {
  .text-left\:md {
    text-align: left; }
  .text-center\:md {
    text-align: center; }
  .text-right\:md {
    text-align: right; }
  .text-justify\:md {
    text-align: justify; } }

/*------------------------------------*\
    #TABLES
\*------------------------------------*/
/**
 * Table
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }

/**
 * Table header cell
 */
th {
  text-align: left; }

/**
 * Table row
 */
tr {
  vertical-align: top; }

.embed-responsive {
  display: block;
  clear: both;
  float: none;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  margin: 0 auto 30px; }
  .embed-responsive iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%; }
  .embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%; }

/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    #TABLE OF CONTENTS
\*------------------------------------*/
/**
 * MOLECULES..............................Smaller components that can be used in more complex components
 * ORGANISMS..............................More complex components
 */
/*------------------------------------*\
    #MOLECULES
\*------------------------------------*/
/*------------------------------------*\
    #LAYOUT CONTAINER
\*------------------------------------*/
/**
 * Layout Container
 * 1) Caps the width of the content to the maximum width
 *    and centers the container
 */
.l-container {
  max-width: 93rem;
  margin: 0 auto;
  padding: 0 15px; }
  @media (min-width: 48em) {
    .l-container {
      padding: 0 2rem; } }
  .l-container--aleft {
    margin-left: 0; }

.ie11 .l-container {
  width: 100%; }

/**
 *
 * 1) This caps the width of text passages
 *    to achieve a comfortable line length
 */
.l-linelength-container {
  max-width: 45rem; }

.l-content-holder {
  background: #fff;
  padding: 2rem 3rem; }
  @media (max-width: 991px) {
    .l-content-holder {
      padding: 2rem 0.25rem; } }
  .l-content-holder > .l-container {
    padding: 0; }
  .l-content-holder + .l-content-holder {
    margin-top: 2rem; }
  .l-content-holder p > a:hover {
    text-decoration: underline; }

.l-component-spacer {
  margin-top: 4rem;
  margin-bottom: 4rem; }

/*------------------------------------*\
    #GRID
\*------------------------------------*/
/**
 * Primary Grid  
 */
.l-grid {
  display: grid;
  grid-gap: 3rem;
  margin: 1rem 0; }
  .l-grid--nospace {
    grid-gap: 0; }
  .l-grid--lgspace {
    grid-gap: 6rem; }
  .l-grid--smspace {
    grid-gap: 1.5rem; }
  .l-grid--xsspace {
    grid-gap: 0.75rem; }
  .l-grid--xxsspace {
    grid-gap: 5px; }
  .l-grid--2up {
    grid-template-columns: 1fr;
    grid-template-rows: auto; }
    @media (min-width: 60em) {
      .l-grid--2up {
        grid-template-columns: 1fr 1fr; } }
  .l-grid--3up {
    grid-template-columns: 1fr;
    grid-template-rows: auto; }
    @media (min-width: 60em) {
      .l-grid--3up {
        grid-template-columns: 1fr 1fr 1fr; } }
  .l-grid--4up {
    grid-template-columns: 1fr;
    grid-template-rows: auto; }
    @media (min-width: 60em) {
      .l-grid--4up {
        grid-template-columns: 1fr 1fr 1fr 1fr; } }
  .l-grid--blog {
    margin: 0;
    grid-gap: 2rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto; }
    @media (min-width: 60em) {
      .l-grid--blog {
        grid-template-columns: 1fr 1fr; } }
  .l-grid--center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.ie11 .l-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .ie11 .l-grid > * {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
  @media (min-width: 60em) {
    .ie11 .l-grid {
      margin: 0 -15px; } }
  @media (min-width: 60em) {
    .ie11 .l-grid--2up > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: calc(50% - 30px);
      margin: 0 15px; } }
  @media (min-width: 60em) {
    .ie11 .l-grid--3up > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.333%;
              flex: 0 0 33.333%;
      max-width: calc(33.333% - 30px);
      margin: 0 15px; } }
  @media (min-width: 60em) {
    .ie11 .l-grid--4up > * {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-width: calc(25% - 30px);
      margin: 0 15px; } }

.columns h2 {
  margin-bottom: 40px; }

.columns p.with-margin {
  margin-bottom: 15px;
  color: #646F78;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px; }

.columns a.c-btn {
  padding: 10px 25px; }
  .columns a.c-btn .c-btn__inner {
    color: #363636;
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 18px;
    text-align: center; }

.columns h5.c-icon-block__title {
  color: #363636;
  font-family: "Fira Sans", sans-serif;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 31px; }

.l-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%; }
  .l-row.l-row--preview {
    outline: dashed 1px red;
    margin-bottom: 30px;
    min-height: 100px; }
    .l-row.l-row--preview > div {
      outline: solid 1px pink;
      background: rgba(255, 192, 203, 0.1);
      height: 30px;
      text-align: center;
      color: red; }
      .l-row.l-row--preview > div:before {
        content: 'l-col-';
        display: inline;
        text-align: center; }
  .l-row.l-row--v-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .l-row.l-row--v-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .l-row.l-row--v-bottom {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .l-row.l-row--h-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .l-row.l-row--h-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .l-row.l-row--h-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .l-row.l-row--h-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .l-row.l-row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  @media (max-width: 47em) {
    .l-row.l-row--reverse-mobile {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }

.l-col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  width: 8.33333%; }
  @media (max-width: 59em) {
    .l-col-1 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  width: 16.66667%; }
  @media (max-width: 59em) {
    .l-col-2 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%; }
  @media (max-width: 59em) {
    .l-col-3 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  width: 33.33333%; }
  @media (max-width: 59em) {
    .l-col-4 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  width: 41.66667%; }
  @media (max-width: 59em) {
    .l-col-5 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%; }
  @media (max-width: 59em) {
    .l-col-6 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  width: 58.33333%; }
  @media (max-width: 59em) {
    .l-col-7 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  width: 66.66667%; }
  @media (max-width: 59em) {
    .l-col-8 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  width: 75%; }
  @media (max-width: 59em) {
    .l-col-9 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  width: 83.33333%; }
  @media (max-width: 59em) {
    .l-col-10 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  width: 91.66667%; }
  @media (max-width: 59em) {
    .l-col-11 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%; }
  @media (max-width: 59em) {
    .l-col-12 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%; } }
  @media (max-width: 47em) {
    .l-col-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.l-major-minor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 48em) {
    .l-major-minor {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      margin: 0 -1rem; } }

.l-major-minor__main {
  padding: 0; }
  @media (min-width: 48em) {
    .l-major-minor__main {
      padding: 0 1rem;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 75%;
              flex: 0 0 75%;
      max-widht: 75%; }
      .l-major-minor__main--thinner {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 55%;
                flex: 0 0 55%;
        max-widht: 55%; } }

.l-major-minor__side {
  padding: 0; }
  @media (min-width: 48em) {
    .l-major-minor__side {
      padding: 0 1rem;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      max-widht: 25%; }
      .l-major-minor__side--larger {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 45%;
                flex: 0 0 45%;
        max-widht: 45%; } }

.l-left-right {
  display: block;
  margin: 0; }
  .l-left-right--ns {
    margin: 0; }
    .l-left-right--ns .l-left-right__item {
      padding: 0; }
  .l-left-right--1-3 > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    max-width: initial; }
  .l-left-right--1-3 .l-left-right__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    width: 33.333333%;
    max-width: initial; }
  .l-left-right--2-3 > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    max-width: initial; }
  .l-left-right--2-3 .l-left-right__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666%;
            flex: 0 0 66.666%;
    width: 66.666%;
    max-width: initial; }
  @media (min-width: 60em) {
    .l-left-right {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      margin: 0 -1.5rem; }
      .l-left-right--flip {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; }
      .l-left-right--ns {
        margin: 0; }
        .l-left-right--ns .l-left-right__item {
          padding: 0; } }

.l-left-right__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  padding: 1.5rem 0; }
  @media (min-width: 60em) {
    .l-left-right__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%;
      padding: 1.5rem; } }

@media (min-width: 60em) {
  .l-left-right__item .u-styled-img {
    height: 100%; }
    .l-left-right__item .u-styled-img > img {
      -o-object-fit: cover;
         object-fit: cover;
      height: 100%; } }

.l-sidebar__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px; }

.l-sidebar__item {
  margin-bottom: 2rem; }
  .l-sidebar__item--class-details p {
    color: #363636; }
  .l-sidebar__item--class-details .fa-map-marker-alt {
    color: #34CA9D; }
  .l-sidebar__item--class-details .c-btn--secondary .c-btn__icon {
    color: #363636; }
  .l-sidebar__item .l-card > hr {
    display: none; }
  .l-sidebar__item .l-card a:visited {
    color: #363636; }

.l-sidebar__item-title {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  margin-bottom: 0.5rem; }
  @media (min-width: 1200px) {
    .l-sidebar__item-title {
      font-size: 1.3125rem; } }

/*------------------------------------*\
    #PRIMARY NAVIGATION
\*------------------------------------*/
/**
 * Primary navigation existing in the header and maybe the footer
 */
/**
 * Primary navigation list
 */
.l-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .l-nav__list--scroll {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto; }
  @media (min-width: 60em) {
    .l-nav__list {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .l-nav__list--scroll {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        overflow-x: inherit; } }

/**
 * Primary navigation item
 */
.l-nav__item {
  position: relative;
  margin-left: 2rem; }

.l-nav__icon {
  margin-right: .5rem; }

/**
 * Primary navigation link
 */
.l-nav__link {
  display: block;
  padding: 0.5rem 0;
  cursor: pointer; }
  .l-nav__link--dropdown {
    padding-right: 1.5rem; }
    .l-nav__link--dropdown:after {
      content: "\f107";
      font-family: 'Font Awesome 5 Free';
      position: absolute;
      right: 1rem;
      color: #099380; }
    @media (min-width: 60em) {
      .l-nav__link--dropdown:after {
        right: 4px; } }

/**
 * Primary navigation dropdown
 */
.l-nav__dropdown {
  position: relative;
  width: 100%; }
  @media (min-width: 60em) {
    .l-nav__dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 235px;
      z-index: 10; } }

.mob-link-trigger {
  position: absolute;
  width: 80%;
  height: 74px;
  left: 0;
  top: 0; }

/*------------------------------------*\
    #ICON NAVIGATION
\*------------------------------------*/
/**
 * This is the nav/list element. Should never flow onto separate lines.
 */
.l-icon-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .l-icon-nav--vert {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .l-icon-nav--vert .l-icon-nav__item {
      margin: 0.25rem 0; }

/**
 * This is to space each list element
 */
.l-icon-nav__item {
  margin: 0 0.25rem; }
  .l-icon-nav__item:first-child {
    margin-left: 0; }
  .l-icon-nav__item:last-child {
    margin-right: 0; }

.l-comp-heading {
  text-align: left;
  margin-bottom: 2rem;
  padding-left: 15px;
  padding-right: 15px; }
  .l-comp-heading--center {
    text-align: center; }
  @media (min-width: 48em) {
    .l-comp-heading {
      text-align: center;
      padding-left: 0;
      padding-right: 0; } }

.l-comp-heading__subtitle {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 600;
  color: #099380; }
  @media (min-width: 1200px) {
    .l-comp-heading__subtitle {
      font-size: 1.3125rem; } }

.l-section--intro {
  max-width: 700px;
  margin: 0 auto; }
  .l-section--intro_center {
    text-align: center; }
  .l-section--intro h5 {
    color: #099380;
    font-weight: 500;
    margin-bottom: 5px; }
  .l-section--intro h2 {
    margin-bottom: 10px; }

.l-section--centerbtn {
  display: block;
  margin: 0 auto;
  text-align: center; }
  .l-section--centerbtn .c-btn__inner {
    color: #424B5A;
    font-size: 13px; }

/*------------------------------------*\
    #CARD - LAYOUT MOLECULE
\*------------------------------------*/
/**
 * Card Container
 * 1) Create a block element that is styled like a card
 */
.l-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px 0 rgba(54, 54, 54, 0.05);
          box-shadow: 0 4px 16px 0 rgba(54, 54, 54, 0.05);
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  margin-bottom: 30px; }
  .l-card:last-child {
    margin-bottom: 0; }
  .l-card--ns {
    padding: 0; }

/**
 * Card Offset Item
 * 1) Creates a  block element for images/maps to be full width inside a card item (deisregards the padding)
 */
.l-card__offset-item {
  display: block;
  width: calc(100% + 4rem);
  margin: -2rem -2rem 2rem; }

/**
 * Card Group
 * 1) Used on block element to define a group of content and then provide spacing for that group
 * 2) Modifiers: --icon => Used to position the group to the farther to left to account for icon
 */
.l-card__group {
  display: block;
  margin-bottom: 2rem; }
  .l-card__group--icon {
    position: relative;
    padding-left: 2rem; }
    .l-card__group--icon > .fa,
    .l-card__group--icon > .fas {
      position: absolute;
      top: 0;
      left: 0;
      color: #34CA9D; }
  .l-card__group--btn .c-btn {
    display: block;
    margin-bottom: 2rem; }
    .l-card__group--btn .c-btn:last-child {
      margin-bottom: 1rem; }

.l-card__split-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

/**
 * Card List
 * 1) Style the spacing of a featured link list inside the card
 */
.l-card__list > li:last-child {
  margin-bottom: 0; }

.l-card__list-item {
  margin-bottom: 1rem; }
  .l-card__list-item--icon img {
    display: inline-block;
    vertical-align: middle; }

.l-card__figure {
  display: block;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: url(/assets/images/pattern_greendots-greengrid-tall.svg) bottom right no-repeat #068473;
  background-size: 60px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  margin: -2rem -2rem 2rem; }

/*------------------------------------*\
    #ORGANISMS
\*------------------------------------*/
/*------------------------------------*\
    #TEXT PASSAGE
\*------------------------------------*/
/**
 * 1) A passage of text, including various components (i.e. article, blog post)
 */
.c-text-passage {
  /**
	 * Link within the text passage
	 */
  /**
	 * Blockquote within text passage
	 */
  /**
	  * First-level heading within text passage
	  */
  /**
	 * Second-level heading within text passage
	 */
  /**
	 * Third-level heading within text passage
	 */
  /**
	 * Fourth-level heading within text passage
	 */
  /**
	 * Fifth-level heading within text passage
	 */
  /**
	 * Sixth-level heading within text passage
	 */
  /**
	 * Unordered list within text passage
	 */
  /**
	 * Ordered list within text passage
	 */ }
  .c-text-passage p {
    margin-bottom: 1rem; }
  .c-text-passage a {
    font-weight: 700;
    text-decoration: none; }
    .c-text-passage a:hover {
      text-decoration: underline; }
  .c-text-passage blockquote {
    font-size: calc(1.3rem + 0.6vw);
    font-family: 'Merriweather', serif;
    color: #646F78;
    border-top: 1px solid #ECECEC;
    margin-bottom: 4rem;
    margin-top: 3rem;
    padding-top: 3rem; }
    @media (min-width: 1200px) {
      .c-text-passage blockquote {
        font-size: 1.75rem; } }
  .c-text-passage h1 {
    margin-bottom: 1rem; }
  .c-text-passage h2 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage h3 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage h4 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage h5 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage h6 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage ul {
    color: #646F78;
    list-style: disc;
    margin-left: 1rem;
    margin-bottom: 1rem; }
    .c-text-passage ul li:last-child {
      margin-bottom: 0; }
  .c-text-passage ol {
    list-style: decimal;
    margin-left: 1rem;
    margin-bottom: 1rem; }
    .c-text-passage ol li:last-child {
      margin-bottom: 0; }
  .c-text-passage li {
    margin-bottom: 0.5rem;
    line-height: 1.6; }

/*------------------------------------*\
    #SECTION
\*------------------------------------*/
/**
 * 1) Discrete section
 */
.l-section {
  margin-bottom: 2rem; }

/*------------------------------------*\
    #BUTTON GROUP
\*------------------------------------*/
.l-button-group {
  display: block;
  margin-top: 1rem; }
  .l-button-group--center {
    text-align: center; }
  @media (min-width: 48em) {
    .l-button-group {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 1rem -0.5rem; }
      .l-button-group--center {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }

.l-button-group > .c-btn,
.l-button-group > .c-arrow-link,
.l-button-group > .c-play-btn {
  margin: 0.5rem 0.5rem; }

.l-page-tools {
  display: none; }
  .l-page-tools > .l-page-tools {
    padding: 0; }
  @media (min-width: 48em) {
    .l-page-tools {
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 10;
      padding: 1rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
          align-content: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .l-page-tools--relative {
        position: relative;
        background-color: #F2F7F7; } }

.l-page-tools-wrap {
  background: #FFFFFF;
  padding: 30px 0 15px; }

.l-page-tools-wrap .l-page-tools {
  position: relative;
  background-color: #F2F7F7; }

.search-results__search-results-block {
  margin-bottom: 1rem; }
  .search-results__search-results-block-title a {
    color: #363636;
    font-size: 1.125rem; }
  .search-results__search-results-block-breadcrumbs a {
    color: #363636;
    font-size: .8rem;
    font-weight: normal;
    text-decoration: underline; }
    .search-results__search-results-block-breadcrumbs a:after {
      color: #1C72AB;
      content: '\003E';
      display: inline-block;
      margin: 0 .5rem;
      text-decoration: none; }
    .search-results__search-results-block-breadcrumbs a:last-child:after {
      content: '';
      display: none; }

/*------------------------------------*\
    #PAGE
\*------------------------------------*/
.newscenter .breadcrumbs {
  padding-top: 25px !important;
  padding-bottom: 25px;
  display: block;
  background: #fff; }
  @media (max-width: 767px) {
    .newscenter .breadcrumbs {
      margin: 0;
      display: none; } }

.newscenter .l-page-tools {
  position: relative;
  background-color: #F2F7F7;
  padding: .5rem;
  margin-bottom: 0; }

.newscenter-sidebar {
  border: 1px solid #ECECEC;
  border-radius: 2px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05); }

.news-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 2rem;
  position: relative; }
  @media (max-width: 767px) {
    .news-flex {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 0 0 2rem; } }

.news-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 290px;
          flex: 0 0 290px;
  margin-right: 20px; }
  @media (max-width: 767px) {
    .news-sidebar {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      margin-right: 0; } }

.news-results {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  @media (max-width: 767px) {
    .news-results {
      margin-top: 45px; } }

.news-results-wrapper {
  position: relative;
  background: #F2F7F7; }
  .news-results-wrapper .results {
    position: absolute;
    background: white;
    width: 100%;
    z-index: 0;
    padding: 0px 10px 0px 0px;
    top: 0px; }
    @media (max-width: 767px) {
      .news-results-wrapper .results {
        background: #F2F7F7;
        width: 100%;
        padding: 0;
        top: 85px;
        text-align: center; } }
  .news-results-wrapper p#news-article-count {
    color: #363636;
    font-family: "Fira Sans";
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    position: relative;
    left: 320px; }
    @media (max-width: 767px) {
      .news-results-wrapper p#news-article-count {
        left: 0; } }
    .news-results-wrapper p#news-article-count .articles-shown, .news-results-wrapper p#news-article-count .articles-total {
      font-weight: bold; }

.newscenter-sidebar .mobile-only {
  display: none; }
  @media (max-width: 767px) {
    .newscenter-sidebar .mobile-only {
      height: 59px;
      text-align: center;
      background: white;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .newscenter-sidebar .mobile-only span.filter-results {
    color: #424B5A;
    font-family: "Fira Sans";
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .newscenter-sidebar .mobile-only span.filter-results:before {
      content: "\f1de";
      font-family: 'Font Awesome 5 Free';
      color: #34CA9D;
      margin-right: 5px;
      font-size: 18px; }

.newscenter-sidebar .sidebar-green {
  background: #066F61;
  color: #fff;
  padding: 1rem; }
  @media (max-width: 767px) {
    .newscenter-sidebar .sidebar-green {
      padding: 1rem 2rem; } }
  .newscenter-sidebar .sidebar-green label {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 14px; }

.newscenter-sidebar .sidebar-white {
  background: white;
  padding: 1rem; }
  @media (max-width: 767px) {
    .newscenter-sidebar .sidebar-white {
      padding: 1rem 2rem; } }
  .newscenter-sidebar .sidebar-white label {
    color: #505D68;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 14px; }

.newscenter-sidebar .c-hero__title {
  margin-top: 0; }

.newscenter-sidebar .form-wrapper .select-wrapper {
  position: relative;
  margin-bottom: 20px; }
  .newscenter-sidebar .form-wrapper .select-wrapper:after {
    color: #34CA9D;
    content: "\f078";
    font-size: 14px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    right: 10px;
    top: 16px;
    pointer-events: none; }
  .newscenter-sidebar .form-wrapper .select-wrapper select {
    -webkit-appearance: none; }
  .newscenter-sidebar .form-wrapper .select-wrapper select::-ms-expand {
    display: none; }

.newscenter-sidebar .form-wrapper .input-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .newscenter-sidebar .form-wrapper .input-flex input:first-child {
    margin-right: 5px; }
  .newscenter-sidebar .form-wrapper .input-flex input:last-child {
    margin-left: 5px; }

.result-block {
  background: #fff;
  min-height: initial;
  height: initial;
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    .result-block {
      height: auto; } }
  .result-block:before {
    display: none; }
  .result-block .c-img-card__inner {
    padding: 30px; }
    .result-block .c-img-card__inner p {
      margin-bottom: 0; }
  .result-block .c-img-card__title {
    color: #363636;
    font-family: "Fira Sans";
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 31px; }
    .result-block .c-img-card__title > a {
      color: #363636; }
  .result-block span.c-img-card__tag {
    position: relative;
    top: inherit;
    left: inherit;
    margin-bottom: 10px;
    padding: 3px 5px; }
  .result-block span.c-img-card__date {
    color: #363636;
    font-family: "Fira Sans";
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    margin-top: 7px;
    margin-bottom: 5px; }

.results-blocks {
  margin-top: 65px; }
  @media (max-width: 767px) {
    .results-blocks {
      margin-top: 30px;
      padding: 0 2rem; } }

.clearable {
  position: relative;
  display: block; }
  .clearable input[type=text] {
    padding-right: 24px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .clearable__clear {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 8px;
    font-style: normal;
    font-size: 30px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    color: #34CA9D;
    font-weight: 400; }
  .clearable input::-ms-clear {
    display: none; }

.l-sidebar .c-team-grid__virtual span {
  color: #068473;
  font-family: "Fira Sans";
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  text-align: left; }

.l-sidebar.c-team-grid__virtual {
  text-align: left; }

.l-sidebar .c-team-grid__patients {
  color: #068473;
  font-family: "Fira Sans";
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  text-align: left; }

.l-sidebar .c-team-grid__buttons .fa, .l-sidebar .c-team-grid__buttons .fas, .l-sidebar .c-team-grid__buttons .far {
  color: #34CA9D; }

.l-sidebar .c-team-grid__buttons {
  padding-bottom: 0; }

.l-sidebar__item.insurance p {
  margin-bottom: 0; }

.fad-edu {
  color: #68747D;
  font-family: "Fira Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px; }

.fad-edu span {
  margin-bottom: 10px; }

.fad-edu__type {
  font-weight: bold;
  width: 170px;
  display: inline-block; }

.fad-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 80px; }

.fad-info-grid .c-rating {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.fad-info-grid .fad-vid-btn .c-btn .c-btn__inner {
  color: #424B5A;
  font-family: "Fira Sans";
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 13px;
  text-align: center; }

.fad-info-grid .fad-vid-btn .c-btn .c-btn__inner .fa, .fad-info-grid .fad-vid-btn .c-btn .c-btn__inner .fas, .fad-info-grid .fad-vid-btn .c-btn .c-btn__inner .far {
  color: #34CA9D;
  margin-left: 10px; }

.c-hero__image--fad img {
  bottom: 0;
  top: initial; }

.fac-loc-det {
  display: grid;
  grid-template-columns: 3fr .8fr 1fr;
  grid-gap: 30px;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 20px;
  padding-bottom: 15px; }

.fac-loc-det__info h3 {
  color: #363636;
  font-family: "Fira Sans";
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 31px;
  margin-top: 0;
  margin-bottom: 8px; }

.fac-loc-det__info a {
  color: #2282D4;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px; }

.fac-loc-det__info p {
  margin-bottom: 5px; }

.fac-loc-det__phone {
  -ms-flex-item-align: center;
      align-self: center; }

.fac-loc-det__phone p {
  color: #68747D;
  font-family: "Fira Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 0;
  text-align: left; }

.fad-loc-list {
  margin-top: 30px; }

.fac-loc-det__phone a {
  color: #2282D4;
  font-family: "Fira Sans";
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px; }

.rating-list {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 0 60px; }

.stars-section .subject {
  color: #363636;
  font-family: "Fira Sans";
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
  margin-bottom: 5px;
  display: block; }

.rating-with-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.stars-section {
  border-bottom: 1px solid #EAEAEA;
  padding-bottom: 10px;
  margin-bottom: 15px; }

.rating-with-stars p {
  margin-bottom: 0;
  margin-right: 10px;
  color: #707A85;
  font-family: "Fira Sans";
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px; }

.rating-detail {
  border-bottom: 1px solid #EAEAEA;
  margin-bottom: 20px; }

.main-stars-section {
  margin-bottom: 25px; }

.main-stars-section h5 {
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 0; }

.main-stars-section p {
  margin-bottom: 0; }

.rating-list__desc h5 {
  color: #363636;
  font-family: "Fira Sans";
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 31px;
  margin-top: 55px;
  margin-bottom: 25px; }

.rating-list__desc a.c-btn {
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 145px; }

.rating-list__desc a.c-btn .c-btn__inner {
  color: #424B5A;
  font-family: "Fira Sans";
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
  text-align: center; }

.rating-detail .date {
  color: #363636;
  font-family: "Fira Sans";
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 31px; }

.select-wrapper {
  position: relative; }

.select-wrapper select {
  -webkit-appearance: none; }

.select-wrapper:after {
  color: #34CA9D;
  content: "\f078";
  font-size: 18px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 500;
  position: absolute;
  right: 10px;
  top: 11px;
  pointer-events: none; }

.with-leaves:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../../images/leaf-1.png);
  width: 56px;
  height: 53px;
  right: -10px;
  bottom: -10px; }

.c-sidebar-cta {
  width: 100%;
  border-radius: 1.46px;
  background-color: #068473;
  padding: 35px 35px 25px 25px;
  position: relative; }

.pattern-withbox:before {
  background: url(http://markup.merge-digital.com/images/imagePattern_dotGrid-green.svg);
  width: 58px;
  height: 43px;
  background-size: cover;
  position: absolute;
  top: 1px;
  right: 10px;
  content: "";
  z-index: 2; }

.pattern-withbox:after {
  content: "";
  background: #099380;
  height: 14px;
  width: 106.65px;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 0; }

.pattern-withbox.no-bg:after {
  display: none; }

.c-sidebar-cta .c-sidebar-cta__desc {
  color: white;
  line-height: 24px;
  margin-top: 10px; }

.c-sidebar-cta .c-link-btn {
  color: #FFFFFF;
  font-family: "Fira Sans";
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px; }

.c-sidebar-cta .c-link-btn:after {
  color: white;
  margin-top: 3px; }

.c-sidebar-cta:after {
  content: "";
  position: absolute;
  height: 129px;
  width: 134px;
  opacity: 0.1;
  background-color: #099380;
  bottom: -12px;
  right: -12px; }

.c-sidebar-cta:before {
  content: "";
  background: url(http://markup.merge-digital.com/images/imagePattern_dotGrid-green.svg);
  display: block;
  position: absolute;
  background-size: 35px;
  width: 35px;
  margin-left: -5px;
  height: 12%;
  top: 0%;
  left: 0;
  background-repeat: no-repeat; }

aside.mobile-only-cta {
  display: none; }

@media (max-width: 767px) {
  .fad-info-grid {
    grid-template-columns: 1fr;
    grid-gap: 0px 0px; }
  .fad-info-grid .c-rating {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px; }
  .c-hero__content--fad {
    margin: 20px; }
  .fad-edu__type {
    font-weight: bold;
    width: auto;
    display: block; }
  .fad-edu span {
    margin-bottom: 0; }
  .fad-edu__type {
    margin-bottom: 00px; }
  .fad-edu .fad-edu__place {
    margin-bottom: 10px;
    display: block; }
  .fac-loc-det {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    grid-gap: 0; }
  .fac-loc-det__photo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .fac-loc-det__photo img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 253px; }
  .fac-loc-det__phone {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px; }
  .fac-loc-det__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .fac-loc-det__phone a {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 24px;
    margin-left: 7px; }
  .rating-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0; }
  aside.mobile-only-cta {
    display: block;
    text-align: center; }
  aside.mobile-only-cta .c-team-grid__patients {
    text-align: center; }
  .l-sidebar__item.desktop-only {
    display: none; }
  article.l-major-minor__main {
    margin-bottom: 30px; } }

@media (min-width: 48em) {
  .mobile-only-cta {
    display: none; } }

/* Clearable text inputs */
.clearable {
  position: relative;
  display: block; }

.clearable input[type=text] {
  padding-right: 24px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.clearable__clear {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 8px;
  font-style: normal;
  font-size: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  color: #34CA9D;
  font-weight: 400;
  line-height: 39px; }

.clearable input::-ms-clear {
  /* Remove IE default X */
  display: none; }

.c-location-results.c-location-results__fad {
  max-width: 89rem;
  margin: 0 auto; }
  @media (min-width: 48em) {
    .c-location-results.c-location-results__fad {
      background: none; } }

.c-location-results.c-location-results__fad .c-location-results__container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.c-location-results__fad .c-location-results__sidebar {
  background: none; }

.c-location-results__fad .select-wrapper select {
  -webkit-appearance: none;
  padding: 11px; }

.c-location-results__fad .select-wrapper:after {
  top: 6px; }

.c-location-results__item--stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }

.c-location-results__fad h3 {
  color: #363636;
  font-family: "Fira Sans";
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 34px; }

.c-location-results__fad p.c-member-card__desc {
  color: #707A85;
  font-family: "Fira Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21px; }

.c-location-results__fad .c-location-results__search,
.c-location-results__fad .c-location-results__filters {
  min-width: auto; }

.c-location-results__fad .c-location-results__search .site-link,
.search-widget__dropdown .site-link {
  margin-top: .5rem;
  display: inline-block;
  text-decoration: underline;
  font-size: .875rem;
  cursor: pointer; }

.c-hero__form .search-widget__dropdown-location {
  background: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  padding: .5rem 0 .75rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(154, 154, 154, 0.5);
          box-shadow: 0 1px 3px 0 rgba(154, 154, 154, 0.5); }

.c-hero__form .search-widget__dropdown-location .site-link {
  text-decoration: none; }

.c-hero__form .search-widget__dropdown-location .site-link:before {
  content: "\f3c5";
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  color: #34CA9D;
  margin-right: .5rem; }

.c-location-results__fad .c-rating {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 15px; }

.c-location-results__fad .c-location-results__list-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  max-height: 100%;
  min-height: auto; }

.c-location-results__fad .c-rating .c-rating__stars .fa-star {
  font-size: 21px; }

.c-doctor__locations {
  width: 100%;
  padding: 0 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.c-doctor__locations--wrap {
  display: grid;
  grid-template-columns: 4fr 1fr;
  grid-gap: 25px; }

.c-doctor__locations--wrap:nth-child(3) {
  border-top: 1px solid #ECECEC;
  margin-top: 20px; }

.c-doctor__locations--wrap:not(:first-of-type) {
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 20px;
  padding-top: 20px; }

.c-doctor__locations--wrap .location-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.c-doctor__locations--wrap .location-name span {
  color: #68747D;
  font-family: "Fira Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px; }

.location-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.location-phone p {
  color: #68747D;
  font-family: "Fira Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 0;
  text-align: left; }

.location-phone a {
  color: #2282D4;
  font-family: "Fira Sans";
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px; }

.all-loc {
  display: block;
  padding-left: 25px; }

.c-location-results__fad .c-team-grid__virtual span {
  color: #068473;
  font-family: "Fira Sans";
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  text-align: left; }

.c-location-results__fad .c-team-grid__virtual {
  text-align: left; }

.c-location-results__fad .c-team-grid__patients {
  color: #068473;
  font-family: "Fira Sans";
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  text-align: left; }

.c-location-results__fad .c-team-grid__buttons .fa, .c-location-results__fad .c-team-grid__buttons .fas {
  color: #34CA9D; }

.c-location-results__fad .c-team-grid__buttons {
  padding-top: 0; }

.c-location-results__fad .c-location-results__buttons .c-btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 10px);
  flex: 0 0 calc(43% - 10px);
  margin: 0 5px;
  width: calc(43% - 10px); }

.c-location-results__fad .c-location-results__buttons .c-btn:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.c-location-results__fad .c-location-results__item-picture {
  position: relative;
  max-height: 300px;
  background: #F2F7F7;
  overflow: hidden;
  padding: 1rem; }
  @media (max-width: 59em) {
    .c-location-results__fad .c-location-results__item-picture {
      height: 300px;
      -webkit-box-flex: initial;
          -ms-flex: initial;
              flex: initial;
      width: 100%;
      overflow: hidden;
      padding: 2rem; } }

@media (max-width: 59em) {
  .c-location-results__fad .c-location-results__item-picture-link img {
    -o-object-position: top;
       object-position: top;
    max-width: 200px;
    margin: 1rem auto 0; } }

.c-location-results__fad .c-location-results__item-picture-btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 2rem); }
  .c-location-results__fad .c-location-results__item-picture-btn .far {
    margin-left: .5rem;
    color: #34CA9D;
    font-size: 1.125rem; }

.c-location-results__fad .c-location-results__buttons {
  background: #fff;
  margin: 0 0 30px;
  padding: 0 15px 25px; }

.fad-mobile-toggle {
  width: 100%; }

.c-location-results__fad .c-location-results__topbar--fad {
  padding: 15px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .c-location-results__fad .c-location-results__topbar--fad:before {
    content: "";
    background: #FFF;
    position: absolute;
    height: 71px;
    width: 100vw;
    left: 0;
    z-index: -1; }

.c-location-results__fad .c-location-results__counter.c-location-results__counter--list {
  padding-bottom: 0; }

.fad-sort {
  display: inline-block;
  border: 1px solid #C2D1D9;
  padding: 10px 15px;
  color: #363636;
  font-family: "Fira Sans";
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
  text-transform: uppercase;
  cursor: pointer; }

.fad-sort .fa, .fad-sort .fas {
  color: #34CA9D;
  font-size: 15px;
  margin-left: 2px; }

@media (max-width: 59em) {
  .c-location-results__fad .c-location-results__item-info {
    text-align: center; }
  .c-location-results__fad .c-rating {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .c-location-results__fad .c-location-results__item-actions .c-btn {
    max-width: 275px; }
  .c-location-results__fad .c-team-grid__patients, .c-location-results__fad .c-team-grid__virtual {
    text-align: center; }
  .location-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .location-phone a {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 24px;
    margin-left: 10px; }
  .fad-sort {
    display: none; } }

.c-sidebar-cta {
  width: 295px;
  border-radius: 1.46px;
  background-color: #068473;
  padding: 35px 35px 25px 25px;
  position: relative; }

.pattern-withbox:before {
  background: url(http://markup.merge-digital.com/images/imagePattern_dotGrid-green.svg);
  width: 58px;
  height: 43px;
  background-size: cover;
  position: absolute;
  top: 1px;
  right: 10px;
  content: "";
  z-index: 2; }

.pattern-withbox:after {
  content: "";
  background: #099380;
  height: 14px;
  width: 106.65px;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 0; }

.pattern-withbox.no-bg:after {
  display: none; }

.c-sidebar-cta .c-sidebar-cta__desc {
  color: white;
  line-height: 24px;
  margin-top: 10px; }

.c-sidebar-cta .c-link-btn {
  color: #FFFFFF;
  font-family: "Fira Sans";
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px; }

.c-sidebar-cta .c-link-btn:after {
  color: white;
  margin-top: 3px; }

.c-sidebar-cta:after {
  content: "";
  position: absolute;
  height: 129px;
  width: 134px;
  opacity: 0.1;
  background-color: #099380;
  bottom: -12px;
  right: -12px; }

.c-sidebar-cta:before {
  content: "";
  background: url(http://markup.merge-digital.com/images/imagePattern_dotGrid-green.svg);
  display: block;
  position: absolute;
  background-size: 35px;
  width: 35px;
  margin-left: -5px;
  height: 12%;
  top: 0%;
  left: 0;
  background-repeat: no-repeat; }

@media (max-width: 768px) {
  .c-sidebar-cta {
    width: 330px; } }

@media (max-width: 730px) {
  .c-doctor__locations--wrap {
    grid-template-columns: 1fr;
    grid-gap: 0; } }

.c-and-e-dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -30px; }
  .c-and-e-dashboard hr {
    margin: 0; }
  .c-and-e-dashboard__nav-container {
    padding: 1rem 2rem; }
  .c-and-e-dashboard__nav {
    display: none;
    background: #fff;
    border: 1px solid #ECECEC;
    border-radius: 2px;
    -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05); }
    @media (min-width: 48em) {
      .c-and-e-dashboard__nav {
        display: block;
        min-width: 330px; } }
  .c-and-e-dashboard__nav-item {
    margin: 10px 0; }
    .c-and-e-dashboard__nav-item a {
      font-weight: bold; }
    .c-and-e-dashboard__nav-item i {
      margin-right: 5px; }
    .c-and-e-dashboard__nav-item.active a {
      color: #363636; }
  .c-and-e-dashboard__profile-wrapper {
    width: 100%;
    padding: 2rem;
    -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05); }
    @media (min-width: 48em) {
      .c-and-e-dashboard__profile-wrapper {
        width: calc(100% - 330px); } }
  .c-and-e-dashboard__header-container {
    background: #f2f7f7; }
    .c-and-e-dashboard__header-container h3 {
      font-size: 21px; }
    .c-and-e-dashboard__header-container--center {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .c-and-e-dashboard__header-container--center .c-arrow-link {
        padding-right: 0; }
  .c-and-e-dashboard__alert-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 1.46px;
    background-color: #FFF497;
    -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
    height: 70px;
    padding: 0 20px;
    text-align: center; }
    @media (min-width: 48em) {
      .c-and-e-dashboard__alert-card {
        height: 40px; } }
    .c-and-e-dashboard__alert-card p {
      margin-bottom: 0;
      color: #363636; }
  .c-and-e-dashboard__tab-btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid #ECECEC; }
  .c-and-e-dashboard__tab-btn {
    color: #74777B;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    position: relative;
    padding: 0 15px; }
    .c-and-e-dashboard__tab-btn.active {
      color: #363636; }
      .c-and-e-dashboard__tab-btn.active::after {
        content: '';
        position: absolute;
        height: 5px;
        width: 100%;
        background-color: #34CA9D;
        top: -15px;
        left: 0; }
  .c-and-e-dashboard__tab-container {
    display: none; }
    .c-and-e-dashboard__tab-container.active {
      display: block; }

.l-container-small {
  max-width: 1140px; }
  @media (max-width: 768px) {
    .l-container-small {
      margin: 0 30px;
      padding-top: 40px; } }
  .l-container-small .c-content__split {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 477px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 90px; }
    @media (max-width: 768px) {
      .l-container-small .c-content__split {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-height: 100%;
        margin-top: 30px; } }
  .l-container-small .c-content__flex {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    height: 477px;
    position: relative; }
  @media (max-width: 768px) {
    .l-container-small .c-content__image {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      height: 285px; } }
  .l-container-small .c-content__image:before {
    content: "";
    background: url(http://markup.merge-digital.com/riverside/images/imagePattern_squareAndLines.svg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: 1;
    top: -62%;
    left: -16px;
    -webkit-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
            transform: scaleY(-1); }
    @media (max-width: 768px) {
      .l-container-small .c-content__image:before {
        top: -38.6%; } }
  .l-container-small .c-content__image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
    @media (max-width: 768px) {
      .l-container-small .c-content__image img {
        width: 100%; } }
  .l-container-small .c-content__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #F2F7F7; }
    @media (max-width: 768px) {
      .l-container-small .c-content__text {
        width: 100%;
        padding: 30px 30px 50px; } }
    .l-container-small .c-content__text h1.c-content__title {
      color: #707A85;
      font-family: "Fira Sans", sans-serif;
      font-size: 24px;
      letter-spacing: 0;
      line-height: 32px;
      text-align: center;
      font-weight: normal;
      margin-bottom: 18px; }
      @media (max-width: 768px) {
        .l-container-small .c-content__text h1.c-content__title {
          font-size: 18px;
          margin-bottom: 10px; } }
    .l-container-small .c-content__text p {
      color: #363636;
      font-family: "Fira Sans", sans-serif;
      font-size: 21px;
      font-weight: bold;
      letter-spacing: 0;
      line-height: 32px;
      text-align: center;
      margin-bottom: 25px; }
      @media (max-width: 768px) {
        .l-container-small .c-content__text p {
          font-size: 16px; } }
    .l-container-small .c-content__text--center {
      text-align: center; }

.leaf-bottom {
  position: relative; }
  .leaf-bottom:after {
    content: "";
    background: url("img/leaf-1.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -25px;
    right: 18px;
    z-index: 99; }

.leaf-top {
  position: relative; }
  .leaf-top:before {
    content: "";
    background: url(img/leaf-blurred.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -50px;
    left: 15%;
    z-index: 0;
    -webkit-transform: rotateX(45deg);
            transform: rotateX(45deg); }

.internal-3-col {
  background: #fff;
  padding-bottom: 4rem; }
  .internal-3-col__breadcrumbs {
    background: #F2F7F7;
    padding: 1rem 0;
    margin-bottom: 4rem; }
  .internal-3-col__content {
    padding: 1rem 2rem; }
    .internal-3-col__content ul {
      margin: 1rem 0;
      list-style-position: inside;
      padding-left: 0;
      list-style-type: disc;
      line-height: 2em; }
      .internal-3-col__content ul li {
        color: #646F78; }
    .internal-3-col__content a {
      color: #1C72AB;
      text-decoration: none;
      font-weight: 500; }
      .internal-3-col__content a:hover {
        text-decoration: underline; }
  .internal-3-col__sidebar {
    padding-right: 1rem; }
  .internal-3-col .c-img-card {
    background-size: cover; }

.internal-2-col {
  background: #fff;
  padding-bottom: 4rem; }
  .internal-2-col__breadcrumbs {
    background: #F2F7F7;
    padding: 1rem 0;
    margin-bottom: 4rem; }
  .internal-2-col__header {
    border-bottom: 1px solid #F2F7F7;
    margin-bottom: 1rem;
    padding-bottom: 2rem; }
  .internal-2-col__content {
    padding: 0 1rem 0 0; }
    .internal-2-col__content ul {
      margin: 1rem 0;
      list-style-position: inside;
      padding-left: 0;
      list-style-type: disc;
      line-height: 2em; }
      .internal-2-col__content ul li {
        color: #646F78; }
    .internal-2-col__content a {
      color: #1C72AB;
      text-decoration: none;
      font-weight: 500; }
      .internal-2-col__content a:hover {
        text-decoration: underline; }
  .internal-2-col__sidebar {
    padding-right: 1rem; }
  .internal-2-col .c-img-card {
    background-size: cover; }
  .internal-2-col .l-section--intro_center {
    margin-bottom: 2rem; }

/*------------------------------------*\
    #UTILITY
\*------------------------------------*/
/*------------------------------------*\
    #GENERATE CLASSES FOR MARGINS
    range: 5px to 60px
\*------------------------------------*/
.mg-all-0 {
  margin: 0px; }
  @media (max-width: 27em) {
    .mg-all-0\:sm {
      margin: 0px !important; } }
  @media (max-width: 47em) {
    .mg-all-0\:md {
      margin: 0px !important; } }
  @media (max-width: 59em) {
    .mg-all-0\:lg {
      margin: 0px !important; } }
  @media (max-width: 1270px) {
    .mg-all-0\:1270 {
      margin: 0px !important; } }

.mg-h-0 {
  margin-right: 0px;
  margin-left: 0px; }
  @media (max-width: 27em) {
    .mg-h-0\:sm {
      margin-right: 0px !important;
      margin-left: 0px !important; } }
  @media (max-width: 47em) {
    .mg-h-0\:md {
      margin-right: 0px !important;
      margin-left: 0px !important; } }
  @media (max-width: 59em) {
    .mg-h-0\:lg {
      margin-right: 0px !important;
      margin-left: 0px !important; } }
  @media (max-width: 1270px) {
    .mg-h-0\:1270 {
      margin-right: 0px !important;
      margin-left: 0px !important; } }

.mg-v-0 {
  margin-top: 0px;
  margin-bottom: 0px; }
  @media (max-width: 27em) {
    .mg-v-0\:sm {
      margin-top: 0px !important;
      margin-bottom: 0px !important; } }
  @media (max-width: 47em) {
    .mg-v-0\:md {
      margin-top: 0px !important;
      margin-bottom: 0px !important; } }
  @media (max-width: 59em) {
    .mg-v-0\:lg {
      margin-top: 0px !important;
      margin-bottom: 0px !important; } }
  @media (max-width: 1270px) {
    .mg-v-0\:1270 {
      margin-top: 0px !important;
      margin-bottom: 0px !important; } }

.mg-t-0 {
  margin-top: 0px; }
  @media (max-width: 27em) {
    .mg-t-0\:sm {
      margin-top: 0px !important; } }
  @media (max-width: 47em) {
    .mg-t-0\:md {
      margin-top: 0px !important; } }
  @media (max-width: 59em) {
    .mg-t-0\:lg {
      margin-top: 0px !important; } }
  @media (max-width: 1270px) {
    .mg-t-0\:1270 {
      margin-top: 0px !important; } }

.mg-r-0 {
  margin-right: 0px; }
  @media (max-width: 27em) {
    .mg-r-0\:sm {
      margin-right: 0px !important; } }
  @media (max-width: 47em) {
    .mg-r-0\:md {
      margin-right: 0px !important; } }
  @media (max-width: 59em) {
    .mg-r-0\:lg {
      margin-right: 0px !important; } }
  @media (max-width: 1270px) {
    .mg-r-0\:1270 {
      margin-right: 0px !important; } }

.mg-b-0 {
  margin-bottom: 0px; }
  @media (max-width: 27em) {
    .mg-b-0\:sm {
      margin-bottom: 0px !important; } }
  @media (max-width: 47em) {
    .mg-b-0\:md {
      margin-bottom: 0px !important; } }
  @media (max-width: 59em) {
    .mg-b-0\:lg {
      margin-bottom: 0px !important; } }
  @media (max-width: 1270px) {
    .mg-b-0\:1270 {
      margin-bottom: 0px !important; } }

.mg-l-0 {
  margin-left: 0px; }
  @media (max-width: 27em) {
    .mg-l-0\:sm {
      margin-left: 0px !important; } }
  @media (max-width: 47em) {
    .mg-l-0\:md {
      margin-left: 0px !important; } }
  @media (max-width: 59em) {
    .mg-l-0\:lg {
      margin-left: 0px !important; } }
  @media (max-width: 1270px) {
    .mg-l-0\:1270 {
      margin-left: 0px !important; } }

.mg-all-5 {
  margin: 5px; }
  @media (max-width: 27em) {
    .mg-all-5\:sm {
      margin: 5px !important; } }
  @media (max-width: 47em) {
    .mg-all-5\:md {
      margin: 5px !important; } }
  @media (max-width: 59em) {
    .mg-all-5\:lg {
      margin: 5px !important; } }
  @media (max-width: 1270px) {
    .mg-all-5\:1270 {
      margin: 5px !important; } }

.mg-h-5 {
  margin-right: 5px;
  margin-left: 5px; }
  @media (max-width: 27em) {
    .mg-h-5\:sm {
      margin-right: 5px !important;
      margin-left: 5px !important; } }
  @media (max-width: 47em) {
    .mg-h-5\:md {
      margin-right: 5px !important;
      margin-left: 5px !important; } }
  @media (max-width: 59em) {
    .mg-h-5\:lg {
      margin-right: 5px !important;
      margin-left: 5px !important; } }
  @media (max-width: 1270px) {
    .mg-h-5\:1270 {
      margin-right: 5px !important;
      margin-left: 5px !important; } }

.mg-v-5 {
  margin-top: 5px;
  margin-bottom: 5px; }
  @media (max-width: 27em) {
    .mg-v-5\:sm {
      margin-top: 5px !important;
      margin-bottom: 5px !important; } }
  @media (max-width: 47em) {
    .mg-v-5\:md {
      margin-top: 5px !important;
      margin-bottom: 5px !important; } }
  @media (max-width: 59em) {
    .mg-v-5\:lg {
      margin-top: 5px !important;
      margin-bottom: 5px !important; } }
  @media (max-width: 1270px) {
    .mg-v-5\:1270 {
      margin-top: 5px !important;
      margin-bottom: 5px !important; } }

.mg-t-5 {
  margin-top: 5px; }
  @media (max-width: 27em) {
    .mg-t-5\:sm {
      margin-top: 5px !important; } }
  @media (max-width: 47em) {
    .mg-t-5\:md {
      margin-top: 5px !important; } }
  @media (max-width: 59em) {
    .mg-t-5\:lg {
      margin-top: 5px !important; } }
  @media (max-width: 1270px) {
    .mg-t-5\:1270 {
      margin-top: 5px !important; } }

.mg-r-5 {
  margin-right: 5px; }
  @media (max-width: 27em) {
    .mg-r-5\:sm {
      margin-right: 5px !important; } }
  @media (max-width: 47em) {
    .mg-r-5\:md {
      margin-right: 5px !important; } }
  @media (max-width: 59em) {
    .mg-r-5\:lg {
      margin-right: 5px !important; } }
  @media (max-width: 1270px) {
    .mg-r-5\:1270 {
      margin-right: 5px !important; } }

.mg-b-5 {
  margin-bottom: 5px; }
  @media (max-width: 27em) {
    .mg-b-5\:sm {
      margin-bottom: 5px !important; } }
  @media (max-width: 47em) {
    .mg-b-5\:md {
      margin-bottom: 5px !important; } }
  @media (max-width: 59em) {
    .mg-b-5\:lg {
      margin-bottom: 5px !important; } }
  @media (max-width: 1270px) {
    .mg-b-5\:1270 {
      margin-bottom: 5px !important; } }

.mg-l-5 {
  margin-left: 5px; }
  @media (max-width: 27em) {
    .mg-l-5\:sm {
      margin-left: 5px !important; } }
  @media (max-width: 47em) {
    .mg-l-5\:md {
      margin-left: 5px !important; } }
  @media (max-width: 59em) {
    .mg-l-5\:lg {
      margin-left: 5px !important; } }
  @media (max-width: 1270px) {
    .mg-l-5\:1270 {
      margin-left: 5px !important; } }

.mg-all-10 {
  margin: 10px; }
  @media (max-width: 27em) {
    .mg-all-10\:sm {
      margin: 10px !important; } }
  @media (max-width: 47em) {
    .mg-all-10\:md {
      margin: 10px !important; } }
  @media (max-width: 59em) {
    .mg-all-10\:lg {
      margin: 10px !important; } }
  @media (max-width: 1270px) {
    .mg-all-10\:1270 {
      margin: 10px !important; } }

.mg-h-10 {
  margin-right: 10px;
  margin-left: 10px; }
  @media (max-width: 27em) {
    .mg-h-10\:sm {
      margin-right: 10px !important;
      margin-left: 10px !important; } }
  @media (max-width: 47em) {
    .mg-h-10\:md {
      margin-right: 10px !important;
      margin-left: 10px !important; } }
  @media (max-width: 59em) {
    .mg-h-10\:lg {
      margin-right: 10px !important;
      margin-left: 10px !important; } }
  @media (max-width: 1270px) {
    .mg-h-10\:1270 {
      margin-right: 10px !important;
      margin-left: 10px !important; } }

.mg-v-10 {
  margin-top: 10px;
  margin-bottom: 10px; }
  @media (max-width: 27em) {
    .mg-v-10\:sm {
      margin-top: 10px !important;
      margin-bottom: 10px !important; } }
  @media (max-width: 47em) {
    .mg-v-10\:md {
      margin-top: 10px !important;
      margin-bottom: 10px !important; } }
  @media (max-width: 59em) {
    .mg-v-10\:lg {
      margin-top: 10px !important;
      margin-bottom: 10px !important; } }
  @media (max-width: 1270px) {
    .mg-v-10\:1270 {
      margin-top: 10px !important;
      margin-bottom: 10px !important; } }

.mg-t-10 {
  margin-top: 10px; }
  @media (max-width: 27em) {
    .mg-t-10\:sm {
      margin-top: 10px !important; } }
  @media (max-width: 47em) {
    .mg-t-10\:md {
      margin-top: 10px !important; } }
  @media (max-width: 59em) {
    .mg-t-10\:lg {
      margin-top: 10px !important; } }
  @media (max-width: 1270px) {
    .mg-t-10\:1270 {
      margin-top: 10px !important; } }

.mg-r-10 {
  margin-right: 10px; }
  @media (max-width: 27em) {
    .mg-r-10\:sm {
      margin-right: 10px !important; } }
  @media (max-width: 47em) {
    .mg-r-10\:md {
      margin-right: 10px !important; } }
  @media (max-width: 59em) {
    .mg-r-10\:lg {
      margin-right: 10px !important; } }
  @media (max-width: 1270px) {
    .mg-r-10\:1270 {
      margin-right: 10px !important; } }

.mg-b-10 {
  margin-bottom: 10px; }
  @media (max-width: 27em) {
    .mg-b-10\:sm {
      margin-bottom: 10px !important; } }
  @media (max-width: 47em) {
    .mg-b-10\:md {
      margin-bottom: 10px !important; } }
  @media (max-width: 59em) {
    .mg-b-10\:lg {
      margin-bottom: 10px !important; } }
  @media (max-width: 1270px) {
    .mg-b-10\:1270 {
      margin-bottom: 10px !important; } }

.mg-l-10 {
  margin-left: 10px; }
  @media (max-width: 27em) {
    .mg-l-10\:sm {
      margin-left: 10px !important; } }
  @media (max-width: 47em) {
    .mg-l-10\:md {
      margin-left: 10px !important; } }
  @media (max-width: 59em) {
    .mg-l-10\:lg {
      margin-left: 10px !important; } }
  @media (max-width: 1270px) {
    .mg-l-10\:1270 {
      margin-left: 10px !important; } }

.mg-all-15 {
  margin: 15px; }
  @media (max-width: 27em) {
    .mg-all-15\:sm {
      margin: 15px !important; } }
  @media (max-width: 47em) {
    .mg-all-15\:md {
      margin: 15px !important; } }
  @media (max-width: 59em) {
    .mg-all-15\:lg {
      margin: 15px !important; } }
  @media (max-width: 1270px) {
    .mg-all-15\:1270 {
      margin: 15px !important; } }

.mg-h-15 {
  margin-right: 15px;
  margin-left: 15px; }
  @media (max-width: 27em) {
    .mg-h-15\:sm {
      margin-right: 15px !important;
      margin-left: 15px !important; } }
  @media (max-width: 47em) {
    .mg-h-15\:md {
      margin-right: 15px !important;
      margin-left: 15px !important; } }
  @media (max-width: 59em) {
    .mg-h-15\:lg {
      margin-right: 15px !important;
      margin-left: 15px !important; } }
  @media (max-width: 1270px) {
    .mg-h-15\:1270 {
      margin-right: 15px !important;
      margin-left: 15px !important; } }

.mg-v-15 {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (max-width: 27em) {
    .mg-v-15\:sm {
      margin-top: 15px !important;
      margin-bottom: 15px !important; } }
  @media (max-width: 47em) {
    .mg-v-15\:md {
      margin-top: 15px !important;
      margin-bottom: 15px !important; } }
  @media (max-width: 59em) {
    .mg-v-15\:lg {
      margin-top: 15px !important;
      margin-bottom: 15px !important; } }
  @media (max-width: 1270px) {
    .mg-v-15\:1270 {
      margin-top: 15px !important;
      margin-bottom: 15px !important; } }

.mg-t-15 {
  margin-top: 15px; }
  @media (max-width: 27em) {
    .mg-t-15\:sm {
      margin-top: 15px !important; } }
  @media (max-width: 47em) {
    .mg-t-15\:md {
      margin-top: 15px !important; } }
  @media (max-width: 59em) {
    .mg-t-15\:lg {
      margin-top: 15px !important; } }
  @media (max-width: 1270px) {
    .mg-t-15\:1270 {
      margin-top: 15px !important; } }

.mg-r-15 {
  margin-right: 15px; }
  @media (max-width: 27em) {
    .mg-r-15\:sm {
      margin-right: 15px !important; } }
  @media (max-width: 47em) {
    .mg-r-15\:md {
      margin-right: 15px !important; } }
  @media (max-width: 59em) {
    .mg-r-15\:lg {
      margin-right: 15px !important; } }
  @media (max-width: 1270px) {
    .mg-r-15\:1270 {
      margin-right: 15px !important; } }

.mg-b-15 {
  margin-bottom: 15px; }
  @media (max-width: 27em) {
    .mg-b-15\:sm {
      margin-bottom: 15px !important; } }
  @media (max-width: 47em) {
    .mg-b-15\:md {
      margin-bottom: 15px !important; } }
  @media (max-width: 59em) {
    .mg-b-15\:lg {
      margin-bottom: 15px !important; } }
  @media (max-width: 1270px) {
    .mg-b-15\:1270 {
      margin-bottom: 15px !important; } }

.mg-l-15 {
  margin-left: 15px; }
  @media (max-width: 27em) {
    .mg-l-15\:sm {
      margin-left: 15px !important; } }
  @media (max-width: 47em) {
    .mg-l-15\:md {
      margin-left: 15px !important; } }
  @media (max-width: 59em) {
    .mg-l-15\:lg {
      margin-left: 15px !important; } }
  @media (max-width: 1270px) {
    .mg-l-15\:1270 {
      margin-left: 15px !important; } }

.mg-all-20 {
  margin: 20px; }
  @media (max-width: 27em) {
    .mg-all-20\:sm {
      margin: 20px !important; } }
  @media (max-width: 47em) {
    .mg-all-20\:md {
      margin: 20px !important; } }
  @media (max-width: 59em) {
    .mg-all-20\:lg {
      margin: 20px !important; } }
  @media (max-width: 1270px) {
    .mg-all-20\:1270 {
      margin: 20px !important; } }

.mg-h-20 {
  margin-right: 20px;
  margin-left: 20px; }
  @media (max-width: 27em) {
    .mg-h-20\:sm {
      margin-right: 20px !important;
      margin-left: 20px !important; } }
  @media (max-width: 47em) {
    .mg-h-20\:md {
      margin-right: 20px !important;
      margin-left: 20px !important; } }
  @media (max-width: 59em) {
    .mg-h-20\:lg {
      margin-right: 20px !important;
      margin-left: 20px !important; } }
  @media (max-width: 1270px) {
    .mg-h-20\:1270 {
      margin-right: 20px !important;
      margin-left: 20px !important; } }

.mg-v-20 {
  margin-top: 20px;
  margin-bottom: 20px; }
  @media (max-width: 27em) {
    .mg-v-20\:sm {
      margin-top: 20px !important;
      margin-bottom: 20px !important; } }
  @media (max-width: 47em) {
    .mg-v-20\:md {
      margin-top: 20px !important;
      margin-bottom: 20px !important; } }
  @media (max-width: 59em) {
    .mg-v-20\:lg {
      margin-top: 20px !important;
      margin-bottom: 20px !important; } }
  @media (max-width: 1270px) {
    .mg-v-20\:1270 {
      margin-top: 20px !important;
      margin-bottom: 20px !important; } }

.mg-t-20 {
  margin-top: 20px; }
  @media (max-width: 27em) {
    .mg-t-20\:sm {
      margin-top: 20px !important; } }
  @media (max-width: 47em) {
    .mg-t-20\:md {
      margin-top: 20px !important; } }
  @media (max-width: 59em) {
    .mg-t-20\:lg {
      margin-top: 20px !important; } }
  @media (max-width: 1270px) {
    .mg-t-20\:1270 {
      margin-top: 20px !important; } }

.mg-r-20 {
  margin-right: 20px; }
  @media (max-width: 27em) {
    .mg-r-20\:sm {
      margin-right: 20px !important; } }
  @media (max-width: 47em) {
    .mg-r-20\:md {
      margin-right: 20px !important; } }
  @media (max-width: 59em) {
    .mg-r-20\:lg {
      margin-right: 20px !important; } }
  @media (max-width: 1270px) {
    .mg-r-20\:1270 {
      margin-right: 20px !important; } }

.mg-b-20 {
  margin-bottom: 20px; }
  @media (max-width: 27em) {
    .mg-b-20\:sm {
      margin-bottom: 20px !important; } }
  @media (max-width: 47em) {
    .mg-b-20\:md {
      margin-bottom: 20px !important; } }
  @media (max-width: 59em) {
    .mg-b-20\:lg {
      margin-bottom: 20px !important; } }
  @media (max-width: 1270px) {
    .mg-b-20\:1270 {
      margin-bottom: 20px !important; } }

.mg-l-20 {
  margin-left: 20px; }
  @media (max-width: 27em) {
    .mg-l-20\:sm {
      margin-left: 20px !important; } }
  @media (max-width: 47em) {
    .mg-l-20\:md {
      margin-left: 20px !important; } }
  @media (max-width: 59em) {
    .mg-l-20\:lg {
      margin-left: 20px !important; } }
  @media (max-width: 1270px) {
    .mg-l-20\:1270 {
      margin-left: 20px !important; } }

.mg-all-25 {
  margin: 25px; }
  @media (max-width: 27em) {
    .mg-all-25\:sm {
      margin: 25px !important; } }
  @media (max-width: 47em) {
    .mg-all-25\:md {
      margin: 25px !important; } }
  @media (max-width: 59em) {
    .mg-all-25\:lg {
      margin: 25px !important; } }
  @media (max-width: 1270px) {
    .mg-all-25\:1270 {
      margin: 25px !important; } }

.mg-h-25 {
  margin-right: 25px;
  margin-left: 25px; }
  @media (max-width: 27em) {
    .mg-h-25\:sm {
      margin-right: 25px !important;
      margin-left: 25px !important; } }
  @media (max-width: 47em) {
    .mg-h-25\:md {
      margin-right: 25px !important;
      margin-left: 25px !important; } }
  @media (max-width: 59em) {
    .mg-h-25\:lg {
      margin-right: 25px !important;
      margin-left: 25px !important; } }
  @media (max-width: 1270px) {
    .mg-h-25\:1270 {
      margin-right: 25px !important;
      margin-left: 25px !important; } }

.mg-v-25 {
  margin-top: 25px;
  margin-bottom: 25px; }
  @media (max-width: 27em) {
    .mg-v-25\:sm {
      margin-top: 25px !important;
      margin-bottom: 25px !important; } }
  @media (max-width: 47em) {
    .mg-v-25\:md {
      margin-top: 25px !important;
      margin-bottom: 25px !important; } }
  @media (max-width: 59em) {
    .mg-v-25\:lg {
      margin-top: 25px !important;
      margin-bottom: 25px !important; } }
  @media (max-width: 1270px) {
    .mg-v-25\:1270 {
      margin-top: 25px !important;
      margin-bottom: 25px !important; } }

.mg-t-25 {
  margin-top: 25px; }
  @media (max-width: 27em) {
    .mg-t-25\:sm {
      margin-top: 25px !important; } }
  @media (max-width: 47em) {
    .mg-t-25\:md {
      margin-top: 25px !important; } }
  @media (max-width: 59em) {
    .mg-t-25\:lg {
      margin-top: 25px !important; } }
  @media (max-width: 1270px) {
    .mg-t-25\:1270 {
      margin-top: 25px !important; } }

.mg-r-25 {
  margin-right: 25px; }
  @media (max-width: 27em) {
    .mg-r-25\:sm {
      margin-right: 25px !important; } }
  @media (max-width: 47em) {
    .mg-r-25\:md {
      margin-right: 25px !important; } }
  @media (max-width: 59em) {
    .mg-r-25\:lg {
      margin-right: 25px !important; } }
  @media (max-width: 1270px) {
    .mg-r-25\:1270 {
      margin-right: 25px !important; } }

.mg-b-25 {
  margin-bottom: 25px; }
  @media (max-width: 27em) {
    .mg-b-25\:sm {
      margin-bottom: 25px !important; } }
  @media (max-width: 47em) {
    .mg-b-25\:md {
      margin-bottom: 25px !important; } }
  @media (max-width: 59em) {
    .mg-b-25\:lg {
      margin-bottom: 25px !important; } }
  @media (max-width: 1270px) {
    .mg-b-25\:1270 {
      margin-bottom: 25px !important; } }

.mg-l-25 {
  margin-left: 25px; }
  @media (max-width: 27em) {
    .mg-l-25\:sm {
      margin-left: 25px !important; } }
  @media (max-width: 47em) {
    .mg-l-25\:md {
      margin-left: 25px !important; } }
  @media (max-width: 59em) {
    .mg-l-25\:lg {
      margin-left: 25px !important; } }
  @media (max-width: 1270px) {
    .mg-l-25\:1270 {
      margin-left: 25px !important; } }

.mg-all-30 {
  margin: 30px; }
  @media (max-width: 27em) {
    .mg-all-30\:sm {
      margin: 30px !important; } }
  @media (max-width: 47em) {
    .mg-all-30\:md {
      margin: 30px !important; } }
  @media (max-width: 59em) {
    .mg-all-30\:lg {
      margin: 30px !important; } }
  @media (max-width: 1270px) {
    .mg-all-30\:1270 {
      margin: 30px !important; } }

.mg-h-30 {
  margin-right: 30px;
  margin-left: 30px; }
  @media (max-width: 27em) {
    .mg-h-30\:sm {
      margin-right: 30px !important;
      margin-left: 30px !important; } }
  @media (max-width: 47em) {
    .mg-h-30\:md {
      margin-right: 30px !important;
      margin-left: 30px !important; } }
  @media (max-width: 59em) {
    .mg-h-30\:lg {
      margin-right: 30px !important;
      margin-left: 30px !important; } }
  @media (max-width: 1270px) {
    .mg-h-30\:1270 {
      margin-right: 30px !important;
      margin-left: 30px !important; } }

.mg-v-30 {
  margin-top: 30px;
  margin-bottom: 30px; }
  @media (max-width: 27em) {
    .mg-v-30\:sm {
      margin-top: 30px !important;
      margin-bottom: 30px !important; } }
  @media (max-width: 47em) {
    .mg-v-30\:md {
      margin-top: 30px !important;
      margin-bottom: 30px !important; } }
  @media (max-width: 59em) {
    .mg-v-30\:lg {
      margin-top: 30px !important;
      margin-bottom: 30px !important; } }
  @media (max-width: 1270px) {
    .mg-v-30\:1270 {
      margin-top: 30px !important;
      margin-bottom: 30px !important; } }

.mg-t-30 {
  margin-top: 30px; }
  @media (max-width: 27em) {
    .mg-t-30\:sm {
      margin-top: 30px !important; } }
  @media (max-width: 47em) {
    .mg-t-30\:md {
      margin-top: 30px !important; } }
  @media (max-width: 59em) {
    .mg-t-30\:lg {
      margin-top: 30px !important; } }
  @media (max-width: 1270px) {
    .mg-t-30\:1270 {
      margin-top: 30px !important; } }

.mg-r-30 {
  margin-right: 30px; }
  @media (max-width: 27em) {
    .mg-r-30\:sm {
      margin-right: 30px !important; } }
  @media (max-width: 47em) {
    .mg-r-30\:md {
      margin-right: 30px !important; } }
  @media (max-width: 59em) {
    .mg-r-30\:lg {
      margin-right: 30px !important; } }
  @media (max-width: 1270px) {
    .mg-r-30\:1270 {
      margin-right: 30px !important; } }

.mg-b-30 {
  margin-bottom: 30px; }
  @media (max-width: 27em) {
    .mg-b-30\:sm {
      margin-bottom: 30px !important; } }
  @media (max-width: 47em) {
    .mg-b-30\:md {
      margin-bottom: 30px !important; } }
  @media (max-width: 59em) {
    .mg-b-30\:lg {
      margin-bottom: 30px !important; } }
  @media (max-width: 1270px) {
    .mg-b-30\:1270 {
      margin-bottom: 30px !important; } }

.mg-l-30 {
  margin-left: 30px; }
  @media (max-width: 27em) {
    .mg-l-30\:sm {
      margin-left: 30px !important; } }
  @media (max-width: 47em) {
    .mg-l-30\:md {
      margin-left: 30px !important; } }
  @media (max-width: 59em) {
    .mg-l-30\:lg {
      margin-left: 30px !important; } }
  @media (max-width: 1270px) {
    .mg-l-30\:1270 {
      margin-left: 30px !important; } }

.mg-all-35 {
  margin: 35px; }
  @media (max-width: 27em) {
    .mg-all-35\:sm {
      margin: 35px !important; } }
  @media (max-width: 47em) {
    .mg-all-35\:md {
      margin: 35px !important; } }
  @media (max-width: 59em) {
    .mg-all-35\:lg {
      margin: 35px !important; } }
  @media (max-width: 1270px) {
    .mg-all-35\:1270 {
      margin: 35px !important; } }

.mg-h-35 {
  margin-right: 35px;
  margin-left: 35px; }
  @media (max-width: 27em) {
    .mg-h-35\:sm {
      margin-right: 35px !important;
      margin-left: 35px !important; } }
  @media (max-width: 47em) {
    .mg-h-35\:md {
      margin-right: 35px !important;
      margin-left: 35px !important; } }
  @media (max-width: 59em) {
    .mg-h-35\:lg {
      margin-right: 35px !important;
      margin-left: 35px !important; } }
  @media (max-width: 1270px) {
    .mg-h-35\:1270 {
      margin-right: 35px !important;
      margin-left: 35px !important; } }

.mg-v-35 {
  margin-top: 35px;
  margin-bottom: 35px; }
  @media (max-width: 27em) {
    .mg-v-35\:sm {
      margin-top: 35px !important;
      margin-bottom: 35px !important; } }
  @media (max-width: 47em) {
    .mg-v-35\:md {
      margin-top: 35px !important;
      margin-bottom: 35px !important; } }
  @media (max-width: 59em) {
    .mg-v-35\:lg {
      margin-top: 35px !important;
      margin-bottom: 35px !important; } }
  @media (max-width: 1270px) {
    .mg-v-35\:1270 {
      margin-top: 35px !important;
      margin-bottom: 35px !important; } }

.mg-t-35 {
  margin-top: 35px; }
  @media (max-width: 27em) {
    .mg-t-35\:sm {
      margin-top: 35px !important; } }
  @media (max-width: 47em) {
    .mg-t-35\:md {
      margin-top: 35px !important; } }
  @media (max-width: 59em) {
    .mg-t-35\:lg {
      margin-top: 35px !important; } }
  @media (max-width: 1270px) {
    .mg-t-35\:1270 {
      margin-top: 35px !important; } }

.mg-r-35 {
  margin-right: 35px; }
  @media (max-width: 27em) {
    .mg-r-35\:sm {
      margin-right: 35px !important; } }
  @media (max-width: 47em) {
    .mg-r-35\:md {
      margin-right: 35px !important; } }
  @media (max-width: 59em) {
    .mg-r-35\:lg {
      margin-right: 35px !important; } }
  @media (max-width: 1270px) {
    .mg-r-35\:1270 {
      margin-right: 35px !important; } }

.mg-b-35 {
  margin-bottom: 35px; }
  @media (max-width: 27em) {
    .mg-b-35\:sm {
      margin-bottom: 35px !important; } }
  @media (max-width: 47em) {
    .mg-b-35\:md {
      margin-bottom: 35px !important; } }
  @media (max-width: 59em) {
    .mg-b-35\:lg {
      margin-bottom: 35px !important; } }
  @media (max-width: 1270px) {
    .mg-b-35\:1270 {
      margin-bottom: 35px !important; } }

.mg-l-35 {
  margin-left: 35px; }
  @media (max-width: 27em) {
    .mg-l-35\:sm {
      margin-left: 35px !important; } }
  @media (max-width: 47em) {
    .mg-l-35\:md {
      margin-left: 35px !important; } }
  @media (max-width: 59em) {
    .mg-l-35\:lg {
      margin-left: 35px !important; } }
  @media (max-width: 1270px) {
    .mg-l-35\:1270 {
      margin-left: 35px !important; } }

.mg-all-40 {
  margin: 40px; }
  @media (max-width: 27em) {
    .mg-all-40\:sm {
      margin: 40px !important; } }
  @media (max-width: 47em) {
    .mg-all-40\:md {
      margin: 40px !important; } }
  @media (max-width: 59em) {
    .mg-all-40\:lg {
      margin: 40px !important; } }
  @media (max-width: 1270px) {
    .mg-all-40\:1270 {
      margin: 40px !important; } }

.mg-h-40 {
  margin-right: 40px;
  margin-left: 40px; }
  @media (max-width: 27em) {
    .mg-h-40\:sm {
      margin-right: 40px !important;
      margin-left: 40px !important; } }
  @media (max-width: 47em) {
    .mg-h-40\:md {
      margin-right: 40px !important;
      margin-left: 40px !important; } }
  @media (max-width: 59em) {
    .mg-h-40\:lg {
      margin-right: 40px !important;
      margin-left: 40px !important; } }
  @media (max-width: 1270px) {
    .mg-h-40\:1270 {
      margin-right: 40px !important;
      margin-left: 40px !important; } }

.mg-v-40 {
  margin-top: 40px;
  margin-bottom: 40px; }
  @media (max-width: 27em) {
    .mg-v-40\:sm {
      margin-top: 40px !important;
      margin-bottom: 40px !important; } }
  @media (max-width: 47em) {
    .mg-v-40\:md {
      margin-top: 40px !important;
      margin-bottom: 40px !important; } }
  @media (max-width: 59em) {
    .mg-v-40\:lg {
      margin-top: 40px !important;
      margin-bottom: 40px !important; } }
  @media (max-width: 1270px) {
    .mg-v-40\:1270 {
      margin-top: 40px !important;
      margin-bottom: 40px !important; } }

.mg-t-40 {
  margin-top: 40px; }
  @media (max-width: 27em) {
    .mg-t-40\:sm {
      margin-top: 40px !important; } }
  @media (max-width: 47em) {
    .mg-t-40\:md {
      margin-top: 40px !important; } }
  @media (max-width: 59em) {
    .mg-t-40\:lg {
      margin-top: 40px !important; } }
  @media (max-width: 1270px) {
    .mg-t-40\:1270 {
      margin-top: 40px !important; } }

.mg-r-40 {
  margin-right: 40px; }
  @media (max-width: 27em) {
    .mg-r-40\:sm {
      margin-right: 40px !important; } }
  @media (max-width: 47em) {
    .mg-r-40\:md {
      margin-right: 40px !important; } }
  @media (max-width: 59em) {
    .mg-r-40\:lg {
      margin-right: 40px !important; } }
  @media (max-width: 1270px) {
    .mg-r-40\:1270 {
      margin-right: 40px !important; } }

.mg-b-40 {
  margin-bottom: 40px; }
  @media (max-width: 27em) {
    .mg-b-40\:sm {
      margin-bottom: 40px !important; } }
  @media (max-width: 47em) {
    .mg-b-40\:md {
      margin-bottom: 40px !important; } }
  @media (max-width: 59em) {
    .mg-b-40\:lg {
      margin-bottom: 40px !important; } }
  @media (max-width: 1270px) {
    .mg-b-40\:1270 {
      margin-bottom: 40px !important; } }

.mg-l-40 {
  margin-left: 40px; }
  @media (max-width: 27em) {
    .mg-l-40\:sm {
      margin-left: 40px !important; } }
  @media (max-width: 47em) {
    .mg-l-40\:md {
      margin-left: 40px !important; } }
  @media (max-width: 59em) {
    .mg-l-40\:lg {
      margin-left: 40px !important; } }
  @media (max-width: 1270px) {
    .mg-l-40\:1270 {
      margin-left: 40px !important; } }

.mg-all-45 {
  margin: 45px; }
  @media (max-width: 27em) {
    .mg-all-45\:sm {
      margin: 45px !important; } }
  @media (max-width: 47em) {
    .mg-all-45\:md {
      margin: 45px !important; } }
  @media (max-width: 59em) {
    .mg-all-45\:lg {
      margin: 45px !important; } }
  @media (max-width: 1270px) {
    .mg-all-45\:1270 {
      margin: 45px !important; } }

.mg-h-45 {
  margin-right: 45px;
  margin-left: 45px; }
  @media (max-width: 27em) {
    .mg-h-45\:sm {
      margin-right: 45px !important;
      margin-left: 45px !important; } }
  @media (max-width: 47em) {
    .mg-h-45\:md {
      margin-right: 45px !important;
      margin-left: 45px !important; } }
  @media (max-width: 59em) {
    .mg-h-45\:lg {
      margin-right: 45px !important;
      margin-left: 45px !important; } }
  @media (max-width: 1270px) {
    .mg-h-45\:1270 {
      margin-right: 45px !important;
      margin-left: 45px !important; } }

.mg-v-45 {
  margin-top: 45px;
  margin-bottom: 45px; }
  @media (max-width: 27em) {
    .mg-v-45\:sm {
      margin-top: 45px !important;
      margin-bottom: 45px !important; } }
  @media (max-width: 47em) {
    .mg-v-45\:md {
      margin-top: 45px !important;
      margin-bottom: 45px !important; } }
  @media (max-width: 59em) {
    .mg-v-45\:lg {
      margin-top: 45px !important;
      margin-bottom: 45px !important; } }
  @media (max-width: 1270px) {
    .mg-v-45\:1270 {
      margin-top: 45px !important;
      margin-bottom: 45px !important; } }

.mg-t-45 {
  margin-top: 45px; }
  @media (max-width: 27em) {
    .mg-t-45\:sm {
      margin-top: 45px !important; } }
  @media (max-width: 47em) {
    .mg-t-45\:md {
      margin-top: 45px !important; } }
  @media (max-width: 59em) {
    .mg-t-45\:lg {
      margin-top: 45px !important; } }
  @media (max-width: 1270px) {
    .mg-t-45\:1270 {
      margin-top: 45px !important; } }

.mg-r-45 {
  margin-right: 45px; }
  @media (max-width: 27em) {
    .mg-r-45\:sm {
      margin-right: 45px !important; } }
  @media (max-width: 47em) {
    .mg-r-45\:md {
      margin-right: 45px !important; } }
  @media (max-width: 59em) {
    .mg-r-45\:lg {
      margin-right: 45px !important; } }
  @media (max-width: 1270px) {
    .mg-r-45\:1270 {
      margin-right: 45px !important; } }

.mg-b-45 {
  margin-bottom: 45px; }
  @media (max-width: 27em) {
    .mg-b-45\:sm {
      margin-bottom: 45px !important; } }
  @media (max-width: 47em) {
    .mg-b-45\:md {
      margin-bottom: 45px !important; } }
  @media (max-width: 59em) {
    .mg-b-45\:lg {
      margin-bottom: 45px !important; } }
  @media (max-width: 1270px) {
    .mg-b-45\:1270 {
      margin-bottom: 45px !important; } }

.mg-l-45 {
  margin-left: 45px; }
  @media (max-width: 27em) {
    .mg-l-45\:sm {
      margin-left: 45px !important; } }
  @media (max-width: 47em) {
    .mg-l-45\:md {
      margin-left: 45px !important; } }
  @media (max-width: 59em) {
    .mg-l-45\:lg {
      margin-left: 45px !important; } }
  @media (max-width: 1270px) {
    .mg-l-45\:1270 {
      margin-left: 45px !important; } }

.mg-all-50 {
  margin: 50px; }
  @media (max-width: 27em) {
    .mg-all-50\:sm {
      margin: 50px !important; } }
  @media (max-width: 47em) {
    .mg-all-50\:md {
      margin: 50px !important; } }
  @media (max-width: 59em) {
    .mg-all-50\:lg {
      margin: 50px !important; } }
  @media (max-width: 1270px) {
    .mg-all-50\:1270 {
      margin: 50px !important; } }

.mg-h-50 {
  margin-right: 50px;
  margin-left: 50px; }
  @media (max-width: 27em) {
    .mg-h-50\:sm {
      margin-right: 50px !important;
      margin-left: 50px !important; } }
  @media (max-width: 47em) {
    .mg-h-50\:md {
      margin-right: 50px !important;
      margin-left: 50px !important; } }
  @media (max-width: 59em) {
    .mg-h-50\:lg {
      margin-right: 50px !important;
      margin-left: 50px !important; } }
  @media (max-width: 1270px) {
    .mg-h-50\:1270 {
      margin-right: 50px !important;
      margin-left: 50px !important; } }

.mg-v-50 {
  margin-top: 50px;
  margin-bottom: 50px; }
  @media (max-width: 27em) {
    .mg-v-50\:sm {
      margin-top: 50px !important;
      margin-bottom: 50px !important; } }
  @media (max-width: 47em) {
    .mg-v-50\:md {
      margin-top: 50px !important;
      margin-bottom: 50px !important; } }
  @media (max-width: 59em) {
    .mg-v-50\:lg {
      margin-top: 50px !important;
      margin-bottom: 50px !important; } }
  @media (max-width: 1270px) {
    .mg-v-50\:1270 {
      margin-top: 50px !important;
      margin-bottom: 50px !important; } }

.mg-t-50 {
  margin-top: 50px; }
  @media (max-width: 27em) {
    .mg-t-50\:sm {
      margin-top: 50px !important; } }
  @media (max-width: 47em) {
    .mg-t-50\:md {
      margin-top: 50px !important; } }
  @media (max-width: 59em) {
    .mg-t-50\:lg {
      margin-top: 50px !important; } }
  @media (max-width: 1270px) {
    .mg-t-50\:1270 {
      margin-top: 50px !important; } }

.mg-r-50 {
  margin-right: 50px; }
  @media (max-width: 27em) {
    .mg-r-50\:sm {
      margin-right: 50px !important; } }
  @media (max-width: 47em) {
    .mg-r-50\:md {
      margin-right: 50px !important; } }
  @media (max-width: 59em) {
    .mg-r-50\:lg {
      margin-right: 50px !important; } }
  @media (max-width: 1270px) {
    .mg-r-50\:1270 {
      margin-right: 50px !important; } }

.mg-b-50 {
  margin-bottom: 50px; }
  @media (max-width: 27em) {
    .mg-b-50\:sm {
      margin-bottom: 50px !important; } }
  @media (max-width: 47em) {
    .mg-b-50\:md {
      margin-bottom: 50px !important; } }
  @media (max-width: 59em) {
    .mg-b-50\:lg {
      margin-bottom: 50px !important; } }
  @media (max-width: 1270px) {
    .mg-b-50\:1270 {
      margin-bottom: 50px !important; } }

.mg-l-50 {
  margin-left: 50px; }
  @media (max-width: 27em) {
    .mg-l-50\:sm {
      margin-left: 50px !important; } }
  @media (max-width: 47em) {
    .mg-l-50\:md {
      margin-left: 50px !important; } }
  @media (max-width: 59em) {
    .mg-l-50\:lg {
      margin-left: 50px !important; } }
  @media (max-width: 1270px) {
    .mg-l-50\:1270 {
      margin-left: 50px !important; } }

.mg-all-55 {
  margin: 55px; }
  @media (max-width: 27em) {
    .mg-all-55\:sm {
      margin: 55px !important; } }
  @media (max-width: 47em) {
    .mg-all-55\:md {
      margin: 55px !important; } }
  @media (max-width: 59em) {
    .mg-all-55\:lg {
      margin: 55px !important; } }
  @media (max-width: 1270px) {
    .mg-all-55\:1270 {
      margin: 55px !important; } }

.mg-h-55 {
  margin-right: 55px;
  margin-left: 55px; }
  @media (max-width: 27em) {
    .mg-h-55\:sm {
      margin-right: 55px !important;
      margin-left: 55px !important; } }
  @media (max-width: 47em) {
    .mg-h-55\:md {
      margin-right: 55px !important;
      margin-left: 55px !important; } }
  @media (max-width: 59em) {
    .mg-h-55\:lg {
      margin-right: 55px !important;
      margin-left: 55px !important; } }
  @media (max-width: 1270px) {
    .mg-h-55\:1270 {
      margin-right: 55px !important;
      margin-left: 55px !important; } }

.mg-v-55 {
  margin-top: 55px;
  margin-bottom: 55px; }
  @media (max-width: 27em) {
    .mg-v-55\:sm {
      margin-top: 55px !important;
      margin-bottom: 55px !important; } }
  @media (max-width: 47em) {
    .mg-v-55\:md {
      margin-top: 55px !important;
      margin-bottom: 55px !important; } }
  @media (max-width: 59em) {
    .mg-v-55\:lg {
      margin-top: 55px !important;
      margin-bottom: 55px !important; } }
  @media (max-width: 1270px) {
    .mg-v-55\:1270 {
      margin-top: 55px !important;
      margin-bottom: 55px !important; } }

.mg-t-55 {
  margin-top: 55px; }
  @media (max-width: 27em) {
    .mg-t-55\:sm {
      margin-top: 55px !important; } }
  @media (max-width: 47em) {
    .mg-t-55\:md {
      margin-top: 55px !important; } }
  @media (max-width: 59em) {
    .mg-t-55\:lg {
      margin-top: 55px !important; } }
  @media (max-width: 1270px) {
    .mg-t-55\:1270 {
      margin-top: 55px !important; } }

.mg-r-55 {
  margin-right: 55px; }
  @media (max-width: 27em) {
    .mg-r-55\:sm {
      margin-right: 55px !important; } }
  @media (max-width: 47em) {
    .mg-r-55\:md {
      margin-right: 55px !important; } }
  @media (max-width: 59em) {
    .mg-r-55\:lg {
      margin-right: 55px !important; } }
  @media (max-width: 1270px) {
    .mg-r-55\:1270 {
      margin-right: 55px !important; } }

.mg-b-55 {
  margin-bottom: 55px; }
  @media (max-width: 27em) {
    .mg-b-55\:sm {
      margin-bottom: 55px !important; } }
  @media (max-width: 47em) {
    .mg-b-55\:md {
      margin-bottom: 55px !important; } }
  @media (max-width: 59em) {
    .mg-b-55\:lg {
      margin-bottom: 55px !important; } }
  @media (max-width: 1270px) {
    .mg-b-55\:1270 {
      margin-bottom: 55px !important; } }

.mg-l-55 {
  margin-left: 55px; }
  @media (max-width: 27em) {
    .mg-l-55\:sm {
      margin-left: 55px !important; } }
  @media (max-width: 47em) {
    .mg-l-55\:md {
      margin-left: 55px !important; } }
  @media (max-width: 59em) {
    .mg-l-55\:lg {
      margin-left: 55px !important; } }
  @media (max-width: 1270px) {
    .mg-l-55\:1270 {
      margin-left: 55px !important; } }

.mg-all-60 {
  margin: 60px; }
  @media (max-width: 27em) {
    .mg-all-60\:sm {
      margin: 60px !important; } }
  @media (max-width: 47em) {
    .mg-all-60\:md {
      margin: 60px !important; } }
  @media (max-width: 59em) {
    .mg-all-60\:lg {
      margin: 60px !important; } }
  @media (max-width: 1270px) {
    .mg-all-60\:1270 {
      margin: 60px !important; } }

.mg-h-60 {
  margin-right: 60px;
  margin-left: 60px; }
  @media (max-width: 27em) {
    .mg-h-60\:sm {
      margin-right: 60px !important;
      margin-left: 60px !important; } }
  @media (max-width: 47em) {
    .mg-h-60\:md {
      margin-right: 60px !important;
      margin-left: 60px !important; } }
  @media (max-width: 59em) {
    .mg-h-60\:lg {
      margin-right: 60px !important;
      margin-left: 60px !important; } }
  @media (max-width: 1270px) {
    .mg-h-60\:1270 {
      margin-right: 60px !important;
      margin-left: 60px !important; } }

.mg-v-60 {
  margin-top: 60px;
  margin-bottom: 60px; }
  @media (max-width: 27em) {
    .mg-v-60\:sm {
      margin-top: 60px !important;
      margin-bottom: 60px !important; } }
  @media (max-width: 47em) {
    .mg-v-60\:md {
      margin-top: 60px !important;
      margin-bottom: 60px !important; } }
  @media (max-width: 59em) {
    .mg-v-60\:lg {
      margin-top: 60px !important;
      margin-bottom: 60px !important; } }
  @media (max-width: 1270px) {
    .mg-v-60\:1270 {
      margin-top: 60px !important;
      margin-bottom: 60px !important; } }

.mg-t-60 {
  margin-top: 60px; }
  @media (max-width: 27em) {
    .mg-t-60\:sm {
      margin-top: 60px !important; } }
  @media (max-width: 47em) {
    .mg-t-60\:md {
      margin-top: 60px !important; } }
  @media (max-width: 59em) {
    .mg-t-60\:lg {
      margin-top: 60px !important; } }
  @media (max-width: 1270px) {
    .mg-t-60\:1270 {
      margin-top: 60px !important; } }

.mg-r-60 {
  margin-right: 60px; }
  @media (max-width: 27em) {
    .mg-r-60\:sm {
      margin-right: 60px !important; } }
  @media (max-width: 47em) {
    .mg-r-60\:md {
      margin-right: 60px !important; } }
  @media (max-width: 59em) {
    .mg-r-60\:lg {
      margin-right: 60px !important; } }
  @media (max-width: 1270px) {
    .mg-r-60\:1270 {
      margin-right: 60px !important; } }

.mg-b-60 {
  margin-bottom: 60px; }
  @media (max-width: 27em) {
    .mg-b-60\:sm {
      margin-bottom: 60px !important; } }
  @media (max-width: 47em) {
    .mg-b-60\:md {
      margin-bottom: 60px !important; } }
  @media (max-width: 59em) {
    .mg-b-60\:lg {
      margin-bottom: 60px !important; } }
  @media (max-width: 1270px) {
    .mg-b-60\:1270 {
      margin-bottom: 60px !important; } }

.mg-l-60 {
  margin-left: 60px; }
  @media (max-width: 27em) {
    .mg-l-60\:sm {
      margin-left: 60px !important; } }
  @media (max-width: 47em) {
    .mg-l-60\:md {
      margin-left: 60px !important; } }
  @media (max-width: 59em) {
    .mg-l-60\:lg {
      margin-left: 60px !important; } }
  @media (max-width: 1270px) {
    .mg-l-60\:1270 {
      margin-left: 60px !important; } }

/*------------------------------------*\
    #GENERATE CLASSES FOR PADDING
    range: 5px to 60px
\*------------------------------------*/
.pd-all-5 {
  padding: 5px; }
  @media (max-width: 27em) {
    .pd-all-5\:sm {
      padding: 5px !important; } }
  @media (max-width: 47em) {
    .pd-all-5\:md {
      padding: 5px !important; } }
  @media (max-width: 59em) {
    .pd-all-5\:lg {
      padding: 5px !important; } }
  @media (max-width: 1270px) {
    .pd-all-5\:1270 {
      padding: 5px !important; } }

.pd-h-5 {
  padding-right: 5px;
  padding-left: 5px; }
  @media (max-width: 27em) {
    .pd-h-5\:sm {
      padding-right: 5px !important;
      padding-left: 5px !important; } }
  @media (max-width: 47em) {
    .pd-h-5\:md {
      padding-right: 5px !important;
      padding-left: 5px !important; } }
  @media (max-width: 59em) {
    .pd-h-5\:lg {
      padding-right: 5px !important;
      padding-left: 5px !important; } }
  @media (max-width: 1270px) {
    .pd-h-5\:1270 {
      padding-right: 5px !important;
      padding-left: 5px !important; } }

.pd-v-5 {
  padding-top: 5px;
  padding-bottom: 5px; }
  @media (max-width: 27em) {
    .pd-v-5\:sm {
      padding-top: 5px !important;
      padding-bottom: 5px !important; } }
  @media (max-width: 47em) {
    .pd-v-5\:md {
      padding-top: 5px !important;
      padding-bottom: 5px !important; } }
  @media (max-width: 59em) {
    .pd-v-5\:lg {
      padding-top: 5px !important;
      padding-bottom: 5px !important; } }
  @media (max-width: 1270px) {
    .pd-v-5\:1270 {
      padding-top: 5px !important;
      padding-bottom: 5px !important; } }

.pd-t-5 {
  padding-top: 5px; }
  @media (max-width: 27em) {
    .pd-t-5\:sm {
      padding-top: 5px !important; } }
  @media (max-width: 47em) {
    .pd-t-5\:md {
      padding-top: 5px !important; } }
  @media (max-width: 59em) {
    .pd-t-5\:lg {
      padding-top: 5px !important; } }
  @media (max-width: 1270px) {
    .pd-t-5\:1270 {
      padding-top: 5px !important; } }

.pd-r-5 {
  padding-right: 5px; }
  @media (max-width: 27em) {
    .pd-r-5\:sm {
      padding-right: 5px !important; } }
  @media (max-width: 47em) {
    .pd-r-5\:md {
      padding-right: 5px !important; } }
  @media (max-width: 59em) {
    .pd-r-5\:lg {
      padding-right: 5px !important; } }
  @media (max-width: 1270px) {
    .pd-r-5\:1270 {
      padding-right: 5px !important; } }

.pd-b-5 {
  padding-bottom: 5px; }
  @media (max-width: 27em) {
    .pd-b-5\:sm {
      padding-bottom: 5px !important; } }
  @media (max-width: 47em) {
    .pd-b-5\:md {
      padding-bottom: 5px !important; } }
  @media (max-width: 59em) {
    .pd-b-5\:lg {
      padding-bottom: 5px !important; } }
  @media (max-width: 1270px) {
    .pd-b-5\:1270 {
      padding-bottom: 5px !important; } }

.pd-l-5 {
  padding-left: 5px; }
  @media (max-width: 27em) {
    .pd-l-5\:sm {
      padding-left: 5px !important; } }
  @media (max-width: 47em) {
    .pd-l-5\:md {
      padding-left: 5px !important; } }
  @media (max-width: 59em) {
    .pd-l-5\:lg {
      padding-left: 5px !important; } }
  @media (max-width: 1270px) {
    .pd-l-5\:1270 {
      padding-left: 5px !important; } }

.pd-all-10 {
  padding: 10px; }
  @media (max-width: 27em) {
    .pd-all-10\:sm {
      padding: 10px !important; } }
  @media (max-width: 47em) {
    .pd-all-10\:md {
      padding: 10px !important; } }
  @media (max-width: 59em) {
    .pd-all-10\:lg {
      padding: 10px !important; } }
  @media (max-width: 1270px) {
    .pd-all-10\:1270 {
      padding: 10px !important; } }

.pd-h-10 {
  padding-right: 10px;
  padding-left: 10px; }
  @media (max-width: 27em) {
    .pd-h-10\:sm {
      padding-right: 10px !important;
      padding-left: 10px !important; } }
  @media (max-width: 47em) {
    .pd-h-10\:md {
      padding-right: 10px !important;
      padding-left: 10px !important; } }
  @media (max-width: 59em) {
    .pd-h-10\:lg {
      padding-right: 10px !important;
      padding-left: 10px !important; } }
  @media (max-width: 1270px) {
    .pd-h-10\:1270 {
      padding-right: 10px !important;
      padding-left: 10px !important; } }

.pd-v-10 {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media (max-width: 27em) {
    .pd-v-10\:sm {
      padding-top: 10px !important;
      padding-bottom: 10px !important; } }
  @media (max-width: 47em) {
    .pd-v-10\:md {
      padding-top: 10px !important;
      padding-bottom: 10px !important; } }
  @media (max-width: 59em) {
    .pd-v-10\:lg {
      padding-top: 10px !important;
      padding-bottom: 10px !important; } }
  @media (max-width: 1270px) {
    .pd-v-10\:1270 {
      padding-top: 10px !important;
      padding-bottom: 10px !important; } }

.pd-t-10 {
  padding-top: 10px; }
  @media (max-width: 27em) {
    .pd-t-10\:sm {
      padding-top: 10px !important; } }
  @media (max-width: 47em) {
    .pd-t-10\:md {
      padding-top: 10px !important; } }
  @media (max-width: 59em) {
    .pd-t-10\:lg {
      padding-top: 10px !important; } }
  @media (max-width: 1270px) {
    .pd-t-10\:1270 {
      padding-top: 10px !important; } }

.pd-r-10 {
  padding-right: 10px; }
  @media (max-width: 27em) {
    .pd-r-10\:sm {
      padding-right: 10px !important; } }
  @media (max-width: 47em) {
    .pd-r-10\:md {
      padding-right: 10px !important; } }
  @media (max-width: 59em) {
    .pd-r-10\:lg {
      padding-right: 10px !important; } }
  @media (max-width: 1270px) {
    .pd-r-10\:1270 {
      padding-right: 10px !important; } }

.pd-b-10 {
  padding-bottom: 10px; }
  @media (max-width: 27em) {
    .pd-b-10\:sm {
      padding-bottom: 10px !important; } }
  @media (max-width: 47em) {
    .pd-b-10\:md {
      padding-bottom: 10px !important; } }
  @media (max-width: 59em) {
    .pd-b-10\:lg {
      padding-bottom: 10px !important; } }
  @media (max-width: 1270px) {
    .pd-b-10\:1270 {
      padding-bottom: 10px !important; } }

.pd-l-10 {
  padding-left: 10px; }
  @media (max-width: 27em) {
    .pd-l-10\:sm {
      padding-left: 10px !important; } }
  @media (max-width: 47em) {
    .pd-l-10\:md {
      padding-left: 10px !important; } }
  @media (max-width: 59em) {
    .pd-l-10\:lg {
      padding-left: 10px !important; } }
  @media (max-width: 1270px) {
    .pd-l-10\:1270 {
      padding-left: 10px !important; } }

.pd-all-15 {
  padding: 15px; }
  @media (max-width: 27em) {
    .pd-all-15\:sm {
      padding: 15px !important; } }
  @media (max-width: 47em) {
    .pd-all-15\:md {
      padding: 15px !important; } }
  @media (max-width: 59em) {
    .pd-all-15\:lg {
      padding: 15px !important; } }
  @media (max-width: 1270px) {
    .pd-all-15\:1270 {
      padding: 15px !important; } }

.pd-h-15 {
  padding-right: 15px;
  padding-left: 15px; }
  @media (max-width: 27em) {
    .pd-h-15\:sm {
      padding-right: 15px !important;
      padding-left: 15px !important; } }
  @media (max-width: 47em) {
    .pd-h-15\:md {
      padding-right: 15px !important;
      padding-left: 15px !important; } }
  @media (max-width: 59em) {
    .pd-h-15\:lg {
      padding-right: 15px !important;
      padding-left: 15px !important; } }
  @media (max-width: 1270px) {
    .pd-h-15\:1270 {
      padding-right: 15px !important;
      padding-left: 15px !important; } }

.pd-v-15 {
  padding-top: 15px;
  padding-bottom: 15px; }
  @media (max-width: 27em) {
    .pd-v-15\:sm {
      padding-top: 15px !important;
      padding-bottom: 15px !important; } }
  @media (max-width: 47em) {
    .pd-v-15\:md {
      padding-top: 15px !important;
      padding-bottom: 15px !important; } }
  @media (max-width: 59em) {
    .pd-v-15\:lg {
      padding-top: 15px !important;
      padding-bottom: 15px !important; } }
  @media (max-width: 1270px) {
    .pd-v-15\:1270 {
      padding-top: 15px !important;
      padding-bottom: 15px !important; } }

.pd-t-15 {
  padding-top: 15px; }
  @media (max-width: 27em) {
    .pd-t-15\:sm {
      padding-top: 15px !important; } }
  @media (max-width: 47em) {
    .pd-t-15\:md {
      padding-top: 15px !important; } }
  @media (max-width: 59em) {
    .pd-t-15\:lg {
      padding-top: 15px !important; } }
  @media (max-width: 1270px) {
    .pd-t-15\:1270 {
      padding-top: 15px !important; } }

.pd-r-15 {
  padding-right: 15px; }
  @media (max-width: 27em) {
    .pd-r-15\:sm {
      padding-right: 15px !important; } }
  @media (max-width: 47em) {
    .pd-r-15\:md {
      padding-right: 15px !important; } }
  @media (max-width: 59em) {
    .pd-r-15\:lg {
      padding-right: 15px !important; } }
  @media (max-width: 1270px) {
    .pd-r-15\:1270 {
      padding-right: 15px !important; } }

.pd-b-15 {
  padding-bottom: 15px; }
  @media (max-width: 27em) {
    .pd-b-15\:sm {
      padding-bottom: 15px !important; } }
  @media (max-width: 47em) {
    .pd-b-15\:md {
      padding-bottom: 15px !important; } }
  @media (max-width: 59em) {
    .pd-b-15\:lg {
      padding-bottom: 15px !important; } }
  @media (max-width: 1270px) {
    .pd-b-15\:1270 {
      padding-bottom: 15px !important; } }

.pd-l-15 {
  padding-left: 15px; }
  @media (max-width: 27em) {
    .pd-l-15\:sm {
      padding-left: 15px !important; } }
  @media (max-width: 47em) {
    .pd-l-15\:md {
      padding-left: 15px !important; } }
  @media (max-width: 59em) {
    .pd-l-15\:lg {
      padding-left: 15px !important; } }
  @media (max-width: 1270px) {
    .pd-l-15\:1270 {
      padding-left: 15px !important; } }

.pd-all-20 {
  padding: 20px; }
  @media (max-width: 27em) {
    .pd-all-20\:sm {
      padding: 20px !important; } }
  @media (max-width: 47em) {
    .pd-all-20\:md {
      padding: 20px !important; } }
  @media (max-width: 59em) {
    .pd-all-20\:lg {
      padding: 20px !important; } }
  @media (max-width: 1270px) {
    .pd-all-20\:1270 {
      padding: 20px !important; } }

.pd-h-20 {
  padding-right: 20px;
  padding-left: 20px; }
  @media (max-width: 27em) {
    .pd-h-20\:sm {
      padding-right: 20px !important;
      padding-left: 20px !important; } }
  @media (max-width: 47em) {
    .pd-h-20\:md {
      padding-right: 20px !important;
      padding-left: 20px !important; } }
  @media (max-width: 59em) {
    .pd-h-20\:lg {
      padding-right: 20px !important;
      padding-left: 20px !important; } }
  @media (max-width: 1270px) {
    .pd-h-20\:1270 {
      padding-right: 20px !important;
      padding-left: 20px !important; } }

.pd-v-20 {
  padding-top: 20px;
  padding-bottom: 20px; }
  @media (max-width: 27em) {
    .pd-v-20\:sm {
      padding-top: 20px !important;
      padding-bottom: 20px !important; } }
  @media (max-width: 47em) {
    .pd-v-20\:md {
      padding-top: 20px !important;
      padding-bottom: 20px !important; } }
  @media (max-width: 59em) {
    .pd-v-20\:lg {
      padding-top: 20px !important;
      padding-bottom: 20px !important; } }
  @media (max-width: 1270px) {
    .pd-v-20\:1270 {
      padding-top: 20px !important;
      padding-bottom: 20px !important; } }

.pd-t-20 {
  padding-top: 20px; }
  @media (max-width: 27em) {
    .pd-t-20\:sm {
      padding-top: 20px !important; } }
  @media (max-width: 47em) {
    .pd-t-20\:md {
      padding-top: 20px !important; } }
  @media (max-width: 59em) {
    .pd-t-20\:lg {
      padding-top: 20px !important; } }
  @media (max-width: 1270px) {
    .pd-t-20\:1270 {
      padding-top: 20px !important; } }

.pd-r-20 {
  padding-right: 20px; }
  @media (max-width: 27em) {
    .pd-r-20\:sm {
      padding-right: 20px !important; } }
  @media (max-width: 47em) {
    .pd-r-20\:md {
      padding-right: 20px !important; } }
  @media (max-width: 59em) {
    .pd-r-20\:lg {
      padding-right: 20px !important; } }
  @media (max-width: 1270px) {
    .pd-r-20\:1270 {
      padding-right: 20px !important; } }

.pd-b-20 {
  padding-bottom: 20px; }
  @media (max-width: 27em) {
    .pd-b-20\:sm {
      padding-bottom: 20px !important; } }
  @media (max-width: 47em) {
    .pd-b-20\:md {
      padding-bottom: 20px !important; } }
  @media (max-width: 59em) {
    .pd-b-20\:lg {
      padding-bottom: 20px !important; } }
  @media (max-width: 1270px) {
    .pd-b-20\:1270 {
      padding-bottom: 20px !important; } }

.pd-l-20 {
  padding-left: 20px; }
  @media (max-width: 27em) {
    .pd-l-20\:sm {
      padding-left: 20px !important; } }
  @media (max-width: 47em) {
    .pd-l-20\:md {
      padding-left: 20px !important; } }
  @media (max-width: 59em) {
    .pd-l-20\:lg {
      padding-left: 20px !important; } }
  @media (max-width: 1270px) {
    .pd-l-20\:1270 {
      padding-left: 20px !important; } }

.pd-all-25 {
  padding: 25px; }
  @media (max-width: 27em) {
    .pd-all-25\:sm {
      padding: 25px !important; } }
  @media (max-width: 47em) {
    .pd-all-25\:md {
      padding: 25px !important; } }
  @media (max-width: 59em) {
    .pd-all-25\:lg {
      padding: 25px !important; } }
  @media (max-width: 1270px) {
    .pd-all-25\:1270 {
      padding: 25px !important; } }

.pd-h-25 {
  padding-right: 25px;
  padding-left: 25px; }
  @media (max-width: 27em) {
    .pd-h-25\:sm {
      padding-right: 25px !important;
      padding-left: 25px !important; } }
  @media (max-width: 47em) {
    .pd-h-25\:md {
      padding-right: 25px !important;
      padding-left: 25px !important; } }
  @media (max-width: 59em) {
    .pd-h-25\:lg {
      padding-right: 25px !important;
      padding-left: 25px !important; } }
  @media (max-width: 1270px) {
    .pd-h-25\:1270 {
      padding-right: 25px !important;
      padding-left: 25px !important; } }

.pd-v-25 {
  padding-top: 25px;
  padding-bottom: 25px; }
  @media (max-width: 27em) {
    .pd-v-25\:sm {
      padding-top: 25px !important;
      padding-bottom: 25px !important; } }
  @media (max-width: 47em) {
    .pd-v-25\:md {
      padding-top: 25px !important;
      padding-bottom: 25px !important; } }
  @media (max-width: 59em) {
    .pd-v-25\:lg {
      padding-top: 25px !important;
      padding-bottom: 25px !important; } }
  @media (max-width: 1270px) {
    .pd-v-25\:1270 {
      padding-top: 25px !important;
      padding-bottom: 25px !important; } }

.pd-t-25 {
  padding-top: 25px; }
  @media (max-width: 27em) {
    .pd-t-25\:sm {
      padding-top: 25px !important; } }
  @media (max-width: 47em) {
    .pd-t-25\:md {
      padding-top: 25px !important; } }
  @media (max-width: 59em) {
    .pd-t-25\:lg {
      padding-top: 25px !important; } }
  @media (max-width: 1270px) {
    .pd-t-25\:1270 {
      padding-top: 25px !important; } }

.pd-r-25 {
  padding-right: 25px; }
  @media (max-width: 27em) {
    .pd-r-25\:sm {
      padding-right: 25px !important; } }
  @media (max-width: 47em) {
    .pd-r-25\:md {
      padding-right: 25px !important; } }
  @media (max-width: 59em) {
    .pd-r-25\:lg {
      padding-right: 25px !important; } }
  @media (max-width: 1270px) {
    .pd-r-25\:1270 {
      padding-right: 25px !important; } }

.pd-b-25 {
  padding-bottom: 25px; }
  @media (max-width: 27em) {
    .pd-b-25\:sm {
      padding-bottom: 25px !important; } }
  @media (max-width: 47em) {
    .pd-b-25\:md {
      padding-bottom: 25px !important; } }
  @media (max-width: 59em) {
    .pd-b-25\:lg {
      padding-bottom: 25px !important; } }
  @media (max-width: 1270px) {
    .pd-b-25\:1270 {
      padding-bottom: 25px !important; } }

.pd-l-25 {
  padding-left: 25px; }
  @media (max-width: 27em) {
    .pd-l-25\:sm {
      padding-left: 25px !important; } }
  @media (max-width: 47em) {
    .pd-l-25\:md {
      padding-left: 25px !important; } }
  @media (max-width: 59em) {
    .pd-l-25\:lg {
      padding-left: 25px !important; } }
  @media (max-width: 1270px) {
    .pd-l-25\:1270 {
      padding-left: 25px !important; } }

.pd-all-30 {
  padding: 30px; }
  @media (max-width: 27em) {
    .pd-all-30\:sm {
      padding: 30px !important; } }
  @media (max-width: 47em) {
    .pd-all-30\:md {
      padding: 30px !important; } }
  @media (max-width: 59em) {
    .pd-all-30\:lg {
      padding: 30px !important; } }
  @media (max-width: 1270px) {
    .pd-all-30\:1270 {
      padding: 30px !important; } }

.pd-h-30 {
  padding-right: 30px;
  padding-left: 30px; }
  @media (max-width: 27em) {
    .pd-h-30\:sm {
      padding-right: 30px !important;
      padding-left: 30px !important; } }
  @media (max-width: 47em) {
    .pd-h-30\:md {
      padding-right: 30px !important;
      padding-left: 30px !important; } }
  @media (max-width: 59em) {
    .pd-h-30\:lg {
      padding-right: 30px !important;
      padding-left: 30px !important; } }
  @media (max-width: 1270px) {
    .pd-h-30\:1270 {
      padding-right: 30px !important;
      padding-left: 30px !important; } }

.pd-v-30 {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (max-width: 27em) {
    .pd-v-30\:sm {
      padding-top: 30px !important;
      padding-bottom: 30px !important; } }
  @media (max-width: 47em) {
    .pd-v-30\:md {
      padding-top: 30px !important;
      padding-bottom: 30px !important; } }
  @media (max-width: 59em) {
    .pd-v-30\:lg {
      padding-top: 30px !important;
      padding-bottom: 30px !important; } }
  @media (max-width: 1270px) {
    .pd-v-30\:1270 {
      padding-top: 30px !important;
      padding-bottom: 30px !important; } }

.pd-t-30 {
  padding-top: 30px; }
  @media (max-width: 27em) {
    .pd-t-30\:sm {
      padding-top: 30px !important; } }
  @media (max-width: 47em) {
    .pd-t-30\:md {
      padding-top: 30px !important; } }
  @media (max-width: 59em) {
    .pd-t-30\:lg {
      padding-top: 30px !important; } }
  @media (max-width: 1270px) {
    .pd-t-30\:1270 {
      padding-top: 30px !important; } }

.pd-r-30 {
  padding-right: 30px; }
  @media (max-width: 27em) {
    .pd-r-30\:sm {
      padding-right: 30px !important; } }
  @media (max-width: 47em) {
    .pd-r-30\:md {
      padding-right: 30px !important; } }
  @media (max-width: 59em) {
    .pd-r-30\:lg {
      padding-right: 30px !important; } }
  @media (max-width: 1270px) {
    .pd-r-30\:1270 {
      padding-right: 30px !important; } }

.pd-b-30 {
  padding-bottom: 30px; }
  @media (max-width: 27em) {
    .pd-b-30\:sm {
      padding-bottom: 30px !important; } }
  @media (max-width: 47em) {
    .pd-b-30\:md {
      padding-bottom: 30px !important; } }
  @media (max-width: 59em) {
    .pd-b-30\:lg {
      padding-bottom: 30px !important; } }
  @media (max-width: 1270px) {
    .pd-b-30\:1270 {
      padding-bottom: 30px !important; } }

.pd-l-30 {
  padding-left: 30px; }
  @media (max-width: 27em) {
    .pd-l-30\:sm {
      padding-left: 30px !important; } }
  @media (max-width: 47em) {
    .pd-l-30\:md {
      padding-left: 30px !important; } }
  @media (max-width: 59em) {
    .pd-l-30\:lg {
      padding-left: 30px !important; } }
  @media (max-width: 1270px) {
    .pd-l-30\:1270 {
      padding-left: 30px !important; } }

.pd-all-35 {
  padding: 35px; }
  @media (max-width: 27em) {
    .pd-all-35\:sm {
      padding: 35px !important; } }
  @media (max-width: 47em) {
    .pd-all-35\:md {
      padding: 35px !important; } }
  @media (max-width: 59em) {
    .pd-all-35\:lg {
      padding: 35px !important; } }
  @media (max-width: 1270px) {
    .pd-all-35\:1270 {
      padding: 35px !important; } }

.pd-h-35 {
  padding-right: 35px;
  padding-left: 35px; }
  @media (max-width: 27em) {
    .pd-h-35\:sm {
      padding-right: 35px !important;
      padding-left: 35px !important; } }
  @media (max-width: 47em) {
    .pd-h-35\:md {
      padding-right: 35px !important;
      padding-left: 35px !important; } }
  @media (max-width: 59em) {
    .pd-h-35\:lg {
      padding-right: 35px !important;
      padding-left: 35px !important; } }
  @media (max-width: 1270px) {
    .pd-h-35\:1270 {
      padding-right: 35px !important;
      padding-left: 35px !important; } }

.pd-v-35 {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media (max-width: 27em) {
    .pd-v-35\:sm {
      padding-top: 35px !important;
      padding-bottom: 35px !important; } }
  @media (max-width: 47em) {
    .pd-v-35\:md {
      padding-top: 35px !important;
      padding-bottom: 35px !important; } }
  @media (max-width: 59em) {
    .pd-v-35\:lg {
      padding-top: 35px !important;
      padding-bottom: 35px !important; } }
  @media (max-width: 1270px) {
    .pd-v-35\:1270 {
      padding-top: 35px !important;
      padding-bottom: 35px !important; } }

.pd-t-35 {
  padding-top: 35px; }
  @media (max-width: 27em) {
    .pd-t-35\:sm {
      padding-top: 35px !important; } }
  @media (max-width: 47em) {
    .pd-t-35\:md {
      padding-top: 35px !important; } }
  @media (max-width: 59em) {
    .pd-t-35\:lg {
      padding-top: 35px !important; } }
  @media (max-width: 1270px) {
    .pd-t-35\:1270 {
      padding-top: 35px !important; } }

.pd-r-35 {
  padding-right: 35px; }
  @media (max-width: 27em) {
    .pd-r-35\:sm {
      padding-right: 35px !important; } }
  @media (max-width: 47em) {
    .pd-r-35\:md {
      padding-right: 35px !important; } }
  @media (max-width: 59em) {
    .pd-r-35\:lg {
      padding-right: 35px !important; } }
  @media (max-width: 1270px) {
    .pd-r-35\:1270 {
      padding-right: 35px !important; } }

.pd-b-35 {
  padding-bottom: 35px; }
  @media (max-width: 27em) {
    .pd-b-35\:sm {
      padding-bottom: 35px !important; } }
  @media (max-width: 47em) {
    .pd-b-35\:md {
      padding-bottom: 35px !important; } }
  @media (max-width: 59em) {
    .pd-b-35\:lg {
      padding-bottom: 35px !important; } }
  @media (max-width: 1270px) {
    .pd-b-35\:1270 {
      padding-bottom: 35px !important; } }

.pd-l-35 {
  padding-left: 35px; }
  @media (max-width: 27em) {
    .pd-l-35\:sm {
      padding-left: 35px !important; } }
  @media (max-width: 47em) {
    .pd-l-35\:md {
      padding-left: 35px !important; } }
  @media (max-width: 59em) {
    .pd-l-35\:lg {
      padding-left: 35px !important; } }
  @media (max-width: 1270px) {
    .pd-l-35\:1270 {
      padding-left: 35px !important; } }

.pd-all-40 {
  padding: 40px; }
  @media (max-width: 27em) {
    .pd-all-40\:sm {
      padding: 40px !important; } }
  @media (max-width: 47em) {
    .pd-all-40\:md {
      padding: 40px !important; } }
  @media (max-width: 59em) {
    .pd-all-40\:lg {
      padding: 40px !important; } }
  @media (max-width: 1270px) {
    .pd-all-40\:1270 {
      padding: 40px !important; } }

.pd-h-40 {
  padding-right: 40px;
  padding-left: 40px; }
  @media (max-width: 27em) {
    .pd-h-40\:sm {
      padding-right: 40px !important;
      padding-left: 40px !important; } }
  @media (max-width: 47em) {
    .pd-h-40\:md {
      padding-right: 40px !important;
      padding-left: 40px !important; } }
  @media (max-width: 59em) {
    .pd-h-40\:lg {
      padding-right: 40px !important;
      padding-left: 40px !important; } }
  @media (max-width: 1270px) {
    .pd-h-40\:1270 {
      padding-right: 40px !important;
      padding-left: 40px !important; } }

.pd-v-40 {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media (max-width: 27em) {
    .pd-v-40\:sm {
      padding-top: 40px !important;
      padding-bottom: 40px !important; } }
  @media (max-width: 47em) {
    .pd-v-40\:md {
      padding-top: 40px !important;
      padding-bottom: 40px !important; } }
  @media (max-width: 59em) {
    .pd-v-40\:lg {
      padding-top: 40px !important;
      padding-bottom: 40px !important; } }
  @media (max-width: 1270px) {
    .pd-v-40\:1270 {
      padding-top: 40px !important;
      padding-bottom: 40px !important; } }

.pd-t-40 {
  padding-top: 40px; }
  @media (max-width: 27em) {
    .pd-t-40\:sm {
      padding-top: 40px !important; } }
  @media (max-width: 47em) {
    .pd-t-40\:md {
      padding-top: 40px !important; } }
  @media (max-width: 59em) {
    .pd-t-40\:lg {
      padding-top: 40px !important; } }
  @media (max-width: 1270px) {
    .pd-t-40\:1270 {
      padding-top: 40px !important; } }

.pd-r-40 {
  padding-right: 40px; }
  @media (max-width: 27em) {
    .pd-r-40\:sm {
      padding-right: 40px !important; } }
  @media (max-width: 47em) {
    .pd-r-40\:md {
      padding-right: 40px !important; } }
  @media (max-width: 59em) {
    .pd-r-40\:lg {
      padding-right: 40px !important; } }
  @media (max-width: 1270px) {
    .pd-r-40\:1270 {
      padding-right: 40px !important; } }

.pd-b-40 {
  padding-bottom: 40px; }
  @media (max-width: 27em) {
    .pd-b-40\:sm {
      padding-bottom: 40px !important; } }
  @media (max-width: 47em) {
    .pd-b-40\:md {
      padding-bottom: 40px !important; } }
  @media (max-width: 59em) {
    .pd-b-40\:lg {
      padding-bottom: 40px !important; } }
  @media (max-width: 1270px) {
    .pd-b-40\:1270 {
      padding-bottom: 40px !important; } }

.pd-l-40 {
  padding-left: 40px; }
  @media (max-width: 27em) {
    .pd-l-40\:sm {
      padding-left: 40px !important; } }
  @media (max-width: 47em) {
    .pd-l-40\:md {
      padding-left: 40px !important; } }
  @media (max-width: 59em) {
    .pd-l-40\:lg {
      padding-left: 40px !important; } }
  @media (max-width: 1270px) {
    .pd-l-40\:1270 {
      padding-left: 40px !important; } }

.pd-all-45 {
  padding: 45px; }
  @media (max-width: 27em) {
    .pd-all-45\:sm {
      padding: 45px !important; } }
  @media (max-width: 47em) {
    .pd-all-45\:md {
      padding: 45px !important; } }
  @media (max-width: 59em) {
    .pd-all-45\:lg {
      padding: 45px !important; } }
  @media (max-width: 1270px) {
    .pd-all-45\:1270 {
      padding: 45px !important; } }

.pd-h-45 {
  padding-right: 45px;
  padding-left: 45px; }
  @media (max-width: 27em) {
    .pd-h-45\:sm {
      padding-right: 45px !important;
      padding-left: 45px !important; } }
  @media (max-width: 47em) {
    .pd-h-45\:md {
      padding-right: 45px !important;
      padding-left: 45px !important; } }
  @media (max-width: 59em) {
    .pd-h-45\:lg {
      padding-right: 45px !important;
      padding-left: 45px !important; } }
  @media (max-width: 1270px) {
    .pd-h-45\:1270 {
      padding-right: 45px !important;
      padding-left: 45px !important; } }

.pd-v-45 {
  padding-top: 45px;
  padding-bottom: 45px; }
  @media (max-width: 27em) {
    .pd-v-45\:sm {
      padding-top: 45px !important;
      padding-bottom: 45px !important; } }
  @media (max-width: 47em) {
    .pd-v-45\:md {
      padding-top: 45px !important;
      padding-bottom: 45px !important; } }
  @media (max-width: 59em) {
    .pd-v-45\:lg {
      padding-top: 45px !important;
      padding-bottom: 45px !important; } }
  @media (max-width: 1270px) {
    .pd-v-45\:1270 {
      padding-top: 45px !important;
      padding-bottom: 45px !important; } }

.pd-t-45 {
  padding-top: 45px; }
  @media (max-width: 27em) {
    .pd-t-45\:sm {
      padding-top: 45px !important; } }
  @media (max-width: 47em) {
    .pd-t-45\:md {
      padding-top: 45px !important; } }
  @media (max-width: 59em) {
    .pd-t-45\:lg {
      padding-top: 45px !important; } }
  @media (max-width: 1270px) {
    .pd-t-45\:1270 {
      padding-top: 45px !important; } }

.pd-r-45 {
  padding-right: 45px; }
  @media (max-width: 27em) {
    .pd-r-45\:sm {
      padding-right: 45px !important; } }
  @media (max-width: 47em) {
    .pd-r-45\:md {
      padding-right: 45px !important; } }
  @media (max-width: 59em) {
    .pd-r-45\:lg {
      padding-right: 45px !important; } }
  @media (max-width: 1270px) {
    .pd-r-45\:1270 {
      padding-right: 45px !important; } }

.pd-b-45 {
  padding-bottom: 45px; }
  @media (max-width: 27em) {
    .pd-b-45\:sm {
      padding-bottom: 45px !important; } }
  @media (max-width: 47em) {
    .pd-b-45\:md {
      padding-bottom: 45px !important; } }
  @media (max-width: 59em) {
    .pd-b-45\:lg {
      padding-bottom: 45px !important; } }
  @media (max-width: 1270px) {
    .pd-b-45\:1270 {
      padding-bottom: 45px !important; } }

.pd-l-45 {
  padding-left: 45px; }
  @media (max-width: 27em) {
    .pd-l-45\:sm {
      padding-left: 45px !important; } }
  @media (max-width: 47em) {
    .pd-l-45\:md {
      padding-left: 45px !important; } }
  @media (max-width: 59em) {
    .pd-l-45\:lg {
      padding-left: 45px !important; } }
  @media (max-width: 1270px) {
    .pd-l-45\:1270 {
      padding-left: 45px !important; } }

.pd-all-50 {
  padding: 50px; }
  @media (max-width: 27em) {
    .pd-all-50\:sm {
      padding: 50px !important; } }
  @media (max-width: 47em) {
    .pd-all-50\:md {
      padding: 50px !important; } }
  @media (max-width: 59em) {
    .pd-all-50\:lg {
      padding: 50px !important; } }
  @media (max-width: 1270px) {
    .pd-all-50\:1270 {
      padding: 50px !important; } }

.pd-h-50 {
  padding-right: 50px;
  padding-left: 50px; }
  @media (max-width: 27em) {
    .pd-h-50\:sm {
      padding-right: 50px !important;
      padding-left: 50px !important; } }
  @media (max-width: 47em) {
    .pd-h-50\:md {
      padding-right: 50px !important;
      padding-left: 50px !important; } }
  @media (max-width: 59em) {
    .pd-h-50\:lg {
      padding-right: 50px !important;
      padding-left: 50px !important; } }
  @media (max-width: 1270px) {
    .pd-h-50\:1270 {
      padding-right: 50px !important;
      padding-left: 50px !important; } }

.pd-v-50 {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media (max-width: 27em) {
    .pd-v-50\:sm {
      padding-top: 50px !important;
      padding-bottom: 50px !important; } }
  @media (max-width: 47em) {
    .pd-v-50\:md {
      padding-top: 50px !important;
      padding-bottom: 50px !important; } }
  @media (max-width: 59em) {
    .pd-v-50\:lg {
      padding-top: 50px !important;
      padding-bottom: 50px !important; } }
  @media (max-width: 1270px) {
    .pd-v-50\:1270 {
      padding-top: 50px !important;
      padding-bottom: 50px !important; } }

.pd-t-50 {
  padding-top: 50px; }
  @media (max-width: 27em) {
    .pd-t-50\:sm {
      padding-top: 50px !important; } }
  @media (max-width: 47em) {
    .pd-t-50\:md {
      padding-top: 50px !important; } }
  @media (max-width: 59em) {
    .pd-t-50\:lg {
      padding-top: 50px !important; } }
  @media (max-width: 1270px) {
    .pd-t-50\:1270 {
      padding-top: 50px !important; } }

.pd-r-50 {
  padding-right: 50px; }
  @media (max-width: 27em) {
    .pd-r-50\:sm {
      padding-right: 50px !important; } }
  @media (max-width: 47em) {
    .pd-r-50\:md {
      padding-right: 50px !important; } }
  @media (max-width: 59em) {
    .pd-r-50\:lg {
      padding-right: 50px !important; } }
  @media (max-width: 1270px) {
    .pd-r-50\:1270 {
      padding-right: 50px !important; } }

.pd-b-50 {
  padding-bottom: 50px; }
  @media (max-width: 27em) {
    .pd-b-50\:sm {
      padding-bottom: 50px !important; } }
  @media (max-width: 47em) {
    .pd-b-50\:md {
      padding-bottom: 50px !important; } }
  @media (max-width: 59em) {
    .pd-b-50\:lg {
      padding-bottom: 50px !important; } }
  @media (max-width: 1270px) {
    .pd-b-50\:1270 {
      padding-bottom: 50px !important; } }

.pd-l-50 {
  padding-left: 50px; }
  @media (max-width: 27em) {
    .pd-l-50\:sm {
      padding-left: 50px !important; } }
  @media (max-width: 47em) {
    .pd-l-50\:md {
      padding-left: 50px !important; } }
  @media (max-width: 59em) {
    .pd-l-50\:lg {
      padding-left: 50px !important; } }
  @media (max-width: 1270px) {
    .pd-l-50\:1270 {
      padding-left: 50px !important; } }

.pd-all-55 {
  padding: 55px; }
  @media (max-width: 27em) {
    .pd-all-55\:sm {
      padding: 55px !important; } }
  @media (max-width: 47em) {
    .pd-all-55\:md {
      padding: 55px !important; } }
  @media (max-width: 59em) {
    .pd-all-55\:lg {
      padding: 55px !important; } }
  @media (max-width: 1270px) {
    .pd-all-55\:1270 {
      padding: 55px !important; } }

.pd-h-55 {
  padding-right: 55px;
  padding-left: 55px; }
  @media (max-width: 27em) {
    .pd-h-55\:sm {
      padding-right: 55px !important;
      padding-left: 55px !important; } }
  @media (max-width: 47em) {
    .pd-h-55\:md {
      padding-right: 55px !important;
      padding-left: 55px !important; } }
  @media (max-width: 59em) {
    .pd-h-55\:lg {
      padding-right: 55px !important;
      padding-left: 55px !important; } }
  @media (max-width: 1270px) {
    .pd-h-55\:1270 {
      padding-right: 55px !important;
      padding-left: 55px !important; } }

.pd-v-55 {
  padding-top: 55px;
  padding-bottom: 55px; }
  @media (max-width: 27em) {
    .pd-v-55\:sm {
      padding-top: 55px !important;
      padding-bottom: 55px !important; } }
  @media (max-width: 47em) {
    .pd-v-55\:md {
      padding-top: 55px !important;
      padding-bottom: 55px !important; } }
  @media (max-width: 59em) {
    .pd-v-55\:lg {
      padding-top: 55px !important;
      padding-bottom: 55px !important; } }
  @media (max-width: 1270px) {
    .pd-v-55\:1270 {
      padding-top: 55px !important;
      padding-bottom: 55px !important; } }

.pd-t-55 {
  padding-top: 55px; }
  @media (max-width: 27em) {
    .pd-t-55\:sm {
      padding-top: 55px !important; } }
  @media (max-width: 47em) {
    .pd-t-55\:md {
      padding-top: 55px !important; } }
  @media (max-width: 59em) {
    .pd-t-55\:lg {
      padding-top: 55px !important; } }
  @media (max-width: 1270px) {
    .pd-t-55\:1270 {
      padding-top: 55px !important; } }

.pd-r-55 {
  padding-right: 55px; }
  @media (max-width: 27em) {
    .pd-r-55\:sm {
      padding-right: 55px !important; } }
  @media (max-width: 47em) {
    .pd-r-55\:md {
      padding-right: 55px !important; } }
  @media (max-width: 59em) {
    .pd-r-55\:lg {
      padding-right: 55px !important; } }
  @media (max-width: 1270px) {
    .pd-r-55\:1270 {
      padding-right: 55px !important; } }

.pd-b-55 {
  padding-bottom: 55px; }
  @media (max-width: 27em) {
    .pd-b-55\:sm {
      padding-bottom: 55px !important; } }
  @media (max-width: 47em) {
    .pd-b-55\:md {
      padding-bottom: 55px !important; } }
  @media (max-width: 59em) {
    .pd-b-55\:lg {
      padding-bottom: 55px !important; } }
  @media (max-width: 1270px) {
    .pd-b-55\:1270 {
      padding-bottom: 55px !important; } }

.pd-l-55 {
  padding-left: 55px; }
  @media (max-width: 27em) {
    .pd-l-55\:sm {
      padding-left: 55px !important; } }
  @media (max-width: 47em) {
    .pd-l-55\:md {
      padding-left: 55px !important; } }
  @media (max-width: 59em) {
    .pd-l-55\:lg {
      padding-left: 55px !important; } }
  @media (max-width: 1270px) {
    .pd-l-55\:1270 {
      padding-left: 55px !important; } }

.pd-all-60 {
  padding: 60px; }
  @media (max-width: 27em) {
    .pd-all-60\:sm {
      padding: 60px !important; } }
  @media (max-width: 47em) {
    .pd-all-60\:md {
      padding: 60px !important; } }
  @media (max-width: 59em) {
    .pd-all-60\:lg {
      padding: 60px !important; } }
  @media (max-width: 1270px) {
    .pd-all-60\:1270 {
      padding: 60px !important; } }

.pd-h-60 {
  padding-right: 60px;
  padding-left: 60px; }
  @media (max-width: 27em) {
    .pd-h-60\:sm {
      padding-right: 60px !important;
      padding-left: 60px !important; } }
  @media (max-width: 47em) {
    .pd-h-60\:md {
      padding-right: 60px !important;
      padding-left: 60px !important; } }
  @media (max-width: 59em) {
    .pd-h-60\:lg {
      padding-right: 60px !important;
      padding-left: 60px !important; } }
  @media (max-width: 1270px) {
    .pd-h-60\:1270 {
      padding-right: 60px !important;
      padding-left: 60px !important; } }

.pd-v-60 {
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 27em) {
    .pd-v-60\:sm {
      padding-top: 60px !important;
      padding-bottom: 60px !important; } }
  @media (max-width: 47em) {
    .pd-v-60\:md {
      padding-top: 60px !important;
      padding-bottom: 60px !important; } }
  @media (max-width: 59em) {
    .pd-v-60\:lg {
      padding-top: 60px !important;
      padding-bottom: 60px !important; } }
  @media (max-width: 1270px) {
    .pd-v-60\:1270 {
      padding-top: 60px !important;
      padding-bottom: 60px !important; } }

.pd-t-60 {
  padding-top: 60px; }
  @media (max-width: 27em) {
    .pd-t-60\:sm {
      padding-top: 60px !important; } }
  @media (max-width: 47em) {
    .pd-t-60\:md {
      padding-top: 60px !important; } }
  @media (max-width: 59em) {
    .pd-t-60\:lg {
      padding-top: 60px !important; } }
  @media (max-width: 1270px) {
    .pd-t-60\:1270 {
      padding-top: 60px !important; } }

.pd-r-60 {
  padding-right: 60px; }
  @media (max-width: 27em) {
    .pd-r-60\:sm {
      padding-right: 60px !important; } }
  @media (max-width: 47em) {
    .pd-r-60\:md {
      padding-right: 60px !important; } }
  @media (max-width: 59em) {
    .pd-r-60\:lg {
      padding-right: 60px !important; } }
  @media (max-width: 1270px) {
    .pd-r-60\:1270 {
      padding-right: 60px !important; } }

.pd-b-60 {
  padding-bottom: 60px; }
  @media (max-width: 27em) {
    .pd-b-60\:sm {
      padding-bottom: 60px !important; } }
  @media (max-width: 47em) {
    .pd-b-60\:md {
      padding-bottom: 60px !important; } }
  @media (max-width: 59em) {
    .pd-b-60\:lg {
      padding-bottom: 60px !important; } }
  @media (max-width: 1270px) {
    .pd-b-60\:1270 {
      padding-bottom: 60px !important; } }

.pd-l-60 {
  padding-left: 60px; }
  @media (max-width: 27em) {
    .pd-l-60\:sm {
      padding-left: 60px !important; } }
  @media (max-width: 47em) {
    .pd-l-60\:md {
      padding-left: 60px !important; } }
  @media (max-width: 59em) {
    .pd-l-60\:lg {
      padding-left: 60px !important; } }
  @media (max-width: 1270px) {
    .pd-l-60\:1270 {
      padding-left: 60px !important; } }

/*------------------------------------*\
    #COMPONENTS
\*------------------------------------*/
/*------------------------------------*\
    #TABLE OF CONTENTS
\*------------------------------------*/
/**
 * MOLECULES..............................Smaller components that can be used in more complex components
 * ORGANISMS..............................More complex components
 */
/*------------------------------------*\
    #MOLECULES
\*------------------------------------*/
/*------------------------------------*\
    #FIELDS
\*------------------------------------*/
/**
 * 1) Consists of a label, form control, and an optional note about the field.
 */
.c-field {
  margin-bottom: 2rem; }

/**
 * Field label
 */
.c-field__label {
  margin-bottom: 0.25rem;
  font-size: 18px;
  font-weight: bold; }

/**
 * Field body
 */
.c-field__body {
  position: relative; }

/**
 * Field note
 */
.c-field__note {
  display: inline-block;
  font-size: 14px; }

.c-field__fieldset {
  display: block;
  position: relative;
  padding: 30px;
  border: solid 1px #e2eded; }

.c-field__legend {
  text-transform: uppercase;
  color: #363636;
  text-align: center;
  background: #fff;
  margin: auto;
  font-size: 12px;
  font-weight: 700;
  padding: 0 30px;
  line-height: 12px; }

.c-field__fieldset > label, .c-field__fieldset > .g-recaptcha {
  margin-top: 2rem; }

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  text-indent: 9999px; }

.c-form-group {
  text-align: left;
  margin-bottom: 1rem; }
  @media (min-width: 48em) {
    .c-form-group--inline {
      margin-bottom: 0; } }
  .c-form-group--full {
    width: 100%; }
  .c-form-group__date-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); }
    .c-form-group__date-wrapper--small {
      grid-template-columns: repeat(2, minmax(90px, 0.5fr)); }

.c-date-field {
  text-align: center; }

.c-simple-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.c-simple-search__input {
  border: none; }
  @media (min-width: 60em) {
    .c-simple-search__input {
      border: 1px solid #C2D1D9; } }

.c-form-wrapper {
  max-width: 660px;
  margin: 0 auto; }
  .c-form-wrapper__content--top {
    max-width: 470px;
    text-align: center;
    margin: 0 auto 30px; }
  .c-form-wrapper__content--bottom {
    margin-top: 30px; }
  .c-form-wrapper__inner {
    padding: 2.5rem;
    border: 1px solid #C2D1D9;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .c-form-wrapper__inner-header {
    position: absolute;
    top: -10px;
    padding: 0 40px;
    background: #fff; }
    .c-form-wrapper__inner-header p {
      font-size: 12px;
      text-transform: uppercase;
      color: #363636;
      font-weight: bold; }
  .c-form-wrapper__guest-content {
    display: block; }
    @media (min-width: 28em) {
      .c-form-wrapper__guest-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }

.c-form-wrapper__inner-form {
  width: 100%; }

form .inline-btn {
  display: inline-block;
  width: auto;
  margin-right: 20px;
  margin-top: 20px; }

/*------------------------------------*\
    #LOGO
\*------------------------------------*/
/**
 * Branding image or text of the site
 */
.c-logo {
  max-width: 11rem; }
  .c-logo--mobile {
    margin: 2rem 0;
    max-width: 15rem; }
  .c-logo--footer {
    margin: 0 auto 1rem; }
    @media (min-width: 48em) {
      .c-logo--footer {
        margin: 0 0 1rem; } }

/**
 * Logo link
 */
.c-logo__link {
  display: block; }

/**
 * Logo image
 */
.c-logo__img {
  display: block; }

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
/**
 *
 * 1) Button or link that has functionality to it
 */
.c-btn {
  display: inline-block;
  border-radius: 0;
  line-height: 1;
  font-weight: bold;
  font-size: 0.8125rem;
  padding: 1rem 2rem;
  border: 1px solid;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }
  @media (min-width: 28em) {
    .c-btn {
      font-size: 1rem; } }

/**
 *
 * 1) Loop through button color map and output colors and states accordingly. Color map is defined in _settings.colors.scss
 */
.c-btn--primary {
  background: #ECFC2B;
  color: #066F61;
  border-color: #ECFC2B;
  -webkit-box-shadow: 0 1px 3px 0 #C2D1D9;
          box-shadow: 0 1px 3px 0 #C2D1D9; }
  .c-btn--primary:visited {
    color: #066F61; }
  .c-btn--primary:hover {
    -webkit-box-shadow: 0 3px 9px 0 #C2D1D9;
            box-shadow: 0 3px 9px 0 #C2D1D9;
    color: #066F61; }

.c-btn--secondary {
  background: #fff;
  color: #363636;
  border-color: #34CA9D;
  -webkit-box-shadow: none;
          box-shadow: none;
  /**
            * Overwrite the color for the secondary icon color;
            */ }
  .c-btn--secondary:visited {
    color: #363636; }
  .c-btn--secondary:hover {
    -webkit-box-shadow: 0 3px 9px 0 #34CA9D;
            box-shadow: 0 3px 9px 0 #34CA9D;
    color: #363636; }
  .c-btn--secondary .c-btn__icon {
    color: #34CA9D; }

/**
 *
 * 1) Sizing for buttons. Adjusts font size as well as padding
 */
.c-btn--noshadow {
  -webkit-box-shadow: none;
          box-shadow: none; }

/**
 *
 * 1) Sizing for buttons. Adjusts font size as well as padding
 */
.c-btn--small {
  padding: 1rem;
  font-size: 0.8125rem; }

/*
 * Inner container wrapper
 * 1) Container is direct decendant of <button>, since there's
 *    a bug with applying flexbox directly to a <button>
 * 2) Only needs to be used for buttons containing both icons and text
 */
.c-btn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

/*
 * Button Icon
 * 1) Add margin to icon depending on side
 * 2) Color for the icon is determined above;
 */
.c-btn__icon {
  margin-right: 0.5rem; }
  .c-btn__icon--right {
    margin-right: 0;
    margin-left: 0.5rem; }

/*------------------------------------*\
    #LINK BUTTONS
\*------------------------------------*/
/**
 * Link style that appends an arrow. This is more of a featured link style without being an actual button.
 */
.c-link-btn {
  position: relative;
  padding-right: 1.5rem;
  color: #363636;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .c-link-btn:after {
    content: "\f061";
    position: absolute;
    right: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    margin-left: 0.5rem;
    color: #099380;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .c-link-btn:hover, .c-link-btn:visited {
    color: #099380; }
  .c-link-btn:hover:after {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px); }

/**
 * Link style that appends an arrow. Is styled more similarily to a default link
 * 1. Modifiers: --invert => Changes color to white.
 */
.c-arrow-link {
  display: inline-block;
  position: relative;
  padding-right: 1.5rem;
  font-weight: 700;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer; }
  .c-arrow-link:after {
    display: inline-block;
    vertical-align: top;
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    margin-left: 2rem;
    color: currentColor;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .c-arrow-link:hover:after {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px); }
  .c-arrow-link--invert {
    color: #fff; }
    .c-arrow-link--invert:hover {
      color: #fff; }
  .c-arrow-link.c-arrow-link--block {
    display: block;
    width: 100%; }

/**/
.c-arrow-link {
  display: inline-block;
  text-decoration: none; }
  .c-arrow-link--full {
    position: relative;
    padding: 30px 70px 30px 45px; }
    .c-arrow-link--full:before {
      content: '';
      display: block;
      position: absolute;
      right: 0;
      top: 15px;
      bottom: 15px;
      width: 2px;
      background-color: #40a787; }
    .c-arrow-link--full:after {
      position: absolute;
      right: 30px;
      top: 50%;
      -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
              transform: translate(0, -50%);
      color: #fff; }
    .c-arrow-link--full:hover:after {
      -webkit-transform: translate(7px, -50%);
          -ms-transform: translate(7px, -50%);
              transform: translate(7px, -50%); }
    .c-arrow-link--full:last-child:before {
      display: none;
      content: none; }
    @media (max-width: 959px) {
      .c-arrow-link--full {
        padding: 45px 80px 45px 30px; }
        .c-arrow-link--full:before {
          right: 0;
          top: initial;
          width: initial;
          height: 2px;
          right: 30px;
          left: 30px;
          bottom: 0; } }
  .c-arrow-link--full .c-arrow-link__title {
    font-size: calc(1.25625rem + 0.075vw);
    font-weight: 700;
    line-height: 1.47;
    color: #fff; }
    @media (min-width: 1200px) {
      .c-arrow-link--full .c-arrow-link__title {
        font-size: 1.3125rem; } }
  .c-arrow-link--full .c-arrow-link__desc {
    margin: 0;
    color: #fff;
    font-weight: normal; }
  .c-arrow-link.c-arrow-link--link {
    padding: 0;
    background-color: transparent;
    color: #1C72AB;
    font-weight: normal; }
    .c-arrow-link.c-arrow-link--link:after {
      vertical-align: middle;
      display: inline-block;
      margin: 0 0 0 5px;
      font-size: 14px; }
  .c-arrow-link--center {
    text-align: center;
    padding: 0; }
    .c-arrow-link--center:after {
      margin: 0 0 0 5px; }

/*------------------------------------*\
    #TABLE OF CONTENTS
\*------------------------------------*/
/**
 * FONT FACES.............................Generate font families
 * ASSIGMENTS.............................Assign icons from variables to the helper classes
 */
/*------------------------------------*\
    #ICON FONT FACES
\*------------------------------------*/
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../../fonts/fa-brands-400.eot");
  src: url("../../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../../fonts/fa-brands-400.woff2") format("woff2"), url("../../fonts/fa-brands-400.woff") format("woff"), url("../../fonts/fa-brands-400.ttf") format("truetype"), url("../../fonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../../fonts/fa-regular-400.eot");
  src: url("../../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../../fonts/fa-regular-400.woff2") format("woff2"), url("../../fonts/fa-regular-400.woff") format("woff"), url("../../fonts/fa-regular-400.ttf") format("truetype"), url("../../fonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../../fonts/fa-solid-900.eot");
  src: url("../../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../../fonts/fa-solid-900.woff2") format("woff2"), url("../../fonts/fa-solid-900.woff") format("woff"), url("../../fonts/fa-solid-900.ttf") format("truetype"), url("../../fonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-style: normal; }

/*------------------------------------*\
    #ICON ASSIGNMENT
\*------------------------------------*/
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adobe:before {
  content: "\f778"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\f95b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\f952"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\f905"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\f907"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\f95c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-sparkles:before {
  content: "\f95d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\f95e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\f95f"; }

.fa-handshake-slash:before {
  content: "\f960"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\f961"; }

.fa-head-side-cough-slash:before {
  content: "\f962"; }

.fa-head-side-mask:before {
  content: "\f963"; }

.fa-head-side-virus:before {
  content: "\f964"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\f965"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\f913"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\f955"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\f966"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\f967"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\f91a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\f956"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\f968"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\f91e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\f969"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\f96a"; }

.fa-pump-soap:before {
  content: "\f96b"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-virus:before {
  content: "\f96c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\f957"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\f96e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\f96f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\f970"; }

.fa-store-slash:before {
  content: "\f971"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\f972"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\f941"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\f949"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\f974"; }

.fa-virus-slash:before {
  content: "\f975"; }

.fa-viruses:before {
  content: "\f976"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

/*------------------------------------*\
    #ICON BUTTONS
\*------------------------------------*/
/**
 *
 * 1) This is a circular button/link that contains only an icon. Ex. Social media links
 */
.c-icon-btn {
  display: inline-block;
  border-radius: 100%;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  text-align: center;
  font-size: 0.875rem;
  background: #fff;
  color: #34CA9D;
  border: 1px solid #34CA9D;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s; }
  .c-icon-btn:hover, .c-icon-btn:focus {
    background: #34CA9D;
    color: #fff; }
  .c-icon-btn:visited {
    background: #fff;
    color: #34CA9D; }
  .c-icon-btn--facebook {
    background: #3B5998;
    border-color: #3B5998;
    color: #fff; }
    .c-icon-btn--facebook:hover, .c-icon-btn--facebook:focus, .c-icon-btn--facebook:visited {
      background: #3B5998;
      color: #fff; }
  .c-icon-btn--twitter {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: #fff; }
    .c-icon-btn--twitter:hover, .c-icon-btn--twitter:focus, .c-icon-btn--twitter:visited {
      background: #1DA1F2;
      color: #fff; }
  .c-icon-btn--general {
    background: #707A85;
    border-color: #707A85;
    color: #fff; }
    .c-icon-btn--general:hover, .c-icon-btn--general:focus, .c-icon-btn--general:visited {
      background: #707A85;
      color: #fff; }

/**
 * 1) This is an icon button that has a custom large play icon on the left. Seen in the img-break molecule
 */
.c-play-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
  margin-right: 2rem; }
  .c-play-btn--invert {
    color: #fff; }
    .c-play-btn--invert:hover {
      color: #fff; }
  .c-play-btn:hover .c-play-btn__icon {
    background: #ECFC2B;
    color: #363636; }

.c-play-btn__icon {
  display: inline-block;
  border-radius: 100%;
  margin-right: 1rem;
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.55rem;
  text-align: center;
  border: 3px solid #ECFC2B;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s; }

.c-close-btn {
  display: inline-block;
  line-height: 1;
  padding: 1rem;
  color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #068473;
  border: none; }
  .c-close-btn:hover {
    background: #066F61; }
  .c-close-btn--link {
    color: #068473;
    background: none;
    padding: 0;
    vertical-align: middle; }
    .c-close-btn--link:hover {
      background: none;
      color: #066F61; }
  .c-close-btn--fixed {
    position: absolute;
    top: 0;
    right: 0; }

/*------------------------------------*\
    #ICON BLOCK
\*------------------------------------*/
.c-icon-block-grid {
  display: grid;
  grid-gap: 1.5vw;
  grid-template-columns: 1fr 1fr;
  margin: 0 -1.5rem; }
  .c-icon-block-grid--one {
    grid-template-columns: 1fr; }
    @media (min-width: 48em) {
      .c-icon-block-grid--one {
        grid-template-columns: 1fr 1fr; } }
  @media (min-width: 60em) {
    .c-icon-block-grid--4up {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }

.c-icon-block-grid--nospace {
  grid-gap: 0; }

.ie11 .c-icon-block-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .ie11 .c-icon-block-grid > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .ie11 .c-icon-block-grid--one > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  @media (min-width: 48em) {
    .ie11 .c-icon-block-grid--one {
      margin: 0 -15px; }
      .ie11 .c-icon-block-grid--one > * {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(50% - 30px);
                flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
        margin: 0 15px; } }
  @media (min-width: 60em) {
    .ie11 .c-icon-block-grid--4up {
      margin: 0 -15px; }
      .ie11 .c-icon-block-grid--4up > * {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(25% - 30px);
                flex: 0 0 calc(25% - 30px);
        max-width: calc(25% - 30px);
        margin: 0 15px; } }

/**
 * Icon block container. Holds icon, title and content.
 * 1. Modifiers: --hover => Adds a larger dropshadow to the block on hover
 *               --arrow => Adds a green arrow to the block at all times.
 */
.c-icon-block {
  position: relative;
  display: block; }
  .c-icon-block > p {
    margin-bottom: 0; }
  .c-icon-block--hover {
    padding: 0.5rem 1rem;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s; }
    .c-icon-block--hover:after {
      position: absolute;
      right: 3rem;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      content: "\f061";
      font-family: 'Font Awesome 5 Free';
      font-weight: 700;
      font-size: 1.25rem;
      color: #099380;
      opacity: 0;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .c-icon-block--hover:hover {
      background: #fff;
      -webkit-box-shadow: 10px 20px 30px 0 rgba(134, 134, 134, 0.15);
              box-shadow: 10px 20px 30px 0 rgba(134, 134, 134, 0.15); }
    @media (min-width: 48em) {
      .c-icon-block--hover {
        padding: 1.5rem 20px;
        padding-right: 4rem; }
        .c-icon-block--hover:hover:after {
          opacity: 1;
          right: 2rem; } }
  .c-icon-block--hover-title {
    position: relative;
    padding: 1rem 1rem;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s; }
    .c-icon-block--hover-title:hover {
      background: #fff;
      -webkit-box-shadow: 10px 20px 30px 0 rgba(134, 134, 134, 0.15);
              box-shadow: 10px 20px 30px 0 rgba(134, 134, 134, 0.15); }
    .c-icon-block--hover-title p {
      font-size: 14px; }
    .c-icon-block--hover-title h3 a {
      color: #363636; }
      .c-icon-block--hover-title h3 a:after {
        display: inline-block;
        content: "\f061";
        font-family: 'Font Awesome 5 Free';
        margin-left: 0.5rem;
        color: #34CA9D; }
      .c-icon-block--hover-title h3 a:before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9; }
    @media (min-width: 48em) {
      .c-icon-block--hover-title:hover:after {
        opacity: 1;
        right: 2rem; } }
  .c-icon-block--arrow {
    padding: 0;
    padding-right: 2rem; }
    @media (min-width: 48em) {
      .c-icon-block--arrow {
        padding: 0;
        padding-right: 4rem; } }
    .c-icon-block--arrow:after {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      content: "\f061";
      font-family: 'Font Awesome 5 Free';
      font-weight: 700;
      font-size: 1.25rem;
      color: #099380; }
    .c-icon-block--arrow-link {
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
      top: 0;
      left: 0; }
  .c-icon-block--imobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .c-icon-block--imobile > .c-icon-block__img {
      margin-right: 1rem; }
    .c-icon-block--imobile > p {
      display: none; }
    @media (min-width: 48em) {
      .c-icon-block--imobile {
        display: block; }
        .c-icon-block--imobile > .c-icon-block__img {
          margin-right: 0; }
        .c-icon-block--imobile > p {
          display: block; } }

.c-icon-block__img {
  display: block;
  width: auto;
  max-width: none;
  max-height: 4rem;
  margin-bottom: 0.5rem; }

.c-icon-block__title {
  font-size: 1rem;
  margin-bottom: 0.5rem; }

/*------------------------------------*\
    #IMAGE CARD
\*------------------------------------*/
/**
 * A card with a background treatment. Can have a title, desc, or button. 
 */
.c-img-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 450px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .c-img-card:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 75%;
    z-index: 2;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%); }

.c-img-card--md {
  min-height: 350px; }

.c-img-card--hauto {
  min-height: 210px; }
  @media (min-width: 48em) {
    .c-img-card--hauto {
      min-height: auto; } }

.c-img-card--green:before {
  height: 100%;
  background: rgba(9, 147, 128, 0.6); }

.c-img-card--green:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../../images/imagePattern_dotGrid-yellow.svg) top left repeat;
  background-size: 72px;
  width: 72px;
  height: 72px;
  top: 20px;
  left: 20px; }

.c-img-card--hover {
  overflow: hidden; }
  .c-img-card--hover:hover .c-img-card__img {
    -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
            transform: scale(1.25); }

.c-img-card--shadow {
  -webkit-box-shadow: none;
          box-shadow: none; }
  .c-img-card--shadow .c-img-card__title {
    position: relative;
    padding-right: 30px; }
    .c-img-card--shadow .c-img-card__title:after {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      content: "\f061";
      font-family: 'Font Awesome 5 Free';
      font-weight: 700;
      font-size: 1.25rem;
      color: #fff; }
  .c-img-card--shadow:hover {
    -webkit-box-shadow: 10px 20px 50px 0 rgba(134, 134, 134, 0.5);
            box-shadow: 10px 20px 50px 0 rgba(134, 134, 134, 0.5); }

.c-img-card--side {
  height: 565px; }
  .c-img-card--side .c-img-card__inner {
    padding: 20px 20px 35px; }
  .c-img-card--side .c-img-card__title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 34px; }
  .c-img-card--side .c-img-card__excerpt {
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    margin: 12px 0 25px; }
  .c-img-card--side .c-btn {
    height: 38.52px;
    width: 158.91px;
    padding: 10px 0px; }
    .c-img-card--side .c-btn__inner {
      font-size: 13px;
      font-weight: bold;
      letter-spacing: 0;
      line-height: 18px; }

/**
 * Inner wrapper of the card. Used to position content above the overlay.
 */
.c-img-card__inner {
  position: relative;
  z-index: 5;
  padding: 2rem;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s; }

.c-img-card__tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: inline-block;
  padding: 0.3rem 0.5rem;
  background: #E6F4F2;
  color: #066F61;
  border-radius: 2px;
  font-size: 0.875rem;
  z-index: 10; }

/**
 * Main card title
 * 1. Modifiers: --arrow-sm => Used to add small arrow after title
 *               --arrow-lg => Used to add large arrow after title
 */
.c-img-card__title {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  color: #fff; }
  @media (min-width: 1200px) {
    .c-img-card__title {
      font-size: 1.3125rem; } }
  .c-img-card__title--arrow-sm {
    position: relative;
    padding-right: 1rem; }
    .c-img-card__title--arrow-sm:after {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      content: "\f061";
      font-family: 'Font Awesome 5 Free';
      font-weight: 700;
      font-size: 1.25rem; }
  .c-img-card__title--arrow-lg {
    position: relative;
    padding-right: 1rem; }
    .c-img-card__title--arrow-lg:after {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      content: "\f061";
      font-family: 'Font Awesome 5 Free';
      font-weight: 700;
      font-size: calc(1.3125rem + 0.75vw); }
      @media (min-width: 1200px) {
        .c-img-card__title--arrow-lg:after {
          font-size: 1.875rem; } }

/**
 * Main card decription/excerpt
 */
.c-img-card__excerpt {
  color: #fff; }

.c-img-card__date {
  display: block;
  margin-top: 0.5rem;
  color: #fff; }
  .c-img-card__date > .far {
    margin-right: 0.5rem; }

/**
 * Card Link
 */
.c-img-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 10; }

/**
 * Card Image
 */
.c-img-card__img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }

.c-img-card.is-transition .c-img-card__inner {
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s; }

/*
 * Featured Image card modifier
 */
.c-img-card {
  /**
     *  Block style
     */
  /**
     * Block element styles
    */ }
  .c-img-card--featured {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: static;
    background-color: #fff;
    min-height: 350px; }
    .c-img-card--featured > a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .c-img-card--featured:before {
      content: none; }
  .c-img-card--featured .c-img-card {
    /**
         * Block elements affected by its modifier "featured"
         */ }
    .c-img-card--featured .c-img-card__img {
      display: block;
      position: relative;
      z-index: 1;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      overflow: hidden;
      -o-object-fit: cover;
         object-fit: cover;
      width: 100%;
      height: 320px; }
    .c-img-card--featured .c-img-card__inner {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .c-img-card--featured .c-img-card__title {
      color: #363636;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    .c-img-card--featured .c-img-card__date {
      color: #363636;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      margin-bottom: 15px; }
    .c-img-card--featured .c-img-card__excerpt {
      color: #646F78;
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; }

/*
 * Card grid short card modifier
 */
.c-img-card {
  /**
     *  Block style
     */
  /**
     * Block element styles
    */ }
  .c-img-card--short {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 150px; }
  .c-img-card--short .c-img-card {
    /**
         * Block elements affected by its modifier "short"
         */ }
    .c-img-card--short .c-img-card__inner {
      padding: 1rem 2rem; }

.c-img-card.c-img-card--full-click {
  min-height: 350px;
  position: relative; }
  .c-img-card.c-img-card--full-click .c-img-card__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%; }
  .c-img-card.c-img-card--full-click .c-img-card__card-badge {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 15px;
    background: #F7FCFC;
    color: #066F61;
    font-size: 12px;
    padding: 6px 5px 4px;
    line-height: 1em;
    vertical-align: middle; }
  .c-img-card.c-img-card--full-click .c-img-card__card-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .c-img-card.c-img-card--full-click .c-img-card__card-link:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: transparent; }
  .c-img-card.c-img-card--full-click .c-img-card__date {
    margin: 0; }
  .c-img-card.c-img-card--full-click .c-img-card__play {
    display: block;
    position: relative;
    z-index: 3;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 100px;
    padding: 0; }
    .c-img-card.c-img-card--full-click .c-img-card__play img {
      display: block;
      margin: auto; }
  .c-img-card.c-img-card--full-click .c-img-card__img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top; }

.event-card {
  border: 1px solid #ECECEC;
  border-radius: 2px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05); }
  .event-card--favorite-title {
    border: none;
    border-radius: unset;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .event-card img {
    width: 100%; }
  .event-card__inner {
    padding: 20px; }
    .event-card__inner--registered, .event-card__inner--with-buttons {
      display: grid;
      grid-template-columns: 1fr;
      grid-column-gap: 0;
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      padding: 20px; }
      @media (min-width: 48em) {
        .event-card__inner--registered, .event-card__inner--with-buttons {
          padding: 30px;
          grid-column-gap: 20px; } }
    @media (min-width: 48em) {
      .event-card__inner--registered {
        grid-template-columns: 60px 1fr; } }
    @media (min-width: 60em) {
      .event-card__inner--with-buttons {
        grid-template-columns: 60px 3fr 1fr; } }
  .card-dashboard .event-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .event-card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px; }
  .event-card__info-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .card-dashboard .event-card__location-wrapper {
    display: block;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; }
    @media (min-width: 48em) {
      .card-dashboard .event-card__location-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .event-card__day, .event-card__month {
    margin-bottom: 0; }
  .event-card__date {
    margin-bottom: 10px; }
    .event-card__date p {
      font-size: 24px;
      line-height: 1.25;
      font-weight: bold; }
  .event-card__month {
    color: #068473; }
  .event-card__favorite .fa.fa-heart {
    color: #E51951; }
  .event-card__time, .event-card__location {
    display: grid;
    grid-template-columns: 25px 1fr; }
  .event-card__location .fa-map-marker-alt {
    color: #34CA9D; }
  .card-dashboard .event-card__location {
    margin-left: 0; }
    @media (min-width: 48em) {
      .card-dashboard .event-card__location {
        margin-left: 40px; } }
  .card-dashboard .event-card__excerpt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .card-dashboard .event-card__category {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .event-card__category p {
    display: inline-block;
    padding: 5px;
    border-radius: 2px;
    background-color: #E6F4F2;
    font-size: 14px;
    color: #066F61;
    text-align: center;
    margin-bottom: 0; }
    .event-card__category p + p {
      margin-top: .5rem; }
  .event-card__payment-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-top: 35px; }
  .event-card__payment-cell {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr; }
    @media (min-width: 48em) {
      .event-card__payment-cell {
        grid-template-columns: 10fr 1fr 1fr; } }
    .event-card__payment-cell p {
      text-align: center;
      font-size: 14px; }
      @media (min-width: 48em) {
        .event-card__payment-cell p {
          font-size: 16px; } }
      .event-card__payment-cell p:first-of-type {
        text-align: left; }
    .event-card__payment-cell:last-of-type {
      padding-top: 20px;
      border-top: 1px solid #ECECEC; }
  .event-card__buttons {
    margin-top: 20px; }
    @media (min-width: 60em) {
      .event-card__buttons {
        margin-top: 0; } }
  .event-card__button {
    margin-bottom: 10px; }
    .event-card__button .c-btn {
      width: 100%;
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .event-card__button .c-btn span {
        font-size: 13px;
        white-space: nowrap; }
      .event-card__button .c-btn--secondary span {
        margin-right: 10px; }
      .event-card__button .c-btn--secondary .fa.fa-heart {
        color: #E51951; }

.internal-3-col__sidebar .c-img-card::before {
  z-index: 1; }

.internal-3-col__sidebar .c-img-card__img {
  z-index: 0; }

.c-num-accent {
  display: inline-block;
  border-radius: 100%;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.25rem;
  color: #099380;
  border: 1px solid #099380; }

/*------------------------------------*\
    #TEAM/LOCATIONS CARD
\*------------------------------------*/
/**
 * 1) Styles a "card" with a background image and a small card inside.
 */
/**
  * This is the outer card that contains the background image.
  * 1. Modifiers: --center => Used when inner card should be vertically centered. Primarily when only 1 card
  */
.c-tl-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 350px;
  max-height: 650px;
  height: 33.333vw;
  background-size: cover;
  padding: calc(1.325rem + 0.9vw); }
  @media (min-width: 1200px) {
    .c-tl-card {
      padding: 2rem; } }
  @media (min-width: 48em) {
    .c-tl-card--center {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }

/**
  * This is the inner card that contains the content.
  */
.c-tl-card__inner {
  position: relative;
  padding: calc(1.525rem + 3.3vw);
  background: #fff;
  -webkit-box-shadow: 0 4px 16px 0 rgba(54, 54, 54, 0.05);
          box-shadow: 0 4px 16px 0 rgba(54, 54, 54, 0.05);
  width: 100%;
  margin: 0 auto;
  text-align: center; }
  @media (min-width: 1200px) {
    .c-tl-card__inner {
      padding: 4rem; } }
  @media (min-width: 48em) {
    .c-tl-card__inner {
      width: 85%;
      max-width: 40em; } }

/**
  * Add some spacing to the titles
  */
.c-tl-card__subtitle,
.c-tl-card__title {
  display: block;
  margin-bottom: 0.5rem; }

/**
  * Style the subtitle.
  */
.c-tl-card__subtitle {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  color: #099380; }
  @media (min-width: 1200px) {
    .c-tl-card__subtitle {
      font-size: 1.3125rem; } }

.c-tl-card form.c-search-form {
  text-align: left; }

.c-tl-card form.c-search-form button.c-btn.c-btn--primary {
  padding: 10px 20px;
  width: 100%; }

.c-tl-card form.c-search-form button.c-btn.c-btn--primary .c-btn__inner {
  color: #066F61;
  font-family: "Fira Sans";
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
  text-align: center; }

.select-wrapper {
  position: relative;
  margin-bottom: 10px; }

.select-wrapper select {
  -webkit-appearance: none; }

.select-wrapper:after {
  color: #34CA9D;
  content: "\f078";
  font-size: 18px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  position: absolute;
  right: 10px;
  top: 11px;
  pointer-events: none; }

.c-member-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  max-width: 300px;
  min-width: calc(33.333333% - 30px);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  margin: 15px;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  background: #fff;
  -webkit-box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.065);
          box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.065); }
  @media (max-width: 47em) {
    .c-member-card {
      min-width: 270px;
      margin: 15px 8px; } }

.c-member-card__photo-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 72%;
  margin-bottom: 20px;
  background: #e8f1f1;
  background: -webkit-gradient(linear, left bottom, left top, from(#e8f1f1), to(#f3f7f7));
  background: -o-linear-gradient(bottom, #e8f1f1 0%, #f3f7f7 100%);
  background: linear-gradient(0deg, #e8f1f1 0%, #f3f7f7 100%); }
  .c-member-card__photo-wrap .c-member-card__photo {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: center -8%; }

.c-member-card__body {
  display: block;
  width: 100%;
  text-align: center; }

.c-member-card__title {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47; }
  @media (min-width: 1200px) {
    .c-member-card__title {
      font-size: 1.3125rem; } }

.c-member-card__desc {
  font-size: 14px;
  color: #646F78; }

.c-team-grid__buttons {
  display: block;
  width: 100%;
  padding: 15px; }
  .c-team-grid__buttons .c-btn--primary {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .c-team-grid__buttons .c-btn__inner {
    font-size: 14px; }

.c-team-grid__patients {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  color: #099380;
  font-size: 14px; }

/*------------------------------------*\
    #IMAGE BREAK - MOLECULE
\*------------------------------------*/
/**
 * Wrapping element with background and pseudo element overlay
 * 1. Modifiers: --sm => Adjust height and left/right padding to account for container.
 */
.c-img-break {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100vh;
  max-height: 600px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  .c-img-break--sm {
    max-height: 400px;
    padding: 0 5vw; }
  .c-img-break:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background: black;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%); }

/**
 * Inner wrapper that position content over overlay with modifing pattern
 * 1. Modifiers: --pattern => Adds a Yellow dot pattern next to content. Couldn't use mixin.
 */
.c-img-break__inner {
  position: relative;
  z-index: 5; }
  .c-img-break__inner--pattern {
    width: 100%;
    max-width: 93rem;
    margin: 0 auto;
    padding: 0 15px; }
    .c-img-break__inner--pattern:before {
      content: "";
      display: block;
      position: absolute;
      background: url(../../images/imagePattern_dotGrid-yellow.svg) top left repeat;
      top: -50%;
      left: 15px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      background-size: 83px;
      width: 48px;
      height: 164px; }
    @media (min-width: 48em) {
      .c-img-break__inner--pattern {
        padding: 0 2rem; }
        .c-img-break__inner--pattern:before {
          top: 0;
          left: -30px;
          -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
                  transform: translateY(-50%); } }

/**
 * Molecule title
 * 1. Modifiers: --sm => Makes title smaller
 *               --short => Contain the title to max-width var. (Ref _settings.layout.scss)
 */
.c-img-break__title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: calc(1.3125rem + 0.75vw);
  font-weight: 700;
  line-height: 1.333; }
  @media (min-width: 1200px) {
    .c-img-break__title {
      font-size: 1.875rem; } }
  .c-img-break__title--sm {
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38; }
    @media (min-width: 1200px) {
      .c-img-break__title--sm {
        font-size: 1.625rem; } }
  .c-img-break__title--short {
    max-width: 45rem; }

/**
 * Molecule content
 */
.c-img-break__copy {
  margin: 1rem 0 2rem;
  color: #fff; }

/**
 * Wrapper used to lay out the buttons in the molecule. 
 * To see specific button styling refer to those molecule files
 */
.c-img-break__actions {
  display: block;
  margin-top: 1rem; }
  .c-img-break__actions > .c-play-btn {
    margin-bottom: 2rem;
    margin-right: 0;
    color: #fff; }
  .c-img-break__actions > .c-arrow-link {
    background: transparent;
    text-decoration: underline;
    color: #fff;
    display: inline-block;
    vertical-align: top; }
    .c-img-break__actions > .c-arrow-link:after {
      position: static;
      display: inline-block;
      margin-left: 10px;
      vertical-align: top; }
    @media (max-width: 47em) {
      .c-img-break__actions > .c-arrow-link {
        padding-left: 15px; } }
  @media (min-width: 48em) {
    .c-img-break__actions {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .c-img-break__actions > .c-play-btn {
        margin-bottom: 0;
        margin-right: 3rem; } }

/**
 * Contractor styles for HTML only Split Variant
 */
.c-img-break--split {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 768px) {
    .c-img-break--split {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 30px;
      text-align: center; } }
  .c-img-break--split .c-img-break__inner--right {
    text-align: right; }
  .c-img-break--split .c-img-break__inner .fas {
    margin-right: 5px; }
  @media (max-width: 991px) {
    .c-img-break--split .c-img-break__inner:first-child {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 70%;
              flex: 0 0 70%; } }
  @media (max-width: 768px) {
    .c-img-break--split .c-img-break__inner:first-child {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 0%;
              flex: 0 0 0%; } }
  @media (max-width: 768px) {
    .c-img-break--split .c-img-break__inner .c-btn {
      margin-top: 10px; } }
  .c-img-break--split .c-img-break__title {
    color: #fff;
    font-family: "Fira Sans", sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 25px; }
  .c-img-break--split .c-img-break__p {
    color: #fff;
    font-family: "Fira Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px; }
  .c-img-break--split .c-img-break--short {
    max-height: 164px;
    position: relative; }
    @media (max-width: 768px) {
      .c-img-break--split .c-img-break--short {
        max-height: 100%;
        height: auto; } }
    .c-img-break--split .c-img-break--short::before {
      opacity: 0.7;
      background-color: #2E413F;
      content: "";
      position: absolute;
      z-index: 1;
      width: 100%;
      height: 100%; }

/*------------------------------------*\
    #ACCORDION
\*------------------------------------*/
/**
 * Accordion button/trigger
 * 1. Contains styling for the active state of the button
 */
.c-accordion__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.125rem;
  border: none;
  background: none;
  border-bottom: 1px solid #C2D1D9;
  padding: 1.5rem 0;
  width: 100%;
  font-weight: 700;
  text-align: left;
  color: #363636;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .c-accordion__button:after {
    color: #34CA9D;
    content: "\f078";
    font-size: 1.25rem;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700; }
  .c-accordion__button.is-active {
    color: #099380; }
    .c-accordion__button.is-active:after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
  .c-accordion__button:focus, .c-accordion__button:hover {
    color: #099380;
    outline: none; }

/**
 * Holder for the accordion content.
 * 1. Contains styling for the active state of the accordion
 */
.c-accordion__section {
  max-height: 0vh;
  overflow: hidden;
  background: none;
  padding: 0;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s; }
  .c-accordion__section > p {
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition-delay: .2s;
         -o-transition-delay: .2s;
            transition-delay: .2s; }
  .c-accordion__section > p:last-child {
    margin-bottom: 0; }
  .c-accordion__section.is-open {
    max-height: 100vh;
    padding: calc(1.325rem + 0.9vw);
    background: #F7FCFC;
    overflow: auto;
    visibility: visible;
    border-bottom: 1px solid #C2D1D9; }
    @media (min-width: 1200px) {
      .c-accordion__section.is-open {
        padding: 2rem; } }
    .c-accordion__section.is-open > p {
      opacity: 1;
      -webkit-transition-delay: 0;
           -o-transition-delay: 0;
              transition-delay: 0; }

/*------------------------------------*\
    #BREADCRUMBS
\*------------------------------------*/
/**
 * Breadcrumbs list styling
 */
.c-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem; }
  @media (min-width: 48em) {
    .c-breadcrumbs {
      max-width: 50%;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

/**
 * Styles each individual element along with contents whether <a> or the separator.
 */
.c-breadcrumbs__item {
  margin: 0 0.25rem; }
  .c-breadcrumbs__item > a {
    color: #646F78; }
    .c-breadcrumbs__item > a:hover {
      text-decoration: underline;
      color: #099380; }
  .c-breadcrumbs__item [aria-hidden="true"]:after {
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #34CA9D; }

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #C2D1D9;
  margin-top: 2rem;
  padding-top: 2rem;
  color: #1C72AB; }

.c-pagination__item,
.c-pagination.simple-pagination > li {
  margin: 0 0.5rem; }
  .c-pagination__item:first-child,
  .c-pagination.simple-pagination > li:first-child {
    margin-left: 0; }
  .c-pagination__item:last-child,
  .c-pagination.simple-pagination > li:last-child {
    margin-left: 0; }
  .c-pagination__item.is-active,
  .c-pagination.simple-pagination > li.is-active {
    font-weight: 700; }

.c-pagination__prev,
.c-pagination__next,
.c-pagination.simple-pagination .prev,
.c-pagination.simple-pagination .next {
  font-weight: 700; }

.c-pagination__prev,
.c-pagination.simple-pagination .prev {
  margin-right: 2rem; }
  .c-pagination__prev:before,
  .c-pagination.simple-pagination .prev:before {
    content: "\f060";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    margin-right: 0.5rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }

.c-pagination__next,
.c-pagination.simple-pagination .next {
  margin-left: 2rem; }
  .c-pagination__next:after,
  .c-pagination.simple-pagination .next:after {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    margin-left: 0.5rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }

.c-location-pagination {
  width: 100%; }
  .c-location-pagination .c-pagination {
    padding-bottom: 2rem; }

@-webkit-keyframes itemSlide {
  from {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes itemSlide {
  from {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes itemSlideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0; } }

@keyframes itemSlideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0; } }

.c-share {
  position: relative; }

.c-share__trigger {
  cursor: pointer; }
  .c-share__trigger.is-active {
    background: #068473;
    color: #fff; }

.c-share__item {
  opacity: 0;
  visibility: hidden; }

.c-share__dropdown {
  position: absolute;
  top: 100%;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-top: .3rem; }
  .c-share__dropdown .c-share__item {
    -webkit-animation: itemSlideOut .5s forwards;
            animation: itemSlideOut .5s forwards; }
    .c-share__dropdown .c-share__item:nth-child(1) {
      -webkit-animation-delay: .3s;
              animation-delay: .3s; }
    .c-share__dropdown .c-share__item:nth-child(2) {
      -webkit-animation-delay: .15s;
              animation-delay: .15s; }
    .c-share__dropdown .c-share__item:nth-child(3) {
      -webkit-animation-delay: 0s;
              animation-delay: 0s; }
  .c-share__dropdown.is-open {
    opacity: 1; }
    .c-share__dropdown.is-open .c-share__item {
      visibility: visible;
      -webkit-animation: itemSlide .5s forwards;
              animation: itemSlide .5s forwards; }
      .c-share__dropdown.is-open .c-share__item:nth-child(1) {
        -webkit-animation-delay: 0s;
                animation-delay: 0s; }
      .c-share__dropdown.is-open .c-share__item:nth-child(2) {
        -webkit-animation-delay: .15s;
                animation-delay: .15s; }
      .c-share__dropdown.is-open .c-share__item:nth-child(3) {
        -webkit-animation-delay: .3s;
                animation-delay: .3s; }

/*------------------------------------*\
    #SPOTLIGHT CARD
\*------------------------------------*/
.spotlight-card {
  margin-bottom: 2rem; }
  @media (min-width: 48em) {
    .spotlight-card {
      margin-bottom: 0; } }

.spotlight-card__image {
  position: relative;
  padding-bottom: 75%; }
  .spotlight-card__image > img {
    position: absolute;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%; }

.spotlight-card__content {
  position: relative;
  display: block;
  padding: 2rem;
  text-align: left;
  background: #fff; }
  @media (min-width: 48em) {
    .spotlight-card__content {
      text-align: center;
      padding: 2rem 5vw; } }

.spotlight-card__tag {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  padding: 0.3rem 1rem;
  color: #066F61;
  font-size: 0.875rem;
  background: #fff;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }

.spotlight-card__title {
  max-width: 485px;
  margin: 0 0 0.5rem; }
  .spotlight-card__title a {
    color: #363636; }
  @media (min-width: 48em) {
    .spotlight-card__title {
      margin: 0 auto 1rem; } }

.spotlight-card__date > .far {
  margin-right: 0.5rem; }

.spotlight-card__excerpt {
  max-width: 485px;
  margin: 0.5rem 0 0; }
  @media (min-width: 48em) {
    .spotlight-card__excerpt {
      margin: 2rem auto 0; } }

.c-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.c-rating__stars i {
  color: #363636; }

.c-rating__stars--1 i:nth-child(-n+1) {
  color: #f2aa25; }

.c-rating__stars--2 i:nth-child(-n+2) {
  color: #f2aa25; }

.c-rating__stars--3 i:nth-child(-n+3) {
  color: #f2aa25; }

.c-rating__stars--4 i:nth-child(-n+4) {
  color: #f2aa25; }

.c-rating__stars--5 i:nth-child(-n+5) {
  color: #f2aa25; }

.c-rating__detail {
  color: #646F78; }

.c-rating__breakdown {
  font-size: 14px; }

.c-rating__info {
  display: inline-block;
  vertical-align: text-bottom;
  color: #fff;
  font-size: 8px;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: #1C72AB;
  border-radius: 50%; }
  .c-rating__info:hover {
    color: #fff; }

.c-location-results__item-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%; }
  @media (max-width: 59em) {
    .c-location-results__item-group {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%; } }

.c-location-results__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px;
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
  margin: 15px 0 30px;
  -webkit-transition: .75s background-color, .75s box-shadow;
  -o-transition: .75s background-color, .75s box-shadow;
  transition: .75s background-color, .75s box-shadow; }
  .c-location-results__item.flash {
    background-color: rgba(52, 202, 157, 0.2);
    -webkit-box-shadow: 0 1px 5px 2px rgba(52, 202, 157, 0.7);
            box-shadow: 0 1px 5px 2px rgba(52, 202, 157, 0.7); }

.c-location-results__item-picture {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  position: relative; }
  @media (max-width: 59em) {
    .c-location-results__item-picture {
      height: 0;
      -webkit-box-flex: initial;
          -ms-flex: initial;
              flex: initial;
      width: 100%;
      overflow: hidden;
      padding: 0 0 56.4%; } }

@media (max-width: 59em) {
  .c-location-results__item-picture-link {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; } }

.c-location-results__item-picture-link img {
  display: block;
  width: 100%;
  height: auto; }
  @media (max-width: 59em) {
    .c-location-results__item-picture-link img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center; } }

.c-location-results__item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px 15px 0; }
  @media (max-width: 69em) {
    .c-location-results__item-info {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }
  @media (max-width: 59em) {
    .c-location-results__item-info {
      margin-top: 15px;
      padding: 0; } }
  .c-location-results__item-info a {
    color: #363636; }
    .c-location-results__item-info a:visited {
      color: #363636; }
    .c-location-results__item-info a:hover {
      color: #1C72AB; }
    .c-location-results__item-info a h3 {
      font-size: calc(1.25625rem + 0.075vw);
      font-weight: 700;
      line-height: 1.47; }
      @media (min-width: 1200px) {
        .c-location-results__item-info a h3 {
          font-size: 1.3125rem; } }
  .c-location-results__item-info p {
    margin-bottom: 0;
    font-size: 14px; }
    @media (max-width: 84em) {
      .c-location-results__item-info p {
        margin-bottom: 5px; } }
    .c-location-results__item-info p a {
      color: #1C72AB;
      font-weight: 500; }
  .c-location-results__item-info .tooltip {
    font-size: 14px;
    color: #363636;
    font-style: italic;
    font-weight: 500;
    position: relative; }
    .c-location-results__item-info .tooltip i {
      color: #1C72AB;
      font-size: 16px; }
      .c-location-results__item-info .tooltip i:hover {
        cursor: pointer; }
    .c-location-results__item-info .tooltip__text {
      opacity: 0;
      pointer-events: none;
      position: absolute;
      top: calc(100% + 10px);
      -webkit-transform: translateX(-38px);
          -ms-transform: translateX(-38px);
              transform: translateX(-38px);
      background: #068473;
      color: #fff;
      font-size: 12px;
      line-height: 14px;
      padding: 20px;
      font-style: normal;
      letter-spacing: 0;
      font-weight: 300;
      z-index: 1;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
      .c-location-results__item-info .tooltip__text:before {
        content: "";
        position: absolute;
        top: -10px;
        left: 20px;
        width: 0;
        height: 0;
        border: 0 solid transparent;
        border-right-width: 10px;
        border-left-width: 10px;
        border-bottom: 10px solid #068473; }
    .c-location-results__item-info .tooltip__close {
      display: block;
      color: #fff;
      margin-top: 10px;
      text-decoration: underline;
      text-align: right;
      font-weight: bold; }
    .c-location-results__item-info .tooltip.active .tooltip__text {
      opacity: 1;
      pointer-events: all;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }

.c-location-results__item-actions {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  width: 320px;
  padding: 5px 15px 15px;
  text-align: center; }
  @media (max-width: 84em) {
    .c-location-results__item-actions {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }
  @media (max-width: 59em) {
    .c-location-results__item-actions {
      margin-top: 15px;
      padding: 0; } }
  .c-location-results__item-actions .c-btn {
    display: block;
    margin: 0 auto 15px;
    width: 92%; }
    @media (max-width: 84em) {
      .c-location-results__item-actions .c-btn {
        width: 100%; } }
  .c-location-results__item-actions p {
    color: #066F61;
    font-size: 14px;
    margin: 0 0 5px; }

.c-location-results__item-phone i {
  display: inline; }
  .c-location-results__item-phone i:before {
    -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
            transform: scale(-1, 1); }

.c-location-results__item-phone span {
  display: none;
  color: #646F78;
  font-weight: normal; }

.c-location-results__item-drive {
  color: #363636 !important;
  font-size: 14px !important;
  font-weight: 500;
  vertical-align: top; }
  .c-location-results__item-drive i {
    position: relative;
    font-size: 0.5rem;
    color: #34CA9D;
    margin-right: 7px;
    top: -2px; }
    .c-location-results__item-drive i:after {
      content: '';
      display: block;
      position: absolute;
      top: -6px;
      border: solid 2px #34CA9D;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      left: 50%;
      margin-left: -9px; }

.c-location-card-simple {
  display: block;
  padding: 15px;
  -webkit-box-shadow: 0 1px 5px 1px rgba(54, 54, 54, 0.1);
          box-shadow: 0 1px 5px 1px rgba(54, 54, 54, 0.1);
  border: solid 1px #e1e9ed; }
  .c-location-card-simple.c-location-card-simple--full-click {
    position: relative; }
  .c-location-card-simple__card-header {
    display: block;
    margin-bottom: 10px;
    position: relative;
    height: 0;
    padding-bottom: 56.4%; }
    .c-location-card-simple__card-header img {
      position: absolute;
      -o-object-fit: cover;
         object-fit: cover;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      height: 100%;
      width: 100%; }
  .c-location-card-simple__card-body {
    display: block; }
  .c-location-card-simple__title {
    margin: 0;
    font-size: calc(1.275rem + 0.3vw);
    font-weight: 700;
    line-height: 1.41; }
    @media (min-width: 1200px) {
      .c-location-card-simple__title {
        font-size: 1.5rem; } }
    .c-location-card-simple__title a {
      color: #363636; }
  .c-location-card-simple.c-location-card-simple--full-click .c-location-card-simple__title a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99; }
  .c-location-card-simple__description {
    margin: 0; }
  .c-location-card-simple__address {
    color: #646F78; }
  .c-location-card-simple__directions {
    color: #1C72AB;
    font-weight: 700; }
  .c-location-card-simple__phone {
    color: #1C72AB;
    font-weight: 700;
    margin: 0; }
    .c-location-card-simple__phone span {
      color: #646F78;
      font-weight: normal; }

.c-notification__clear-cookies {
  display: inline-block;
  padding: 10px 30px;
  border: solid 1px #066F61;
  background: #fff;
  color: #066F61; }

.c-notification__block {
  display: block;
  height: auto;
  border: none; }

.c-notification {
  position: relative;
  display: none;
  overflow: hidden;
  -webkit-transition: max-height .25s, opacity .5s;
  -o-transition: max-height .25s, opacity .5s;
  transition: max-height .25s, opacity .5s;
  max-height: 600px; }
  .c-notification.c-notification--closed {
    max-height: 0;
    opacity: 0; }
  .c-notification.c-notification--visible {
    display: block; }
  .c-notification__close {
    display: block;
    font-weight: bold;
    height: 25px;
    width: 25px;
    position: absolute;
    top: 15px;
    right: 10px;
    text-decoration: none; }
    .c-notification__close svg {
      display: block !important; }
    .c-notification__close path {
      fill: #363636; }
  .c-notification__content {
    background: #fff;
    padding: 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 47em) {
      .c-notification__content {
        padding: 15px 15px 30px; } }
  .c-notification__icon {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
    width: 70px;
    height: 52px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/info-icon-dark.svg); }
    @media (max-width: 47em) {
      .c-notification__icon {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        margin-bottom: 15px; } }
  .c-notification__body {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0; }
    @media (max-width: 47em) {
      .c-notification__body {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%; } }
  .c-notification__title {
    margin: 0;
    color: #363636; }
    @media (max-width: 47em) {
      .c-notification__title {
        margin-bottom: 15px; } }
  .c-notification__description {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    color: #646F78; }
    .c-notification__description a {
      color: #646F78;
      font-weight: 500;
      text-decoration: underline; }
  .c-notification.c-notification--red .c-notification__content {
    background: #ca2d2d; }
  .c-notification.c-notification--red .c-notification__icon {
    background-image: url(../images/info-icon.svg); }
  .c-notification.c-notification--red .c-notification__close path {
    fill: #fff; }
  .c-notification.c-notification--red .c-notification__title,
  .c-notification.c-notification--red .c-notification__description {
    color: #fff; }
    .c-notification.c-notification--red .c-notification__title a,
    .c-notification.c-notification--red .c-notification__description a {
      color: #fff; }
  .c-notification.c-notification--blue .c-notification__content {
    background: #272f96; }
  .c-notification.c-notification--blue .c-notification__icon {
    background-image: url(../images/info-icon.svg); }
  .c-notification.c-notification--blue .c-notification__close path {
    fill: #fff; }
  .c-notification.c-notification--blue .c-notification__title,
  .c-notification.c-notification--blue .c-notification__description {
    color: #fff; }
    .c-notification.c-notification--blue .c-notification__title a,
    .c-notification.c-notification--blue .c-notification__description a {
      color: #fff; }
  .c-notification.c-notification--yellow .c-notification__content {
    background: #fff497; }
  .c-notification.c-notification--yellow .c-notification__title,
  .c-notification.c-notification--yellow .c-notification__description {
    color: #363636; }
    .c-notification.c-notification--yellow .c-notification__title a,
    .c-notification.c-notification--yellow .c-notification__description a {
      color: #363636; }

.c-contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding: 15px; }
  .c-contact-card__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    width: 100%; }
  .c-contact-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.47;
    color: #363636;
    margin: 0; }
  .c-contact-card__description {
    margin: 0;
    color: #646F78; }
  .c-contact-card__link {
    font-weight: 500; }
  .c-contact-card__footer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
    width: 50px;
    margin-top: 5px; }
  .c-contact-card.c-contact-card--link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .c-contact-card.c-contact-card--link .c-contact-card__link {
      display: block;
      text-align: center;
      color: #34CA9D;
      font-size: 20px; }
      .c-contact-card.c-contact-card--link .c-contact-card__link i {
        display: inline-block;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s; }
      .c-contact-card.c-contact-card--link .c-contact-card__link:hover i {
        -webkit-transform: translate(5px, 0);
            -ms-transform: translate(5px, 0);
                transform: translate(5px, 0); }
      .c-contact-card.c-contact-card--link .c-contact-card__link:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
  .c-contact-card.c-contact-card--phone .c-contact-card__footer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%; }
  .c-contact-card.c-contact-card--phone .c-contact-card__link i {
    display: inline-block;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1); }

.c-spacer {
  display: block;
  width: 100%;
  clear: both;
  float: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
  padding: 0;
  /* in case parent is flexbox*/
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%; }
  .c-spacer.c-spacer--15 {
    height: 15px; }
  .c-spacer.c-spacer--30 {
    height: 30px; }
  .c-spacer.c-spacer--60 {
    height: 60px; }
  .c-spacer.c-spacer--90 {
    height: 90px; }
  .c-spacer.c-spacer--120 {
    height: 120px; }

/*------------------------------------*\
    #PAGE HEADER
\*------------------------------------*/
/**
 * 1) Container that consists of of a page header title and description
 */
/**
 * Page header title
 */
.c-page-header__title {
  margin-bottom: 0; }

/**
 * Page description
 */
.c-page-header__description {
  font-size: calc(1.4375rem + 2.25vw);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem; }
  @media (min-width: 1200px) {
    .c-page-header__description {
      font-size: 3.125rem; } }

.c-section-header {
  display: block;
  margin: 0;
  padding: 30px; }
  .c-section-header.c-section-header--center {
    text-align: center; }
  .c-section-header__title {
    font-size: calc(1.3125rem + 0.75vw);
    font-weight: 700;
    line-height: 1.333; }
    @media (min-width: 1200px) {
      .c-section-header__title {
        font-size: 1.875rem; } }
  .c-section-header__description {
    color: #646F78;
    font-size: 18px; }
  .c-section-header--wide {
    padding: 30px 0; }

.fad-speedbump {
  background: #068473;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
  color: #fff;
  border-radius: 1.46px; }
  @media (max-width: 768px) {
    .fad-speedbump {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding: 15px 15px; } }
  .fad-speedbump .mychart {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 20px; }
    @media (max-width: 768px) {
      .fad-speedbump .mychart {
        display: none; } }
    .fad-speedbump .mychart span {
      color: #fff;
      font-size: 18px;
      font-weight: 300;
      letter-spacing: 0;
      line-height: 22px;
      text-transform: uppercase; }
      .fad-speedbump .mychart span.bottom {
        font-family: "Fira Sans", sans-serif;
        font-size: 21px;
        font-weight: 500;
        text-transform: none; }
  .fad-speedbump .c-btn {
    margin-left: 20px;
    height: 39.8px;
    width: 100px;
    padding: 12px 0; }
    @media (max-width: 600px) {
      .fad-speedbump .c-btn {
        justify-self: flex-end;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; } }
    .fad-speedbump .c-btn__inner {
      color: #424B5A;
      font-size: 13px; }
  @media (max-width: 600px) {
    .fad-speedbump span {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 66%;
              flex: 0 0 66%; } }

.c-speedbump {
  background: #068473;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem 0;
  color: #fff;
  margin: 2rem 0 0; }
  .c-speedbump__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
    margin-right: 1rem;
    color: #fff;
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38; }
    @media (min-width: 1200px) {
      .c-speedbump__title {
        font-size: 1.625rem; } }
    @media (max-width: 991px) {
      .c-speedbump__title {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        text-align: center; } }
  .c-speedbump .c-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
    font-size: 14px;
    padding: 1rem 1rem;
    -webkit-box-shadow: none;
            box-shadow: none; }
    @media (max-width: 991px) {
      .c-speedbump .c-btn {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 300px;
        margin-top: 1rem; } }
  @media (max-width: 991px) {
    .c-speedbump {
      padding: 1rem 1rem; } }

.profile-card {
  background: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05); }
  .profile-card p {
    color: #363636; }
  .profile-card__header {
    font-size: 21px; }
  .profile-card__container {
    padding: 1rem; }
    .profile-card__container--flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .profile-card__content p {
    margin-bottom: 0; }
  .profile-card__edit-link {
    font-weight: bold; }

/*------------------------------------*\
    #ORGANISMS
\*------------------------------------*/
/*------------------------------------*\
    #SUBHEADER
\*------------------------------------*/
/**
 * Global block at the top of each page containing the subnav. It should not be fixed with the header on scroll
 */
.c-subheader {
  display: none;
  position: relative;
  z-index: 500;
  background: #068473;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem; }
  @media (min-width: 60em) {
    .c-subheader {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.c-subheader__nav {
  margin-left: auto; }

.c-subheader__item {
  margin: 0; }

.c-subheader__link {
  color: #fff;
  font-weight: 700;
  padding: .5rem 1rem;
  margin: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .c-subheader__link--btn {
    border-left: 1px solid #C2D1D9; }
  .c-subheader__link:hover, .c-subheader__link:focus {
    background: #066F61;
    color: #fff; }
  .c-subheader__link:visited, .c-subheader__link:active {
    color: #fff; }

.c-subheader__subsite {
  display: none; }

.c-subheader__subsite-toggle {
  display: none; }

.c-subheader.subsite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 1rem 1rem; }
  @media (max-width: 59em) {
    .c-subheader.subsite .c-subheader__subsite-toggle {
      display: inline-block;
      border: none;
      background: #fff;
      text-transform: uppercase; } }
  @media (max-width: 59em) {
    .c-subheader.subsite .l-nav__list {
      display: none; } }
  .c-subheader.subsite .c-subheader__subsite {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .c-subheader.subsite .c-subheader__subsite .c-logo {
      display: block;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 125px;
              flex: 0 0 125px;
      padding-right: 15px; }
  .c-subheader.subsite .c-subheader__title {
    color: #363636;
    margin: 0;
    font-weight: 700;
    text-transform: none;
    font-size: 14px;
    padding: 0 15px;
    border-left: solid 1px #C2D1D9; }
  .c-subheader.subsite .c-subheader__link {
    text-transform: none;
    color: #363636;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 500;
    color: #1C72AB; }
    .c-subheader.subsite .c-subheader__link:hover {
      color: #1C72AB;
      text-decoration: underline;
      background: #fff; }
  .c-subheader.subsite.is-stuck {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999; }

/*------------------------------------*\
    #HEADER
\*------------------------------------*/
/**
 * Global block at the top of each page containing the navigation, logo, and other potential contents
 */
.c-header {
  position: relative;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid #C2D1D9;
  z-index: 999; }
  .c-header.is-stuck {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    width: 100%; }
  @media (min-width: 60em) {
    .c-header {
      padding: 0 1rem; } }

/**
 * Header inner
 */
.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

/**
 * Header navigation toggle button
 * 1) Button used to toggle mobile header hidden elements
 */
.c-header__toggle {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  text-transform: uppercase; }
  .c-header__toggle .fa,
  .c-header__toggle .fas {
    font-size: 1.125rem;
    color: #34CA9D; }
  @media (min-width: 60em) {
    .c-header__toggle {
      display: none; }
      .c-header__toggle--xl {
        display: block; } }
  @media (min-width: 85em) {
    .c-header__toggle--xl {
      display: none; } }

/**
 * The menu bar icon
 */
.c-header__bar {
  display: block;
  margin: 0 auto 3px;
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: #34CA9D; }

/**
 * Header navigation container
 * 1) On mobile this will also contain the subheader on mobile.
 */
.c-header__nav {
  position: fixed;
  left: 0;
  top: 30px;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 500;
  overflow-y: auto;
  padding-bottom: 2rem;
  -webkit-transition: .15s;
  -o-transition: .15s;
  transition: .15s;
  -webkit-transition-timing-function: cubic-bezier(0.18, 0.33, 0.79, 0.57);
       -o-transition-timing-function: cubic-bezier(0.18, 0.33, 0.79, 0.57);
          transition-timing-function: cubic-bezier(0.18, 0.33, 0.79, 0.57); }
  .c-header__nav.is-active {
    top: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }
  @media (min-width: 60em) {
    .c-header__nav {
      position: inherit;
      opacity: 1;
      visibility: visible;
      height: auto;
      width: auto;
      background: none;
      padding: 0 1rem;
      overflow-y: inherit;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; } }

.c-header__nav-item {
  display: block;
  margin-left: 0; }
  @media (min-width: 60em) {
    .c-header__nav-item--icon .c-header__nav-link {
      color: #2282D4 !important; } }
  .c-header__nav-item:hover > .c-header__nav-link {
    color: #066F61;
    background: #F7FCFC; }
    .c-header__nav-item:hover > .c-header__nav-link.is-active {
      background: #068473;
      color: #fff; }
    .login-nav .c-header__nav-item:hover > .c-header__nav-link {
      color: #363636;
      background: #fff; }
      @media (min-width: 60em) {
        .login-nav .c-header__nav-item:hover > .c-header__nav-link {
          background: #F7FCFC; } }
  .c-header__nav-item:hover .c-header__dropdown {
    opacity: 1;
    visibility: visible; }
    .login-nav .c-header__nav-item:hover .c-header__dropdown {
      z-index: 100;
      position: absolute; }
      @media (min-width: 60em) {
        .login-nav .c-header__nav-item:hover .c-header__dropdown {
          background: #F7FCFC;
          left: -6rem;
          min-width: 350px; } }
  .c-header__nav-item--logged-in {
    background: #fff; }
    .c-header__nav-item--logged-in .l-nav__link--dropdown {
      -webkit-box-shadow: 0 1px 3px 0 rgba(154, 154, 154, 0.5);
              box-shadow: 0 1px 3px 0 rgba(154, 154, 154, 0.5);
      text-align: center; }
      @media (min-width: 60em) {
        .c-header__nav-item--logged-in .l-nav__link--dropdown {
          -webkit-box-shadow: none;
                  box-shadow: none; } }
    @media (min-width: 60em) {
      .c-header__nav-item--logged-in {
        background: unset;
        text-align: left; } }
  .login-nav .c-header__nav-item {
    width: 100%;
    text-align: left;
    z-index: 30; }

.c-header__nav-link {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  color: #363636;
  padding: 1.5rem 0.9rem;
  border-bottom: 1px solid #C2D1D9; }
  .c-header__nav-link.is-active {
    background: #068473;
    color: #fff; }
    .c-header__nav-link.is-active:after {
      color: #fff; }
  .c-header__nav-link:visited {
    color: #363636; }
  .c-header__nav-link--sub {
    font-weight: 400; }
  .login-nav .c-header__nav-link {
    border-bottom: none; }
  .login-nav .c-header__nav-link:visited, .login-nav .c-header__nav-link:active, .login-nav .c-header__nav-link:focus {
    color: #363636; }
  @media (min-width: 60em) {
    .c-header__nav-link {
      text-transform: inherit;
      border-bottom: none; } }

.c-header__dropdown {
  display: none;
  padding: 2rem;
  background: #fff;
  border-left: 5px solid #068473; }
  .login-nav .c-header__dropdown {
    color: #363636;
    background: #fff;
    border-left: none;
    border-top: 1px solid #ececec;
    position: absolute;
    width: 100%;
    z-index: 100; }
    @media (min-width: 60em) {
      .login-nav .c-header__dropdown {
        background: #f5fbfb; } }
  .c-header__dropdown.is-open {
    display: block; }
  .c-header__dropdown .c-header__nav-link {
    text-transform: none;
    border-bottom: none;
    padding: 0.5rem 0;
    color: #363636; }
    @media (min-width: 60em) {
      .c-header__dropdown .c-header__nav-link {
        color: #363636; } }
  @media (min-width: 60em) {
    .c-header__dropdown {
      display: block;
      opacity: 0;
      visibility: hidden;
      background: #F7FCFC;
      -webkit-box-shadow: 0 20px 40px 0 rgba(54, 54, 54, 0.15);
              box-shadow: 0 20px 40px 0 rgba(54, 54, 54, 0.15);
      border-left: none; }
      .c-header__dropdown .c-header__nav-link {
        padding: 0;
        margin-bottom: 1rem; } }

.c-header__mobile {
  display: block; }
  @media (min-width: 60em) {
    .c-header__mobile {
      display: none; } }

.c-header__mobile-xl {
  display: block; }
  @media (min-width: 85em) {
    .c-header__mobile-xl {
      display: none; } }

.c-header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  padding: 1rem;
  left: 100%;
  z-index: 500;
  background: #fff;
  width: 100%;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
  opacity: 0; }
  .c-header__search > .c-simple-search {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-right: 1rem; }
  .c-header__search.is-active {
    left: 0;
    opacity: 1; }
  @media (min-width: 60em) {
    .c-header__search {
      padding: 1.5rem; } }
  @media (min-width: 70em) {
    .c-header__search {
      padding: 1rem; } }
  @media (min-width: 85em) {
    .c-header__search {
      position: static;
      left: auto;
      padding: 0;
      z-index: inherit;
      width: auto;
      background: none;
      opacity: 1; }
      .c-header__search > .c-simple-search {
        padding-right: 0; } }

.c-header__find-location {
  display: none; }

.c-header {
  color: #000; }
  .c-header.c-header--subsite {
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .c-header.c-header--subsite .c-header__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 50px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .c-header.c-header--subsite .c-header__inner .c-logo {
        padding-right: 15px; }
        .c-header.c-header--subsite .c-header__inner .c-logo .c-logo__link {
          width: 100px; }
        @media (max-width: 959px) {
          .c-header.c-header--subsite .c-header__inner .c-logo {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 100px;
                    flex: 0 0 100px; } }
    .c-header.c-header--subsite .c-header__spacer {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .c-header.c-header--subsite .c-header__subsite-title {
      padding: 0 15px;
      border-left: solid 1px #C2D1D9; }
      @media (max-width: 959px) {
        .c-header.c-header--subsite .c-header__subsite-title {
          -webkit-box-flex: 1;
              -ms-flex: 1 auto;
                  flex: 1 auto;
          width: auto;
          max-width: initial; } }
      .c-header.c-header--subsite .c-header__subsite-title h4 {
        font-size: 14px;
        text-align: left;
        overflow-wrap: break-word; }
        @media (max-width: 959px) {
          .c-header.c-header--subsite .c-header__subsite-title h4 {
            font-size: 14px;
            line-height: 1.15em; } }
    .c-header.c-header--subsite .c-header__back-link {
      display: inline-block;
      vertical-align: middle;
      font-size: 14px;
      font-weight: 500; }
      @media (max-width: 959px) {
        .c-header.c-header--subsite .c-header__back-link {
          display: none; } }

.login-header {
  border-bottom: none; }
  .login-header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 60em) {
      .login-header__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  .login-header__title {
    padding-left: 1rem;
    padding-top: 1rem; }
    .login-header__title h3 {
      font-size: 16px;
      color: #363636; }
    @media (min-width: 60em) {
      .login-header__title {
        padding-top: 0;
        padding-left: 2rem; } }
  .login-header .c-btn__inner {
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .login-header .c-btn__inner .c-btn {
      width: 100%;
      height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 13px; }
      @media (min-width: 60em) {
        .login-header .c-btn__inner .c-btn {
          width: auto; } }
    @media (min-width: 60em) {
      .login-header .c-btn__inner {
        width: auto; } }
  @media (min-width: 60em) {
    .login-header {
      border-bottom: 1px solid #ececec;
      background: #E6F4F2; } }

.login-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  padding-right: 0; }
  .login-nav--not-logged-in {
    padding: 0 1rem 1rem; }
    .login-nav--not-logged-in li:first-child {
      margin-right: 15px; }
      @media (min-width: 60em) {
        .login-nav--not-logged-in li:first-child {
          padding: 10px 0; } }
    @media (min-width: 60em) {
      .login-nav--not-logged-in {
        padding-top: 1rem; } }
  @media (min-width: 60em) {
    .login-nav {
      margin-top: 0;
      padding-right: 2rem; } }
  .login-nav .c-header__nav-item .mob-link-trigger {
    width: 100%; }

.c-header.subsite {
  padding-left: 0;
  padding-right: 0;
  background: #066F61; }
  @media (max-width: 59em) {
    .c-header.subsite {
      padding-top: 0;
      padding-bottom: 0; } }
  .c-header.subsite .c-logo {
    display: none; }
  .c-header.subsite .c-header__nav {
    padding: 0; }
    @media (max-width: 59em) {
      .c-header.subsite .c-header__nav {
        background: #066F61; } }
  .c-header.subsite .c-header__toggle {
    display: none; }
  .c-header.subsite .l-nav__link {
    color: #fff;
    font-weight: 500;
    font-size: 14px; }
    .c-header.subsite .l-nav__link:after {
      position: relative;
      display: inline-block;
      margin-left: 10px;
      color: #fff;
      font-weight: bold; }
      @media (max-width: 59em) {
        .c-header.subsite .l-nav__link:after {
          position: absolute;
          right: 30px;
          top: 18px;
          font-size: 20px; } }
    @media (max-width: 59em) {
      .c-header.subsite .l-nav__link {
        border: none; } }
  .c-header.subsite .c-header__search {
    display: none; }
  .c-header.subsite .c-header__mobile strong,
  .c-header.subsite .c-header__mobile p,
  .c-header.subsite .c-header__mobile {
    color: #fff; }
  .c-header.subsite .c-header__find-location {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 1.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    color: #fff;
    background: #05574c; }
    .c-header.subsite .c-header__find-location:hover {
      color: #fff;
      background: #05574c; }
    .c-header.subsite .c-header__find-location i {
      margin-right: 1rem; }
    @media (max-width: 59em) {
      .c-header.subsite .c-header__find-location {
        display: none; } }
  .c-header.subsite .c-header__nav-item:hover .l-nav__link {
    background: #05574c; }
  .c-header.subsite .c-header__dropdown {
    padding: 1rem 0;
    background: #fff; }
    .c-header.subsite .c-header__dropdown .c-header__nav-item .l-nav__link {
      background: #fff;
      color: #646F78;
      padding: 0 1rem;
      font-weight: 400;
      font-size: 14px; }
    .c-header.subsite .c-header__dropdown .c-header__nav-item:hover .l-nav__link {
      background: #fff;
      color: #363636;
      font-weight: 500;
      background: #fff; }

.subsite-header-background-light {
  background-color: #4b8473; }

.subsite-header-background-light {
  background-color: #3f6f61; }

.c-subnav {
  background: #E6F4F2;
  padding: 1rem; }
  @media (min-width: 48em) {
    .c-subnav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 1rem; } }

.c-subnav__title {
  display: block;
  position: relative;
  font-weight: 700;
  padding: 0; }
  .c-subnav__title:before {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: .875rem;
    color: #34CA9D; }
  .c-subnav__title:after {
    content: " Menu"; }
  @media (min-width: 60em) {
    .c-subnav__title {
      margin-right: .5rem; }
      .c-subnav__title:after, .c-subnav__title:before {
        display: none; } }

.c-subnav__nav {
  display: none; }
  .c-subnav__nav .l-nav__list {
    margin-top: .75rem;
    marbin-bottom: -1rem; }
  .c-subnav__nav .l-nav__item {
    margin-left: 0;
    font-size: .875rem;
    margin: 0 -1rem;
    padding: 0 1rem;
    background: #F2F7F7;
    border-bottom: 1px solid #CCCCCC; }
    .c-subnav__nav .l-nav__item:last-of-type {
      border-bottom: none; }
  .c-subnav__nav .l-nav__link {
    color: #363636; }
  .c-subnav__nav .l-nav__dropdown {
    display: none; }
    .c-subnav__nav .l-nav__dropdown.is-open {
      display: block; }
    .c-subnav__nav .l-nav__dropdown .l-nav__item:first-child {
      margin-top: 0; }
    .c-subnav__nav .l-nav__dropdown .l-nav__item:last-child {
      margin-bottom: 0; }
  @media (min-width: 992px) {
    .c-subnav__nav .l-nav__item--flip .l-nav__dropdown {
      left: initial;
      right: 0; } }
  @media (min-width: 60em) {
    .c-subnav__nav {
      display: block; }
      .c-subnav__nav .l-nav__list {
        margin-top: 0;
        margin-bottom: 0; }
      .c-subnav__nav .l-nav__link {
        padding: 1.5rem 0; }
      .c-subnav__nav .l-nav__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        margin: 0 0 0 1rem;
        padding: 0px 1.5rem;
        background: none;
        border-bottom: none; }
        .c-subnav__nav .l-nav__item--children:after {
          display: inline-block;
          margin-left: .75rem;
          content: "\f107";
          font-family: 'Font Awesome 5 Free';
          font-weight: 700;
          font-size: .875rem;
          color: #34CA9D; }
        .c-subnav__nav .l-nav__item:nth-child(4) .l-nav__dropdown {
          left: 50%;
          right: auto;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); }
        .c-subnav__nav .l-nav__item:nth-child(n+5) .l-nav__dropdown {
          right: 0;
          left: auto; }
      .c-subnav__nav .l-nav__dropdown {
        display: block;
        opacity: 0;
        visibility: hidden;
        background: #F2F7F7;
        padding: 1.5rem;
        z-index: 999; }
        .c-subnav__nav .l-nav__dropdown .l-nav__item {
          margin: 1rem 0;
          padding: 0;
          display: inline;
          line-height: 2.6em; }
        .c-subnav__nav .l-nav__dropdown .l-nav__link {
          padding: 0;
          /*
                * Applied by Ammar as a fix https://www.wrike.com/open.htm?id=626098608 but caused something else when pushed. Commenting out in case we need it back.
                * white-space: normal;
                * line-height: 1.5em;
                */ }
      .c-subnav__nav .l-nav__item:hover {
        background: #F2F7F7; }
        .c-subnav__nav .l-nav__item:hover .l-nav__dropdown {
          opacity: 1;
          visibility: visible; } }

@media (min-width: 48em) {
  .c-subnav-dropdown {
    width: auto; }
    .c-subnav-dropdown > li {
      white-space: nowrap; }
    .c-subnav-dropdown--2 {
      -webkit-column-count: 2;
         -moz-column-count: 2;
              column-count: 2;
      -webkit-column-gap: 45px;
         -moz-column-gap: 45px;
              column-gap: 45px; }
    .c-subnav-dropdown--3 {
      -webkit-column-count: 3;
         -moz-column-count: 3;
              column-count: 3;
      -webkit-column-gap: 45px;
         -moz-column-gap: 45px;
              column-gap: 45px; }
    .c-subnav-dropdown--4 {
      -webkit-column-count: 4;
         -moz-column-count: 4;
              column-count: 4;
      -webkit-column-gap: 45px;
         -moz-column-gap: 45px;
              column-gap: 45px; } }

/*------------------------------------*\
    #FOOTER
\*------------------------------------*/
/**
 * 1) Global block at the bottom of each page that contains a navigation and other information
 */
.c-footer {
  font-size: 0.875rem; }

/**
 * This is the grid for both the top and bottom of the footer
 */
.c-footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }
  @media (min-width: 48em) {
    .c-footer__grid {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      text-align: left;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch; } }

/**
 * This is the inner top area of the footer
 */
.c-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 0 40px;
  background: #068473;
  color: #fff; }

/**
 * This is the inner bottom area of the footer
 */
.c-footer__bottom {
  padding: 10px 0;
  background: #066F61;
  color: #fff; }

/**
 * This is the inner bottom area of the footer
 */
.c-footer__col {
  max-width: 100%; }
  .c-footer__col > p {
    color: #fff; }
  @media (min-width: 48em) {
    .c-footer__col {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(33.333% - 2rem);
              flex: 0 0 calc(33.333% - 2rem);
      max-width: calc(33.333% - 2rem); }
      .c-footer__col--bordered {
        border-right: 1px solid #34CA9D;
        padding-right: 3rem;
        margin-right: 3rem; } }

/**
 * Footer specific icon nav
 */
.c-footer__social {
  margin-top: 3rem;
  margin-bottom: 3rem; }
  @media (min-width: 48em) {
    .c-footer__social {
      margin-top: 2rem;
      margin-bottom: 0; } }

.c-footer__social .l-icon-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (min-width: 48em) {
    .c-footer__social .l-icon-nav {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

/**
 * Footer main nav
 */
.c-footer-nav {
  margin-bottom: 3rem; }
  .c-footer-nav--inline {
    margin-bottom: 0; }
  @media (min-width: 48em) {
    .c-footer-nav--inline {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

/**
 * Footer main nav - list
 */
.c-footer-nav__item {
  margin-bottom: 0.5rem; }

@media (min-width: 48em) {
  .c-footer-nav--inline .c-footer-nav__item {
    margin-bottom: 0;
    margin-right: 1rem; } }

/**
 * Footer main nav - item
 */
.c-footer-nav__link {
  color: #fff; }
  .c-footer-nav__link:hover {
    color: currentColor;
    text-decoration: underline; }
  .c-footer-nav__link:visited {
    color: #fff; }

/**
 * Footer floating toolbar
 */
.c-footer__toolbar {
  display: block;
  text-align: right;
  pointer-events: none;
  position: fixed;
  bottom: 1rem;
  left: 15px;
  right: 15px;
  z-index: 998; }
  @media (min-width: 28em) {
    .c-footer__toolbar {
      bottom: 50px; } }
  @media (min-width: 1024px) and (max-height: 725px) {
    .c-footer__toolbar {
      bottom: 20px; } }
  .c-footer__toolbar * {
    pointer-events: all; }

.c-covid-popup__trigger {
  display: inline-block;
  margin-bottom: .5rem;
  padding: 8px 20px;
  border-radius: 40px;
  background: #068473;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  border: 1px solid #068473; }
  @media (min-width: 380px) {
    .c-covid-popup__trigger {
      margin-bottom: 0;
      margin-right: 1rem; } }
  .c-covid-popup__trigger > .fa {
    margin-right: .5rem; }
  .c-covid-popup__trigger:hover, .c-covid-popup__trigger:active, .c-covid-popup__trigger:visited {
    background: #fff;
    border: 1px solid #34CA9D; }
    .c-covid-popup__trigger:hover span, .c-covid-popup__trigger:active span, .c-covid-popup__trigger:visited span {
      color: #363636; }
    .c-covid-popup__trigger:hover > .fa, .c-covid-popup__trigger:active > .fa, .c-covid-popup__trigger:visited > .fa {
      color: #1C72AB; }

.c-footer-subsite {
  background: #fff; }
  .c-footer-subsite .c-logo {
    margin: 0 auto;
    padding-right: 15px; }
    @media (max-width: 59em) {
      .c-footer-subsite .c-logo {
        padding: 0;
        margin-bottom: 15px; } }
  .c-footer-subsite .c-footer-nav__link {
    color: #363636; }
  @media (max-width: 59em) {
    .c-footer-subsite .c-footer-subsite__social .l-icon-nav {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .c-footer-subsite .c-footer-nav--inline {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .c-footer-subsite__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%; }
    .c-footer-subsite__row.center {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .c-footer-subsite__row.top {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
  .c-footer-subsite__page-title {
    display: block;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.47;
    padding-left: 15px;
    border-left: 1px solid #339380; }
    @media (max-width: 59em) {
      .c-footer-subsite__page-title {
        border: none;
        margin-bottom: 15px; } }
  .c-footer-subsite__col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: auto; }
    @media (max-width: 84em) {
      .c-footer-subsite__col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.333%;
                flex: 0 0 33.333%;
        width: 33.333%; } }
    @media (max-width: 47em) {
      .c-footer-subsite__col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        width: 50%; } }
    @media (max-width: 27em) {
      .c-footer-subsite__col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%; } }
  @media (min-width: 60em) {
    .c-footer-subsite__row.c-footer-subsite__row--stack .c-footer-subsite__col {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      width: auto; } }
  @media (max-width: 59em) {
    .c-footer-subsite__row.c-footer-subsite__row--stack .c-footer-subsite__col {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
      text-align: center; } }
  .c-footer-subsite__line {
    background: #339380; }
  .c-footer-subsite__spacer {
    -webkit-box-flex: 100;
        -ms-flex: 100 0 auto;
            flex: 100 0 auto; }
  .c-footer-subsite__link-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.47; }
  .c-footer-subsite__list {
    display: block;
    line-height: 2em;
    margin-bottom: 30px; }
    @media (max-width: 84em) {
      .c-footer-subsite__list {
        line-height: 1.5em; } }
  .c-footer-subsite__list-item a {
    color: #363636; }
    @media (max-width: 84em) {
      .c-footer-subsite__list-item a {
        font-size: 14px; } }

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden; }

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden; }

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0; }

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .modaal-wrapper * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden; }
  .modaal-wrapper.modaal-start_none {
    display: none;
    opacity: 1; }
  .modaal-wrapper.modaal-start_fade {
    opacity: 0;
    visibility: hidden; }
  .modaal-wrapper *[tabindex="0"] {
    outline: none !important; }
  .modaal-wrapper.modaal-fullscreen {
    overflow: hidden; }

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%; }
  .modaal-fullscreen .modaal-outer-wrapper {
    display: block; }

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px; }
  .modaal-fullscreen .modaal-inner-wrapper {
    padding: 0;
    display: block;
    vertical-align: top; }

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto; }
  .modaal-container.is_loading {
    height: 100px;
    width: 100px;
    overflow: hidden; }
  .modaal-fullscreen .modaal-container {
    max-width: none;
    height: 100%;
    overflow: auto; }

.modaal-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 30px;
  height: 30px;
  background: #068473;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .modaal-close:focus, .modaal-close:hover {
    outline: none;
    background: #066F61; }
  .modaal-close:before, .modaal-close:after {
    display: block;
    content: " ";
    position: absolute;
    top: 7px;
    left: 14px;
    width: 2px;
    height: 16px;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out; }
  .modaal-close:before {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .modaal-close:after {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .modaal-close span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden; }
  .modaal-fullscreen .modaal-close {
    right: 0;
    top: 0; }
  @media (min-width: 48em) {
    .modaal-close {
      width: 50px;
      height: 50px; }
      .modaal-close:before, .modaal-close:after {
        top: 16px;
        left: 24px;
        height: 18px; } }

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0; }

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent; }
  .modaal-confirm-btn.modaal-ok {
    padding: 10px 15px;
    color: #fff;
    background: #555;
    border-radius: 3px;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out; }
    .modaal-confirm-btn.modaal-ok:hover {
      background: #2f2f2f; }
  .modaal-confirm-btn.modaal-cancel {
    text-decoration: underline; }
    .modaal-confirm-btn.modaal-cancel:hover {
      text-decoration: none;
      color: #2f2f2f; }

@keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important; }

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent; }

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important; }

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
          animation: instaReveal 1s linear forwards; }

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px; }

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%; }

.modaal-gallery-wrap {
  position: relative;
  color: #fff; }

.modaal-gallery-item {
  display: none; }
  .modaal-gallery-item img {
    display: block; }
  .modaal-gallery-item.is_active {
    display: block; }

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff; }
  .modaal-gallery-label:focus {
    outline: none; }

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .modaal-gallery-control.is_hidden {
    opacity: 0;
    cursor: default; }
  .modaal-gallery-control:focus, .modaal-gallery-control:hover {
    outline: none;
    background: #fff; }
    .modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
      background: #afb7bc; }
  .modaal-gallery-control span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden; }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    display: block;
    content: " ";
    position: absolute;
    top: 16px;
    left: 25px;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out; }
  .modaal-gallery-control:before {
    margin: -5px 0 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .modaal-gallery-control:after {
    margin: 5px 0 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px; }

.modaal-gallery-next-outer {
  right: 45px; }

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px; }

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg); }

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px; }

.modaal-gallery-prev-outer {
  left: 45px; }

.modaal-video-wrap {
  margin: auto;
  position: relative;
  max-width: 900px; }

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%); }
  .modaal-video-container iframe,
  .modaal-video-container object,
  .modaal-video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.modaal-iframe .modaal-content {
  width: 50%;
  height: 50%; }

.modaal-iframe-elem {
  width: 50%;
  height: 50%;
  display: block; }

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 506px; } }

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px; }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background: rgba(0, 0, 0, 0.7); }
    .modaal-gallery-control:before, .modaal-gallery-control:after {
      background: #fff; }
  .modaal-gallery-next {
    left: auto;
    right: 20px; }
  .modaal-gallery-prev {
    left: 20px;
    right: auto; } }

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important; } }

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important; } }

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px; }
  .modaal-instagram iframe {
    width: 600px !important; } }

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important; }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px; } }

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important; } }

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none; } }

.modaal-wrapper.modaal-alert .modaal-close {
  position: absolute;
  top: 0;
  right: 0; }

.modaal-wrapper.modaal-alert .modaal-content {
  padding: 50px 100px;
  text-align: center; }
  @media (max-width: 47em) {
    .modaal-wrapper.modaal-alert .modaal-content {
      padding: 50px 30px 15px; } }

.modaal-wrapper.modaal-alert .modal-content__icon {
  display: block;
  margin: 0 auto 15px; }

.modaal-wrapper.modaal-alert .modal-content__title {
  text-align: center;
  margin-bottom: 1rem; }

.modaal-wrapper.modaal-alert .modal-content__body {
  margin-bottom: 30px; }

.modaal-wrapper.modaal-alert .modal-content__footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  margin: 0;
  padding: 0; }
  .modaal-wrapper.modaal-alert .modal-content__footer .c-btn {
    margin: 0 10px; }
    @media (max-width: 47em) {
      .modaal-wrapper.modaal-alert .modal-content__footer .c-btn {
        margin: 0 0 15px; } }

.modal {
  display: none; }

.modal-content--split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }
  @media (min-width: 48em) {
    .modal-content--split {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .modal-content--split .modal-content__column {
    padding: 10vw 5vw; }
    @media (min-width: 48em) {
      .modal-content--split .modal-content__column {
        padding: 5vw;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        max-width: 50%; } }

.modal-content__column--bg {
  background: #F7FCFC; }

.modal-content__title {
  font-size: calc(1.25625rem + 0.075vw);
  margin-bottom: 2rem;
  text-align: center; }
  @media (min-width: 1200px) {
    .modal-content__title {
      font-size: 1.3125rem; } }
  @media (min-width: 48em) {
    .modal-content__title {
      text-align: left; } }

.modal-content__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #C2D1D9; }
  .modal-content__footer--swap-in {
    display: block; }
  .modal-content__footer--swap-out {
    display: none; }
  .modal-content__footer p {
    font-size: 0.875rem; }
  @media (min-width: 48em) {
    .modal-content__footer {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      text-align: left; }
      .modal-content__footer--swap-in {
        display: none; }
      .modal-content__footer--swap-out {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .modal-content__footer > div {
        max-width: 245px; } }

.modal-content__connector {
  position: relative;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  background: #068473;
  color: #fff; }
  @media (min-width: 48em) {
    .modal-content__connector {
      position: absolute;
      top: 5vw;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      margin-top: 0;
      margin-left: 0; }
      .modal-content__connector--center {
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); } }

.c-form-modal {
  background: #fff;
  padding: 30px; }

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
      -ms-transform: scale(0.25);
          transform: scale(0.25); }

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute; }

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff; }

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
  animation-delay: .12s; }

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
  animation-delay: .25s; }

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
  animation-delay: .37s; }

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s; }

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite; }

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
  animation-delay: .62s; }

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s; }

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0); }

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation-delay: .87s; }

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0); }

/*------------------------------------*\
    #HEROES
\*------------------------------------*/
/**
 * Main wrapping element of the internal hero.
 * 1. Has a white background to great section. Should always be full width.
 */
.c-hero {
  width: 100%;
  padding: 4rem 0 2rem;
  margin-bottom: 2rem;
  background: #fff; }
  .classes-and-events-landing .c-hero {
    padding: 3rem 1rem; }

/**
 * Inner Wrapper
 * 1. Contains the greyish/green background 
 * 2. Used to create grid with content and image when there is one.
 * 3. Modifiers: --wrap => Forces when there is not a "grid" the elements to wrap. Used for search heroes
 */
.c-hero__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#f2f7f7), to(#f7fcfc));
  background: -o-linear-gradient(bottom, #f2f7f7 0%, #f7fcfc 100%);
  background: linear-gradient(0deg, #f2f7f7 0%, #f7fcfc 100%); }
  .c-hero__inner--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  @media (min-width: 48em) {
    .c-hero__inner {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .c-hero__inner--wrap {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .c-hero__inner:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../../images/imagePattern_squareAndLines.svg) top left no-repeat;
    background-size: cover;
    width: 73px;
    height: 133px;
    top: -11px;
    right: -11px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    @media (min-width: 48em) {
      .c-hero__inner:before {
        width: 110px;
        height: 200px; } }
    @media (min-width: 48em) {
      .c-hero__inner:before {
        top: -16px;
        right: -15px; } }

/**
 * Content holder containing the title, content and links
 * 1. Has the dot pattern set as pseudo element
 * 2. Modifiers: --center => Centers the content when there is no image.
 */
.c-hero__content {
  position: relative;
  margin: calc(1.525rem + 3.3vw);
  text-align: center; }
  @media (min-width: 1200px) {
    .c-hero__content {
      margin: 4rem; } }
  .c-hero__content:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../../images/imagePattern_dotGrid-green.svg) top left repeat;
    background-size: 48px;
    width: 48px;
    margin-left: -24px;
    height: 50%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 0;
    left: -43px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  @media (min-width: 48em) {
    .c-hero__content {
      position: static;
      text-align: left;
      padding-right: 2rem; }
      .c-hero__content:before {
        content: "";
        display: block;
        position: absolute;
        background: url(../../images/imagePattern_dotGrid-green.svg) top left repeat;
        background-size: 48px;
        width: 48px;
        margin-left: -24px;
        height: 60%;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); } }
  .c-hero__content--left {
    text-align: left; }
  .c-hero__content--center {
    width: 100%;
    max-width: 45rem;
    text-align: center; }
    @media (min-width: 48em) {
      .c-hero__content--center {
        margin: 4rem auto; }
        .c-hero__content--center .c-hero__links {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: distribute;
              justify-content: space-around; } }

/**
 * Hero Title
 */
.c-hero__title {
  margin: 1rem 0;
  line-height: 1.25; }

/**
 * Wrapper around the links
 */
.c-hero__links {
  margin-top: 1rem;
  text-align: left; }
  .c-hero__links--columns {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1; }
    @media (min-width: 48em) {
      .c-hero__links--columns {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2; } }

/**
 * Each link in the hero.
 * 1. Primary link style comes from '.c-link-btn'. This is primaryily layout in the hero only
 */
.c-hero__link {
  display: block;
  width: 100%;
  border-bottom: 1px solid #C2D1D9;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: left; }
  .c-hero__link > a {
    display: block; }
  .c-hero__link:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0; }
  @media (min-width: 48em) {
    .c-hero__link {
      width: auto;
      max-width: 200px;
      border-bottom: none;
      padding-bottom: 0; }
      .c-hero__link > a {
        display: inline-block; } }
  .c-hero__link .c-link-btn:visited {
    color: #363636; }

.c-hero__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1065px;
  padding: 0 1rem;
  margin: 2rem auto 4rem; }
  .c-hero__form--lg {
    max-width: 1280px; }
  .c-hero__form--full {
    max-width: 100%; }
    @media (min-width: 48em) {
      .c-hero__form--full {
        padding: 0 4rem !important; } }
  @media (min-width: 48em) {
    .c-hero__form {
      padding: 0 2rem;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .c-hero__form .c-form-group {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
        margin-right: 1rem; }
        .c-hero__form .c-form-group--lg {
          -webkit-box-flex: 2;
              -ms-flex: 2 1 auto;
                  flex: 2 1 auto; }
      .c-hero__form .c-btn {
        max-width: 115px;
        padding: 1.125rem 1rem;
        margin-top: 23px; } }

.c-hero__tag {
  display: inline-block;
  padding: 0.5rem;
  background: #E6F4F2;
  color: #066F61;
  border-radius: 2px;
  font-size: 0.875rem; }
  @media (min-width: 48em) {
    .c-hero__tag {
      margin-bottom: 0.5rem; } }

.c-hero__date {
  margin-top: 0.5rem; }
  .c-hero__date > i {
    margin-right: 0.5rem; }

.c-hero__image {
  position: relative;
  width: 100%;
  min-height: 25vh; }
  .c-hero__image > img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }
  @media (min-width: 48em) {
    .c-hero__image {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%;
      min-height: 33vw; } }
  .c-hero__image--fad {
    overflow: hidden;
    min-height: 300px;
    border-bottom: 12px solid #fff; }
    .c-hero__image--fad > img {
      -o-object-fit: none;
         object-fit: none;
      top: 0;
      height: auto;
      width: 300px;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
    @media (min-width: 48em) {
      .c-hero__image--fad {
        min-height: 45vw;
        border-bottom: none; }
        .c-hero__image--fad > img {
          -o-object-fit: none;
             object-fit: none;
          top: 70px;
          bottom: initial;
          height: auto;
          width: 300px;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); } }
    @media (min-width: 85em) {
      .c-hero__image--fad {
        min-height: 33vw; } }

.c-hero__footer {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  padding: 30px 0; }
  .c-hero__footer--center {
    text-align: center; }
  .c-hero__footer a {
    font-weight: 500; }

/*------------------------------------*\
    #FEATURED HERO
\*------------------------------------*/
@media (min-width: 48em) {
  .c-hero-feat {
    overflow: hidden;
    margin-bottom: 5rem; } }

/**
 * Inner container for the hero
 */
.c-hero-feat__inner {
  position: relative; }
  @media (min-width: 48em) {
    .c-hero-feat__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 0 20px 2rem; } }

/**
 * Wrapper for the content
 */
.c-hero-feat__content {
  position: absolute;
  bottom: 100px;
  left: 30px;
  right: 30px;
  z-index: 10;
  text-align: center; }
  .c-hero-feat__content .c-btn {
    padding: 1rem 0.5rem; }
  @media (min-width: 48em) {
    .c-hero-feat__content {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      max-width: 610px;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 45%;
              flex: 0 0 45%;
      margin-right: 5%;
      text-align: left; } }
  @media (min-width: 60em) {
    .c-hero-feat__content:before {
      content: "";
      display: block;
      position: absolute;
      background: url(../../images/imagePattern_dotGrid-green.svg) top left repeat;
      background-size: 48px;
      width: 48px;
      height: 104px;
      top: 0;
      left: -68px;
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); } }

/**
 * Wrapper for the image and the pattern added via mixin
 */
.c-hero-feat__image {
  display: block;
  height: 90vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center center; }
  .c-hero-feat__image:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../../images/imagePattern_squareAndLines.svg) top left no-repeat;
    background-size: cover;
    width: 73px;
    height: 133px;
    bottom: -11px;
    left: -11.5px; }
    @media (min-width: 48em) {
      .c-hero-feat__image:before {
        width: 110px;
        height: 200px; } }
    @media (min-width: 48em) {
      .c-hero-feat__image:before {
        bottom: -16px;
        left: -15px; } }
  .c-hero-feat__image:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: black;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); }
  @media (min-width: 48em) {
    .c-hero-feat__image {
      height: 50vw;
      width: 100%;
      margin-right: calc(50% - 50vw);
      max-height: 680px; }
      .c-hero-feat__image:after {
        display: none; } }

/**
 * Text styling for the subheader
 */
.c-hero-feat__subtitle {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff; }
  @media (min-width: 48em) {
    .c-hero-feat__subtitle {
      color: #099380;
      font-size: calc(1.25625rem + 0.075vw);
      font-weight: 700;
      line-height: 1.47; } }
  @media (min-width: 48em) and (min-width: 1200px) {
    .c-hero-feat__subtitle {
      font-size: 1.3125rem; } }

/**
 * Text styling for the main title. Uses var from top of file
 */
.c-hero-feat__title {
  font-size: calc(1.26875rem + 0.225vw);
  color: #fff;
  margin-bottom: 1rem; }
  @media (min-width: 1200px) {
    .c-hero-feat__title {
      font-size: 1.4375rem; } }
  @media (min-width: 48em) {
    .c-hero-feat__title {
      color: #363636;
      font-size: calc(1.425rem + 2.1vw); } }
  @media (min-width: 48em) and (min-width: 1200px) {
    .c-hero-feat__title {
      font-size: 3rem; } }
  @media (min-width: 70em) {
    .c-hero-feat__title {
      font-size: calc(1.5375rem + 3.45vw); } }
  @media (min-width: 70em) and (min-width: 1200px) {
    .c-hero-feat__title {
      font-size: 4.125rem; } }

/**
* Feature Hero Home page - Alt version
*/
.c-hero-feat.c-hero-feat--alt {
  /* <- alt version starts here */ }
  .c-hero-feat.c-hero-feat--alt .c-hero-feat__content {
    padding-right: 11.5%; }
    @media (max-width: 1200px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__content {
        padding-right: 5%; } }
    @media (max-width: 1024px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__content {
        padding-right: 0; } }
  .c-hero-feat.c-hero-feat--alt .c-hero-feat__pretitle {
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38;
    color: #339380;
    margin-bottom: 1rem;
    font-weight: 500; }
    @media (min-width: 1200px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__pretitle {
        font-size: 1.625rem; } }
    @media (max-width: 992px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__pretitle {
        margin-top: 1rem; } }
    @media (max-width: 768px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__pretitle {
        color: #fff; } }
  .c-hero-feat.c-hero-feat--alt .c-hero-feat__subtitle {
    color: #646F78;
    font-weight: normal;
    font-size: 16px; }
    @media (max-width: 768px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__subtitle {
        color: #fff; } }
  .c-hero-feat.c-hero-feat--alt .c-btn {
    padding-left: 2rem;
    padding-right: 2rem; }

/**
* Feature Hero Home page - Alt version
*/
.c-hero-feat.c-hero-feat--alt {
  /* <- alt version starts here */ }
  .c-hero-feat.c-hero-feat--alt .c-hero-feat__content {
    padding-right: 11.5%; }
    @media (max-width: 1200px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__content {
        padding-right: 5%; } }
    @media (max-width: 1024px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__content {
        padding-right: 0; } }
  .c-hero-feat.c-hero-feat--alt .c-hero-feat__pretitle {
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38;
    color: #339380;
    margin-bottom: 1rem;
    font-weight: 500; }
    @media (min-width: 1200px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__pretitle {
        font-size: 1.625rem; } }
    @media (max-width: 992px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__pretitle {
        margin-top: 1rem; } }
    @media (max-width: 768px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__pretitle {
        color: #fff; } }
  .c-hero-feat.c-hero-feat--alt .c-hero-feat__subtitle {
    color: #646F78;
    font-weight: normal;
    font-size: 16px; }
    @media (max-width: 768px) {
      .c-hero-feat.c-hero-feat--alt .c-hero-feat__subtitle {
        color: #fff; } }
  .c-hero-feat.c-hero-feat--alt .c-btn {
    padding-left: 2rem;
    padding-right: 2rem; }

/*------------------------------------*\
    #TAB SLIDER
\*------------------------------------*/
/**
 * Main wrapper for the component
 */
.c-tab-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

/**
 * Main wrapper for the component
 */
.c-tab-slider__title {
  display: none; }
  @media (min-width: 48em) {
    .c-tab-slider__title {
      display: block;
      margin-top: 2rem; } }

/**
 * Style the nav wrapper.
 */
.c-tab-slider__nav {
  width: 90%;
  position: relative;
  z-index: 1;
  margin: -4rem 0 auto;
  background: #fff;
  padding: 1rem; }
  @media (min-width: 48em) {
    .c-tab-slider__nav {
      width: 25%;
      margin-top: 1rem;
      padding: 0 3rem;
      background: none; } }

/**
 * Style the list wrapper. List is on for this component. No other component uses
 */
.c-tab-slider__list {
  display: block;
  list-style: none;
  padding: 0;
  text-align: left; }
  @media (min-width: 48em) {
    .c-tab-slider__list {
      text-align: right; } }

/**
 * Style the list item.
 */
.c-tab-slider__list-item {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: #646F78;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
  cursor: pointer;
  border-bottom: 1px solid #C2D1D9; }
  @media (min-width: 1200px) {
    .c-tab-slider__list-item {
      font-size: 1.3125rem; } }
  .c-tab-slider__list-item:hover, .c-tab-slider__list-item:focus {
    color: #099380; }
  @media (min-width: 48em) {
    .c-tab-slider__list-item {
      position: relative;
      padding-bottom: 0;
      border-bottom: none; }
      .c-tab-slider__list-item:after {
        content: "";
        display: block;
        height: 2px;
        width: 0;
        position: absolute;
        left: calc(100% + 1.5rem);
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        background: #099380;
        z-index: 5;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
      .c-tab-slider__list-item.is-active .c-tab-slider__list-link {
        color: #099380; }
      .c-tab-slider__list-item.is-active:after {
        width: 3rem;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; } }
  .c-tab-slider__list-item.js-slide-tab-nav {
    display: none; }
    @media (min-width: 48em) {
      .c-tab-slider__list-item.js-slide-tab-nav {
        display: block; } }
  .c-tab-slider__list-item.mobile {
    display: block; }
    @media (min-width: 48em) {
      .c-tab-slider__list-item.mobile {
        display: none; } }

/**
 * Style the list item link.
 */
.c-tab-slider__list-link {
  display: block;
  width: 100%;
  position: relative;
  color: #363636; }
  .c-tab-slider__list-link:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    color: #099380;
    font-weight: 700;
    font-size: 1.25rem; }
  .c-tab-slider__list-link:hover, .c-tab-slider__list-link:focus {
    color: #099380; }
  @media (min-width: 48em) {
    .c-tab-slider__list-link {
      color: #646F78; }
      .c-tab-slider__list-link:after {
        display: none; } }

/**
 * Style the slides wrapper.
 */
.c-tab-slider__slides {
  display: none; }
  @media (min-width: 48em) {
    .c-tab-slider__slides {
      width: 75%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

/**
 * Style the slides wrapper.
 */
.c-tab-slider__main {
  width: 70%; }

/**
 * Style the slides wrapper.
 */
.c-tab-slider__next {
  position: relative;
  width: 30%;
  height: 80%;
  padding-left: 2rem;
  cursor: pointer; }
  .c-tab-slider__next .c-img-card {
    height: 100%;
    min-height: inherit; }
  .c-tab-slider__next:after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: block;
    width: 134px;
    height: 129px;
    background: rgba(9, 147, 128, 0.1);
    z-index: -2; }

.ie11 .c-tab-slider .c-img-card {
  overflow: hidden; }
  .ie11 .c-tab-slider .c-img-card .c-img-card__img {
    width: auto;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    max-height: none;
    max-width: none;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.slider {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  /*
    * 	Slider component styling/defaults
    */
  /*
    * 	Slider navigation
    */
  /*
    * 	Slider States
    */
  /*
    * 	Slider Actions
    */ }
  .slider__stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
    .slider__stage:after {
      content: ".";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }
  .slider__stage, .slider__stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .slider__wrapper, .slider__item {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  .slider__item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
    .slider__item > img {
      display: block;
      width: 100%; }
  .slider__dots {
    width: 100%;
    text-align: center;
    margin-top: 1rem; }
  .slider__dot {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer; }
    .slider__dot > span {
      display: inline-block;
      width: .6rem;
      height: .6rem;
      border-radius: 100%;
      background: rgba(54, 54, 54, 0.2);
      margin: 0 .5rem;
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center; }
    .slider__dot.active > span {
      -webkit-transform: scale(1.6667);
          -ms-transform: scale(1.6667);
              transform: scale(1.6667);
      background-color: #363636; }
  .slider__btn {
    display: inline-block;
    padding: 2rem;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.4s;
    -o-transition: background 0.4s;
    transition: background 0.4s; }
    .slider__btn.disabled .icon-highlight:before {
      color: rgba(54, 54, 54, 0.25); }
    .slider__btn:focus {
      outline: none; }
  .slider__arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 0;
    background: none;
    border: none;
    color: #363636; }
  .slider__prev {
    left: -1rem; }
  .slider__next {
    right: -1rem; }
  .slider__nav.disabled, .slider__dots.disabled {
    display: none; }
  .slider__loaded {
    display: block; }
  .slider__loading {
    opacity: 0;
    display: block; }
  .slider__hidden {
    opacity: 0; }
  .slider__refresh .slider__item {
    visibility: hidden; }
  .slider__rtl {
    direction: rtl; }
    .slider__rtl .slider__item {
      float: right; }
  .slider.no-js {
    display: block; }
  .slider__grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab; }
    .slider__grab .slider__item {
      -ms-touch-action: pan-y;
          touch-action: pan-y;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }

.slider .slider__nav .slider__prev,
.slider .slider__nav .slider__next,
.slider .slider__dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.slider--showNext {
  position: relative;
  margin-right: -15px; }
  @media (min-width: 60em) {
    .slider--showNext {
      margin: 0; } }
  .slider--showNext .slider__stage {
    padding-left: 0 !important; }
  .slider--showNext .slider__item {
    opacity: .5;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .slider--showNext .slider__item.active {
      opacity: 1; }
  .slider--showNext .slider__prev {
    display: none; }
  .slider--showNext .slider__next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    padding: 2.5rem 1.25rem;
    line-height: 1;
    color: #099380;
    background: #ECFC2B; }
    .slider--showNext .slider__next:before {
      content: "\f053 \f053";
      font-family: 'Font Awesome 5 Free';
      font-weight: 700;
      font-size: 1.125rem; }

/*
 *  Owl Carousel - Animate Plugin
 */
.slider .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.slider .slider__animated-in {
  z-index: 0; }

.slider .owl-animated-out {
  z-index: 1; }

.slider .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

.slider .fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn; }

.c-callout-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3.375rem; }
  .c-callout-cta--full {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: #E6F4F2;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-image: url("../../images/pattern_whitedots-graygrid-long.svg");
    background-size: auto;
    border: 2px solid #a4e0c9;
    position: relative;
    padding: 3rem 4rem; }
    .c-callout-cta--full a {
      font-weight: 700; }
    .c-callout-cta--full.with-leaf:after {
      position: absolute;
      content: "";
      background: url(../../images/leaf-1.png);
      bottom: -25px;
      right: -15px;
      width: 65px;
      height: 65px;
      background-size: contain;
      background-repeat: no-repeat; }
  .c-callout-cta--simple {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: #E6F4F2;
    border: 2px solid #a4e0c9;
    position: relative;
    padding: 1.5rem 2rem;
    margin: 2rem 0; }
    .c-callout-cta--simple p {
      margin: 0; }
    .c-callout-cta--simple a {
      font-weight: 700; }
  @media (min-width: 48em) {
    .c-callout-cta {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      margin-bottom: 0; }
      .c-callout-cta--full {
        padding: 2rem; }
        .c-callout-cta--full.with-leaf:after {
          right: 25px; } }

.c-callout-cta__left,
.c-callout-cta__right {
  position: relative;
  width: 100%;
  padding: calc(1.325rem + 0.9vw); }
  @media (min-width: 1200px) {
    .c-callout-cta__left,
    .c-callout-cta__right {
      padding: 2rem; } }
  @media (min-width: 48em) {
    .c-callout-cta__left,
    .c-callout-cta__right {
      padding: calc(1.525rem + 3.3vw); } }
  @media (min-width: 48em) and (min-width: 1200px) {
    .c-callout-cta__left,
    .c-callout-cta__right {
      padding: 4rem; } }

.c-callout-cta__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3%;
          flex: 0 0 33.3%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../../images/pattern_whitedots-short.svg), url(../../images/pattern_whitedots-short-bottom.svg);
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 29px, 50px;
  background-color: #068473;
  border: none;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center; }
  @media (max-width: 47em) {
    .c-callout-cta__left {
      background-image: url(../../images/pattern_greendots-greengrid-tall-mobile.svg);
      background-position: right bottom;
      background-repeat: no-repeat;
      background-size: 40px; } }

.c-callout-cta__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  justify-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #E6F4F2;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url("../../images/pattern_whitedots-graygrid-long.svg");
  background-size: auto;
  border: 2px solid #a4e0c9;
  border-left: none;
  position: relative; }
  @media (max-width: 47em) {
    .c-callout-cta__right {
      background-size: 150px;
      background-position: 90% 115%;
      border: none; } }
  .c-callout-cta__right > img {
    max-width: 6.75rem;
    margin-top: 2rem;
    margin-bottom: -4.75rem; }
  .c-callout-cta__right:after {
    content: "";
    display: block;
    position: absolute;
    right: -11px;
    bottom: -15px;
    width: 56px;
    height: 53px;
    background-image: url(../../images/leaf-1.png);
    background-repeat: no-repeat;
    z-index: 2;
    -webkit-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
            transform: rotate(10deg); }
    @media (max-width: 47em) {
      .c-callout-cta__right:after {
        right: 10px;
        bottom: -20px; } }

.c-callout-cta__subtitle {
  color: #fff;
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  margin-bottom: 0.5rem; }
  @media (min-width: 1200px) {
    .c-callout-cta__subtitle {
      font-size: 1.3125rem; } }
  @media (min-width: 48em) {
    .c-callout-cta__subtitle {
      margin-bottom: 0; } }

.c-callout-cta__title {
  color: #fff;
  font-size: 65px; }

.c-callout-cta__desc {
  color: #fff; }

.c-difference-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3.375rem; }
  @media (min-width: 48em) {
    .c-difference-cta {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      margin-bottom: 0; } }

.c-difference-cta__left,
.c-difference-cta__right {
  position: relative;
  width: 100%;
  padding: calc(1.325rem + 0.9vw); }
  @media (min-width: 1200px) {
    .c-difference-cta__left,
    .c-difference-cta__right {
      padding: 2rem; } }
  @media (min-width: 48em) {
    .c-difference-cta__left,
    .c-difference-cta__right {
      padding: calc(1.525rem + 3.3vw); } }
  @media (min-width: 48em) and (min-width: 1200px) {
    .c-difference-cta__left,
    .c-difference-cta__right {
      padding: 4rem; } }

.c-difference-cta__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../../images/pattern_greendots-greengrid-tall.svg) bottom right no-repeat #068473; }
  @media (min-width: 48em) {
    .c-difference-cta__left {
      z-index: 1;
      background-position-y: 40px;
      background-position-x: calc(100% + 15px); }
      .c-difference-cta__left:before {
        content: "";
        position: absolute;
        bottom: -20px;
        left: -20px;
        display: block;
        width: 134px;
        height: 129px;
        background: rgba(9, 147, 128, 0.1);
        z-index: -2; } }

.c-difference-cta__right {
  background: url(../../images/pattern_whitedots-graygrid-long.svg) bottom right no-repeat #E6F4F2; }
  .c-difference-cta__right > img {
    max-width: 6.75rem;
    margin-top: 2rem;
    margin-bottom: -4.75rem; }
  @media (min-width: 48em) {
    .c-difference-cta__right {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      z-index: 0;
      -webkit-transform: translateY(2rem);
          -ms-transform: translateY(2rem);
              transform: translateY(2rem);
      padding-left: 6rem;
      margin-left: -4rem; }
      .c-difference-cta__right > img {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 6.75rem;
                flex: 0 0 6.75rem;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 2rem; } }

.c-difference-cta__subtitle {
  color: #fff;
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  margin-bottom: 0.5rem; }
  @media (min-width: 1200px) {
    .c-difference-cta__subtitle {
      font-size: 1.3125rem; } }
  @media (min-width: 48em) {
    .c-difference-cta__subtitle {
      margin-bottom: 0; } }

.c-difference-cta__title {
  color: #fff;
  font-size: calc(1.3125rem + 0.75vw);
  font-weight: 700;
  line-height: 1.333; }
  @media (min-width: 1200px) {
    .c-difference-cta__title {
      font-size: 1.875rem; } }

/*------------------------------------*\
    #HIGHLIGHT CTA
\*------------------------------------*/
/**
 * Highlight tab slide container
 * 1. The slide itself is an extention of the img_break molecule
 */
.c-highlight-cta__slide {
  position: relative;
  display: none; }
  .c-highlight-cta__slide:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../../images/imagePattern_squareAndLines.svg) top left no-repeat;
    background-size: cover;
    width: 73px;
    height: 133px;
    top: -11px;
    left: -11.5px;
    -webkit-transform: scaleX(-1) rotate(180deg);
        -ms-transform: scaleX(-1) rotate(180deg);
            transform: scaleX(-1) rotate(180deg); }
    @media (min-width: 48em) {
      .c-highlight-cta__slide:before {
        width: 110px;
        height: 200px; } }
    @media (min-width: 48em) {
      .c-highlight-cta__slide:before {
        top: -16px;
        left: -15px; } }
  @media (min-width: 60em) {
    .c-highlight-cta__slide {
      display: block; } }

/**
 * Highlight tab list container
 */
.c-highlight-cta__nav {
  display: none; }
  @media (min-width: 60em) {
    .c-highlight-cta__nav {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); } }
  .c-highlight-cta__nav--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 60em) {
      .c-highlight-cta__nav--mobile {
        display: none; } }

/**
 * Highlight tab list item
 * 1. This includes the active state styling added by JS
 */
.c-highlight-cta__nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 2rem 2rem 2rem 1rem;
  margin-bottom: 1rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .c-highlight-cta__nav-item p {
    margin-bottom: 0; }
  .c-highlight-cta__nav-item > img {
    margin-right: 1rem;
    max-width: 40px; }
  .c-highlight-cta__nav-item:after {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #34CA9D;
    font-size: 1.25rem; }
  @media (min-width: 60em) {
    .c-highlight-cta__nav-item {
      padding: 4rem 2rem;
      margin-bottom: 0; }
      .c-highlight-cta__nav-item:after {
        display: none; }
      .c-highlight-cta__nav-item:hover {
        background: #E6F4F2; }
      .c-highlight-cta__nav-item.is-active {
        color: #fff;
        background: #068473;
        -webkit-box-shadow: 0 10px 20px 0 rgba(54, 54, 54, 0.15);
                box-shadow: 0 10px 20px 0 rgba(54, 54, 54, 0.15); }
        .c-highlight-cta__nav-item.is-active .c-highlight-cta__nav-title,
        .c-highlight-cta__nav-item.is-active p {
          color: #fff; }
        .c-highlight-cta__nav-item.is-active:before {
          content: "";
          position: absolute;
          left: 50%;
          bottom: 100%;
          margin-left: -10px;
          width: 0;
          height: 0;
          border-left: 20px solid transparent;
          border-right: 20px solid transparent;
          border-bottom: 20px solid #068473; } }

/**
 * Highlight tab list item title
 */
.c-highlight-cta__nav-title {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  color: #363636; }
  @media (min-width: 1200px) {
    .c-highlight-cta__nav-title {
      font-size: 1.3125rem; } }

.related-articles {
  background: #fff;
  padding: 4rem !important;
  margin-top: 2rem;
  margin-bottom: 2rem; }
  .related-articles p {
    margin: 15px 0 0; }
  .related-articles .category {
    border-radius: 2px;
    background-color: #E6F4F2;
    color: #066F61;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 16px;
    padding: 5px;
    margin-bottom: 15px;
    display: inline-block; }

/*------------------------------------*\
    #Multi-item CTA
\*------------------------------------*/
.multi-cta--list .c-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1rem; }
  .multi-cta--list .c-link-list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 2rem);
            flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
    padding: 1rem 0.5rem;
    margin: 0 1rem;
    border-bottom: 1px solid #ECECEC;
    color: #646F78; }
    .multi-cta--list .c-link-list__item .c-arrow-link {
      background: transparent;
      padding: 0;
      color: #646F78;
      font-weight: 400; }

/*------------------------------------*\
    #FOUNDATION CTA
\*------------------------------------*/
/**
 * This is the wrapper for the component. Has spacing at bottom to treat the image as a background.
 */
.c-foundation-cta {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 30vw;
  background: #fff; }
  .c-foundation-cta > .l-container {
    position: relative;
    z-index: 5; }
  @media (min-width: 48em) {
    .c-foundation-cta {
      padding-bottom: 25vw; } }

/**
 * This is the block grid element.
 */
.c-foundation-cta__item {
  text-align: center; }
  @media (min-width: 60em) {
    .c-foundation-cta__item {
      margin: 1rem 0;
      padding: 1rem 1.5rem; } }

/**
 * This is the title inside each block grid element.
 */
.c-foundation-cta__item-title {
  margin-bottom: 1rem;
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47; }
  @media (min-width: 1200px) {
    .c-foundation-cta__item-title {
      font-size: 1.3125rem; } }

/**
 * This is the image at the bottom of the section. It gets treated as a background but is an image since this 
 * was a HTML only component and the flexibility was needed so that SCSS would not need to be changed.
 */
.c-foundation-cta__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0; }

/*------------------------------------*\
    #IMAGE CTA
\*------------------------------------*/
/**
 * This is a side by side style component inside of a l-card. Uses the l-left-right to determine layout
 */
/**
 * Image wrapper and image. Image treated as background.
 */
.c-img-cta__img > img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%; }

/**
 * Content wrapper
 */
.c-img-cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: calc(1.325rem + 0.9vw); }
  @media (min-width: 1200px) {
    .c-img-cta__content {
      padding: 2rem; } }
  @media (min-width: 60em) {
    .c-img-cta__content {
      padding: calc(1.425rem + 2.1vw);
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; } }
  @media (min-width: 60em) and (min-width: 1200px) {
    .c-img-cta__content {
      padding: 3rem; } }
  .c-img-cta__content p {
    width: 100%; }

.c-filter-nav {
  background: #068473; }
  .c-filter-nav--offset {
    margin-top: -2rem;
    margin-bottom: 2rem; }

.c-filter-nav__inner {
  margin-right: -15px; }
  @media (min-width: 48em) {
    .c-filter-nav__inner {
      margin-right: auto; } }

.c-filter-nav__item {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  margin-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .c-filter-nav__item:hover {
    background: #F7FCFC; }
    .c-filter-nav__item:hover .c-header__nav-link {
      color: #068473; }
    .c-filter-nav__item:hover > .l-nav__link {
      color: #068473; }
  .c-filter-nav__item:hover .c-filter-nav__dropdown {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 60em) {
    .c-filter-nav__item {
      display: block; } }

.c-filter-nav__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: none; }
  .c-filter-nav__dropdown .c-header__nav-link {
    padding: 0;
    color: #fff;
    white-space: nowrap;
    border-bottom: none;
    padding: 1rem; }
  .c-filter-nav__dropdown .c-header__nav-item:last-of-type .c-header__nav-link {
    margin-bottom: 0; }
  @media (min-width: 60em) {
    .c-filter-nav__dropdown {
      display: block;
      position: absolute;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      left: auto;
      z-index: 100;
      right: 0;
      background: #F7FCFC;
      -webkit-box-shadow: 0 20px 40px 0 rgba(54, 54, 54, 0.15);
              box-shadow: 0 20px 40px 0 rgba(54, 54, 54, 0.15); }
      .c-filter-nav__dropdown .c-header__nav-link {
        color: #363636;
        margin-bottom: 1rem;
        padding: 0;
        display: block; } }

.c-filter-nav__link {
  display: inline-block;
  padding: 1rem;
  white-space: nowrap;
  color: #fff;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s; }
  .c-filter-nav__link:visited {
    color: #fff; }
  .c-filter-nav__link:after {
    color: currentColor; }
  @media (max-width: 59em) {
    .c-filter-nav__link:after {
      display: none; } }

.c-full-slider {
  position: relative; }
  .c-full-slider .js-slider {
    position: relative; }
    .c-full-slider .js-slider:after {
      content: "";
      position: absolute;
      z-index: 3;
      top: 0;
      width: 100%;
      height: 100%;
      bottom: 0;
      pointer-events: none;
      -webkit-box-shadow: inset 100px 0 70px -50px rgba(255, 255, 255, 0.5), inset -100px 0 70px -50px rgba(255, 255, 255, 0.5);
              box-shadow: inset 100px 0 70px -50px rgba(255, 255, 255, 0.5), inset -100px 0 70px -50px rgba(255, 255, 255, 0.5); }
  .c-full-slider .slider__item {
    width: 100%;
    max-height: 600px;
    margin: 0; }
  .c-full-slider .c-img-break__inner--pattern {
    max-width: initial;
    position: absolute;
    left: 75px;
    width: calc(100% - 150px); }
    @media (max-width: 47em) {
      .c-full-slider .c-img-break__inner--pattern {
        position: static;
        left: initial;
        width: 90%; }
        .c-full-slider .c-img-break__inner--pattern:before {
          top: -30px;
          left: 8px;
          background-size: 70px; } }
  .c-full-slider .c-img-break {
    max-height: 500px; }
  .c-full-slider .c-arrow-link {
    display: inline-block;
    background: transparent;
    padding: 0 30px 0 0; }
  .c-full-slider .slider__item .slider__item {
    -webkit-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
            transform: scale(0.8, 0.8);
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: .25s transform, .5s box-shadow;
    -o-transition: .25s transform, .5s box-shadow;
    transition: .25s transform, .5s box-shadow;
    -webkit-box-shadow: inset 0 0 15px 5px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 0 15px 5px rgba(0, 0, 0, 0.5); }
  .c-full-slider .slider__item.active + .slider__item .slider__item {
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center; }
  .c-full-slider .slider__item.active .slider__item {
    -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0); }
  .c-full-slider .c-full-slider__counter {
    display: inline-block;
    padding: 7px 10px 4px;
    color: white;
    text-align: center;
    background: #068473;
    font-style: italic;
    letter-spacing: .2em;
    font-size: 12px;
    right: calc(15% + 10px);
    position: absolute;
    top: 15px;
    z-index: 100;
    opacity: .8;
    pointer-events: none; }
  .c-full-slider .slider__nav {
    display: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    pointer-events: none; }
    @media (min-width: 48em) {
      .c-full-slider .slider__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .c-full-slider .slider__btn {
    background: #fff;
    color: #066F61;
    font-size: 22px;
    pointer-events: all;
    width: 70px;
    height: 70px;
    padding: 0;
    line-height: 70ox;
    text-align: center;
    border-radius: 0 50% 50% 0;
    opacity: .5;
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s; }
    .c-full-slider .slider__btn:last-child {
      border-radius: 50% 0 0 50%; }
    .c-full-slider .slider__btn:hover {
      opacity: 1; }
  .c-full-slider .slider-mob-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 16px 26px 21px;
    border-bottom: 1px solid #ececec; }
    @media (min-width: 48em) {
      .c-full-slider .slider-mob-nav {
        display: none; } }
    .c-full-slider .slider-mob-nav__title {
      color: #363636;
      font-size: 1.125rem;
      line-height: 21px;
      font-weight: bold;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 117px;
              flex: 0 0 117px; }
    .c-full-slider .slider-mob-nav__next {
      text-align: right;
      padding-right: 18px; }
    .c-full-slider .slider-mob-nav__next-title, .c-full-slider .slider-mob-nav__next-subtitle {
      display: block;
      color: #363636;
      font-size: 1rem;
      font-weight: bold;
      line-height: 21px;
      text-align: right; }
    .c-full-slider .slider-mob-nav__next-subtitle {
      font-weight: normal; }
    .c-full-slider .slider-mob-nav .slider__btn {
      background-color: #ECFC2B;
      color: #068473;
      opacity: 1;
      font-size: 1rem;
      border-radius: 50% !important;
      width: 40px;
      min-width: 40px;
      height: 40px;
      position: relative;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
      .c-full-slider .slider-mob-nav .slider__btn:hover {
        background-color: #def103;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }
      .c-full-slider .slider-mob-nav .slider__btn i {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }

.c-tab-content {
  display: block;
  padding: 50px 80px;
  margin-top: 15px;
  margin-bottom: 15px;
  background: #fff; }
  .c-and-e-dashboard .c-tab-content {
    margin: 0;
    padding: 20px; }
  @media (max-width: 47em) {
    .c-tab-content {
      padding: 30px 15px; } }

.c-tab-content__heading {
  display: block;
  text-align: center; }
  .c-and-e-dashboard .c-tab-content__heading {
    text-align: left; }

.c-tab-content__footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  margin-top: 30px;
  text-align: center; }

.c-tab-content__link {
  display: inline-block;
  padding: 10px 50px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #066F61;
  color: #363636;
  font-size: 12px;
  font-weight: 700; }

.c-tab-content__desc {
  display: block;
  margin: 15px auto 30px;
  max-width: 800px; }

.c-tab-content__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  margin-bottom: 50px; }
  .c-tab-content__tabs:after {
    content: '';
    display: block;
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    border-top: 1px solid #f5f5f5; }
    .c-and-e-dashboard .c-tab-content__tabs:after {
      top: 0;
      border-top: 1px solid #ececec; }
  .c-and-e-dashboard .c-tab-content__tabs {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 0; }
    @media (min-width: 60em) {
      .c-and-e-dashboard .c-tab-content__tabs {
        margin-bottom: 20px; } }

.c-tab-content__input {
  visibility: hidden;
  position: absolute;
  left: -2000px; }

.c-tab-content__tab-label {
  display: block;
  height: 50px;
  padding: 0 25px;
  background: #f4f4f4;
  text-transform: uppercase;
  color: #646F78;
  line-height: 50px;
  border: solid 1px #e1e1e1;
  position: relative;
  z-index: 100;
  -webkit-transform: translate(0, 1px);
      -ms-transform: translate(0, 1px);
          transform: translate(0, 1px);
  cursor: pointer;
  -webkit-transition: opacity .25s;
  -o-transition: opacity .25s;
  transition: opacity .25s;
  font-weight: 700;
  position: relative;
  text-align: center; }
  .c-tab-content__tab-label:before {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    top: -1px;
    left: 0px;
    right: 0px;
    background-color: #066F61;
    z-index: 2;
    opacity: 0;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s; }
    .c-and-e-dashboard .c-tab-content__tab-label:before {
      top: 0;
      background-color: #34CA9D;
      height: 5px; }
  .c-and-e-dashboard .c-tab-content__tab-label {
    background: #fff;
    border: none; }
  @media (max-width: 27em) {
    .c-tab-content__tab-label {
      height: auto;
      line-height: 1.5;
      padding: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.c-tab-content__input:checked + .c-tab-content__tab-label {
  background-color: #fff;
  border: solid 1px #C2D1D9;
  border-left: solid 1px #f5f5f5;
  border-right: solid 1px #e1e1e1;
  border-bottom: solid 1px #fff;
  color: #363636; }
  .c-tab-content__input:checked + .c-tab-content__tab-label:before {
    opacity: 1; }
  .c-and-e-dashboard .c-tab-content__input:checked + .c-tab-content__tab-label {
    border: none; }

.c-tab-content__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  -webkit-box-ordinal-group: 1001;
      -ms-flex-order: 1000;
          order: 1000;
  padding: 0;
  -webkit-transition: opacity 0.25s, visibility 0s;
  -o-transition: opacity 0.25s, visibility 0s;
  transition: opacity 0.25s, visibility 0s; }
  .c-tab-content__panel ul:not(.c-link-list) {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 15px;
    color: #646F78;
    text-indent: -1rem;
    margin-left: 1rem; }
  .c-tab-content__panel ol:not(.c-link-list) {
    list-style-type: decimal;
    list-style-position: inside;
    margin-bottom: 15px;
    color: #646F78;
    text-indent: -1rem;
    margin-left: 1rem; }

.c-tab-content__column {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 800px; }
  @media (max-width: 69em) {
    .c-tab-content__column {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      width: 50%;
      padding-right: 10px; } }
  @media (max-width: 47em) {
    .c-tab-content__column {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
      padding-right: 0; } }
  .c-tab-content__column h1 {
    font-size: calc(1.4375rem + 2.25vw);
    font-weight: 700;
    line-height: 1; }
    @media (min-width: 1200px) {
      .c-tab-content__column h1 {
        font-size: 3.125rem; } }
  .c-tab-content__column h2 {
    font-size: calc(1.3125rem + 0.75vw);
    font-weight: 700;
    line-height: 1.333; }
    @media (min-width: 1200px) {
      .c-tab-content__column h2 {
        font-size: 1.875rem; } }
  .c-tab-content__column h3 {
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38; }
    @media (min-width: 1200px) {
      .c-tab-content__column h3 {
        font-size: 1.625rem; } }
  .c-tab-content__column h4 {
    font-size: calc(1.275rem + 0.3vw);
    font-weight: 700;
    line-height: 1.41; }
    @media (min-width: 1200px) {
      .c-tab-content__column h4 {
        font-size: 1.5rem; } }
  .c-tab-content__column h5 {
    font-size: calc(1.25625rem + 0.075vw);
    font-weight: 700;
    line-height: 1.47; }
    @media (min-width: 1200px) {
      .c-tab-content__column h5 {
        font-size: 1.3125rem; } }
  .c-tab-content__column h6 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.47; }

.c-tab-content__input:checked + .c-tab-content__tab-label + .c-tab-content__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  visibility: visible;
  opacity: 1;
  padding: 50px 0;
  height: auto; }
  .c-and-e-dashboard .c-tab-content__input:checked + .c-tab-content__tab-label + .c-tab-content__panel {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 60em) {
      .c-and-e-dashboard .c-tab-content__input:checked + .c-tab-content__tab-label + .c-tab-content__panel {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    .c-and-e-dashboard .c-tab-content__input:checked + .c-tab-content__tab-label + .c-tab-content__panel .event-card {
      margin-right: 0;
      margin-bottom: 20px; }
      @media (min-width: 60em) {
        .c-and-e-dashboard .c-tab-content__input:checked + .c-tab-content__tab-label + .c-tab-content__panel .event-card {
          margin-right: 20px;
          margin-bottom: 0; } }
      .c-and-e-dashboard .c-tab-content__input:checked + .c-tab-content__tab-label + .c-tab-content__panel .event-card:last-of-type {
        margin-right: 0; }
  @media (max-width: 59em) {
    .c-tab-content__input:checked + .c-tab-content__tab-label + .c-tab-content__panel {
      padding: 30px 0 0; } }

.c-tab-content.c-tab-content--forms {
  text-align: left; }

.c-tab-content.c-tab-content--forms .c-tab-content__heading {
  text-align: left; }

.c-tab-content.c-tab-content--forms .c-tab-content__input:checked + .c-tab-content__tab-label + .c-tab-content__panel {
  padding-bottom: 30px; }

.c-tab-content.c-tab-content--forms .c-tab-content__desc {
  display: block;
  margin: 15px 0 30px;
  max-width: initial; }

.c-tab-content.c-tab-content--forms .c-tab-content__tabs {
  margin-bottom: 0; }

.c-tab-content.c-tab-content--forms .c-tab-content__footer {
  -moz-text-align-last: left;
       text-align-last: left;
  max-width: 800px;
  margin: auto; }

.c-team-grid {
  display: block;
  padding: 50px 0;
  background-color: #fff;
  background-image: url(../../images/leaf-left-1.png), url(../../images/leaf-right-1.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center; }
  @media (max-width: 47em) {
    .c-team-grid {
      background-image: none, none; } }

.c-team-grid__heading {
  text-align: center;
  margin: auto;
  max-width: 48em; }

.c-team-grid__title {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  color: #099380; }
  @media (min-width: 1200px) {
    .c-team-grid__title {
      font-size: 1.3125rem; } }

.c-team-grid__subtitle {
  font-size: calc(1.3125rem + 0.75vw);
  font-weight: 700;
  line-height: 1.333;
  color: #363636;
  margin-bottom: 15px; }
  @media (min-width: 1200px) {
    .c-team-grid__subtitle {
      font-size: 1.875rem; } }

.c-team-grid__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 60em;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  margin: 0 auto; }
  @media (max-width: 47em) {
    .c-team-grid__grid {
      overflow-x: scroll;
      overflow-y: auto;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding: 30px 0;
      margin: 0 10px; } }

.c-team-grid__footer {
  text-align: center; }

.c-team-grid__more {
  font-size: 14px; }

/*------------------------------------*\
    #LOCATIONS
\*------------------------------------*/
/**
 * Main wrapping element of the internal hero.
 * 1. Has a white background to great section. Should always be full width.
 */
.c-location {
  width: 100%;
  padding: 2rem 0 !important;
  margin-bottom: 2rem;
  background: #fff; }

/**
 * Inner Wrapper
 * 1. Contains the greyish/green background 
 * 2. Used to create grid with content and image when there is one.
 * 3. Modifiers: --wrap => Forces when there is not a "grid" the elements to wrap. Used for search heroes
 */
.c-location__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#f2f7f7), to(#f7fcfc));
  background: -o-linear-gradient(bottom, #f2f7f7 0%, #f7fcfc 100%);
  background: linear-gradient(0deg, #f2f7f7 0%, #f7fcfc 100%); }
  .c-location__inner--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  @media (min-width: 48em) {
    .c-location__inner {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .c-location__inner--wrap {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .c-location__inner:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../../images/imagePattern_squareAndLines.svg) top left no-repeat;
    background-size: cover;
    width: 73px;
    height: 133px;
    top: -11px;
    right: -11px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    @media (min-width: 48em) {
      .c-location__inner:before {
        width: 110px;
        height: 200px; } }
    @media (min-width: 48em) {
      .c-location__inner:before {
        top: -16px;
        right: -15px; } }
  .c-location__inner:after {
    content: "";
    display: block;
    position: absolute;
    background-image: url("../images/leaf-1.png");
    width: 56px;
    height: 53px;
    right: -10px;
    bottom: -10px; }

/**
 * Content holder containing the title, content and links
 * 1. Has the dot pattern set as pseudo element
 * 2. Modifiers: --center => Centers the content when there is no image.
 */
.c-location__content {
  position: relative;
  margin: calc(1.525rem + 3.3vw);
  text-align: center; }
  @media (min-width: 1200px) {
    .c-location__content {
      margin: 4rem; } }
  .c-location__content:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../../images/imagePattern_dotGrid-green.svg) top left repeat;
    background-size: 48px;
    width: 48px;
    margin-left: -24px;
    height: 50%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 0;
    left: -43px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  @media (min-width: 48em) {
    .c-location__content {
      position: static;
      text-align: left;
      padding-right: 2rem; }
      .c-location__content:before {
        content: "";
        display: block;
        position: absolute;
        background: url(../../images/imagePattern_dotGrid-green.svg) top left repeat;
        background-size: 48px;
        width: 48px;
        margin-left: -24px;
        height: 60%;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); } }
  .c-location__content--left {
    text-align: left; }
  .c-location__content--center {
    max-width: 1280px;
    text-align: center;
    padding: 0; }
    @media (min-width: 48em) {
      .c-location__content--center {
        margin: 4rem auto; }
        .c-location__content--center .c-location__links {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: distribute;
              justify-content: space-around; } }

/**
 * Hero Title
 */
.c-location__title {
  margin: 1rem 0; }

/**
 * Wrapper around the links
 */
.c-location__links {
  margin-top: 1rem;
  text-align: left; }

/**
 * Each link in the hero.
 * 1. Primary link style comes from '.c-link-btn'. This is primaryily layout in the hero only
 */
.c-location__link {
  display: block;
  width: 100%;
  border-bottom: 1px solid #C2D1D9;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: left; }
  .c-location__link > a {
    display: block; }
  .c-location__link:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0; }
  @media (min-width: 48em) {
    .c-location__link {
      width: auto;
      max-width: 200px;
      border-bottom: none;
      padding-bottom: 0; }
      .c-location__link > a {
        display: inline-block; } }

.c-location__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1280px;
  padding: 0 1rem;
  margin: 2rem auto 0.5rem; }
  .c-location__form select {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    background: url(../../images/select-arrow.svg) center right no-repeat #FFFFFF;
    background-size: 12px; }
  .c-location__form input[typ="submit"] {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none; }
  .c-location__form select::-ms-expand {
    display: none; }
  @media (min-width: 48em) {
    .c-location__form {
      padding: 0 2rem;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .c-location__form .c-form-group {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
        margin-right: 1rem; }
      .c-location__form .c-btn {
        max-width: 115px;
        padding: 1.125rem 1rem; } }

.c-location__tag {
  display: inline-block;
  padding: 0.5rem;
  background: #E6F4F2;
  color: #066F61;
  border-radius: 2px;
  font-size: 0.875rem; }
  @media (min-width: 48em) {
    .c-location__tag {
      margin-bottom: 0.5rem; } }

.c-location__date {
  margin-top: 0.5rem; }
  .c-location__date > i {
    margin-right: 0.5rem; }

.c-location__image {
  position: relative;
  width: 100%;
  min-height: 25vh; }
  .c-location__image > img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }
  @media (min-width: 48em) {
    .c-location__image {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%;
      min-height: 33vw; } }

.c-location__footer {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  padding: 30px 0; }
  .c-location__footer--center {
    text-align: center; }
  .c-location__footer a {
    font-weight: 500; }

/*------------------------------------*\
    #LOCATIONS LLHA
\*------------------------------------*/
/**
 * Main wrapping element of the internal hero.
 * 1. Has a white background to great section. Should always be full width.
 */
.c-location-llha {
  width: 100%;
  padding: 2rem 0 !important;
  margin-bottom: 2rem;
  background: #fff; }

/**
 * Inner Wrapper
 * 1. Contains the greyish/green background 
 * 2. Used to create grid with content and image when there is one.
 * 3. Modifiers: --wrap => Forces when there is not a "grid" the elements to wrap. Used for search heroes
 */
.c-location-llha__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#f2f7f7), to(#f7fcfc));
  background: -o-linear-gradient(bottom, #f2f7f7 0%, #f7fcfc 100%);
  background: linear-gradient(0deg, #f2f7f7 0%, #f7fcfc 100%);
  padding: 2rem;
  margin-top: -6rem; }
  .c-location-llha__inner--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  @media (min-width: 48em) {
    .c-location-llha__inner {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .c-location-llha__inner--wrap {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }

/**
 * Content holder containing the title, content and links
 * 1. Has the dot pattern set as pseudo element
 * 2. Modifiers: --center => Centers the content when there is no image.
 */
.c-location-llha__content {
  position: relative;
  padding: 0 0.5rem; }
  @media (min-width: 48em) {
    .c-location-llha__content {
      position: static;
      text-align: left;
      padding-right: 2rem; } }
  .c-location-llha__content--left {
    text-align: left; }
  .c-location-llha__content--center {
    max-width: 1280px;
    text-align: center;
    padding: 0; }
    @media (min-width: 48em) {
      .c-location-llha__content--center {
        margin: 4rem auto; }
        .c-location-llha__content--center .c-location-llha__links {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: distribute;
              justify-content: space-around; } }

/**
 * Hero Title
 */
.c-location-llha__title {
  margin: 0 0 1rem; }

/**
 * Wrapper around the links
 */
.c-location-llha__links {
  margin-top: 1rem;
  text-align: left; }

/**
 * Each link in the hero.
 * 1. Primary link style comes from '.c-link-btn'. This is primaryily layout in the hero only
 */
.c-location-llha__link {
  display: block;
  width: 100%;
  border-bottom: 1px solid #C2D1D9;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: left; }
  .c-location-llha__link > a {
    display: block; }
  .c-location-llha__link:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0; }
  @media (min-width: 48em) {
    .c-location-llha__link {
      width: auto;
      max-width: 200px;
      border-bottom: none;
      padding-bottom: 0; }
      .c-location-llha__link > a {
        display: inline-block; } }

.c-location-llha__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1280px;
  padding: 0 0.5rem;
  margin: 0; }
  @media (min-width: 48em) {
    .c-location-llha__form {
      padding: 0 0.5rem;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .c-location-llha__form .c-form-group {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
        margin-right: 1rem; }
      .c-location-llha__form .c-btn {
        max-width: 115px;
        padding: 1.125rem 1rem; } }

.c-location-llha__tag {
  display: inline-block;
  padding: 0.5rem;
  background: #E6F4F2;
  color: #066F61;
  border-radius: 2px;
  font-size: 0.875rem; }
  @media (min-width: 48em) {
    .c-location-llha__tag {
      margin-bottom: 0.5rem; } }

.c-location-llha__date {
  margin-top: 0.5rem; }
  .c-location-llha__date > i {
    margin-right: 0.5rem; }

.c-location-llha__image {
  position: relative;
  width: 100%;
  min-height: 25vh; }
  .c-location-llha__image > img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }
  @media (min-width: 48em) {
    .c-location-llha__image {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%;
      min-height: 33vw; } }

.c-location-llha__footer {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  padding: 30px 0; }
  .c-location-llha__footer--center {
    text-align: center; }
  .c-location-llha__footer a {
    font-weight: 500; }

.c-location-llha__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-size: cover;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center;
  min-height: 300px;
  height: 50vw;
  max-height: 550px; }

.c-location-llha__hero-content {
  position: relative; }
  .c-location-llha__hero-content:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../../images/imagePattern_dotGrid-yellow.svg) top left repeat;
    background-size: 48px;
    width: 48px;
    margin-left: -24px;
    height: 90%;
    top: 0;
    left: -68px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }

.c-location-llha__hero-title {
  margin: 0;
  color: #fff;
  font-size: calc(1.4375rem + 2.25vw);
  font-weight: 700;
  line-height: 1;
  margin-left: calc(1.425rem + 2.1vw); }
  @media (min-width: 1200px) {
    .c-location-llha__hero-title {
      font-size: 3.125rem; } }
  @media (min-width: 1200px) {
    .c-location-llha__hero-title {
      margin-left: 3rem; } }

.c-cta-latest {
  padding: 30px 0;
  background-image: url(../../images/imagePattern_dotGrid-green.svg), url(../../images/pattern_greendots-greengrid-wide.svg);
  background-position: -4px -3px, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 50px, 100px;
  background-color: #068473; }
  @media (max-width: 47em) {
    .c-cta-latest {
      background-image: none; } }
  .c-cta-latest__header {
    background-image: none; }
    .c-cta-latest__header:after {
      content: none; }
  .c-cta-latest__heading {
    text-align: center;
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38;
    color: #fff; }
    @media (min-width: 1200px) {
      .c-cta-latest__heading {
        font-size: 1.625rem; } }
  .c-cta-latest__sub-head {
    display: none; }
  .c-cta-latest__description {
    display: none; }
  .c-cta-latest__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px; }
  .c-cta-latest__card {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    margin: 30px 15px;
    background: #fff;
    min-height: initial;
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); }
    .c-cta-latest__card img {
      display: none; }
    .c-cta-latest__card:before {
      content: none; }
    .c-cta-latest__card .c-img-card__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .c-cta-latest__card .c-img-card__inner .c-img-card__title {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        color: #363636;
        margin-bottom: 15px; }
      .c-cta-latest__card .c-img-card__inner .c-img-card__date {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        color: #363636;
        margin-top: 0;
        margin-bottom: 15px; }
      .c-cta-latest__card .c-img-card__inner .c-img-card__excerpt {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        color: #363636; }
  .c-cta-latest__footer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding: 15px 0; }
    .c-cta-latest__footer .c-btn--secondary {
      border: none;
      font-size: 14px; }

.c-cta-latest--light {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0; }

.c-cta-latest.c-cta-latest--light .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: initial;
  width: 100%;
  padding: 0; }

.c-cta-latest.c-cta-latest--light .c-btn.c-btn--secondary {
  border: solid 1px #099380; }

.c-cta-latest.c-cta-latest--light .c-cta-latest__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28%;
          flex: 0 0 28%;
  width: 28%;
  padding: 30px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  @media (max-width: 47em) {
    .c-cta-latest.c-cta-latest--light .c-cta-latest__header {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
      padding-top: 200px; } }
  .c-cta-latest.c-cta-latest--light .c-cta-latest__header:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%); }
    @media (max-width: 47em) {
      .c-cta-latest.c-cta-latest--light .c-cta-latest__header:after {
        height: 100%;
        background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0)));
        background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 100%); } }

.c-cta-latest.c-cta-latest--light .c-cta-latest__heading {
  text-align: left;
  position: relative;
  margin-bottom: 15px;
  z-index: 5; }

.c-cta-latest.c-cta-latest--light .c-img-card__title {
  max-width: 70%; }
  @media (max-width: 47em) {
    .c-cta-latest.c-cta-latest--light .c-img-card__title {
      max-width: initial; } }

.c-cta-latest.c-cta-latest--light .c-cta-latest__description {
  display: block;
  color: #fff;
  position: relative;
  z-index: 5; }

.c-cta-latest.c-cta-latest--light .c-cta-latest__cards {
  margin: 0; }
  @media (max-width: 47em) {
    .c-cta-latest.c-cta-latest--light .c-cta-latest__cards {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%; } }

.c-cta-latest.c-cta-latest--light .c-cta-latest__card {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent; }
  @media (max-width: 47em) {
    .c-cta-latest.c-cta-latest--light .c-cta-latest__card {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
      margin: 0; } }

.c-cta-latest.c-cta-latest--light .c-cta-latest__footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  text-align: right;
  padding: 30px; }
  @media (max-width: 47em) {
    .c-cta-latest.c-cta-latest--light .c-cta-latest__footer {
      text-align: center; } }

.c-cta-latest--no-image {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0; }

.c-cta-latest.c-cta-latest--no-image .c-cta-latest__header {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: none !important; }
  .c-cta-latest.c-cta-latest--no-image .c-cta-latest__header:after {
    content: none; }
  @media (max-width: 47em) {
    .c-cta-latest.c-cta-latest--no-image .c-cta-latest__header {
      padding: 30px; } }

.c-cta-latest.c-cta-latest--no-image .c-cta-latest__heading {
  text-align: left;
  font-size: calc(1.3125rem + 0.75vw);
  font-weight: 700;
  line-height: 1.333;
  color: #363636; }
  @media (min-width: 1200px) {
    .c-cta-latest.c-cta-latest--no-image .c-cta-latest__heading {
      font-size: 1.875rem; } }

.c-cta-latest.c-cta-latest--no-image .c-cta-latest__sub-head {
  display: block;
  text-align: left;
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47;
  color: #068473;
  font-weight: 500; }
  @media (min-width: 1200px) {
    .c-cta-latest.c-cta-latest--no-image .c-cta-latest__sub-head {
      font-size: 1.3125rem; } }

.c-cta-latest.c-cta-latest--no-image .c-cta-latest__description {
  color: #363636; }

.c-location-results {
  background: #fff;
  /* map/list toggle options */ }
  .c-location-results #list_view:checked ~ .c-location-results__main .c-location-results__list {
    display: block; }
  .c-location-results #list_view:checked ~ .c-location-results__main .c-location-results__map {
    display: none; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__list {
    display: none; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .c-location-results__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%; }
    .c-location-results__container > input[type="radio"] {
      position: absolute;
      left: -3000px;
      opacity: 0;
      visibility: hidden; }
  .c-location-results__sidebar {
    background: #fff;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
    width: 320px;
    padding: 15px 0; }
    @media (max-width: 59em) {
      .c-location-results__sidebar {
        position: fixed;
        overflow-x: hidden;
        -webkit-box-flex: initial;
            -ms-flex: initial;
                flex: initial;
        width: 0%;
        z-index: 999;
        padding: 0;
        top: 0;
        right: initial;
        bottom: 0;
        left: 0;
        -webkit-transition: width .25s;
        -o-transition: width .25s;
        transition: width .25s; }
        .c-location-results__sidebar.open {
          width: 100%; } }
  .c-location-results__mobile-head {
    display: none;
    background: #099380;
    position: relative;
    min-width: 320px; }
    @media (max-width: 59em) {
      .c-location-results__mobile-head {
        display: block; } }
  .c-location-results__mobile-header {
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38; }
    @media (min-width: 1200px) {
      .c-location-results__mobile-header {
        font-size: 1.625rem; } }
  .c-location-results__mobile-close {
    color: #fff !important;
    text-decoration: none;
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 1001;
    text-align: center;
    font-size: 34px !important;
    line-height: 0.5em !important;
    font-weight: normal !important;
    font-size: calc(1.275rem + 0.3vw);
    font-weight: 700;
    line-height: 1.41; }
    @media (min-width: 1200px) {
      .c-location-results__mobile-close {
        font-size: 1.5rem; } }
  .c-location-results__filter-toggle {
    display: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    color: #363636 !important;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    padding: 15px 0;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px; }
    .c-location-results__filter-toggle i {
      color: #34CA9D; }
    @media (max-width: 59em) {
      .c-location-results__filter-toggle {
        display: block; } }
  .c-location-results__search {
    background: #068473;
    padding: 15px;
    color: #fff;
    min-width: 250px; }
    @media (max-width: 59em) {
      .c-location-results__search {
        padding: 30px 15px; } }
  .c-location-results__search-heading {
    background: #068473;
    padding: 0;
    margin-bottom: 15px;
    color: #fff;
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38; }
    @media (min-width: 1200px) {
      .c-location-results__search-heading {
        font-size: 1.625rem; } }
  .c-location-results__filters {
    background: #fff;
    padding: 15px;
    color: #363636;
    min-width: 320px; }
  .c-location-results__filters-heading {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.47;
    margin-bottom: 15px; }
  .c-location-results__filters-block .c-form-group:nth-child(n+7) {
    display: none; }
  #toggle_filter:checked ~ .c-location-results__filters-block .c-form-group:nth-child(n+7) {
    display: block; }
  .c-location-results #toggle_filter {
    position: absolute;
    left: -3000px;
    opacity: 0;
    visibility: hidden; }
  .c-location-results__toggle-btn {
    display: inline-block;
    color: #1C72AB;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px; }
    .c-location-results__toggle-btn span:first-child {
      display: inline; }
    .c-location-results__toggle-btn span:last-child {
      display: none; }
  #toggle_filter:checked ~ .c-location-results__toggle-btn span:first-child {
    display: none; }
  #toggle_filter:checked ~ .c-location-results__toggle-btn span:last-child {
    display: inline; }
  .c-location-results__topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 15px 15px 0; }
    @media (max-width: 59em) {
      .c-location-results__topbar {
        padding: 0; } }
  .c-location-results__counter {
    display: block;
    padding: 0 0 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: initial; }
    .c-location-results__counter.c-location-results__counter--list, .c-location-results__counter.c-location-results__counter--map {
      display: none; }
    @media (max-width: 59em) {
      .c-location-results__counter {
        text-align: center;
        padding: 20px 0 10px;
        font-size: 14px; } }
  .c-location-results__tabs {
    display: block;
    text-align: right;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    width: 40%; }
    @media (max-width: 59em) {
      .c-location-results__tabs {
        display: none; } }
    .c-location-results__tabs label {
      display: inline-block;
      margin-left: -5px;
      background: #f4f4f4;
      padding: 15px 45px;
      border-top: 2px solid transparent;
      text-transform: uppercase;
      color: #646F78;
      font-weight: 500;
      cursor: pointer;
      -webkit-transition: .25s;
      -o-transition: .25s;
      transition: .25s;
      -webkit-box-shadow: 0;
              box-shadow: 0; }
  .c-location-results__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: #fff;
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media (max-width: 59em) {
      .c-location-results__main {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        background: #F2F7F7; } }
  .c-location-results__pagination {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 0 0 60px;
    background: #F2F7F7; }
  .c-location-results__list {
    background: #F2F7F7;
    padding: 0 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%; }
  .c-location-results__map {
    display: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    background: #F2F7F7; }
  .c-location-results__map-list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26%;
            flex: 0 0 26%;
    width: 26%;
    min-width: 300px;
    padding: 0 15px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 100vh;
    min-height: 600px;
    max-width: 350px; }
    @media (max-width: 47em) {
      .c-location-results__map-list {
        overflow: visible;
        max-height: initial;
        min-height: initial; } }
  .c-location-results__map-wrapper {
    position: relative;
    height: 0;
    padding-bottom: 100vh;
    max-height: 100vh;
    min-height: 600px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    padding: 15px 0; }
  .c-location-results__map-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .c-location-results__id-badge {
    display: none;
    position: absolute;
    cursor: pointer;
    top: 7px;
    right: 7px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #066F61; }
  .c-location-results__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 10px;
    min-width: 320px;
    margin-bottom: 30px; }
    .c-location-results__buttons--c-and-e {
      background: #fff;
      padding: 0 15px 25px;
      margin-left: 0; }
    .c-location-results__buttons .c-btn {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(50% - 20px);
              flex: 0 0 calc(50% - 20px);
      margin: 0 5px;
      width: calc(50% - 20px); }
  .c-location-results #list_view:checked ~ .c-location-results__main .c-location-results__tabs label:nth-child(1) {
    color: #363636;
    background: #fff;
    border-top-color: #066F61;
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05);
            box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05); }
  .c-location-results #list_view:checked ~ .c-location-results__main .c-location-results__topbar .c-location-results__counter--list {
    display: block; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__tabs label:nth-child(2) {
    color: #363636;
    background: #fff;
    border-top-color: #066F61;
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05);
            box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05); }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__topbar .c-location-results__counter--map {
    display: block; }
  @media (max-width: 69em) {
    .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
      max-width: initial; } }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__item {
    margin: 0 !important;
    color: #000;
    padding: 15px 0 0 !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__item-picture {
    display: none; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__id-badge {
    display: block;
    top: 23px !important;
    right: 10px !important; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__item-phone i {
    display: none; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__item-phone span {
    display: inline; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__item-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding-top: 0; }
    .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__item-info p {
      max-width: 200px; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__item-actions {
    padding-top: 15px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%; }
  .c-location-results #map_view:checked ~ .c-location-results__main .c-location-results__map .c-location-results__item-group {
    background: #fff;
    -webkit-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
    padding: 20px 15px 0; }

.c-form-group--light {
  margin-bottom: 15px; }
  .c-form-group--light:last-child {
    margin-bottom: 0; }
  .c-form-group--light label {
    color: #fff; }
  .c-form-group--light input {
    padding: 0 1rem;
    height: 40px; }

.marker-label {
  background: #0d937f;
  position: relative;
  top: -4px;
  font-size: 12px !important; }

.c-filter-bar {
  background: #099380; }
  @media (max-width: 59em) {
    .c-filter-bar {
      margin: 0;
      max-width: initial;
      padding: 0 30px;
      position: relative; }
      .c-filter-bar:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 30px;
        bottom: 0;
        width: 25px;
        height: 100%;
        pointer-events: none;
        background: rgba(9, 147, 128, 0);
        background: -webkit-gradient(linear, left top, right top, from(#099380), to(rgba(9, 147, 128, 0)));
        background: -o-linear-gradient(left, #099380 0%, rgba(9, 147, 128, 0) 100%);
        background: linear-gradient(90deg, #099380 0%, rgba(9, 147, 128, 0) 100%);
        z-index: 9; }
      .c-filter-bar:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 30px;
        bottom: 0;
        width: 25px;
        height: 100%;
        pointer-events: none;
        background: rgba(9, 147, 128, 0);
        background: -webkit-gradient(linear, right top, left top, from(#099380), to(rgba(9, 147, 128, 0)));
        background: -o-linear-gradient(right, #099380 0%, rgba(9, 147, 128, 0) 100%);
        background: linear-gradient(-90deg, #099380 0%, rgba(9, 147, 128, 0) 100%);
        z-index: 9; } }
  .c-filter-bar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 15px 0;
    margin: 0 auto;
    max-width: 93rem;
    list-style: none; }
    @media (max-width: 59em) {
      .c-filter-bar__list {
        overflow-x: scroll;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin: 0;
        max-width: initial;
        padding: 20px 0; } }
  .c-filter-bar__list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    text-align: center; }
    @media (max-width: 59em) {
      .c-filter-bar__list-item {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50px;
                flex: 0 0 50px;
        width: 50px; } }
  .c-filter-bar__list-item-link {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase; }
    .c-filter-bar__list-item-link.c-filter-bar__list-item-link--disabled {
      color: #066F61;
      pointer-events: none;
      cursor: default; }
    .c-filter-bar__list-item-link:active, .c-filter-bar__list-item-link:hover, .c-filter-bar__list-item-link:visited {
      color: #fff;
      text-decoration: underline !important; }
  .c-filter-bar__result-block {
    display: block;
    margin: 30px auto;
    max-width: 93rem;
    border-top: 1px solid #34CA9D;
    padding: 0 0 30px; }
    @media (max-width: 1500px) {
      .c-filter-bar__result-block {
        margin: 30px 15px;
        width: auto; } }
  .c-filter-bar__result-block-title {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: -1px 0 30px -1px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #34CA9D;
    color: #066F61;
    background: rgba(52, 202, 157, 0.1);
    border-radius: 2px; }
  .c-filter-bar__block-card-title {
    font-size: 18px; }
    .c-filter-bar__block-card-title a {
      color: #363636; }

@media (max-width: 47em) {
  .c-other-locations {
    border-bottom: 1px solid #e1e9ed;
    padding: 15px 0; } }

.c-other-locations__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.c-other-locations__header-count {
  font-weight: 300;
  font-size: 20px;
  color: #099380;
  font-style: italic; }
  @media (max-width: 47em) {
    .c-other-locations__header-count {
      display: block;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      width: 100%;
      font-size: 14px; } }

.c-other-locations__content {
  display: block; }
  @media (max-width: 47em) {
    .c-other-locations__content {
      display: none; } }

.c-other-locations__toggle-btn {
  position: absolute;
  right: 5px;
  top: 0;
  display: block;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 40px;
  cursor: pointer;
  font-size: 18px; }
  .c-other-locations__toggle-btn em, .c-other-locations__toggle-btn span, .c-other-locations__toggle-btn i {
    color: #099380; }
    .c-other-locations__toggle-btn em:first-child, .c-other-locations__toggle-btn span:first-child, .c-other-locations__toggle-btn i:first-child {
      display: none; }
  @media (min-width: 48em) {
    .c-other-locations__toggle-btn {
      display: none; } }

.c-other-locations .c-other-locations__toggle {
  position: absolute;
  left: -2000px;
  opacity: 0; }
  .c-other-locations .c-other-locations__toggle:checked ~ .c-other-locations__content {
    display: block; }
  .c-other-locations .c-other-locations__toggle:checked ~ .c-other-locations__header .c-other-locations__toggle-btn span:first-child, .c-other-locations .c-other-locations__toggle:checked ~ .c-other-locations__header .c-other-locations__toggle-btn em:first-child, .c-other-locations .c-other-locations__toggle:checked ~ .c-other-locations__header .c-other-locations__toggle-btn i:first-child {
    display: inline; }
  .c-other-locations .c-other-locations__toggle:checked ~ .c-other-locations__header .c-other-locations__toggle-btn span:last-child, .c-other-locations .c-other-locations__toggle:checked ~ .c-other-locations__header .c-other-locations__toggle-btn em:last-child, .c-other-locations .c-other-locations__toggle:checked ~ .c-other-locations__header .c-other-locations__toggle-btn i:last-child {
    display: none; }

.card-columns {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 30px;
  width: 100%; }
  .card-columns--two {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    grid-row-gap: 0;
    position: relative; }
  .card-columns--three {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    grid-row-gap: 0;
    position: relative; }
  .card-columns--green {
    position: relative; }
    .card-columns--green:after {
      content: '';
      z-index: 1;
      display: block;
      position: absolute;
      top: 100px;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-color: #339380; }
    .card-columns--green .l-card {
      position: relative;
      z-index: 2; }
  @media (max-width: 991px) {
    .card-columns {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .card-columns .card-bkgrd {
    min-height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: -30px -32px 10px; }
  .card-columns .l-card {
    margin-bottom: 30px; }
    .card-columns .l-card .c-icon-block {
      padding: 15px; }
      .card-columns .l-card .c-icon-block.c-icon-block--arrow {
        padding: 15px 30px 15px 15px; }
      .card-columns .l-card .c-icon-block h2 {
        font-size: 30px;
        line-height: 40px; }
      .card-columns .l-card .c-icon-block p {
        line-height: 24px; }
  .card-columns--small .l-card {
    border: solid 1px #e1e9ed; }
    .card-columns--small .l-card .c-icon-block h2 {
      font-size: calc(1.2875rem + 0.45vw);
      font-weight: 700;
      line-height: 1.38; }
      @media (min-width: 1200px) {
        .card-columns--small .l-card .c-icon-block h2 {
          font-size: 1.625rem; } }
    @media (max-width: 47em) {
      .card-columns--small .l-card {
        margin-bottom: 0;
        padding: 0 1rem 0 0; } }
  .card-columns--small .c-icon-block__address {
    display: block;
    margin: 1rem 0;
    color: #646F78; }
    @media (max-width: 47em) {
      .card-columns--small .c-icon-block__address i {
        float: left;
        color: #34CA9D;
        margin-right: 5px; }
      .card-columns--small .c-icon-block__address i + span {
        overflow: hidden;
        display: block; } }
  .card-columns--small p {
    margin-bottom: 1rem; }
  .card-columns--small .c-icon-block__chip {
    display: inline-block;
    padding: 4px 8px;
    background: #e6f4f2;
    margin: 0 5px 5px 0;
    font-size: 14px;
    color: #099380; }
  .card-columns.card-columns--green {
    position: relative;
    background: #339380; }
    .card-columns.card-columns--green .l-card {
      position: relative;
      z-index: 2;
      margin: 30px 0;
      border: solid 1px #ececec; }
      @media (max-width: 59em) {
        .card-columns.card-columns--green .l-card:nth-child(1) {
          margin-bottom: 0; }
        .card-columns.card-columns--green .l-card:nth-child(2) {
          margin: 0; }
        .card-columns.card-columns--green .l-card:nth-child(3) {
          margin-top: 0; } }
    .card-columns.card-columns--green:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      background: #fff;
      width: 100%;
      height: 40%;
      z-index: 1; }
      @media (max-width: 59em) {
        .card-columns.card-columns--green:after {
          content: none; } }

.llha .card-columns {
  position: relative;
  background: #339380; }
  .llha .card-columns .l-card {
    position: relative;
    z-index: 2;
    margin: 30px 0;
    border: solid 1px #ececec; }
    @media (max-width: 59em) {
      .llha .card-columns .l-card:nth-child(1) {
        margin-bottom: 0; }
      .llha .card-columns .l-card:nth-child(2) {
        margin: 0; }
      .llha .card-columns .l-card:nth-child(3) {
        margin-top: 0; } }
  .llha .card-columns:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 40%;
    z-index: 1; }
    @media (max-width: 59em) {
      .llha .card-columns:after {
        content: none; } }

.l-container.c-callout-cta__full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #E6F4F2;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url("../../images/pattern_whitedots-graygrid-long.svg");
  background-size: auto;
  border: 2px solid #a4e0c9;
  position: relative;
  padding: 3rem 3rem; }
  .l-container.c-callout-cta__full.clinical-trials {
    padding: 30px 40px;
    max-width: 1380px;
    margin: 0 auto; }
    @media (max-width: 991px) {
      .l-container.c-callout-cta__full.clinical-trials {
        padding: 25px; } }
    .l-container.c-callout-cta__full.clinical-trials:before {
      content: "";
      background: url(../../images/imagePattern_dotGrid-green.svg);
      display: block;
      position: absolute;
      background-size: 35px;
      width: 35px;
      margin-left: 0px;
      height: 12%;
      top: 0%;
      left: 0;
      background-repeat: no-repeat; }
    .l-container.c-callout-cta__full.clinical-trials .grid-intro {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 25px; }
      @media (max-width: 991px) {
        .l-container.c-callout-cta__full.clinical-trials .grid-intro {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start; } }
      .l-container.c-callout-cta__full.clinical-trials .grid-intro a {
        color: #2282D4;
        font-family: "Fira Sans";
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 22px; }
    .l-container.c-callout-cta__full.clinical-trials .card-columns {
      display: grid;
      grid-auto-flow: column;
      grid-gap: 20px; }
      .l-container.c-callout-cta__full.clinical-trials .card-columns.card-columns--three {
        grid-template-columns: 1fr 1fr 1fr; }
        @media (max-width: 991px) {
          .l-container.c-callout-cta__full.clinical-trials .card-columns.card-columns--three {
            grid-auto-flow: row;
            grid-template-columns: 1fr; } }
      .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card {
        padding: 20px 25px; }
        .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trials-intro {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          margin-bottom: 10px; }
          @media (max-width: 991px) {
            .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trials-intro {
              -webkit-box-orient: vertical;
              -webkit-box-direction: reverse;
                  -ms-flex-direction: column-reverse;
                      flex-direction: column-reverse;
              margin-bottom: 0; } }
          .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trials-intro h2 {
            color: #363636;
            font-family: "Fira Sans";
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 0;
            line-height: 25px; }
          .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trials-intro span.status-pill {
            border-radius: 14px;
            background-color: #066F61;
            color: white;
            min-width: 75px;
            text-align: center;
            display: block;
            height: 28px;
            padding: 1px;
            font-size: 14px;
            letter-spacing: 0;
            line-height: 16px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            margin-left: 25px; }
            @media (max-width: 991px) {
              .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trials-intro span.status-pill {
                margin-left: 0;
                margin-bottom: 12px; } }
        .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trial-description {
          padding-right: 20px; }
          @media (max-width: 991px) {
            .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trial-description {
              padding-right: 0; } }
          @media (max-width: 991px) {
            .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trial-description p {
              margin-bottom: 0; } }
        .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trial-details {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin-top: 35px; }
          @media (max-width: 991px) {
            .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trial-details {
              display: none; } }
          .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trial-details div {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column; }
            .l-container.c-callout-cta__full.clinical-trials .card-columns .l-card .c-icon-block .trial-details div:first-child {
              margin-right: 50px; }

.c-contact-popup {
  display: block;
  position: fixed;
  bottom: 150px;
  right: 50px;
  max-width: 350px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 610px;
  background: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 1px 15px 5px rgba(255, 255, 255, 0.9), 0 3px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 15px 5px rgba(255, 255, 255, 0.9), 0 3px 5px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate(0, 150px);
      -ms-transform: translate(0, 150px);
          transform: translate(0, 150px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  z-index: 999999; }
  @media (max-width: 47em) {
    .c-contact-popup {
      bottom: 15px;
      top: 15px;
      right: 15px;
      left: 15px;
      margin: auto;
      max-height: 510px;
      overflow: visible; } }
  @media (max-width: 330px) {
    .c-contact-popup {
      max-height: 440px; } }
  @media (min-width: 1024px) and (max-height: 725px) {
    .c-contact-popup {
      bottom: 80px; } }
  .c-contact-popup.c-contact-popup--show {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    visibility: visible !important; }
  .c-contact-popup__header {
    display: block;
    text-align: center;
    padding: 25px 15px 50px;
    border-radius: 7px 7px 0 0;
    background: #066F61; }
  .c-contact-popup__title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.47; }
  .c-contact-popup__footer {
    display: block;
    padding: 0 15px 15px; }
  .c-contact-popup__footer-link {
    display: block;
    text-align: center;
    font-weight: 500;
    margin: 0; }
  .c-contact-popup__card-list {
    display: block;
    padding: 15px 15px 0;
    margin-top: -45px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 500px; }
  .c-contact-popup__dismiss {
    display: block;
    position: absolute;
    top: -14px;
    right: -3px;
    color: #fff;
    background: #34CA9D;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    z-index: 99999;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }
    @media (min-width: 48em) {
      .c-contact-popup__dismiss {
        display: none; } }
    .c-contact-popup__dismiss svg {
      display: block;
      width: 24px;
      height: 24px;
      margin: 6px auto 0; }

.c-contact-popup__trigger {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 20px;
  border-radius: 40px;
  background: #fff;
  border: 1px solid #34CA9D;
  -webkit-transition: .15s box-shadow;
  -o-transition: .15s box-shadow;
  transition: .15s box-shadow; }
  .c-contact-popup__trigger i {
    display: inline-block;
    color: #34CA9D;
    -webkit-transition: .15s color, .15s transform, .15s text-shadow;
    -o-transition: .15s color, .15s transform, .15s text-shadow;
    transition: .15s color, .15s transform, .15s text-shadow; }
  .c-contact-popup__trigger span {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    color: #363636;
    font-size: 12px;
    font-weight: 700;
    -webkit-transition: .15s color, .15s transform, .15s text-shadow;
    -o-transition: .15s color, .15s transform, .15s text-shadow;
    transition: .15s color, .15s transform, .15s text-shadow; }
  .c-contact-popup__trigger.c-contact-popup__trigger--active {
    -webkit-box-shadow: inset 0 3px 1px rgba(0, 0, 0, 0.25);
            box-shadow: inset 0 3px 1px rgba(0, 0, 0, 0.25);
    background: #34CA9D; }
    .c-contact-popup__trigger.c-contact-popup__trigger--active i {
      color: #fff;
      -webkit-transform: translate(0, 2px);
          -ms-transform: translate(0, 2px);
              transform: translate(0, 2px);
      text-shadow: 0 0 3px rgba(255, 255, 255, 0.2); }
    .c-contact-popup__trigger.c-contact-popup__trigger--active span {
      color: #fff;
      -webkit-transform: translate(0, 2px);
          -ms-transform: translate(0, 2px);
              transform: translate(0, 2px);
      text-shadow: 0 0 3px rgba(255, 255, 255, 0.2); }

.c-card-cta-conditional {
  position: relative;
  padding: 30px 0; }
  .c-card-cta-conditional:after {
    content: '';
    display: block;
    position: absolute;
    width: 60px;
    height: 50px;
    background-image: url("/images/leaf-1.png");
    background-repeat: no-repeat;
    background-position: center;
    right: -10px;
    bottom: 5px;
    -webkit-transform: rotate(8deg);
        -ms-transform: rotate(8deg);
            transform: rotate(8deg); }
    @media (max-width: 960px) {
      .c-card-cta-conditional:after {
        content: none; } }
  .c-card-cta-conditional__title {
    color: #099380;
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38;
    display: block;
    margin: 15px 0; }
    @media (min-width: 1200px) {
      .c-card-cta-conditional__title {
        font-size: 1.625rem; } }
  .c-card-cta-conditional__box {
    display: block;
    height: 100%;
    width: 100%;
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 7px rgba(0, 0, 0, 0.1); }
    .c-card-cta-conditional__box:first-child {
      border-right: solid 1px #F2F7F7;
      position: relative; }
      @media (max-width: 960px) {
        .c-card-cta-conditional__box:first-child {
          border-right: none;
          border-bottom: solid 1px #F2F7F7; } }
      .c-card-cta-conditional__box:first-child:after {
        content: "or";
        display: block;
        position: absolute;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        background: #066F61;
        color: #fff;
        right: -15px;
        top: 40px;
        font-weight: 500;
        text-align: center;
        font-size: 12px; }
        @media (max-width: 960px) {
          .c-card-cta-conditional__box:first-child:after {
            top: initial;
            bottom: -15px;
            right: initial;
            left: calc(50% - 15px); } }
  .c-card-cta-conditional__box-title {
    margin: 0 0 15px;
    font-size: 18px; }

.pvresources {
  text-align: center;
  padding: 45px 20px 60px;
  display: block;
  max-width: 1380px;
  margin: 20px auto; }
  .pvresources h2 {
    margin-bottom: 20px;
    color: #363636;
    font-family: "Fira Sans", sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 40px; }
    @media (max-width: 768px) {
      .pvresources h2 {
        font-size: 26px;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 32px; } }
  .pvresources .resources-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .pvresources .resources-flex .c-icon-block {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 30px 30px 20px; }
      @media (max-width: 991px) {
        .pvresources .resources-flex .c-icon-block {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 50%;
                  flex: 0 0 50%; } }
      @media (max-width: 768px) {
        .pvresources .resources-flex .c-icon-block {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 100%;
                  flex: 0 0 100%;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          padding: 5px 0px 5px;
          border-bottom: 1px solid #CCCCCC;
          margin-bottom: 5px; } }
      .pvresources .resources-flex .c-icon-block .c-link-btn {
        color: #363636;
        font-family: "Fira Sans", sans-serif;
        font-size: 21px;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 27px;
        margin: 12px 0 15px; }
        @media (max-width: 768px) {
          .pvresources .resources-flex .c-icon-block .c-link-btn {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 0;
            line-height: 31px;
            width: 100%;
            text-align: left; } }
        .pvresources .resources-flex .c-icon-block .c-link-btn:after {
          right: auto; }
        .pvresources .resources-flex .c-icon-block .c-link-btn .c-icon-block p {
          color: #646F78;
          font-family: "Fira Sans", sans-serif;
          font-size: 16px;
          letter-spacing: 0;
          line-height: 24px;
          text-align: center; }
          @media (max-width: 768px) {
            .pvresources .resources-flex .c-icon-block .c-link-btn .c-icon-block p {
              display: none; } }
        @media (max-width: 768px) {
          .pvresources .resources-flex .c-icon-block .c-link-btn .c-icon-block__img {
            max-height: 35px;
            margin-right: 10px; } }

.doctor-list__doctor-list-block {
  display: inline-block;
  width: 100%; }
  .doctor-list__doctor-list-block-left {
    float: left;
    width: 25%; }
    .doctor-list__doctor-list-block-left img {
      max-width: 100%; }
  .doctor-list__doctor-list-block-right {
    float: left;
    margin-left: 10%;
    width: 65%; }
    .doctor-list__doctor-list-block-right p {
      color: #C2D1D9;
      font-size: .8rem; }
      .doctor-list__doctor-list-block-right p.doctor-list__doctor-list-block-right-title {
        color: #363636;
        font-size: 1rem;
        margin-bottom: 0; }

.location-list__location-list-block p {
  color: #646F78;
  font-size: .8rem;
  margin-bottom: 1rem; }
  .location-list__location-list-block p.location-list__location-list-block-title {
    color: #363636;
    font-size: 1rem;
    margin-bottom: 0; }
  .location-list__location-list-block p a {
    color: #1C72AB; }

.location-list__location-list-block-link {
  display: block;
  font-weight: bold; }
  .location-list__location-list-block-link:after {
    color: #1C72AB;
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    margin-left: .5rem; }

.l-section--intro {
  max-width: 850px;
  margin: 0 auto; }

.l-section--intro_center {
  text-align: center; }

.l-card--location {
  display: grid;
  grid-template-columns: 2fr 5fr;
  grid-gap: 2vw;
  max-width: 1307px;
  margin: 0 auto 20px;
  padding: 15px 30px 15px 15px; }

.location-details--links {
  display: grid;
  grid-template-columns: 2fr 2fr 3fr;
  grid-gap: 20px; }

.location-details--links .icon-grid-small .fas {
  color: #34CA9D;
  display: inline-block;
  margin-right: 10px; }

.icon-grid-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px; }

.icon-grid-small a {
  color: #2282D4; }

.directions-block {
  margin-left: 22px; }

.directions-block a {
  color: #2282D4; }

address {
  color: #68747D;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px; }

.location-details h3 {
  margin-bottom: 15px;
  margin-top: 10px; }

.location-details p {
  margin-bottom: 20px; }

.l-section--intro h2 {
  margin-bottom: 10px; }

.location-details--links .c-btn__inner {
  color: #066F61;
  font-family: "Fira Sans";
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
  text-align: center; }

.location-details--links a.c-btn {
  padding: 15px 25px; }

.location-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 260px; }

@media (max-width: 1160px) {
  .location-details--links {
    grid-template-columns: 3fr 3fr 3fr; } }

@media (max-width: 991px) {
  .l-card.l-card--location {
    grid-template-columns: 1fr;
    padding: 20px; }
  .location-details--links {
    grid-template-columns: 1fr 1fr 1fr; } }

@media (max-width: 767px) {
  .location-details--links {
    grid-template-columns: 1fr;
    grid-gap: 10px; } }

@media (max-width: 550px) {
  .location-details--links a.c-btn {
    width: 100%; } }

.c-gallery, .dashboard-slider {
  padding: 0 0 0 15px; }
  .c-and-e-dashboard .c-gallery, .c-and-e-dashboard .dashboard-slider {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }
  @media (min-width: 48em) {
    .c-gallery, .dashboard-slider {
      padding: 0 130px; } }
  .c-gallery__speedbump, .dashboard-slider__speedbump {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 20px;
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #066F61; }
    .c-gallery__speedbump > strong, .dashboard-slider__speedbump > strong {
      font-size: calc(1.25625rem + 0.075vw);
      font-weight: 700;
      line-height: 1.47;
      color: #fff;
      margin-bottom: 20px; }
      @media (min-width: 1200px) {
        .c-gallery__speedbump > strong, .dashboard-slider__speedbump > strong {
          font-size: 1.3125rem; } }
    @media (min-width: 48em) {
      .c-gallery__speedbump, .dashboard-slider__speedbump {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 25px 30px;
        margin-top: 15px; }
        .c-gallery__speedbump > strong, .dashboard-slider__speedbump > strong {
          font-size: calc(1.275rem + 0.3vw);
          font-weight: 700;
          line-height: 1.41;
          margin-bottom: 0; } }
    @media (min-width: 48em) and (min-width: 1200px) {
      .c-gallery__speedbump > strong, .dashboard-slider__speedbump > strong {
        font-size: 1.5rem; } }
  .c-gallery__slide, .dashboard-slider__slide {
    width: 100%; }
  .c-gallery .slider__item, .dashboard-slider .slider__item {
    height: auto; }
  .c-gallery .slider__prev, .c-gallery .slider__next, .dashboard-slider .slider__prev, .dashboard-slider .slider__next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 54px;
    height: 112px;
    background: #E7F627;
    color: #099380; }
    @media (min-width: 48em) {
      .c-gallery .slider__prev, .c-gallery .slider__next, .dashboard-slider .slider__prev, .dashboard-slider .slider__next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ECFC2B;
        color: #068473; } }
  .c-gallery .slider__prev, .dashboard-slider .slider__prev {
    display: none; }
    @media (min-width: 48em) {
      .c-gallery .slider__prev, .dashboard-slider .slider__prev {
        display: block;
        left: -100px; } }
  .c-gallery .slider__next, .dashboard-slider .slider__next {
    right: 0; }
    @media (min-width: 48em) {
      .c-gallery .slider__next, .dashboard-slider .slider__next {
        right: -100px; } }
  .c-gallery .icon-arrow-left:after, .c-gallery .icon-arrow-right:after, .dashboard-slider .icon-arrow-left:after, .dashboard-slider .icon-arrow-right:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    position: absolute;
    font-size: 30px; }
    @media (min-width: 48em) {
      .c-gallery .icon-arrow-left:after, .c-gallery .icon-arrow-right:after, .dashboard-slider .icon-arrow-left:after, .dashboard-slider .icon-arrow-right:after {
        font-size: 16px; } }
  .c-gallery .icon-arrow-left:after, .dashboard-slider .icon-arrow-left:after {
    display: none; }
    @media (min-width: 48em) {
      .c-gallery .icon-arrow-left:after, .dashboard-slider .icon-arrow-left:after {
        display: block;
        content: "\f060"; } }
  .c-gallery .icon-arrow-right:after, .dashboard-slider .icon-arrow-right:after {
    content: "\f100"; }
    @media (min-width: 48em) {
      .c-gallery .icon-arrow-right:after, .dashboard-slider .icon-arrow-right:after {
        content: "\f061"; } }
  .c-gallery .c-img-card, .dashboard-slider .c-img-card {
    min-height: 280px; }
  .c-gallery .slider__stage, .dashboard-slider .slider__stage {
    padding-left: 0 !important;
    padding-right: 0 !important; }
    @media (min-width: 48em) {
      .c-gallery .slider__stage, .dashboard-slider .slider__stage {
        padding-right: 0 !important; } }

.pricing .split-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.pricing-card {
  padding: 1rem;
  background: #fff; }
  .pricing-card__image {
    position: relative;
    padding-bottom: 75%; }
    .pricing-card__image img {
      position: absolute;
      display: block;
      -o-object-fit: cover;
         object-fit: cover;
      height: 100%; }
  .pricing-card__content {
    text-align: left;
    padding: 1rem 0;
    position: relative;
    display: block;
    background: #fff; }
  .pricing-card__title a {
    color: #363636; }
  .pricing-card__base-price {
    margin-left: -1rem;
    margin-right: -1rem;
    background: #E6F4F2;
    color: #363636;
    font-weight: bold;
    padding: 1rem;
    font-size: 18px;
    margin-bottom: 20px; }
    .pricing-card__base-price span {
      color: #099380;
      font-size: 20px; }
  .pricing-card__label {
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.5rem; }
  .pricing-card__price {
    padding: 0.5rem 0;
    color: #646F78; }
  .pricing-card__actions {
    margin-top: 1rem;
    text-align: center; }
    .pricing-card__actions a {
      display: block;
      font-weight: bold;
      padding: 1rem 0; }
      .pricing-card__actions a:last-child {
        padding-bottom: 0; }

.c-gallery.pricing .slider__prev, .c-gallery.pricing .slider__next {
  width: 54px;
  padding: 0; }
  @media (min-width: 48em) {
    .c-gallery.pricing .slider__prev, .c-gallery.pricing .slider__next {
      width: 40px;
      padding: 2rem; } }

.ce-slider {
  margin-bottom: 2rem;
  position: relative; }
  .ce-slider__container {
    background: #E6F4F2;
    padding: 2rem 2rem 3rem; }
  .ce-slider::after {
    content: '';
    position: absolute;
    background: url(../../images/leaf_dots-lines.png) no-repeat;
    min-width: 205px;
    height: 75px;
    bottom: -19px;
    right: 0; }
  .ce-slider__header {
    font-size: 21px;
    margin-bottom: 30px; }
  .ce-slider .slider--ce-slider {
    position: relative; }
  .ce-slider .slider__btn {
    padding: 1rem; }
  .ce-slider .slider__item.active {
    right: 30px; }
    @media (min-width: 48em) {
      .ce-slider .slider__item.active {
        right: unset; } }
    .ce-slider .slider__item.active:last-child {
      width: 80% !important; }
  .ce-slider .slider__prev, .ce-slider .slider__next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ECFC2B;
    color: #068473; }
    @media (min-width: 48em) {
      .ce-slider .slider__prev, .ce-slider .slider__next {
        width: 40px;
        height: 40px; } }
  .ce-slider .slider__prev {
    display: none; }
    @media (min-width: 48em) {
      .ce-slider .slider__prev {
        display: block;
        left: 20px; } }
  .ce-slider .slider__next {
    right: 20px; }
  .ce-slider .icon-arrow-left:after, .ce-slider .icon-arrow-right:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    position: absolute;
    font-size: 30px; }
    @media (min-width: 48em) {
      .ce-slider .icon-arrow-left:after, .ce-slider .icon-arrow-right:after {
        font-size: 16px; } }
  .ce-slider .icon-arrow-left:after {
    display: none; }
    @media (min-width: 48em) {
      .ce-slider .icon-arrow-left:after {
        display: block;
        content: "\f060";
        right: 7px; } }
  .ce-slider .icon-arrow-right:after {
    content: "\f061";
    font-size: 16px; }
  .ce-slider .c-img-card {
    min-height: 220px; }
    .ce-slider .c-img-card__inner {
      padding: 1rem; }
    .ce-slider .c-img-card:hover {
      opacity: .6; }

.dashboard-slider__header {
  font-size: 18px;
  margin-bottom: 20px; }

.c-facility-nav {
  display: block; }
  @media (max-width: 991px) {
    .c-facility-nav .l-container {
      padding: 0; } }
  .c-facility-nav__inner {
    position: relative;
    background-size: cover;
    background-position: top center; }
    .c-facility-nav__inner:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: black;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 32, 34, 0)), to(rgba(32, 32, 34, 0.7)));
      background: -o-linear-gradient(top, rgba(32, 32, 34, 0) 0%, rgba(32, 32, 34, 0.7) 100%);
      background: linear-gradient(180deg, rgba(32, 32, 34, 0) 0%, rgba(32, 32, 34, 0.7) 100%); }
  .c-facility-nav__inner-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
        align-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: 300px;
    height: 50vw;
    max-height: 650px;
    padding: 3rem 0 8rem; }
    @media (max-width: 991px) {
      .c-facility-nav__inner-wrap {
        padding: 0 0 30px;
        min-height: 450px;
        height: 110vw;
        max-height: 550px; } }
  .c-facility-nav__header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    display: block; }
    @media (max-width: 991px) {
      .c-facility-nav__header {
        position: relative;
        z-index: 2; } }
  .c-facility-nav__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    display: block;
    padding-left: 2rem;
    position: relative;
    z-index: 1; }
  .c-facility-nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 5rem;
    background: #fff;
    border-radius: 5px;
    padding: 0 2rem 0 1rem; }
    @media (max-width: 991px) {
      .c-facility-nav__menu {
        display: block;
        border-radius: 0;
        height: initial;
        padding: 0;
        background: #066F61; } }
  .c-facility-nav__logo {
    display: block;
    height: 7rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
    border-radius: 5px;
    background: #068473;
    margin-top: -1rem;
    margin-right: 1rem;
    padding: 10px 0; }
    @media (max-width: 991px) {
      .c-facility-nav__logo {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        margin: auto;
        border-radius: 0;
        height: auto; } }
  .c-facility-nav__logo-img {
    display: block;
    width: auto;
    height: calc(100% - 10px);
    margin: 5px auto 0; }
    @media (max-width: 991px) {
      .c-facility-nav__logo-img {
        width: auto;
        height: 80px;
        margin: auto; } }
  .c-facility-nav__menu-mobile-toggle {
    display: none; }
    @media (max-width: 991px) {
      .c-facility-nav__menu-mobile-toggle {
        display: block;
        width: 100%;
        padding: 10px 0;
        text-align: center;
        border: none;
        color: #fff;
        background: transparent;
        font-weight: 500;
        border-bottom: solid 1px #099380; }
        .c-facility-nav__menu-mobile-toggle + .c-facility-nav__menu-list {
          display: none; }
        .c-facility-nav__menu-mobile-toggle.active > i {
          display: inline-block;
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); }
        .c-facility-nav__menu-mobile-toggle.active + .c-facility-nav__menu-list {
          display: block; } }
  .c-facility-nav__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 5rem; }
    @media (max-width: 991px) {
      .c-facility-nav__menu-list {
        display: block;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        background: #068473; } }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
    padding: 31px 1rem; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    width: 200px;
    height: auto;
    padding: 1rem 0;
    background: #fff;
    -webkit-transition: .15s;
    -o-transition: .15s;
    transition: .15s;
    -webkit-transform: scale(1, 0.7);
        -ms-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    border-top: 1px solid #F2F7F7; }
    @media (max-width: 991px) {
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list {
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        position: relative;
        top: initial;
        left: initial;
        padding: 10px 0;
        border: none;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        background: #066F61; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
      display: block;
      width: 100%;
      height: auto;
      padding: 0.5rem 1rem; }
      @media (max-width: 991px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item {
          padding: 10px 30px; } }
    .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
      line-height: 1.5em;
      font-weight: 300;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link {
          font-size: 14px !important;
          padding: 0 !important; } }
      .c-facility-nav .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list .c-facility-nav__menu-list-item-link:hover {
        font-weight: 500; }
  .c-facility-nav__menu-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    height: 5rem;
    position: relative;
    line-height: 5rem; }
    @media (max-width: 991px) {
      .c-facility-nav__menu-list-item {
        display: block;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        height: initial;
        line-height: initial;
        padding: 0;
        background: #066F61; } }
    .c-facility-nav__menu-list-item:hover .c-facility-nav__menu-list-item-link {
      color: #363636;
      border-bottom-color: #099380; }
    .c-facility-nav__menu-list-item:hover > .c-facility-nav__menu-list {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scale(1, 1);
          -ms-transform: scale(1, 1);
              transform: scale(1, 1); }
      @media (max-width: 991px) {
        .c-facility-nav__menu-list-item:hover > .c-facility-nav__menu-list {
          display: none; } }
    @media (max-width: 991px) {
      .c-facility-nav__menu-list-item.active > .c-facility-nav__menu-list {
        display: block; }
      .c-facility-nav__menu-list-item.active > a i {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); } }
  @media (max-width: 991px) {
    .c-facility-nav__menu-list-item--has-button {
      padding: 2rem 1rem; }
      .c-facility-nav__menu-list-item--has-button .c-btn.c-btn--primary.c-btn--small {
        display: block;
        -webkit-box-shadow: none;
                box-shadow: none; } }
  .c-facility-nav__menu-list-item-link {
    background: #fff;
    padding: 31px 1rem;
    height: 100%;
    line-height: 1rem;
    border-bottom: 3px solid transparent;
    -webkit-transition: .25s border-bottom-color;
    -o-transition: .25s border-bottom-color;
    transition: .25s border-bottom-color;
    color: #363636;
    font-weight: 500; }
    .c-facility-nav__menu-list-item-link:visited, .c-facility-nav__menu-list-item-link:active {
      color: #363636; }
    @media (max-width: 1023px) {
      .c-facility-nav__menu-list-item-link {
        font-size: 14px !important;
        padding: 31px 0.5rem !important; } }
    @media (max-width: 991px) {
      .c-facility-nav__menu-list-item-link {
        display: block;
        background: #066F61;
        width: 100%;
        height: initial;
        position: relative;
        font-weight: 300;
        font-size: 16px !important;
        padding: 15px 30px !important;
        border: solid 1px #099380;
        border-top: none; }
        .c-facility-nav__menu-list-item-link:visited, .c-facility-nav__menu-list-item-link:active {
          color: #fff; } }
    .c-facility-nav__menu-list-item-link i {
      color: #099380; }
      @media (max-width: 991px) {
        .c-facility-nav__menu-list-item-link i {
          color: #fff;
          position: absolute;
          right: 30px;
          top: 16px; } }
  .c-facility-nav__menu-list-item--spacer {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    @media (max-width: 991px) {
      .c-facility-nav__menu-list-item--spacer {
        display: none; } }
  .c-facility-nav__hero-title {
    margin: 0;
    color: #fff;
    font-size: calc(1.4375rem + 2.25vw);
    font-weight: 700;
    line-height: 1;
    margin-left: calc(1.425rem + 2.1vw); }
    @media (min-width: 1200px) {
      .c-facility-nav__hero-title {
        font-size: 3.125rem; } }
    @media (min-width: 1200px) {
      .c-facility-nav__hero-title {
        margin-left: 3rem; } }
    @media (max-width: 991px) {
      .c-facility-nav__hero-title {
        font-size: calc(1.2875rem + 0.45vw);
        font-weight: 700;
        line-height: 1.38; } }
  @media (max-width: 991px) and (min-width: 1200px) {
    .c-facility-nav__hero-title {
      font-size: 1.625rem; } }
  .c-facility-nav__hero-content {
    position: relative; }
    .c-facility-nav__hero-content:before {
      content: "";
      display: block;
      position: absolute;
      background: url(../../images/imagePattern_dotGrid-yellow.svg) top left repeat;
      background-size: 48px;
      width: 48px;
      margin-left: -24px;
      height: 90%;
      top: 0;
      left: -68px;
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg);
      top: 0;
      left: 0;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }

.c-tree-nav {
  display: block;
  background: #F7FCFC;
  padding-top: 15px; }
  .c-tree-nav__title {
    margin: 0 15px 15px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.47; }
  .c-tree-nav__list {
    display: block;
    margin-left: 0; }
  .c-tree-nav .c-tree-nav__list {
    margin-left: 0; }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
    display: none;
    margin: 10px 0 10px 15px;
    background: rgba(194, 209, 217, 0.25); }
    @media (max-width: 47em) {
      .c-tree-nav .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list .c-tree-nav__list {
        margin-left: 5px; } }
  .c-tree-nav__list-item-lbl {
    position: relative; }
    .c-tree-nav__list-item-lbl:after {
      position: absolute;
      display: block;
      width: 40px;
      height: 40px;
      text-align: center;
      top: -2px;
      right: 0;
      content: '\f107';
      font-family: 'Font Awesome 5 Free';
      font-weight: 700;
      color: #099380;
      font-size: 18px; }
  .c-tree-nav__list-item-link, .c-tree-nav__list-item-lbl {
    font-size: 14px;
    color: #363636;
    margin: 0;
    padding: 0;
    font-weight: 500; }
    .c-tree-nav__list-item-link a, .c-tree-nav__list-item-lbl a {
      font-size: 14px;
      color: #363636;
      margin: 0;
      padding: 0; }
    .c-tree-nav__list-item-link:visited, .c-tree-nav__list-item-link:hover, .c-tree-nav__list-item-lbl:visited, .c-tree-nav__list-item-lbl:hover {
      color: #363636; }
  .c-tree-nav__list-item-link[href="#"] {
    color: #066F61; }
  .c-tree-nav__list-item {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    position: relative;
    font-size: 18px;
    color: #363636;
    border-bottom: 1px solid #C2D1D9;
    padding: 8px 0 8px 15px; }
    .c-tree-nav__list-item:last-child {
      border-bottom: none; }
    .c-tree-nav__list-item input[type="checkbox"] {
      position: absolute;
      left: -3000px;
      opacity: 0;
      visibility: hidden; }
      .c-tree-nav__list-item input[type="checkbox"]:checked ~ .c-tree-nav__list {
        display: block !important; }
      .c-tree-nav__list-item input[type="checkbox"]:checked ~ .c-tree-nav__list-item-lbl:after {
        content: '\f106'; }

.modal-content {
  max-width: 900px;
  margin: 7.5vw auto; }
  .modal-content .modal-header {
    border-bottom: 1px solid #C2D1D9;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem; }
    .modal-content .modal-header button {
      display: none; }
  .modal-content .modal-body {
    color: #646F78; }
  .modal-content .btn-primary {
    display: inline-block;
    border-radius: 0;
    line-height: 1;
    font-weight: bold;
    font-size: 0.8125rem;
    padding: 1rem 2rem;
    border: 1px solid;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    background: #ECFC2B;
    color: #066F61;
    border-color: #ECFC2B;
    -webkit-box-shadow: 0 1px 3px 0 #C2D1D9;
    box-shadow: 0 1px 3px 0 #C2D1D9;
    margin-right: 15px; }
  .modal-content .btn-default,
  .modal-content .btn-info {
    display: inline-block;
    border-radius: 0;
    line-height: 1;
    font-weight: bold;
    font-size: 0.8125rem;
    padding: 1rem 2rem;
    border: 1px solid;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    background: #fff;
    color: #363636;
    border-color: #34CA9D;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .modal-content .btn-info {
    margin-right: 15px; }
  .modal-content .modal-body + .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1.5rem;
    margin-top: 2.25rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #C2D1D9; }

.c-banner {
  display: block;
  width: 100%;
  position: relative;
  padding: 4rem 0;
  background: #068473;
  overflow: hidden; }
  @media (max-width: 47em) {
    .c-banner {
      padding: 4rem 0 2rem; } }
  .c-banner__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2; }
  .c-banner__title {
    color: #fff; }
  .c-banner__sub-title {
    color: #fff; }
  .c-banner__copy {
    color: #fff;
    max-width: 580px; }
  .c-banner:after, .c-banner:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    height: 70px;
    width: 80px;
    background-image: url(../../images/imagePattern_dotGrid-green.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    z-index: 1; }
    @media (max-width: 47em) {
      .c-banner:after, .c-banner:before {
        top: -20px;
        left: -25px; } }
  .c-banner:after {
    left: initial;
    right: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background-image: url(../../images/pattern_greendots-greengrid-short.svg);
    background-position: right top;
    z-index: 1; }
  .c-banner__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .c-banner__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%; }
    @media (max-width: 47em) {
      .c-banner__left {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%; } }
  .c-banner__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%; }
    @media (max-width: 47em) {
      .c-banner__right {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%; } }
  .c-banner__counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 0 2rem; }
    @media (max-width: 47em) {
      .c-banner__counter {
        padding: 0 1rem; } }
  .c-banner__allocated, .c-banner__administered, .c-banner__scheduled {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
    text-align: center;
    color: #fff;
    padding: 2rem 0; }
    @media (max-width: 47em) {
      .c-banner__allocated, .c-banner__administered, .c-banner__scheduled {
        font-size: 14px;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        text-align: left; } }
    .c-banner__allocated span, .c-banner__administered span, .c-banner__scheduled span {
      display: block;
      text-align: center;
      font-size: calc(1.4375rem + 2.25vw);
      font-weight: 700;
      line-height: 1; }
      @media (min-width: 1200px) {
        .c-banner__allocated span, .c-banner__administered span, .c-banner__scheduled span {
          font-size: 3.125rem; } }
      @media (max-width: 47em) {
        .c-banner__allocated span, .c-banner__administered span, .c-banner__scheduled span {
          text-align: left; } }
  .c-banner__allocated {
    border-right: 1px solid rgba(255, 255, 255, 0.35); }
    @media (max-width: 47em) {
      .c-banner__allocated {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35); } }
  .c-banner__administered {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35); }
  .c-banner__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .c-banner.c-banner--video .c-banner__title {
    margin-bottom: 1rem; }
  .c-banner.c-banner--video .c-banner__copy {
    max-width: initial; }
  .c-banner.c-banner--video .c-banner__sub-title,
  .c-banner.c-banner--video .c-banner__copy,
  .c-banner.c-banner--video .c-banner__title {
    text-align: center; }
  .c-banner.c-banner--video:before {
    background-image: url(../../images/pattern_greendots-greengrid-tall.svg);
    background-size: contain;
    height: 190px;
    top: 0;
    left: -20px;
    width: 120px; }
  .c-banner.c-banner--video:after {
    top: initial;
    bottom: 0;
    background-image: url(../../images/pattern_greendots-greengrid-tall.svg);
    background-size: auto;
    height: 145px;
    width: 70px; }

.feature-list {
  background: #fff;
  padding: 4rem;
  margin-top: 2rem;
  margin-bottom: 2rem; }
  @media (max-width: 47em) {
    .feature-list {
      padding: 1rem; } }
  .feature-list p {
    margin: 1rem 0 2rem; }
  .feature-list__body {
    padding-right: 30px; }
    @media (max-width: 47em) {
      .feature-list__body {
        padding-right: 15px;
        padding-bottom: 45px; } }
  .feature-list__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .feature-list__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    -webkit-box-shadow: 0 5px 15px rgba(54, 54, 54, 0.1);
            box-shadow: 0 5px 15px rgba(54, 54, 54, 0.1); }
    .feature-list__card:last-child {
      margin-bottom: 0; }
  .feature-list__card-img {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75px;
            flex: 0 0 75px;
    width: 75px;
    height: 75px;
    margin-right: 1rem; }
    @media (max-width: 47em) {
      .feature-list__card-img {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50px;
                flex: 0 0 50px;
        width: 50px;
        height: 50px; } }
    .feature-list__card-img img {
      display: block;
      position: absolute;
      margin: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain;
      -o-object-position: center;
         object-position: center; }
  .feature-list__card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .feature-list__card-content-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.47;
    margin: 0; }
    @media (max-width: 47em) {
      .feature-list__card-content-title {
        font-size: 1rem; } }
  .feature-list__card-content-body {
    margin: 0 !important; }
    @media (max-width: 47em) {
      .feature-list__card-content-body {
        font-size: 1rem; } }

.c-photo-gallery {
  display: block;
  position: relative;
  height: 30vw;
  min-height: 200px;
  max-height: 350px;
  padding: 0 3rem; }
  @media (max-width: 991px) {
    .c-photo-gallery {
      padding: 0; } }
  .c-photo-gallery__slide {
    display: block;
    background: #fff;
    height: 100%;
    position: relative; }
  .c-photo-gallery__img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }
  .c-photo-gallery__prev, .c-photo-gallery__next {
    position: absolute;
    width: 40px;
    height: 40px;
    border: none;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    top: 0;
    left: 0;
    background: #ECFC2B;
    color: #099380;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer; }
    @media (max-width: 991px) {
      .c-photo-gallery__prev, .c-photo-gallery__next {
        width: 50px; } }
    .c-photo-gallery__prev:after, .c-photo-gallery__next:after {
      content: '\f060';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      font-size: 1rem; }
  @media (max-width: 991px) {
    .c-photo-gallery__prev {
      display: none; } }
  .c-photo-gallery__next {
    left: initial;
    right: 0; }
    .c-photo-gallery__next:after {
      content: '\f061'; }
    @media (max-width: 991px) {
      .c-photo-gallery__next {
        top: 0;
        height: 100%;
        -webkit-transform: initial;
            -ms-transform: initial;
                transform: initial;
        border-radius: 0; }
        .c-photo-gallery__next:after {
          content: '\f100'; } }
  .c-photo-gallery .slider__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none; }
    @media (max-width: 991px) {
      .c-photo-gallery .slider__nav {
        top: 0;
        height: 100%; } }
  .c-photo-gallery .slider__item {
    height: 100%; }
  .c-photo-gallery .slider__height {
    height: 100% !important; }
  @media (max-width: 991px) {
    .c-photo-gallery .slider__stage {
      padding-left: 0 !important; } }

.c-text-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 2rem auto; }
  .c-text-slider__header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-bottom: 2rem;
    font-size: calc(1.2875rem + 0.45vw);
    font-weight: 700;
    line-height: 1.38; }
    @media (min-width: 1200px) {
      .c-text-slider__header {
        font-size: 1.625rem; } }
    @media (max-width: 991px) {
      .c-text-slider__header {
        margin-bottom: 1rem;
        text-align: center; } }
  .c-text-slider__sub {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin: 0 0 15px;
    font-size: 14px; }
    @media (min-width: 992px) {
      .c-text-slider__sub {
        display: none; } }
  .c-text-slider__sidebar {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    width: 25%;
    padding-right: 4rem; }
    @media (max-width: 991px) {
      .c-text-slider__sidebar {
        margin-bottom: 1rem;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        min-height: 40px;
        border-top: solid 1px #C2D1D9; } }
  @media (max-width: 991px) {
    .c-text-slider__sidebar-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 100%;
      z-index: 999;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 40px;
      overflow: hidden; } }
  .c-text-slider__sidebar.open .c-text-slider__sidebar-wrap {
    height: 70vh; }
  .c-text-slider__tab {
    display: block;
    text-align: right;
    font-weight: 700;
    color: #363636;
    margin-bottom: 1rem;
    position: relative; }
    .c-text-slider__tab:link, .c-text-slider__tab:visited, .c-text-slider__tab:hover {
      color: #363636; }
    @media (max-width: 991px) {
      .c-text-slider__tab {
        font-weight: normal;
        padding: 0 1rem;
        border-bottom: solid 1px rgba(194, 209, 217, 0.25);
        display: block;
        width: 100%;
        margin: 0%;
        height: 40px;
        line-height: 40px;
        border: solid 1px #C2D1D9;
        border-top: none;
        background-color: #fff; }
        .c-text-slider__tab:hover {
          color: #339380; } }
    .c-text-slider__tab:after {
      content: '';
      display: block;
      position: absolute;
      right: -50px;
      top: calc(50% - 2px);
      width: 30px;
      height: 2px;
      background: #339380;
      -webkit-transform-origin: right center;
          -ms-transform-origin: right center;
              transform-origin: right center;
      -webkit-transform: scale(0, 1);
          -ms-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transition: .25s;
      -o-transition: .25s;
      transition: .25s; }
      @media (max-width: 991px) {
        .c-text-slider__tab:after {
          content: none; } }
    @media (max-width: 991px) {
      .c-text-slider__tab {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
    .c-text-slider__tab.active {
      color: #339380; }
      .c-text-slider__tab.active:after {
        -webkit-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
                transform: scale(1, 1); }
      @media (max-width: 991px) {
        .c-text-slider__tab.active {
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1;
          color: #363636;
          border-left-color: #339380;
          border-left-width: 2px; } }
    @media (max-width: 991px) {
      .c-text-slider__tab {
        text-align: left; } }
  .c-text-slider__tab-dd {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: right;
    padding-right: 20px;
    color: #339380; }
    @media (min-width: 992px) {
      .c-text-slider__tab-dd {
        display: none; } }
  .c-text-slider__body {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 2rem;
    margin-top: 10px;
    max-width: 960px; }
    @media (max-width: 991px) {
      .c-text-slider__body {
        max-width: initial;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        margin-top: 0;
        padding: 0; } }
  .c-text-slider__tab-content {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    clear: both;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(2rem, 0);
        -ms-transform: translate(2rem, 0);
            transform: translate(2rem, 0);
    -webkit-transition: .25s opacity, .25s transform;
    -o-transition: .25s opacity, .25s transform;
    transition: .25s opacity, .25s transform;
    z-index: 1;
    padding-left: 1rem; }
    @media (max-width: 991px) {
      .c-text-slider__tab-content {
        -webkit-transform: translate(0, -2rem);
            -ms-transform: translate(0, -2rem);
                transform: translate(0, -2rem);
        padding: 0; } }
    .c-text-slider__tab-content img {
      display: inline;
      margin: 0 1rem 0.5rem 0;
      float: left;
      width: 30%;
      max-width: initial;
      height: auto; }
      @media (max-width: 991px) {
        .c-text-slider__tab-content img {
          display: block;
          float: none;
          margin: 0 auto 15px;
          width: 100%;
          height: auto;
          max-width: 720px; } }
    .c-text-slider__tab-content.active {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
              transform: translate(0, 0);
      z-index: 2; }

.c-card-cta-search {
  padding: 30px 40px !important;
  max-width: 1380px; }
  @media (max-width: 47em) {
    .c-card-cta-search {
      padding: 2rem 1rem !important; } }
  .c-card-cta-search:before {
    content: "";
    background: url(../../images/imagePattern_dotGrid-green.svg);
    display: block;
    position: absolute;
    background-size: 53px;
    width: 40px;
    margin-left: 0px;
    height: 35px;
    top: 4px;
    left: 5px;
    background-repeat: no-repeat;
    background-position: right top; }
  .c-card-cta-search .l-card {
    margin-bottom: 0; }
    .c-card-cta-search .l-card hr {
      background: #34CA9D; }
    .c-card-cta-search .l-card.l-card--green {
      background: #066F61;
      color: #fff; }
      .c-card-cta-search .l-card.l-card--green .c-arrow-link {
        color: #fff; }
    .c-card-cta-search .l-card .l-card__sub-head {
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 1.47;
      text-align: center;
      margin-bottom: 0.5rem; }
    .c-card-cta-search .l-card.l-card--compact {
      padding: 0; }
    .c-card-cta-search .l-card__header {
      position: relative;
      height: 45%; }
    .c-card-cta-search .l-card__header-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center; }
    .c-card-cta-search .l-card__body {
      padding: 15px; }
    .c-card-cta-search .l-card__heading {
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 1.47;
      margin-bottom: 1rem; }
  .c-card-cta-search .c-arrow-link.c-arrow-link--block {
    margin-bottom: 1rem;
    color: #0873ce; }
  .c-card-cta-search .c-btn.c-btn--secondary {
    display: block;
    text-align: center; }
  .c-card-cta-search .c-search-form__label {
    color: #fff; }
  .c-card-cta-search .c-search-form.c-search-form--wide {
    display: block;
    width: 100%; }
    .c-card-cta-search .c-search-form.c-search-form--wide .c-btn {
      margin-top: 1rem;
      width: 100%; }

/*------------------------------------*\
    #UTILITIES
\*------------------------------------*/
/*------------------------------------*\
    #STYLED IMAGE
\*------------------------------------*/
/**
 * 1) This utility class is used to add the bar pattern behind images.
 * 2) Default positioning of the pattern will be top left.
 */
.u-styled-img {
  position: relative; }
  .u-styled-img:before {
    content: "";
    display: block;
    position: absolute;
    background: url(../../images/imagePattern_squareAndLines.svg) top left no-repeat;
    background-size: cover;
    width: 73px;
    height: 133px;
    top: -11px;
    left: -11.5px;
    -webkit-transform: scaleX(-1) rotate(180deg);
        -ms-transform: scaleX(-1) rotate(180deg);
            transform: scaleX(-1) rotate(180deg); }
    @media (min-width: 48em) {
      .u-styled-img:before {
        width: 110px;
        height: 200px; } }
    @media (min-width: 48em) {
      .u-styled-img:before {
        top: -16px;
        left: -15px; } }
  .u-styled-img > img {
    width: 100%; }

/*------------------------------------*\
    #VISIBILITY CLASSES
\*------------------------------------*/
/**
 * Is Hidden
 * 1) Completely remove from the flow and screen readers.
 */
.u-is-hidden {
  display: none !important;
  visibility: hidden !important; }

/**
 * Is Visibly Hidden
 * 1) Completely remove from the flow but leave available to screen readers.
 */
.u-is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/**
 * Is Hidden on Mobile
 * 1) Hide an element when the screen is below med breakpoint
 */
@media (max-width: 47em) {
  .u-is-mobile-hidden {
    display: none !important; } }

.display-h1 {
  font-size: calc(1.4375rem + 2.25vw);
  font-weight: 700;
  line-height: 1; }
  @media (min-width: 1200px) {
    .display-h1 {
      font-size: 3.125rem; } }

.display-h2 {
  font-size: calc(1.3125rem + 0.75vw);
  font-weight: 700;
  line-height: 1.333; }
  @media (min-width: 1200px) {
    .display-h2 {
      font-size: 1.875rem; } }

.display-h3 {
  font-size: calc(1.2875rem + 0.45vw);
  font-weight: 700;
  line-height: 1.38; }
  @media (min-width: 1200px) {
    .display-h3 {
      font-size: 1.625rem; } }

.display-h4 {
  font-size: calc(1.275rem + 0.3vw);
  font-weight: 700;
  line-height: 1.41; }
  @media (min-width: 1200px) {
    .display-h4 {
      font-size: 1.5rem; } }

.display-h5 {
  font-size: calc(1.25625rem + 0.075vw);
  font-weight: 700;
  line-height: 1.47; }
  @media (min-width: 1200px) {
    .display-h5 {
      font-size: 1.3125rem; } }

.u-text-bold {
  font-weight: 700; }

.u-title-md {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.47;
  margin-bottom: 0.5rem; }

.c-icon-bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5vw;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .c-icon-bullet-grid {
      grid-template-columns: 1fr;
      grid-gap: 0vw; } }
  .c-icon-bullet-grid h3 {
    color: #363636;
    font-family: "Fira Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px; }
    .c-icon-bullet-grid h3:before {
      content: "";
      background: url(../../images/checkmark.png);
      background-size: cover;
      width: 15px;
      height: 15px;
      background-repeat: no-repeat;
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin-right: 12px;
      margin-top: -1px; }
  @media (max-width: 767px) {
    .c-icon-bullet-grid .c-btn {
      max-width: 300px; } }
  .c-icon-bullet-grid .c-btn--smaller .c-btn__inner {
    color: #424B5A;
    font-size: 13px; }

/*------------------------------------*\
    #SPACING
\*------------------------------------*/
/**
 * Margin bottom none
 * 1) Force margin bottom of 0
 */
.u-margin-bottom-none {
  margin-bottom: 0 !important; }

/**
 * Margin bottom small
 * 1) Force margin bottom of $spacing-small variable
 */
.u-margin-bottom-small {
  margin-bottom: 0.5rem !important; }

/**
 * Margin bottom
 * 1) Force margin bottom of $spacing variable
 */
.u-margin-bottom {
  margin-bottom: 1rem !important; }

/**
 * Margin bottom large
 * 1) Force margin bottom of $spacing-large variable
 */
.u-margin-bottom-large {
  margin-bottom: 2rem !important; }

.u-margin-bottom-large-to-xxl {
  margin-bottom: 2rem !important; }
  @media (min-width: 60em) {
    .u-margin-bottom-large-to-xxl {
      margin-bottom: 8rem !important; } }

/**
 * Margin top none
 * 1) Force margin top of 0
 */
.u-margin-top-none {
  margin-top: 0 !important; }

/**
 * Margin top small
 * 1) Force margin top of $spacing-small variable
 */
.u-margin-top-small {
  margin-top: 0.5rem !important; }

/**
 * Margin top
 * 1) Force margin top of $spacing variable
 */
.u-margin-top {
  margin-top: 1rem !important; }

/**
 * Margin top large
 * 1) Force margin top of $spacing-large variable
 */
.u-margin-top-large {
  margin-top: 2rem !important; }

.u-margin-top-section {
  margin-top: 2rem; }
  @media (min-width: 48em) {
    .u-margin-top-section {
      margin-top: 4rem; } }

/**
 * Margin right none
 * 1) Force margin right of 0
 */
.u-margin-right-none {
  margin-right: 0 !important; }

/**
 * Margin right small
 * 1) Force margin right of $spacing-small variable
 */
.u-margin-right-small {
  margin-right: 0.5rem !important; }

/**
 * Margin right
 * 1) Force margin right of $spacing variable
 */
.u-margin-right {
  margin-right: 1rem !important; }

/**
 * Margin right large
 * 1) Force margin right of $spacing-large variable
 */
.u-margin-right-large {
  margin-right: 2rem !important; }

/**
 * Margin left none
 * 1) Force margin left of 0
 */
.u-margin-left-none {
  margin-left: 0 !important; }

/**
 * Margin left small
 * 1) Force margin left of $spacing-small variable
 */
.u-margin-left-small {
  margin-left: 0.5rem !important; }

/**
 * Margin left
 * 1) Force margin left of $spacing variable
 */
.u-margin-left {
  margin-left: 1rem !important; }

/**
 * Margin left large
 * 1) Force margin left of $spacing-large variable
 */
.u-margin-left-large {
  margin-left: 2rem !important; }

/**
 * Center display block contents
 */
.u-margin-center {
  margin: 0 auto !important; }

/**
 * Padding none
 */
.u-padding-none {
  padding: 0 !important; }

/**
 * Padding small
 */
.u-padding-small {
  padding: 0.5rem !important; }

/**
 * Padding
 */
.u-padding {
  padding: 1rem !important; }

/**
 * Padding large
 */
.u-padding-large {
  padding: 2rem !important; }

/**
 * Padding top none
 */
.u-padding-top-none {
  padding-top: 0 !important; }

/**
 * Padding top small
 */
.u-padding-top-small {
  padding-top: 0.5rem !important; }

/**
 * Padding top
 */
.u-padding-top {
  padding-top: 1rem !important; }

/**
 * Padding top large
 */
.u-padding-top-large {
  padding-top: 2rem !important; }

/**
 * Padding bottom none
 */
.u-padding-bottom-none {
  padding-bottom: 0 !important; }

/**
 * Padding bottom small
 */
.u-padding-bottom-small {
  padding-bottom: 0.5rem !important; }

/**
 * Padding bottom
 */
.u-padding-bottom {
  padding-bottom: 1rem !important; }

/**
 * Padding bottom large
 */
.u-padding-bottom-large {
  padding-bottom: 2rem !important; }

/**
 * Padding right none
 */
.u-padding-right-none {
  padding-right: 0 !important; }

/**
 * Padding right small
 */
.u-padding-right-small {
  padding-right: 0.5rem !important; }

/**
 * Padding right
 */
.u-padding-right {
  padding-right: 1rem !important; }

/**
 * Padding right large
 */
.u-padding-right-large {
  padding-right: 2rem !important; }

/**
 * Padding left none
 */
.u-padding-left-none {
  padding-left: 0 !important; }

/**
 * Padding left small
 */
.u-padding-left-small {
  padding-left: 0.5rem !important; }

/**
 * Padding left
 */
.u-padding-left {
  padding-left: 1rem !important; }

/**
 * Padding left large
 */
.u-padding-left-large {
  padding-left: 2rem !important; }

.u-bg-brand-green {
  background: #099380; }

.u-bg-brand-green-dark {
  background: #068473; }

.u-bg-brand-green-darkest {
  background: #066F61; }

.table-overflow {
  margin-bottom: 2rem;
  overflow-x: auto; }

.table-overflow::-webkit-scrollbar {
  width: 8px;
  height: 8px; }

.table-overflow::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, from(#068473), color-stop(0%, #068473));
  background: linear-gradient(0deg, #068473 0%, #068473 0%);
  border-radius: 8px; }

.table-overflow::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(13deg, #34CA9D 14%, #34ca9d 64%); }

.table-overflow::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: inset 7px 10px 12px #f0f0f0;
          box-shadow: inset 7px 10px 12px #f0f0f0; }

/* PATTERN SCAFFOLDING */
/* LEAF ANIMATIONS */
/* EVENTS FORM - CUSTOM*/
#class-registration {
  display: block;
  max-width: 93rem;
  margin: 5rem auto !important; }
  #class-registration .c-btn,
  #class-registration .c-btn.c-btn--primary,
  #class-registration .next-prev {
    display: inline-block !important;
    background: #ECFC2B;
    color: #066F61;
    border-color: #ECFC2B;
    -webkit-box-shadow: 0 1px 3px 0 #C2D1D9;
    box-shadow: 0 1px 3px 0 #C2D1D9;
    text-transform: uppercase;
    font-weight: 600;
    width: initial;
    min-width: 140px;
    height: 50px;
    vertical-align: top;
    cursor: pointer; }
  #class-registration .validate-message {
    color: #cc0000;
    padding-top: .25rem;
    font-size: 0.65rem; }

#promo-code-field,
#class-quantity-field {
  display: block;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  font-size: 0.75rem !important;
  color: #646F78 !important;
  font-weight: normal !important;
  margin-bottom: 10px !important; }
  #promo-code-field input,
  #promo-code-field select,
  #class-quantity-field input,
  #class-quantity-field select {
    margin-top: 0.25rem; }

