/*!
Theme Name: FusionOne
Author: Robert Humm
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fusionone
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/




/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
:root {
  --black-color:#000000;
  --grey-color:#eeeeee;
  --blue-color:#3176a5;
  --green-color:#8dbe48;
  --white-color:#FFFFFF;
  --background-black:#000000;
  --background-grey:#eeeeee;
  --background-blue:#3176a5;
  --background-green:#8dbe48;
  --background-white:#FFFFFF;
  --font-family-outfit: "Outfit", sans-serif;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color:var(--blue-color);
  text-decoration:none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus, a:active {
  color: var(--green-color);
  text-decoration:none;
}
a:focus {
  outline:none;
}
a:hover, a:active {
  outline: 0;
}
p{
  margin:0 0 15px;
}
input,
textarea,
select,
button{
  font-family: "Outfit", sans-serif;
}
input:focus,
textarea:focus,
select:focus,
button:focus{
  outline:none;
  box-shadow:none;
}
img{
  max-width:100%;
  height:auto;
}
h1, h2, h3, h4, h5, h6{
  font-family: "Outfit", sans-serif;
  margin:0;
  font-weight:400;
}
body {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  color:var(--black-color);
  font-size:16px;
  line-height:1.6;
  font-weight:400;
  margin:0;
}
body .home-site-content>:where(:not(.alignwide)),
body .site-main>:where(:not(.alignwide)) {
  max-width:1400px;
  margin-left: auto;
  margin-right: auto; 
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  max-width:1400px;
  width:auto;
  margin:0 auto;
  padding-right:15px;
  padding-left:15px;
}
/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.site-header{
  background:var(--background-white);
}
.header-top{
  background:var(--background-blue);
  padding:21.5px 0;
  text-align:center;
}
.header-top .free-senior-text{
  font-size:17px;
  font-weight:500;
  color:var(--white-color);
  line-height:100%;
  text-transform:uppercase;
  letter-spacing:1px;
}
.header-wrap{
  display:flex;
  gap:15px;
  justify-content:space-between;
  align-items:center;
}
.site-logo img{
  width:261px;
  height:62px;
  display:block;
}
.phone-no a{
  background:var(--background-green);
  font-size:22px;
  font-weight:700;
  color:var(--white-color);
  line-height:100%;
  display:inline-block;
  padding: 16px 20px 16px 40px;
  border-radius:8px;
  letter-spacing:0.5px;
  text-align:center;
  position:relative;
}
.phone-no a:before {
  content: '';
  position: absolute;
  left:12px;
  top: 50%;
  background: url(assets/images/call-icon.png) no-repeat;
  width:22px;
  height:22px;
  background-size:22px;
  display: inline-block;
  margin-top: -10px;
}
.phone-no a:hover{
  background:var(--background-blue);
}
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
nav.main-menu{
  /*  display:none;*/
  text-align:right;
}
nav.main-menu ul ul {
  display: none;
}
nav.main-menu ul li:hover > ul {
  display: block;
}
nav.main-menu ul {
  list-style: none;
  position: relative;
  margin:0;
  padding:0;
}
nav.main-menu ul li {
  display: inline-block;
  padding:0 11px;
  position:relative;
}
nav.main-menu ul li:last-of-type{
  padding-right:0;
}
nav.main-menu ul li a {
  display: block;
  padding:34px 0px;
  color:rgba(0, 0, 0, 0.80);
  font-size:16px;
  text-transform:uppercase;
  position:relative;
  letter-spacing:0.5px;
  font-weight:700; 
}
nav.main-menu ul li a:hover,
nav.main-menu ul li.current-menu-item a,
nav.main-menu ul li.active a{
  color:var(--blue-color);
}
nav.main-menu ul ul {
  background:var(--background-green);
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top:100%;
  width:220px;
  z-index:4;
}
nav.main-menu ul ul li {
  display: block;
  position: relative;
  padding:0;
  float:none;
}
nav.main-menu ul ul li a {
  padding:12px 15px;
  color:var(--white-color) !important;
  font-size:15px;
  text-align: left;
  border-bottom:0;
  font-weight:600;
}
nav.main-menu ul ul li:hover a,
nav.main-menu ul ul li.current-menu-item a{
  color:var(--white-color) !important;
  background:var(--background-blue);
  border-bottom:0;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}   
nav.main-menu ul ul ul {
  position: absolute;
  left: 100%;
  top:0;
  min-width:220px;
  background:var(--background-blue);
}
nav.main-menu ul ul ul li a{
  color:var(--white-color);
}
nav.main-menu ul ul ul li:hover a,
nav.main-menu ul ul ul li.current-menu-item a{
  color:var(--white-color);
  background:var(--background-green);
}
/*--------------------------------------------------------------
   # Home Slider
--------------------------------------------------------------*/
.home-banner{
  background:var(--background-black);
  position:relative;
}
.home-banner:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.60);
  z-index:2;
}
.home-banner-content {
  position: absolute;
  z-index:3;
  top:0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home-banner .container {
  max-width:1400px;
  margin:0 auto;
  width:auto;
  height:100%;
  padding:0 15px;
  position:relative;
  z-index:2;
}
.home-banner img,
.home-banner video {
  width: 100%;
  display:block;
  height:780px;
  object-fit:cover;
}
.home-banner-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content:flex-end;
  padding: 0;
  text-align: center;
  align-items: center;
}
.banner-content{
  padding-bottom:190px;
}
.banner-heading{
  text-transform:inherit;
  color:var(--white-color);
  font-size:72px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:0;
  position:relative;
  margin-bottom:0;
}
.banner-subheading{
  color: var(--white-color);
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  line-height:100%;
  font-size:25px;
  margin-bottom:20px;
  letter-spacing:4px;
}
.banner-button a,
.contact-cta-btn a,
.explore-btn a,
.helpful-explore-btn a{
  background:var(--background-green);
  font-size:24px;
  font-weight:700;
  text-transform:inherit;
  line-height:100%;
  text-align:center;
  display:inline-block;
  padding:21px 35px;
  color:var(--white-color);
  letter-spacing:1px;
  margin-top:35px;
  border-radius:8px;
}
.banner-button a:hover,
.contact-cta-btn a:hover,
.helpful-explore-btn a:hover{
  background:var(--background-white);
  color:var(--green-color);
}
.banner-button a{
  font-size:28px;
  min-width:172px;
}
/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.map-section{
  padding:135px 0 70px;
  background:var(--background-white);
}
.map-content-area .map-heading{
  font-size:54px;
  font-weight:800;
  color:var(--blue-color);
  line-height:1.2;
  margin-bottom:28px;
  text-transform:inherit;
}
.map-content-area .map-text{
  font-size:32px;
  font-weight:400;
  color:rgba(0, 0, 0, 0.80);
  line-height:1.3;
  max-width:1065px;
}
.map-section .map-area{
  margin-top:55px;
}
.map-section .map-area iframe{
  width:100%;
  height:617px;
  display:block;
  box-shadow:5px 0 30px rgba(0, 0, 0, 0.15);
}
.contact-cta-section{
  padding-bottom:135px;
}
.contact-cta-section .contact-cta-content{
  background:var(--background-blue);
  padding:85px 65px;
  border-radius:12px;
}
.contact-cta-heading,
.contact-location-content .contact-loc-heading,
.care-heading,
.helpful-heading,
.why-prime-heading,
.final-cta-heading{
  font-size:50px;
  font-weight:700;
  color:var(--white-color);
  line-height:1.1;
  letter-spacing:0.25px;
  margin-bottom:15px;
  text-transform:inherit;
}
.contact-cta-text,
.contact-location-content .contact-loc-text,
.care-text,
.final-cta-text{
  font-size:32px;
  font-weight:300;
  color:rgba(255, 255, 255, 0.80);
  line-height:1.3;
  max-width:1065px;
}
.contact-cta-btn a{
  font-size:28px;
}
.contact-cta-btn a:hover{
  color:var(--blue-color);
}
.how-we-help-section .how-we-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
}
.how-left-box{
  position:relative;
  width:27%;
}
.how-left-box:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.50);
}
.how-left-box .how-left-image{
  width:100%;
  height:100%;
}
.how-left-box .how-left-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.how-help-main{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:15px;
  width:73%;
}
.how-left-content{
  position:absolute;
  left:25px;
  top:0;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  text-align:left;
}
.how-left-content .how-help-subtitle,
.contact-location-content .contact-loc-subtitle,
.care-subtitle{
  font-weight:500;
  font-size:18px;
  letter-spacing:1px;
  text-transform:uppercase;
  line-height:100%;
  margin-bottom:10px;
  color:var(--white-color);
}
.how-help-title{
  font-weight:800;
  font-size:42px;
  letter-spacing:0.25px;
  text-transform:inherit;
  line-height:1.1;
  margin-bottom:30px;
  color:var(--white-color);
}
.how-learnmore a{
  background:var(--background-green);
  font-size:21px;
  font-weight:700;
  text-transform:inherit;
  line-height:100%;
  text-align:center;
  display:inline-block;
  padding:18.5px 25px;
  color:var(--white-color);
  letter-spacing:0;
  margin-top:0;
  border-radius:8px;
}
.how-learnmore a:hover{
  background:var(--background-white);
  color:var(--green-color);
}
.how-we-box .how-we-image img{
  width:100%;
  height:465px;
  display:block;
  object-fit:cover;
  border-radius: 12px;
}
.how-we-content{
  padding:62px 0 30px 20px;
}
.how-we-content .how-title{
  font-size:26px;
  color:var(--green-color);
  text-transform:inherit;
  line-height:1.1;
  font-weight:800;
  letter-spacing:0.25px;
  margin-bottom:15px;
}
.how-we-content .how-text{
  font-size:16.5px;
  font-weight:400;
  color:rgba(71, 71, 71, 0.70);
  letter-spacing:0.25px;
  line-height:1.5;
}
.slick-slide .how-we-box .how-we-content{
  position:relative;
}
.contact-location-section{
  background:var(--background-green) url(assets/images/contact-location-bg.jpg) center center no-repeat;
  background-size:cover;
  padding:182px 0;
  position:relative;
}
.contact-location-section:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:url(assets/images/contact-location-before.png) no-repeat;
  background-size:cover;
  width:100%;
  height:100%;
}
.contact-location-section .contact-location-content{
  position:relative;
  text-align:center;
}
.contact-location-content .contact-loc-subtitle,
.care-subtitle {
  color:rgba(255, 255, 255, 0.95);
  letter-spacing:4px;
  font-size:18.5px;
}
.contact-location-content .contact-loc-text,
.care-text{
  font-size:22px;
  color:var(--white-color);
  max-width:775px;
  margin:0 auto;
  line-height:1.5;
}
.contact-location-content .contact-loc-heading,
.care-heading{
  margin-bottom:28px;
  margin-top:20px;
}
.contact-loc-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  align-items:center;
  margin-top:55px;
}
.contact-loc-buttons a,
.contact-loc-buttons a.contact-btn:hover{
  background: var(--background-white);
  font-size: 21.5px;
  color: #474747;
  line-height: 100%;
  font-weight: 700;
  display: inline-block;
  padding: 23px 40px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  letter-spacing: 1px;
  border-radius: 8px;
}
.contact-loc-buttons a.contact-btn,
.contact-loc-buttons a.find-loc-btn:hover{
  border-bottom: 2px solid var(--white-color);
  color:var(--white-color);
  background:transparent;
}
.care-options-section{
  padding:112px 0;
  text-align:center;
}
.logo-icon{
  text-align:center;
  margin-bottom:20px;
}
.logo-icon img{
  width: 180px;
  height: 182px;
  display: block;
  margin: 0 auto;
}
.care-subtitle{
  color:rgba(71, 71, 71, 0.70);
}
.care-heading{
  color:var(--blue-color);
}
.care-text{
  color:#474747;
}
.explore-btn a:hover{
  background:var(--background-blue);
  color:var(--white-color);
}
.accordion-area{
  display:flex;
  gap:50px;
  justify-content:space-between;
  align-items:flex-start;
  margin-top:100px;
}
.accordion-image{
  width:42%;
}
.accordion-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  border-radius:12px;
}
.accordion-block{
  width:58%;
  text-align:left;
}
.helpful-resources-section{
  background:var(--background-blue);
  padding: 112px 0;
}
.helpful-resources-section .container{
  max-width:1600px;
}
.helpful-resources-wrap{
  display:flex;
  gap:20px;
  justify-content:space-between;
  align-items:center;
}
.helpful-content-area{
  width:25%;
}
.helpful-boxes{
  width:75%;
}
.helpful-text{
  font-size:18px;
  font-weight:400;
  color:rgba(255, 255, 255, 0.92);
  letter-spacing:0.25px;
  line-height:1.5;
}
.helpful-explore-btn a{
  background:var(--background-white);
  color:var(--blue-color);
  margin-top:65px;
  font-size: 22px;
  padding: 19px 24px;
}
.helpful-explore-btn a:hover{
  background:var(--background-grey);
  color:var(--blue-color);
}
.helpful-boxes{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:15px;
}
.helpful-boxes .helpful-box .helpful-thumbnail img{
  width:100%;
  height:300px;
  display:block;
  object-fit:cover;
  border-radius:12px;
}
.content-helpful{
  padding:27px 0px 0 15px;
}
.content-helpful .helpful-title{
  font-size:22px;
  color:var(--white-color);
  font-weight:700;
  letter-spacing:0.25px;
  line-height:100%;
  margin-bottom:12px;
  text-transform:inherit;
}
.content-helpful .helpful-text{
  font-size:16.5px;
  font-weight:400;
  color:rgba(255, 255, 255, 0.92);
  letter-spacing:0.10px;
  line-height:1.5;
}
.why-prime-section{
  padding: 112px 0;
  background:var(--background-white);
}
.why-prime-heading{
  color:var(--blue-color);
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  line-height:1.2;
}
.why-prime-wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:60px 50px;
  margin-top:75px;
  max-width:1135px;
  margin-left:auto;
  margin-right:auto;
}
.why-prime-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;
}
.why-prime-box .prime-icon{
  width:115px;
  max-width:115px;
  min-width:115px;
}
.why-prime-box .prime-icon img{
  width:100%;
  height:100%;
  display:block;
}
.prime-content .prime-title {
  font-size:26px;
  font-weight:800;
  color:var(--green-color);
  line-height:1.1;
  text-transform:inherit;
  margin-bottom:10px;
}
.prime-content .prime-text{
  font-size:18px;
  font-weight:400;
  line-height:1.5;
  color:rgba(0, 0, 0, 0.60);
}
.final-cta-section{
  background:var(--background-green) url(assets/images/final-cta-bg.jpg) center center no-repeat;
  background-size:cover;
  padding:220px 0;
  position:relative;
}
.final-cta-section:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:url(assets/images/contact-location-before.png) no-repeat;
  background-size:cover;
  width:100%;
  height:100%;
  opacity:0.5;
}
.final-cta-section:after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  background:rgba(255, 255, 255, 0.60);
  background-size:cover;
  width:100%;
  height:100%;
}
.final-cta-block{
  background:rgba(0, 0, 0, 0.60);
  border-radius:12px;
  padding:65px 25px;
  max-width:775px;
  margin:0 auto;
  position:relative;
  text-align:center;
  z-index:2;
}
.final-cta-heading{
  max-width:625px;
  font-size:45px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:20px;
}
.final-cta-text{
  max-width:625px;
  font-size:24px;
  margin-left:auto;
  margin-right:auto;
  color: rgba(255, 255, 255, 0.92);
}
.final-cta-block .contact-cta-btn {
  position: absolute;
  bottom: -32px;
  left: 50%;
  min-width: 224px;
  margin-left: -112px;
}
.final-cta-block .contact-cta-btn a:hover{
  color:var(--green-color);
}
/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer{
  background:var(--background-white);
}
.home .site-footer .footer-wrap{
  border-top:0;
}
.footer-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 0 25px;
  border-top: 0;
}
.footer-logo img{
  width:252px;
  height:60px;
  display:block;
}
.social-icons ul{
  list-style:none;
  margin:0;
  padding:0;
}
.social-icons ul li{
  padding:0;
  padding-right:5px;
  display:inline-block;
}
.social-icons ul li a{
  width:55px;
  height:55px;
  background:var(--background-green);
  border-radius:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--white-color);
}
.social-icons ul li a:hover{
  background:var(--background-blue);
}
.social-icons ul li a svg{
  width: 24px;
  height: 24px;
}
.footer-bottom{
  padding:25px 0;
  font-size:12.5px;
  text-transform:uppercase;
  color:rgba(0, 0, 0, 0.70);
  font-weight:400;
  letter-spacing:0.50px;
  line-height:1.3;
  border-top:1px solid #c7c1b8;
  display:flex;
  gap:5px;
  align-items:center;
  justify-content:space-between;
}
.footer-bottom a{
  color:rgba(0, 0, 0, 0.40);
}
.footer-bottom a:hover{
  color:rgba(0, 0, 0, 0.70);
}
/*--------------------------------------------------------------
# Inner Content
--------------------------------------------------------------*/
.inner-banner {
  position: relative;
  background:var(--background-black);
}
.inner-banner:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.50);
  width: 100%;
  height: 100%;
}
.inner-banner img {
  width: 100%;
  display: block;
  object-fit:cover;
}
.inner-banner-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.inner-banner .container {
  max-width: 1250px;
  margin: 0 auto;
  width:auto;
  height: 100%;
  padding:0 15px;
}
.inner-banner-main {
  display: flex;
  flex-direction: row;
  height: 100%;
  color: var(--black-color);
  justify-content:center;
  align-items: center;
}
.entry-header h1.entry-title {
  color: var(--white-color);
  font-size: 26px;
  line-height: 100%;
  font-weight: 800;
  text-transform:uppercase;
  margin-bottom: 0;
  letter-spacing:0.50px;
}
.single  .entry-header h1.entry-title,
.archive .entry-header h1.entry-title{
  line-height:1.2;
}
.site-main{
  padding:50px 0;
}
.site-content .entry-content{
  font-size:15px;
  font-weight:400;
  line-height:1.6;
}
/*=========================================== 
   Blog & Single Post
=============================================*/
.blog article.post,
.single article.post,
.archive article.post,
.search article{
  margin-bottom: 30px;
  margin-top: 0px;
  line-height:1.6;
  border-bottom: 2px solid var(--grey-color);
  padding-bottom: 35px;
  position:relative;
}
.blog article.post:before,
.single article.post:before,
.archive article.post:before,
.search article:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background: rgba(255, 255, 255, 0.8);
}
.blog article.post:last-of-type,
.single article.post:last-of-type,
.archive article.post:last-of-type,
article.hentry:last-of-type,
.search article:last-of-type{
  border-bottom: 0px solid #eee;
  margin-bottom:0;
  padding-bottom:0;
}
.blog article.post h2,
.archive article.post h2,
article.hentry h2{
  font-size:20px;
  line-height:1.2;
  text-transform:inherit;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:0.10px;
}
.blog article.post h2 a,
.archive article.post h2 a,
article.hentry h2 a{
  color:var(--blue-color);
}
.blog article.post h2 a:hover,
.archive article.post h2 a:hover,
.blog article.post h2 a:focus,
.archive article.post h2 a:focus, 
.entry-meta a:hover, 
.entry-meta a:focus {
  color:var(--green-color);
}
.entry-summary{
  position:relative;
}
.entry-media{
  margin-bottom:15px;
}
.entry-meta {
  font-size:14px; 
  line-height: 100%;
  margin-bottom: 15px;
}
.entry-meta a {
  color:var(--green-color);
  font-weight:700;
}
.entry-meta a:hover{
  color:var(--blue-color);
}
.entry-meta .post-cat, .entry-meta .post-date{
  font-style: italic;
}
.entry-meta .post-date{
  margin-left: 10px;
}
.entry-meta .post-cat {
  margin-right: 10px;
}
.single article.post h1,
.search .entry-header h1.entry-title,
.error404 .entry-header h1.entry-title,
.single  .entry-header h1.entry-title,
.archive .entry-header h1.entry-title{
  font-size:23px;
  margin-bottom: 0;
  background: transparent;
  max-width: 100%;
  white-space: inherit;
  padding: 0;
  text-align:center;
}
.single .entry-meta {
  font-size:14px;
}
.single .entry-media {
  text-align: center;
  margin-bottom: 20px;
}
a.entry-button {
  padding: 16px 18px;
  display: inline-block;
  line-height: 100%;
  font-size:15.2px;
  border-radius:8px;
  text-transform:uppercase;
  color: var(--white-color);
  font-weight: 700;
  transition: all .5s;
  background: var(--background-green);
  letter-spacing:0.25px;
  margin-top:8px;
}
a.entry-button:hover {
  color:var(--white-color);
  background:var(--background-blue);
}
.single_post_nav a{
  padding: 5px 0;
}
.entry-header,
.post-thumbnail,
.entry-content,
.entry-footer{
  position:relative;
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
#secondary.widget-area{
  margin-top: 50px;
  max-width:310px;
  margin-left:auto;
  margin-right:auto;
}
#secondary.widget-area .search-form span.screen-reader-text,
#secondary.widget-area .search-form .search-submit{
  display:none;
}
#secondary.widget-area .search-form input{
  width: 100%; 
  padding:16px 15px;
  border:0;
  transition: all .9s ease-in-out;
  transition: ease-in-out, width .9s ease-in-out;
}
#secondary.widget-area .search-form input:focus, 
#secondary.widget-area .search-form input:active {
  transition: all .9s ease-in-out!important;
  outline: none!important;
  border:0px solid #004a80!important;
  position: relative!important;
}
#secondary.widget-area .search-form label{
  display:block;
}
#secondary.widget-area .widget{
  margin-bottom:28px;
  border-bottom:0;
  background:var(--background-green);
  padding:35px 25px;
  text-align:center;
  border-radius:15px;
  box-shadow:0 12px 0px #efefef;
}
#secondary.widget-area .wp-block-search .wp-block-search__button{
  display:none;
}
#secondary.widget-area .widget:last-of-type{
  border-bottom:0;
}
#secondary.widget-area .widget h2{
  font-size:22px;
  text-transform:inherit;
  color:var(--white-color);
  margin-bottom: 15px;
  font-weight: 700;
  position:relative;
  padding-bottom:15px;
}
#secondary.widget-area .widget h2:after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  background: var(--background-white);
  width: 16px;
  height: 4px;
  margin-left: -8px;
}
#secondary.widget-area .widget ul{
  margin:0px;
  padding:0;
  list-style: none;
}
#secondary.widget-area .widget ul li a,
#secondary.widget-area .widget a{
  font-size: 15.5px;
  text-transform:inherit;
  color: rgba(255, 255, 255, 0.9);
  line-height:1.4;
  font-weight:400;
}
#secondary.widget-area .widget ul li{
  margin-bottom:12px;
  line-height:100%;
}
#secondary.widget-area .widget ul li:last-of-type{
  margin-bottom:0;
}
#secondary.widget-area .widget ul li a:hover,
#secondary.widget-area .widget a:hover{
  color:var(--white-color);
}
#secondary.widget-area .widget:last-of-type {
  margin-bottom:0;
}
#secondary.widget-area input[type="search"]{
  padding: 15px;
  border: none;
  font-size: 14px;
  min-height: 60px;
}
.single  .page-header h1.page-title,
.archive .entry-header h1.entry-title{
  font-size:28px;
}
.error404 .entry-content .search-form input,
.search-no-results .entry-content .search-form input,
.search .page-content .search-form input{
  width: 100%;
  padding:21px 15px;
  border: 1px solid #ccc;
  transition: all .9s ease-in-out;
  transition: ease-in-out, width .9s ease-in-out;
  background:#eee;
  font-size:16px;
}
.error404 .entry-content .search-form span.screen-reader-text,
.error404 .entry-content .search-form .search-submit,
.search-no-results .entry-content .search-form span.screen-reader-text,
.search-no-results .entry-content .search-form .search-submit,
.search .page-content .search-form .search-submit{
  display: none;
}
.error404 .entry-content .search-form  label,
.search-no-results .entry-content .search-form  label,
.search .page-content .search-form  label{
  display:block;
  max-width: 355px;
}
.content-area.with-sidebar .row{
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.content-area.with-sidebar .row .col-md-8{
  width: 62%;
  padding: 0 15px;
}
.content-area.with-sidebar .row .col-md-4{
  width: 33.3%;
  padding: 0 15px;
}
#secondary.widget-area .widget label.wp-block-search__label{
  display:none;
}
.single .entry-footer{
  display:none;
}
.contact-form-area .contact-form{
  max-width:1020px;
  margin-right:auto;
  margin-left:auto;
}
.single .site-content .entry-title{
  display:none;
}
article.hentry .entry-content  h2{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0;
  color:var(--blue-color);
}
.site-main ul.service-lists {
  -moz-column-count: 1;
  -moz-column-gap: 20px;
  -webkit-column-count: 1;
  -webkit-column-gap: 20px;
  column-count: 3;
  margin:0;
  padding:10px 0 30px;
  list-style:none;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.site-main ul.service-lists li{
  position:relative;
  margin-bottom:5px;
  padding-left:28px;
}
.site-main ul.service-lists li:before{
  content: '';
  position: absolute;
  left: 0;
  top:4px;
  background:url(assets/images/check-mark.svg) left no-repeat;
  width: 18px;
  height: 18px;
  background-size: 20px;
}
.contact-form h3 {
  font-size:25px;
  font-weight:800;
  letter-spacing:0;
  text-transform:inherit;
  color: var(--blue-color);
  margin-bottom:30px;
}
.post-navigation .nav-links a{
  font-weight:700;
  color:var(--blue-color);
}
body.home.logged-in .site-header{
  top:32px;
}
.contact-form-area .map-area iframe{
  margin-top:30px;
  width:100%;
}
h2{
  line-height:1.2;
  margin-bottom:15px;
  font-size:36px;
  font-weight:800;
  color:var(--blue-color);
  letter-spacing:0px;
  text-transform:inherit;
}
h3{
  font-size:26px;
  font-weight:800;
  margin-bottom:15px;
  line-height:100%;
  color:var(--green-color);
  text-transform:inherit;
  letter-spacing: 0.5px;
  line-height:1.2;
}
h4{
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
  color:var(--blue-color);
  line-height:1.2;
}
h5{
  font-size:22px;
  font-weight:700;
  margin-bottom:8px;
  color:var(--black-color);
  line-height:1.2;
}
h6{
  font-size:20px;
  font-weight:600;
  margin-bottom:8px;
  color:var(--blue-color);
  line-height:1.2;
}
.home .site-main{
  padding: 0;
}
.site-main p,
.site-content .entry-content{
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color:rgba(0, 0, 0, 0.90);
}



/*Locations*/
.top-location-area {
  text-align: center;
  margin-bottom:30px;
  padding-bottom:0;
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
.top-location-area .row{
  justify-content:center;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  max-width:1160px;
  margin:0 auto;
}
.top-location-area .location-col {
  background: var(--background-white);
  padding: 10px 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  height: 100%;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 0 var(--blue-color);
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}
.top-location-area .location-col strong {
  font-size: 24px;
  display: block;
  color: var(--darkblue-color);
  letter-spacing:1.5px;
}
.top-location-area .col-md{
  width:auto;
  padding:0;
}
.top-location-area .location-col:before {
  content: "";
  display: inline-block;
  background:url(assets/images/green-phone.svg) center no-repeat;
  color: #fff;
  font-size: 32px;
  width:65px;
  height:65px;
  line-height:65px;
  border-radius: 15px;
  margin-bottom: 10px;
  background-size:26px!important;
  border:2px solid var(--blue-color);
  background-color:transparent;
}
.top-location-area .phone-number:before {
  background:url(assets/images/green-phone.svg) center no-repeat;
}
.top-location-area .contact-location:before {
  background:url(assets/images/green-map-marker.svg) center no-repeat;
}
.top-location-area .email:before {
  background:url(assets/images/green-email-icon.svg) center no-repeat;
  background-size:30px!important;
}
.top-location-area .location-col span{
  font-size: 16.5px;
  letter-spacing:0.50px;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.60);
  line-height: 1.4;
  margin-top: 5px;
}
.top-location-area .row{
  flex-direction:column;
  justify-content:center;
}
.single-location .container .row .col-md-12{
  width:100%;
}
.single-location .site-main{
  padding-bottom:0 !important;
}
.single-location .container .row .col-md-12{
  width:100%;
}
.single-location .site-main .alignfull,
.site-main .helpful-resources-section.alignwide,
.site-main .reviews-section.alignwide,
.site-main .hyper-local-section.alignwide,
.site-main .territories-section.alignwide,
.site-main .location-contact-area.alignwide,
.site-main .contact-form-section.alignwide,
.site-main .how-we-help-section.alignwide{
  margin: 0px calc(50% - 50vw);
  max-width: 99.4vw;
  width: 100vw;
}



.faqs-list .faq-single .faq-question{
  background: transparent;
  padding: 20px 40px 20px 0;
  font-size: 26px;
  font-weight: 600;
  color: var(--black-color);
  border-radius: 0;
  position: relative;
  line-height: 1.2;
  cursor: pointer;
  letter-spacing:0px;
  text-transform: inherit;
  border-bottom:1px solid transparent;
}
.faqs-list .faq-single .faq-content{
  background: transparent;
  padding: 15px 0 30px;
  font-size:20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.70);
  line-height: 1.5;
  position: relative;
  letter-spacing:0.25px;
  margin-top: 0;
  border-radius: 0;
}
.faqs-list .faq-single .faq-content p{
  color: rgba(0, 0, 0, 0.70);
  font-size:20px;
}
.faqs-list .faq-single .faq-content p:last-of-type{
  margin-bottom:0;
}
.faqs-list .faq-single.active .faq-question{
  border-radius:0;
  border-bottom:1px solid #cccccc;
}
.faqs-list .faq-question:after{
  content: '';
  position: absolute;
  right:15px;
  top: 50%;
  background: url(assets/images/blue-down_arrow.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
  margin-top: -14px;
}
.faqs-list .faq-single.active .faq-question:after {
  background: url(assets/images/blue_left_arrow.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
}
.faqs-list .faq-single{
  margin-bottom:15px;
  border-bottom: 1px solid #cccccc;
}
.faqs-list .faq-single:last-of-type{
  margin-bottom:0;
}


.how-help-main.slick-slider .slick-next, 
.how-help-main.slick-slider .slick-prev {
  position: absolute;
  top:40%;
  display: block;
  width:50px;
  height:48px;
  cursor: pointer;
  color: #000;
  border: none;
  outline: 0;
  z-index: 2;
  margin-top:-25px;
  text-indent: -9999px;
}
.how-help-main.slick-slider .slick-prev {
  left:-20px;
  background: url(assets/images/slide-arrow-left.jpg) center  no-repeat;
  background-size:50px;
}
.how-help-main.slick-slider .slick-next {
  right: 0;
  background: url(assets/images/slide-arrow-right.jpg) center  no-repeat;
  background-size:50px;
}
.slick-initialized .slick-slide{
  margin:0 15px 0 0;
}
.slick-initialized .slick-slide:last-of-type{
  margin-right:0;
}
.how-help-main.slick-slider .slick-slide > div{
  display: none;
}
.how-help-main.slick-slider .slick-slide > div:first-child{
  display: block;
}
/*.slick-initialized .slick-slide:nth-child(3),
.slick-initialized .slick-slide:nth-child(6){
  margin-right:0;
}*/
.csc-partners{
  padding:0 !important
}


.two-block .two-block-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.two-block .two-block-wrap.row-reverse .left-image{
  order:1;
}
.two-block .two-block-wrap .left-image img {
  width: auto;
  max-width: 100%;
  /* height: 100%; */
  display: block;
  /* object-fit: cover; */
  border-radius:12px;
  margin: 0 auto;
}
.main-eyebrow {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 10px;
  color: var(--green-color);
}
.inner-subtext{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.60);
}
.inner-button a{
  background: var(--background-green);
  font-size:21px;
  font-weight: 700;
  text-transform: inherit;
  line-height: 100%;
  text-align: center;
  display: inline-block;
  padding:18.5px 28px;
  color: var(--white-color);
  letter-spacing: 1px;
  margin-top: 30px;
  border-radius: 8px;
}
.inner-button a:hover{
  background:var(--background-blue);
}
.territories-section{
  background:var(--background-blue);
  padding:100px 0;
}
.territories-section .main-eyebrow{
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}
.territories-section .main-heading{
  text-align:center;
  color:var(--white-color);
  text-transform:uppercase;
  letter-spacing:0.50px;
}
.territories-section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 35px auto 0;
  padding: 0;
  max-width:1120px;
  gap: 15px;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.territories-section ul li {
  margin: 0 8px 0 0;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
  color:var(--white-color);
}
.territories-section ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background:url(assets/images/checkmark-icon.svg) no-repeat;
  width: 26px;
  height: 26px;
  background-size: 26px;
}
.two-block{
  padding:75px 0;
}
.hyper-local-section{
  background:var(--background-blue)  url(assets/images/hyper-local-bg.jpg) no-repeat;
  background-size:cover;
  padding:85px 0;
}
.hyper-local-section .main-eyebrow{
  color: rgba(255, 255, 255, 0.85);
}
.hyper-local-section .main-heading{
  color: var(--white-color);
  letter-spacing: 0.50px;
  font-style: italic;
  font-size: 56px;
  line-height: 1.1;
}
.hyper-local-section .inner-subtext{
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.90);
}
.hyper-local-section .inner-subtext p{
   color: rgba(255, 255, 255, 0.90);
}
.hyper-local-section .inner-button a{
  background:var(--background-white);
  color:var(--blue-color);
  text-transform:uppercase;
  padding:21px 30px;
}
.hyper-local-section .inner-button a:hover{
  background:var(--background-grey);
}
.location-contact-area{
  padding:85px 0;
  background:#f2f2f2 url(assets/images/location-contact-bg.jpg) center center no-repeat;
  background-size:cover;
}
.location-contact-area .container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:52px;
  align-items:center;
}
.location-map iframe{
  width:100%;
  height:480px;
  display:block;
  border-radius:12px;
}
.location-content .logo img{
  width: auto;
  height:76px;
  display: block;
}
.location-content .loction-phone-btn a{
  background: var(--background-green);
  font-size: 22px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 100%;
  display: inline-block;
  padding: 16px 20px 16px 40px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
}
.location-content .loction-phone-btn a:before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  background: url(assets/images/call-icon.png) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  display: inline-block;
  margin-top: -10px;
}
.location-content .loction-phone-btn a:hover{
  background:var(--background-blue);
}
.location-content .hours{
  font-size:18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.90);
  letter-spacing:0.50px;
}
.location-content .hours strong{
  font-weight:600;
  color:var(--black-color);
  font-size:20px;
  display:block;
  margin-bottom:10px;
}
.location-content{
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
}
.reviews-section{
  background:var(--background-black) url(assets/images/review-bg.jpg) center center no-repeat;
  background-size: cover;
  padding:100px 0;
  position:relative;
}
.reviews-section:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:rgba(0, 0, 0, 0.50);
  width:100%;
  height:100%;
}
.reviews-section .container,
.contact-form-section .container{
  position:relative;
}
.reviews-section .review-title{
  text-transform:uppercase;
  color:var(--white-color);
  text-align:center;
  margin-bottom:30px;
  letter-spacing:1.5px;
}
.testimonial-slider{
  text-align:center;
  max-width:1020px;
  margin:0px auto 0;
  font-size:15px;
  line-height: 1.6;
  color:var(--black-color);
  padding-left:15px;
  padding-right:15px;
}
.reviews-section .review-text{
  font-size:20px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing:0.5px;
  font-style:italic;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}
.reviews-section .main-eyebrow{
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 2px;
}
.testimonial-slider .slick-dots {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
  padding: 0;
  list-style-type: none;
}
.testimonial-slider .slick-dots li {
    margin: 0 4px;
}
.testimonial-slider .slick-dots button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius:50px;
  background-color:rgba(255, 255, 255, 0.50);
  text-indent: -9999px;
  cursor:pointer;
}
.testimonial-slider .slick-dots li.slick-active button {
  background-color:var(--background-white);
}
.testimonial-slider .author-name{
  margin-top:25px;
  font-size:20px;
  font-weight:700;
  color:var(--white-color);
  line-height:100%;
}
.testimonial-slider.slick-slider .slick-slide>div{
  display:none;
}
.testimonial-slider.slick-slider .slick-slide>div:first-of-type{
  display:block;
}
.contact-form-section{
  background:var(--background-white);
  background-size: cover;
  padding:100px 0;
  position:relative;
}
.contact-form-section:before,
.contact-form-section:after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  background:url(assets/images/contact-form-bg.jpg) top center no-repeat;
  background-size:cover;
  width:100%;
  height:50%;
}
.contact-form-section:after{
  background:rgba(255, 255, 255, 0.86);
}
.contact-form .gform_wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--background-white);
  border-radius: 12px;
  padding: 65px 40px 70px;
  position: relative;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  z-index:2;
}
.contact-form .gform_wrapper:after{
  content: '';
  position: absolute;
  bottom: -71px;
  left: 50%;
  background: url(assets/images/logo-icon.png) no-repeat;
  width: 120px;
  height: 120px;
  background-size: 120px;
  margin-left: -60px;
}
.contact-form .gform_wrapper form input[type="text"], 
.contact-form .gform_wrapper form input[type="email"], 
.contact-form .gform_wrapper form input[type="tel"],
.contact-form .gform_wrapper form select, 
.contact-form .gform_wrapper form textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  padding:5px 0;
  font-size:15.5px;
  font-weight: 400;
  color:rgba(0, 0, 0, 0.6);
  width: 100%;
  box-shadow: none;
  border-bottom: 2px solid var(--green-color);
}
.contact-form .gform_wrapper form input[type="text"]:focus, 
.contact-form .gform_wrapper form input[type="email"]:focus, 
.contact-form .gform_wrapper form input[type="tel"]:focus, 
.contact-form .gform_wrapper form  textarea:focus{
  border-bottom: 2px solid var(--green-color);
  box-shadow:none;
  outline:none;
}
.contact-form .gform_wrapper form input[type="submit"] {
  background: var(--background-green) !important;
  color: var(--white-color) !important;
  padding:17.5px 25px !important;
  text-transform: uppercase !important;
  font-size:18.5px !important;
  font-weight: 700 !important;
  border-radius:8px !important;
  border:0;
  letter-spacing: 1.5px !important;
  line-height:100% !important;
  width:auto !important;
  margin:0 auto;
  cursor: pointer !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out !important;
}
.contact-form .gform_wrapper form input[type="submit"]:hover {
  background:var(--background-blue) !important;
}
.contact-form .gform_wrapper.gravity-theme .gfield_label{
  font-weight:500 !important;
  margin-bottom:0 !important;
  color:rgba(0, 0, 0, 0.7);
}
.contact-form .gform_wrapper.gravity-theme .gform-field-label--type-sub{
  color:rgba(0, 0, 0, 0.7);
}
.contact-form .gform_wrapper.gravity-theme .gfield textarea.large {
  height:60px !important;
}
.contact-form .gform_wrapper .gform_heading{
  display:none;
}
.contact-form-section .main-eyebrow{
  text-align:center;
  color:var(--green-color);
}
.contact-form-section .contact-form-heading{
  text-transform:uppercase;
  color:var(--blue-color);
  text-align:center;
  margin-bottom:45px;
}
.dr-social-icons ul{
  list-style:none;
  margin:20px 0 0;
  padding:0;
}
.dr-social-icons ul li{
  padding:0;
  padding-right:5px;
  display:inline-block;
}
.dr-social-icons ul li a{
  width:48px;
  height:48px;
  background:var(--background-blue);
  border-radius:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--white-color);
}
.dr-social-icons ul li a:hover{
  background:var(--background-green);
}
.dr-social-icons ul li a svg{
  width:20px;
  height:20px;
}
.page-id-9 .care-options-section,
.page-id-10 .care-options-section,
.page-id-11 .care-options-section{
  padding: 0 0 30px !important;
}
.page-id-9 .two-block{
  padding-bottom:0 !important;
}
.accordion-block .faq-content ul.wp-block-list{
  padding-left:20px;
}
.page-id-10 .care-text {
  max-width: 1000px;
}
.page .site-main{
  padding-bottom:0 !important;
}
.slick-slide .how-we-box .how-we-content span.number {
  position: absolute;
  left: 20px;
  top: -42px;
  background: var(--background-blue);
  width: 74px;
  height: 74px;
  border-radius: 100%;
  color: var(--white-color);
  font-size: 34px;
  letter-spacing: 0.25px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}
.how-help-main.slick-slider .slick-list{
  display:none;
}
.how-help-main.slick-slider .slick-list:first-of-type{
  display:block;
}

/* pbp plugin styles moved to wp-content/plugins/pbp-locations/assets/properties-map.css */