*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* Helpers */

.hide {
    display: none;
}


.container {
    margin: 0 auto;
    width: 100%;
    max-width: 80rem;
}

.pull-right {
	float: right;
    margin: 1rem auto;
}

.pull-center {
    margin: 1rem auto;
}

.pull-left {
	float: left;
    margin: 1rem auto;
}

img.pull-right,
img.pull-center,
img.pull-left {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 0 1rem 0 1rem;
}

.svg-shapes {
    height: 0;
    overflow: hidden;
}

.vertical-space {
	margin-top: 2rem;
}

@media (min-width: 576px) {
    .pull-right {
        float: right;
        margin: 1rem 0 1rem 1rem;
    }

    .pull-left {
        float: left;
        margin: 1rem 1rem 1rem 0;
    }

    img.pull-right,
    img.pull-center,
    img.pull-left {
        max-width: 33.33333%;
    }
}

@media (min-width: 768px) {
    .pull-right {
        margin: 2rem 0 2rem 2rem;
    }

    .pull-center {
        margin: 2rem auto;
    }
    
    .pull-left {
        margin: 2rem 2rem 2rem 0;
    }

    img.pull-right,
    img.pull-center,
    img.pull-left {
        max-width: 40%;
    }

	.vertical-space {
		margin-top: 4rem;
	}
}



/* Header */

.sticky-header {
    z-index: 4;
    position: sticky;
    top: 0;
    left: 0;
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid #DDD;
    background-color: #FFF;
}

.header__logo,
.header__logo img {
    display: block;
    width: 100%;
}

.header__logo {
    margin: 0 auto;
    max-width: 20rem;
}

.header__logo img {
    width: 100%;
    height: auto;
}

.header__nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
} 

@media (min-width: 576px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        margin: 0;
        max-width: 16rem;
    } 

    .header__nav {
        justify-content: flex-end;
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .sticky-header {
        padding: 2rem;
    }

    .header__logo {
        max-width: 18rem;
    }
}

@media (min-width: 992px) {
    .header__logo {
        max-width: 24rem;
    }
}

@media (min-width: 1200px) {
    .sticky-header {
        padding: 0;
    }

    .header {
        align-items: flex-end;
    }

    .header__logo {
        margin: 2rem 0;
        max-width: 20rem;
    }

    .header__nav {
        flex-direction: row;
        align-items: flex-end;
    }
}



/* Footer (Top) */

.footer__top {
    padding: 1rem;
    background-color: #69BB83;
}

@media (min-width: 768px) {
    .footer__top {
        padding: 1rem 2rem;
    }   
}



/* Footer (Middle) */

.footer__middle {
    padding: 2rem 1rem;
    background-color: #009846;
}

@media (min-width: 576px) {
    .footer__middle-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
}

@media (min-width: 768px) {
    .footer__middle {
        padding: 2rem;
    }
}



/* Footer (Bottom) */

.footer__bottom {
    padding: 1rem;
}

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

@media (min-width: 576px) {
    .footer__bottom-inner {
        display: flex;
		flex-wrap: wrap;
        justify-content: space-between;
        align-items: center; 
        text-align: left;
    }
}

@media (min-width: 768px) {
    .footer__bottom {
        padding: 1rem 2rem;
    }
}



/* Footer Claim */

.footer__claim {
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1rem;
    color: #FFF;
}

.footer__claim strong {
    font-weight: 700;
}

.footer__claim svg {
    width: auto;
    height: 1rem;    
    fill: #FFF;
    opacity: 0.5;
}

@media (min-width: 576px) {
    .footer__claim {
        font-size: 1.5rem;
    }

    .footer__claim svg {
        height: 1.25rem;
    }
}

@media (min-width: 992px) {
    .footer__claim {
        font-size: 1.5rem;
    }

    .footer__claim svg {
        height: 1.75rem;
    }
}



/* Footer Contact */

.footer__contact {
    color: #FFF;
}

.footer__contact h2 {
    display: none;
}

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

.footer__contact ul li {
    margin-top: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer__contact ul li:first-child {
    margin-top: 0;
}

.footer__contact ul li span {
    display: block;
}

.footer__contact ul li span:nth-of-type(1) {
    font-size: 50%;
    font-weight: 600;
}

.footer__contact ul li span:nth-of-type(2) {
    font-weight: 700;
}

.footer__contact ul li span a {
    text-decoration: none;
    color: #FFF;
    transition: color 0.25s linear;
}

.footer__contact ul li span a:hover {
    color: #69BB83;
}

@media (min-width: 576px) {
    .footer__contact ul {
        display: flex;
    }

    .footer__contact ul li {
        margin-top: 0;
        margin-left: 1.5rem;
        text-align: left;
    }
    
    .footer__contact ul li:first-child {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .footer__contact ul li {
        margin-left: 2rem;
        font-size: 1.125rem;
    }
}



/* Footer Social */

.footer__social {
    align-items: center;
    margin-top: 2rem;
    color: #FFF;
}

.footer__social h2 {
    display: none;
}

.footer__social ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__social ul li {
    margin-left: 1rem;
}

.footer__social ul li:first-child {
    margin-left: 0;
}

.footer__social ul li a {
    display: block;
    text-decoration: none;
    border-radius: 0.25rem;
    overflow: hidden;
}

.footer__social ul li a svg {
    display: block;
    width: 2rem;
    height: 2rem;
    fill: #FFF;
    transition: fill 0.25s linear;
}

.footer__social ul li a:hover svg {
    fill: #69BB83;
}

@media (min-width: 576px) {
    .footer__social {
        display: flex;
        align-items: center;
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .footer__social h2 {
        display: block;
        margin: 0 1rem 0 0;
        padding: 0;
        text-transform: uppercase;
        font-weight: 300;
        font-size: 0.875rem;
    }
}



/* Footer Legal */

.footer__legal {
    margin-top: 2rem;
}

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

.footer__legal ul li {
    margin-top: 1rem;
    text-align: center;
}

.footer__legal ul li:first-child {
    margin-top: 0;
}

.footer__legal ul li a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    color: #FFF;
}

.footer__legal ul li a {
    text-decoration: none;
}

.footer__legal ul li a:hover {
    text-decoration: underline;
}

@media (min-width: 576px) {
    .footer__legal ul {
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer__legal ul li {
        margin-top: 0;
        margin-left: 1rem;
        text-align: left;
    }
    
    .footer__legal ul li:first-child {
        margin-left: 0;
    }

    .footer__legal ul li a {
        font-size: 0.675rem;
    }
}

@media (min-width: 768px) {
    .footer__legal ul li a {
        font-size: 0.75rem;
    }
}



/* Footer Copyright + Credits */

.footer__credits {
    margin-top: 1rem;
}

.footer__copyright p,
.footer__credits p {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.625rem;
}

.footer__copyright p {
    color: #E94E3C;
}

.footer__credits p,
.footer__credits p a {
    color: #4D3387;
}

@media (min-width: 576px) {
    .footer__credits {
        margin-top: 0;
		margin-left: 2rem;
    }
}



/* Footer SSL */

.footer__ssl {
	width: 100%;
	margin-top: 1rem;
	text-align: center;
}

@media (min-width: 992px) {
    .footer__ssl {
        margin-top: 0;
		margin-left: auto;
		width: auto;
		text-align: left;
    }
}



/* Navigation (Mobile Button) */

.toggle-nav-outer {
    width: 2.5rem;
    height: 2.5rem;
}

.toggle-nav {
    z-index: 6;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #FFF;
    border: none;
    background-color: #69BB83;
}

.toggle-nav:hover {
    background-color: #009846;
    cursor: pointer;
}

.toggle-nav.active,
.toggle-nav.active:hover {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background-color: #E94E3C;
}

.toggle-nav:not(.active),
.toggle-nav.active {
    opacity: 0;
    animation-duration: 0.25s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.25s;
}

.toggle-nav:not(.active) {
    animation-name: nav-toggle-inactive;
}

.toggle-nav.active {
    animation-name: nav-toggle-active;
}

@keyframes nav-toggle-inactive {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes nav-toggle-active {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.toggle-nav span {
    display: block;
    font-size: 2rem;
}

.toggle-nav span + span,
.toggle-nav.active span {
    display: none;
}

.toggle-nav.active span + span {
    display: block;
}

@media (min-width: 576px) {
    .toggle-nav-outer {
        margin-left: 1.5rem;
    }
}

@media (min-width: 768px) {
    .toggle-nav-outer {
        margin-left: 1.5rem;
    }

    .toggle-nav.active,
    .toggle-nav.active:hover {
        right: 2rem;
        top: 2rem;
    }
}

@media (min-width: 1200px) {
    .toggle-nav-outer {
        display: none;
    }
}



/* Navigation (General) */

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

.nav ul li a {
    text-decoration: none;
}



/* Navigation (Main) */

.nav--main {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1rem;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    transform: translateY(-100%);
    transition: transform 0.25s linear;
    overflow-y: auto;
}

.nav--main.active {
    transform: translateY(0%);
}

.nav--main > ul > li {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.nav--main > ul > li:last-child {
    margin-bottom: 0;
}

.nav--main > ul > li > a,
.nav--main > ul > li > span {
    color: #69BB83;
}

.nav--main > ul > li > div > ul > li {
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
}

.nav--main > ul > li > div > ul > li > a {
    text-decoration: none;
    color: #009846;
}

@media (min-width: 768px) {
    .nav--main {
        padding: 2rem;
    }

    .nav--main > ul > li > span {
        font-size: 1rem;
    }

    .nav--main > ul > li > a {
        font-size: 1.25rem;
    }

    .nav--main > ul > li > div > ul > li {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .nav--main {
        position: relative;
        top: auto;
        left: auto;
        padding: 0;
        width: auto;
        height: auto;
        transform: none;
    }
    .nav--main > ul {
        display: flex;
    }
    .nav--main > ul > li {
        margin-bottom: 0;
        margin-left: 1.5rem;
        padding-bottom: 2rem;
        font-size: 0.875rem;
    }

    .nav--main > ul > li:first-child {
        margin-left: 0;
    }
    
    .nav--main > ul > li > a,
    .nav--main > ul > li > span {
        font-size: 0.875rem;
        transition: color 0.25s linear;
    }
    
    .nav--main > ul > li:hover > a,
    .nav--main > ul > li:hover > span {
        color: #009846;
        cursor: pointer;
    }
    
    .nav--main > ul > li > div {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        padding: 2rem 1rem;
        width: 100%;
        border-bottom: 1px solid #DDD;
        background-color: #F4F4F4;
    }
    
    .nav--main > ul > li:hover > div {
        display: block;
    }
    
    .nav--main > ul > li > div > ul {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: 80rem;
        list-style: none;
    }

    .nav--main > ul > li > div > ul > li {
        margin-top: 0;
        margin-left: 1.5rem;
        font-size: 0.875rem;
    }    

    .nav--main > ul > li > div > ul > li:first-child {
        margin-left: 0;
    }
    
    .nav--main > ul > li > div > ul > li > a {
        color: #009846;
        transition: color 0.25s linear;
    }
    
    .nav--main > ul > li > div > ul > li > a:hover {
        color: #333;
    }
}



/* Navigation (Clients) */

.nav--clients ul {
    display: flex;
}

.nav--clients ul li {
    margin-left: 1rem;
    text-transform: uppercase;
}

.nav--clients ul li:first-child {
    margin-left: 0;
}

.nav--clients ul li a {
    display: flex;
    align-items: flex-end;
    font-size: 0.75rem;
    transition: color 0.25s linear;
}

.nav--clients ul li:nth-of-type(1) a {
    color: #E94E3C;
}

.nav--clients ul li:nth-of-type(2) a {
    color: #4D3387;
}

.nav--clients ul li a > span {
    font-size: 1.5rem;
}

.nav--clients ul li a:hover > span {
    animation-name: nav-clients;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}

@keyframes nav-clients {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(0.0625rem); 
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-0.0625rem); 
    }
    100% {
        transform: translateY(0);
    }
}

.nav--clients ul li a > div {
    margin-left: 0.25rem;
}

.nav--clients ul li a > div span {
    display: block;
}

.nav--clients ul li a > div span:nth-of-type(1) {
    font-size: 75%;
    font-weight: 600;
}

.nav--clients ul li a > div span:nth-of-type(2) {
    font-weight: 700;
}

@media (min-width: 576px) {
    .nav--clients ul li {
        margin-left: 1.5rem;
    }

    .nav--clients ul li a {
        align-items: flex-end;
        font-size: 0.875rem;
    }

    .nav--clients ul li a > span {
        font-size: 1.75rem;
    }
}

@media (min-width: 1200px) {
    .nav--clients {
        margin: 2rem 0 2rem 4rem;
    }
}



/* Media */

.media {
    position: relative;
    width: 100%;
    height: 40vh;
    background-color: #F4F4F4;
}

.media__slider {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
}

.media__background {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
    overflow: hidden; 
}

@media (min-width: 1200px) {
    .media {
        height: 65vh;
    }

    .media__background {
        -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
        clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
    }
}



/* Joomla Hiden Elements */

.item-101 {
    display: none !important; 
}

.popover {
	display: none !important;
}



/* Joomla Main Content */

main {
    padding: 1rem 0;
    line-height: 1.6;
    color: #333;
    background-color: #F4F4F4;
}

main:not(.home) .item-page,
main:not(.home) .contact {
    z-index: 2;
    position: relative;
    margin: -30vh 1rem 0 1rem;
}

main.home .item-page .page-header {
    display: none;
}

main:not(.home) .item-page .page-header {
    margin: 0 1rem 1rem 1rem;
}

main:not(.home) .item-page .page-header h1,
main:not(.home) .contact h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
    text-shadow: 0 0 1rem #333;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    color: #FFF;
}

main:not(.home) .item-page div[itemprop="articleBody"],
main:not(.home) .contact .contact-form {
    padding: 1rem;
    font-size: 0.875rem;
    border-radius: 0 1rem 0 1rem;
    background-color: #FFF;
}

main:not(.home) .item-page div[itemprop="articleBody"] a {
    color: #333;
}

main:not(.home) .item-page div[itemprop="articleBody"] a:hover {
    color: #009846;
}

main:not(.home) .item-page div[itemprop="articleBody"] strong,
main:not(.home) .item-page div[itemprop="articleBody"] b,
main:not(.home) .item-page div[itemprop="articleBody"] dt {
    font-weight: 600;
}

main:not(.home) .item-page div[itemprop="articleBody"] h1,
main:not(.home) .item-page div[itemprop="articleBody"] h2,
main:not(.home) .item-page div[itemprop="articleBody"] h3,
main:not(.home) .item-page div[itemprop="articleBody"] h4,
main:not(.home) .item-page div[itemprop="articleBody"] h5,
main:not(.home) .item-page div[itemprop="articleBody"] h6,
main:not(.home) .contact h1 {
	text-transform: uppercase;
    line-height: 1;
}

main:not(.home) .item-page div[itemprop="articleBody"] h1,
main:not(.home) .item-page div[itemprop="articleBody"] h2,
main:not(.home) .contact h1 {
    font-weight: 700;
}

main:not(.home) .item-page div[itemprop="articleBody"] h3,
main:not(.home) .item-page div[itemprop="articleBody"] h4,
main:not(.home) .item-page div[itemprop="articleBody"] h5,
main:not(.home) .item-page div[itemprop="articleBody"] h6 {
    font-weight: 600;
}

main:not(.home) .item-page div[itemprop="articleBody"] h3 {
	color: #009846;
}

main:not(.home) .item-page div[itemprop="articleBody"] h4 {
	color: #E94E3C;
}

main:not(.home) .item-page div[itemprop="articleBody"] h5 {
	color: #4D3387;
}

main:not(.home) .item-page div[itemprop="articleBody"] h1 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h2 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h3 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h4 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h5 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h6 strong {
    color: #009846;
}

main:not(.home) .item-page div[itemprop="articleBody"] h1 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h2 strong {
    font-weight: 800;
}

main:not(.home) .item-page div[itemprop="articleBody"] h3 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h4 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h5 strong,
main:not(.home) .item-page div[itemprop="articleBody"] h6 strong {
    font-weight: 700;
}

main:not(.home) .item-page div[itemprop="articleBody"] h1 .material-icons,
main:not(.home) .item-page div[itemprop="articleBody"] h2 .material-icons,
main:not(.home) .item-page div[itemprop="articleBody"] h3 .material-icons,
main:not(.home) .item-page div[itemprop="articleBody"] h4 .material-icons,
main:not(.home) .item-page div[itemprop="articleBody"] h5 .material-icons,
main:not(.home) .item-page div[itemprop="articleBody"] h6 .material-icons {
	position: relative;
	top: 0.25rem;
	left: 0;
}

main:not(.home) .contact h1 {
    margin: 0 1rem 1rem 1rem !important;
}

main:not(.home) .contact h3 {
	display: none;
}

.contact fieldset {
	padding: 0;
	border: none;
}

.contact fieldset legend {
	display: none;
}

.contact .checkboxes .checkbox {
	display: flex;
	align-items: center;
	font-weight: 600;
}

.contact [id^="plg_fields_location_location"] {
	width: 100% !important;
}

.contact .checkboxes .checkbox input {
	display: inline-block !important;
	margin-top: 0 !important;
	margin-right: 0.5rem;
	padding: 0 !important;
	width: auto !important;
}

.contact .control-group {
	margin-bottom: 1rem;
}

.contact .control-group .control-label {
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.contact .control-group .controls input,
.contact .control-group .controls textarea {
	padding: 0.5rem 0.75rem;
	width: 100%;
	border: 1px solid #69BB83;
}

.contact .control-group:nth-of-type(1) .control-label {
	font-size: 0.75rem;
	color: #E94E3C;
}

.contact .control-group:nth-of-type(6) {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.contact .control-group:nth-of-type(6) .control-label {
	order: 2;
	margin-bottom: 0;
}

.contact .control-group:nth-of-type(6) .controls {
	margin-right: 0.5rem;
	order: 1;
}

.contact button {
    display: block;
    padding: 1rem 0.5rem;
    width: 100%;
    max-width: 10.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #FFF;
	border: none;
    border-radius: 0 0.5rem 0 0.5rem;
    background-color: #69BB83;
    transition: all 0.25s linear;
	cursor: pointer;
}

.contact button:hover {
    background-color: #009846;
}

@media (min-width: 768px) {
    main {
        padding: 2rem 0;
    }

    main:not(.home) .item-page,
	main:not(.home) .contact {
        margin: -30vh 2rem 0 2rem;
    }

    main:not(.home) .item-page .page-header,
	main:not(.home) .contact h1	{
        margin: 0 2rem 2rem 2rem !important;
    }
    main:not(.home) .item-page .page-header h1,
	main:not(.home) .contact h1 {
        margin: 0;
        padding: 0;
        line-height: 1;
        text-shadow: 0 0 0.75rem #333;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 3rem;
        color: #FFF;
    }
    
    main:not(.home) .item-page div[itemprop="articleBody"],
	main:not(.home) .contact .contact-form {
        padding: 2rem;
        font-size: 1rem;
        border-radius: 0 2rem 0 2rem;
    } 

	.contact .control-group {
		margin-bottom: 2rem;
	}
}

@media (min-width: 1200px) {
    main {
        padding: 4rem 0;
    }
 
    main:not(.home) .item-page,
	main:not(.home) .contact {
        margin: -48.75vh 0 0 0;
    }
}



/* Rates (Rows) */

.rates__row-column {
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .rates__row {
        display: flex;
		flex-wrap: wrap;
        align-items: stretch;
        margin: -1rem;
    }

    .rates__row-column {
        width: 100%;
        margin-top: 0;
        padding: 1rem;
    }
	
	.rates__row-column--2,
	.rates__row-column--3,
	.rates__row-column--4,
	.rates__row-column--5 {
		width: 50%;
	}
}

@media (min-width: 1200px) {		
	.rates__row-column--4 {
		width: 25%;
	}
	
	.rates__row-column--5 {
		width: 20%;
	}
}



/* Rates (Item) */

.rates__item {
	background-color: #FFF;
	transform: scale(1);
	transition: transform 0.25s linear;
	cursor: help;
}

.rates__item:hover {
	transform: scale(1.1);
}

.rates__item > header > * {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 1rem !important;
    line-height: 1 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    color: #FFF !important;
    border-radius: 0 1rem 0 0 !important;
    background-color: #333 !important;
}

.rates__item--green > header > * {
    background-color: #009846 !important;
}

.rates__item--light-green > header > * {
    background-color: #69BB83 !important;
}

.rates__item--red > header > * {
    background-color: #E94E3C !important;
}

.rates__item--purple > header > * {
    background-color: #4D3387 !important;
}

.rates__item--gray > header > * {
    background-color: #777 !important;
}

.rates__item > header > * > span {
    display: block !important;
    margin-top: 0.25rem !important;
}

.rates__item > header > * > span:first-child {
    margin-top: 0 !important;
    font-size: 50% !important;
}

.rates__item > header > * > span:last-child {
    word-spacing: 1 !important;
    width: min-intrinsic !important;
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
    display: table-caption !important;
    display: -ms-grid !important;
    -ms-grid-columns: min-content !important;
}

.rates__item-price {
	padding: 1rem;
	text-align: center;
	line-height: 1.2;
	color: #333;
	border-radius: 0 0 0 1rem !important;
	background-color: #F4F4F4;
}

.rates__item-price span {
	display: block;
	font-weight: 600;
	font-size: 1rem;
}

.rates__item-price span:first-child {
    font-weight: 700;
    font-size: 1.25rem;
}

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

.rates__item ul li {
    margin-top: 0.5rem;
    text-align: center;
}

.rates__item ul li span {
    display: block;
    margin-top: 0.125rem;
    font-size: 0.875rem;
}

.rates__item ul li span:first-child {
    margin-top: 0;
    font-weight: 600;
    font-size: 1rem;
}

@media (min-width: 576px) {
    .rates__item ul li span {
        font-size: 0.75rem;
    }

    .rates__item ul li span:first-child {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .rates__item > header > * {
        font-size: 2rem !important;
    }

    .rates__item ul li:first-child {
        margin-top: 1rem;
    }
}

@media (min-width: 1200px) {
    .rates__item ul li {
        margin-top: 1rem;
    }

    .rates__item ul li:first-child {
        margin-top: 2rem;
    }

    .rates__item ul li span {
        font-size: 0.875rem;
    }

    .rates__item ul li span:first-child {
        font-size: 1rem;
    }
}



/* Media Slider */

.slick {
    padding: 1rem 1rem 0 1rem;
    height: 100%;
}

.slick__items {
    height: 100%;
}

.slick__items .slick-list,
.slick__items .slick-track,
.slick__items .slick-slide,
.slick__items .slick-slide > *,
.slick__items .slick-slide > * > *,
.slick__items .slick-slide > * > * > * { /* Height Fix */
    height: 100%;
}

.slick__items .slick-slide > * > * > * {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.slick__items-item {
    margin: 0 auto;
    width: 100%;
    max-width: 50rem;
    height: 100%;
}

@media (min-width: 768px) {
    .slick {
        padding: 2rem 2rem 0 2rem;
    }
}

@media (min-width: 1200px) {
    .slick {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .slick__items {
        position: relative;
        z-index: 1;
        margin: 0 2rem;
        width: calc(100% - 10rem);
    }

    .slick__control {
        position: relative;
        z-index: 2;
        width: 3rem;
        height: 3rem;
        margin: 0;
        padding: 0;
        color: #FFF;
        border: none;
        background-color: transparent;
        opacity: 0.75;
        transition: opacity 0.25s linear;
        overflow: hidden;
    }
    
    .slick__control:hover {
        opacity: 1;
        cursor: pointer;
    }
    
    .slick__control > span { /* Material Icon Size Fix */
        font-size: 3rem !important;
    }
}



/* Home Section */

.home-section {
    padding: 0 1rem;
}

.home-section > header {
	margin: 0 0 1rem 1rem;	
}

.home-section > header > h2 {
	margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2rem;
}

.home-section > header > p {
	margin: 0;
	font-size: 87.5%;
}

@media (min-width: 768px) {
    .home-section {
        padding: 0 2rem;
    }

    .home-section > header {
        margin: 0 0 1rem 2rem;
    }
	
	.home-section > header > h2 {
		font-size: 2.5rem;
	}
}

@media (min-width: 992px) {
    .home-section > header > h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .home-section {
        padding: 0;
    }

    .home-section > header > h2 {
        font-size: 2.5rem;
    }
}



/* Home Service */

.home-service {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    height: 100%;
    border-radius: 0 1rem 0 1rem;
    background-color: #FFF;
}

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

.home-service__header span {
    font-size: 3.75rem;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.home-service__header h3 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.25rem;
}

.home-service__header--green {
    color: #009846;
}

.home-service__header--red {
    color: #E94E3C;
}

.home-service__header--purple {
    color: #4D3387;
}

.home-service__header--cloud span {
    animation-name: services-cloud;
}

.home-service__header--thermostat span {
    animation-name: services-thermostat;
}

.home-service__header--phone span {
    animation-name: services-phone;
}

@keyframes services-cloud {
    0% {
        transform: translate(-0.125rem, -0.125rem);
    }
    25% {
        transform: translate(0.0625rem, -0.0625rem);
    }
    50% {
        transform: translate(-0.125rem, 0.125rem);
    }
    75% {
        transform: translate(0.0625rem, -0.0625rem);
    }
    100% {
        transform: translate(-0.125rem, -0.125rem);
    }
}

@keyframes services-thermostat {
    0% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

@keyframes services-phone {
    0% {
        transform: translate(-0.125rem, 0);
    }
    50% {
        transform: translate(0.125rem, 0.0625rem);
    }
    100% {
        transform: translate(-0.125rem, 0);
    }
}

.home-service__description {
    margin: 1rem 0;
    color: #333;
}

.home-service__description p {
    margin: 1rem 0 0 0;
    padding: 0;
    line-height: 1.5;
    text-align: center;
    font-size: 0.875rem;
}

.home-service__description p strong {
    font-weight: 600;
}

.home-service__description p:first-child {
    margin: 0;
}

.home-service__links {
    display: flex;
    margin: auto -0.5rem 0 -0.5rem;
    padding: 0;
    list-style: none;
}

.home-service__links li {
    padding: 0 0.5rem;
    width: 50%;
}

.home-service__links li a {
    display: block;
    padding: 0.5rem 0.375rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    color: #333;
    border-radius: 0 0.5rem 0 0.5rem;
    background-color: #F1F1F1;
    transition: all 0.25s linear;
}

.home-service__links li a:hover {
    color: #FFF;
}

.home-service__links li:first-child a:hover {
    background-color: #E94E3C;
}

.home-service__links li:last-child a:hover {
    background-color: #4D3387;
}

@media (min-width: 768px) {
    .home-service {
        padding: 2rem;
    }

    .home-service__header h3 {
        font-size: 2rem;
    }

    .home-service__description {
        margin: 2rem 0;
        color: #333;
    }

    .home-service__description p {
        font-size: 1rem;
    }

    .home-service__links li a {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 992px) { 
    .home-service__header h3 {
        font-size: 1.25rem;
    }

    .home-service__description p {
        font-size: 0.875rem;
    }

    .home-service__links li a {
        padding: 0.5rem 0.375rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1200px) {
    .home-service__header h3 {
        font-size: 2rem;
    }
    
    .home-service__description p {
        font-size: 1rem;
    }

    .home-service__links li a {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }
}



/* Home TV */

.home-tv {
    position: relative;
    margin: 2rem 0;
}

.home-tv > .container {
    z-index: 2 !important;
    position: relative !important;
    padding: 0 1rem 1rem 1rem !important;
}

.home-tv__image,
.home-tv__video {
    display: none;
}

.home-tv__section {
    padding: 1rem;
    border-radius: 0 1rem 0 1rem;
    background-color: #FFF;
}

.home-tv__section h3 {
    margin: 0 0 1rem 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.25rem;
}

.home-tv__section p {
    margin: 1rem 0 0 0;
    padding: 0;
    line-height: 1.5;
    font-size: 0.875rem;
    color: #333;
}

.home-tv__section p:first-child {
    margin: 0;
}

.home-tv__section p strong {
    font-weight: 600;
}

.home-tv__section img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #DDD;
    border-radius: 0 0.5rem 0 0.5rem;
}

.home-tv__section ul {
    display: flex;
    margin: 1rem -0.5rem 0 -0.5rem;
    padding: 0;
    list-style: none;
}

.home-tv__section ul li {
    padding: 0 0.5rem;
    width: 50%;
}

.home-tv__section ul li a {
    display: block;
    padding: 0.5rem 0.375rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    color: #333;
    border-radius: 0 0.5rem 0 0.5rem;
    background-color: #F1F1F1;
    transition: all 0.25s linear;
}

.home-tv__section ul li a:hover {
    color: #FFF;
    background-color: #4D3387;
}

.home-tv__background {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom center;
    -webkit-clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .home-tv {
        margin: 4rem 0;
    }

    .home-tv > .container {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 2rem 2rem 2rem !important;
    }

    .home-tv__section {
        padding: 2rem;
    }

    .home-tv__section > .row {
        align-items: flex-end !important;
    }

    .home-tv__section h3 {
        margin: 0 0 2rem 0;
        font-size: 2rem;
    }
    
    .home-tv__section p {
        font-size: 1rem;
    }

    .home-tv__section ul {
        margin: 2rem -0.5rem 0 -0.5rem;
    }

    .home-tv__section ul li a {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .home-tv__image,
	.home-tv__video	{
        display: block;
        margin: 0 2rem 2rem 2rem;
    }
	
    .home-tv__image img {
        display: block;
        width: auto;
        height: 22rem;
    }
	
	.home-tv__video {
		width: 33.33333%;
		border-radius: 0.5rem;
		box-shadow: 0.5rem 1rem 2rem 0rem #333;
		transform: rotateX(5deg) skewY(5deg);
		overflow: hidden;
	}
	
	.home-tv__video video {
		display: block;
		width: calc(100% - 0.375rem);
		height: auto;
		border: 0.5rem solid #999;
		border-radius: 0.5rem;
		box-shadow: 0.375rem 0 0 0 #333;
	}

    .home-tv__video-external {
		display: block;
        padding-bottom: 56.25%;
		width: calc(100% - 0.375rem);
		height: 0;
		border: 0.5rem solid #999;
		border-radius: 0.5rem;
		box-shadow: 0.375rem 0 0 0 #333;
    }

    .home-tv__video-external iframe {
        display: block;
        position: absolute;
        top: 0.375rem;
        left: 0.375rem;
        width: calc(100% - 1.1rem);
        height: calc(100% - 0.75rem);
    }

	.home-tv__section {
		width: 66.66667%;
	}	
	
    .home-tv__section h3 {
        font-size: 1.25rem;
    }
    
    .home-tv__section p {
        font-size: 0.875rem;
    }

    .home-tv__section ul li a {
        padding: 0.5rem 0.375rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1200px) {
    .home-tv > .container {
        padding: 0 0 2rem 0 !important;
    }

    .home-tv__image img {
        height: 20rem;
    }

    .home-tv__section h3 {
        font-size: 2rem;
    }
    
    .home-tv__section p {
        font-size: 1rem;
    }

    .home-tv__section ul li a {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }
}



/* Home Rates */

.home-rates + .home-rates {
    margin-top: 1rem;
}

.home-rates {
    border-radius: 0 1rem 0 1rem;
    background-color: #FFF;
}

.home-rates > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.home-rates > header > div > h3 {
    margin: 0 0 0.25rem 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.25rem;
}

.home-rates > header > div > p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 0.875rem;
}

.home-rates > header > span {
    font-size: 1.5rem;
}

.home-rates__link > span {
    color: #69BB83;
    transform: rotate(0deg);
    transition: all 0.25s linear;
}

.home-rates__link:hover > span {
    color: #009846;
}

.home-rates__link--active > span,
.home-rates__link--active:hover > span {
    color: #E94E3C;
    transform: rotate(45deg);
}

.home-rates__content {
    display: none;
    padding-bottom: 1rem;
}

.home-rates__content--active {
    display: block;
}

.home-rates__content > section {
    margin-top: 1rem;
}

.home-rates__content > section:first-child {
    margin-top: 0;
}

.home-rates__content > section > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    text-decoration: none;
    color: #009846;
    cursor: pointer;
}

.home-rates__content > section > header > div > h4 {
    margin: 0 0 0.25rem 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
}

.home-rates__content > section > header > div > p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 0.75rem;
}

.home-rates__content > section > header > span {
    font-size: 1.5rem;
}

.home-rates__details {
    margin: 1rem 1rem 0 1rem;
    padding: 1rem 0;
    color: #333;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
}

.home-rates__included {
    margin: 1rem 0;
    text-align: center;
}

.home-rates__included p {
    margin: 0.5rem 0 0 0;
    padding: 0;
    font-size: 0.75rem;
}

.home-rates__included p:first-child {
    margin: 0;
}

.home-rates__included p strong {
    font-weight: 600;
    font-size: 0.875rem;
    color: #009846;
}

@media (min-width: 768px) {
    .home-rates > header {
        padding: 2rem;
    }

    .home-rates > header > div > h3 {
        font-size: 1.5rem;
    }

    .home-rates > header > div > p {
        font-size: 1rem;
    }

    .home-rates > header > span {
        font-size: 2rem;
    }

    .home-rates__content {
        padding-bottom: 2rem;
    }

    .home-rates__content > section > header {
        padding: 0 2rem;
    }

    .home-rates__content > section > header > div > h4 {
        margin: 0 0 0.25rem 0;
        padding: 0;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 1.25rem;
    }

    .home-rates__content > section > header > div > p {
        font-size: 0.875rem;
    }

    .home-rates__content > section > header > span {
        font-size: 2rem;
    }

    .home-rates__details {
        margin: 1rem 2rem 0 2rem;
    }

    .home-rates__included {
        margin: 1rem 0 1rem 0;
        text-align: center;
    }

    .home-rates__included p {
        font-size: 0.875rem;
    }

    .home-rates__included p strong {
        font-size: 1rem;
    }
}



























.rate-module {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 0 2rem 0 2rem;
	background-color: #F4F4F4;
}


.rate-module > header {
	padding: 1rem;
	border-radius: 0 1rem 0 0;
}

.rate-module > header > * {
	display: flex;
    flex-direction: column;
    align-items: center;
	margin: 0;
	line-height: 1 !important;
	text-align: center;
	text-transform: uppercase !important;
	font-weight: 800 !important;
	font-size: 1.5rem !important;
	color: #FFF !important;
}

.rate-module.no-span > header > * {
	font-size: 1.25rem !important;
}

.rate-module > header > * > span {
    display: block;
    margin-top: 0.25rem;
}

.rate-module > header > * > span:first-child {
    margin-top: 0;
    font-size: 50%;
}

.rate-module > header > * > span:last-child {
    word-spacing: 1;
    width: min-intrinsic;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    display: table-caption;
    display: -ms-grid;
    -ms-grid-columns: min-content;
}





.rate-module--green > header {
    background-color: #009846;
}

.rate-module--light-green > header {
    background-color: #69BB83;
}

.rate-module--red > header {
    background-color: #E94E3C;
}

.rate-module--purple > header {
    background-color: #4D3387;
}

.rate-module--gray > header {
    background-color: #777;
}


.rate-module--green .rate-module__amount,
.rate-module--green .rate-module__button {
	background-color: #69BB83;
}

.rate-module--light-green .rate-module__amount,
.rate-module--light-green .rate-module__button {
	background-color: #8BD9A3;
}

.rate-module--red .rate-module__amount,
.rate-module--red .rate-module__button {
	background-color: #F27768;
}

.rate-module--purple .rate-module__amount,
.rate-module--purple .rate-module__button {
	background-color: #7B5CBF;
}

.rate-module--gray .rate-module__amount,
.rate-module--gray .rate-module__button {
	background-color: #DDD;
}




.rate-module--green .rate-module__button:hover {
    background-color: #009846;
}

.rate-module--light-green .rate-module__button:hover {
    background-color: #69BB83;
}

.rate-module--red .rate-module__button:hover {
    background-color: #E94E3C;
}

.rate-module--purple .rate-module__button:hover {
    background-color: #4D3387;
}

.rate-module--gray .rate-module__button:hover {
    background-color: #777;
}





.rate-module__content {
	padding-bottom: 1rem;
}

.rate-module__amount {
	padding: 0.5rem 1rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.25rem;
	color: #FFF !important;
}

.rate-module__feature {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
	padding: 0 1rem;
}

.rate-module__feature span:first-child {
	margin-right: 0.5rem;
}

.rate-module__feature span:last-child {
	font-weight: 600;
}

.rate-module__button {
	display: block;
	width: 100%;
	margin-top: auto;
	padding: 0.5rem 1rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700 !important;
	font-size: 0.875rem !important;
	color: #FFF !important;
	border-radius: 0 0 0 1rem;
	transition: background-color 0.25s linear;
}

@media (min-width: 768px) {
	.rate-module > header > * {
		font-size: 2rem !important;
	}
	
	.rate-module.no-span > header > * {
		font-size: 1.75rem !important;
	}
}









#system-message-container {
	z-index: 5;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #009846;
}

#system-message-container .alert {
    margin: 0 auto;
	padding: 1rem;
    width: 100%;
    max-width: 80rem;
	color: #FFF;
}

#system-message-container .alert .close {
	display: block;
	margin-left: auto;
	padding: 0;
	width: 1.75rem;
	height: 1.75rem;
	line-height: 1.75rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #009846;
	border-radius: 50%;
	border: none;
	background-color: #FFF;
	cursor: pointer;
}

#system-message .alert-message {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
    margin: 0 auto;
	padding: 1rem;
    width: 100%;
    max-width: 80rem;
	color: #FFF;
}

#system-message .alert-message > h4 {
	order: 1;
	margin: 0;
	padding: 0;
}

#system-message .alert-message > a {
	order: 2;
	width: 1.75rem;
	height: 1.75rem;
	line-height: 1.75rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #009846;
	border-radius: 50%;
	background-color: #FFF;
	cursor: pointer;
}

#system-message .alert-message > div {
	order: 3;
	padding: 0 !important;
	width: 100%;
}

#system-message .alert-message > div > .alert-message {
	padding: 0 !important;
}


span.price {
	display: inline-block;
	padding: 1rem;
	font-weight: 700;
	font-size: 1.75rem;
	color: #FFF;
	border-radius: 0 0.5rem 0 0.5rem;
	background-color: #69BB83;
}


.grants {
	font-size: 0.75rem;
}

.grants img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 40rem;
	height: auto;
}

.grants h2 {
	margin: 2rem 0 1rem 0;
	text-align: center;
	font-size: 1rem;
	font-weight: 400;
}
