/*!
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-poppins: "Poppins", 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: "Poppins", 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: "Poppins", sans-serif;
  margin:0;
  font-weight:400;
}
body {
  font-family: "Poppins", 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
--------------------------------------------------------------*/
.tp-header{
  text-align: center;
  font-size: 14px;
  margin: 15px 0;
  letter-spacing: .5px;
  color:rgba(0, 0, 0, 0.50)
}
.tp-header a{color:rgba(0, 0, 0, 0.50);margin:0 10px;}
.tp-header a:hover{color:var(--green-color);}
.mn-header .mn-header-wrap{display:flex;justify-content: space-between;align-items: center;
  box-shadow: 3px 0 20px rgba(0, 0, 0, 0.2);
  max-width: 1340px;
  border-radius: 50px;
  padding: 20px 30px;
}
.tp-btn a{
  background:var(--background-green);
  color: #fff;
  font-weight: bold;
  font-size:20px;
  padding: 15px 30px;
  border-radius: 30px;
  letter-spacing: 2px;
  position:relative;
}
.tp-btn a:before{
  content: '';
  position: relative;
  top: 4px;
  left: 0;
  display: inline-block;
  background: url(assets/images/phone-icon.webp) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  margin-right: 8px;
}
.tp-btn a:hover{
  background:var(--background-blue);
}
.site-logo img{
  max-height: 40px;
  width: auto;
  padding-top: 10px;
  display:block;
}
.tp-btn.phone{
  display: none;
  margin-top: 15px;
}
.tp-btn.phone a{
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 15px 0;
  font-size:18px;
}
.tp-btn.phone a:before{
  top: 4px;
  width: 18px;
  height: 18px;
  background-size: 18px;
}
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
nav.main-menu{
  text-align:center;
}
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 14px;
  position:relative;
}
nav.main-menu ul li:last-of-type{
  padding-right:0;
}
nav.main-menu ul li a {
  display: block;
  color:var(--black-color);
  font-size:16px;
  text-transform:uppercase;
  position:relative;
  letter-spacing:0.5px;
  font-weight:600; 
  padding:10px 0;
}
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:14px;
  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;
  border-radius:40px;
  overflow: hidden;
  margin-top:40px;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.50);
}
.home-banner:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.50);
  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:825px;
  object-fit:cover;
}
.home-banner-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content:flex-end;
  padding: 0;
}
.banner-content{
  padding:0 60px 85px;
  color:#fff;
  font-size: 20px;
  font-weight:300;
}
.banner-heading{
  text-transform:uppercase;
  color:var(--white-color);
  font-size:70px;
  font-weight:800;
  line-height:1;
  letter-spacing:0;
  position:relative;
  margin-bottom:20px;
}
.banner-subheading{
  color: var(--green-color);
  display: inline-block;
  text-transform: uppercase;
  line-height:100%;
  margin-bottom: 15px;
  font-size:18px;
  font-weight:600;
  letter-spacing:4px;
}
.banner-subtext{
  font-size:20px;
  font-weight:400;
  line-height:1.6;
  letter-spacing:0.25px;
  color:rgba(255, 255, 255, 0.80);
  max-width:750px;
}
.banner-button a{
  background:var(--background-green);
  font-size:18px;
  font-weight:600;
  text-transform:uppercase;
  line-height:100%;
  text-align:center;
  display:inline-block;
  padding:24px 40px;
  color:var(--white-color);
  letter-spacing:1px;
  margin-top:25px;
  border-radius:50px;
}
.banner-button a:hover{
  background:var(--background-white);
  color:var(--green-color);
}
.banner-button a{
  font-size: 18px;
  min-width: 172px;
  font-weight: 500;
}
/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.map-section {
  padding: 135px 0;
  background: var(--background-white);
}
.map-section{
  padding-bottom:0 !important;
}
.map-content-area .eyebrow-heading,
.map-content-area .blue-heading{
  text-align:center;
}
.map-content-area .main-subtext{
  font-size: 20px;
  color: rgba(0, 0, 0, 0.50);
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  max-width:802px;
  margin:0 auto 70px;
}
.trusted-about-section{
  padding:0 0 110px;
}
.trusted-about-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:45px;
}
.about-left{
  width:45%;
}
.about-right{
  width:55%;
}
.about-right .main-subtext h3{
  color:#4a4a4a;
  letter-spacing:0.25px;
  font-weight:700;
  line-height:1;
  font-size:22px;
  margin-bottom:4px;
  margin-top:28px;
  text-transform:inherit;
}
.about-right .main-subtext p{
  color: rgba(0, 0, 0, 0.70);
  margin-bottom:0;
}
.about-topwrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:25px;
}
.blue-box{
  background: var(--background-blue);
  border-radius: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.blue-box .support-text{
  font-size:22px;
  color:var(--white-color);
  font-weight:600;
  line-height:1.4;
  margin-left:22px;
  margin-right:22px;
  margin-bottom:40px;
  position:relative;
  letter-spacing:0.25px;
}
.blue-box .support-text:before{
  content:'';
  position:absolute;
  left:0;
  top:-15px;
  background:#98bbd1;
  width:88px;
  height:2px;
}
.about-img img,
.about-image img{
  width:100%;
  height:288px;
  display:block;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0, 0, 0, 0.30);
}
.about-image img{
  height:340px;
}
.about-image{
  margin-top:25px;
}
.eyebrow-heading{
  font-size:18px;
  color:var(--green-color);
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:600;
  text-align:left;
  margin-bottom:10px;
}
.blue-heading{
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
  text-align: left;
  text-transform: inherit;
  color: var(--blue-color);
  margin-bottom:25px;
}
.main-subtext{
  font-size:18px;
  color:rgba(0, 0, 0, 0.80);
  line-height:1.6;
  font-weight:400;
  text-align:left;
  letter-spacing:0.25px;
}
.main-button a{
  background: var(--background-green);
  font-size: 18px;
  font-weight: 700;
  letter-spacing:2px;
  text-transform: uppercase;
  line-height: 100%;
  display: inline-block;
  padding: 20px 38px;
  text-align: center;
  border-radius: 50px;
  color: var(--white-color);
  margin-top: 35px;
}
.main-button a:hover{
  background:var(--background-blue);
}
.faq-accordion-section{
  background:#f5f5f5 url(assets/images/faq-accordion-bg.jpg) top center no-repeat;
  background-size:100%;
  padding:110px 0;
  position:relative;
}
.page-id-13 .faq-accordion-section{
  background:#f5f5f5 url(assets/images/about-faq-bg.jpg) top center no-repeat;
  background-size:100%;
  position:relative;
}
.home-site-content .alignfull,
.site-main .alignfull{
  margin: 0px calc(50% - 50vw);
  max-width:99.48vw;
  width: 100vw;
}
.faq-accordion-section .container{
  position:relative;
  padding-left: 25px;
  padding-right: 25px;
}
.faq-accordion-section .blue-heading{
  max-width: 730px;
  margin-bottom:35px;
}
/*Faq Css*/
.faqs-container {
  max-width:802px;
}
.faqs-container .faqs-list .faq-single {
  margin-bottom:20px;
  box-shadow:5px 0 35px rgba(0, 0, 0, 0.15);
  background: var(--background-white);
  border-radius:12px;
  overflow:hidden;
}
.faqs-container .faqs-list .faq-single .faq-question {
  background: var(--background-white);
  padding:27px 32px 27px 30px;
  font-size: 22px;
  font-weight: 700;
  color:#4a4a4a;
  letter-spacing:0px;
  border-radius: 0;
  position: relative;
  line-height: 1.2;
  cursor: pointer;
}
.faqs-container .faqs-list .faq-single.active .faq-question{
  color:var(--blue-color);
}
.faq-answer {
  display: none;
}
.faqs-container .faqs-list .faq-single .faq-answer {
  font-size:17px;
  padding: 0 32px 35px 30px;
  font-weight: 400;
  color: rgba(74, 74, 74, 0.80);
  line-height: 1.55;
  position: relative;
  margin-top: 0;
  border-radius:0;
}
.faqs-container .faqs-list .faq-single .faq-answer p:last-of-type{
  margin-bottom:0;
}
.faqs-container .faqs-list .faq-question:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  background: url(assets/images/plus-icon.webp) no-repeat;
  width: 21px;
  height: 21px;
  background-size: 21px;
  margin-top: -11px;
}
.faqs-container .faqs-list .faq-single.active .faq-question:after {
  background: url(assets/images/minus-icon.webp) no-repeat;
  width: 21px;
  height: 21px;
  background-size: 21px;
}
.faq-accordion-section .main-button a{
  margin-top:45px;
}
.care-confident-section{
  padding:130px 0;
}
.care-confident-section .eyebrow-heading,
.care-confident-section .blue-heading{
  text-align:center;
}
.care-confident-section .main-subtext{
  text-align:center;
  max-width:800px;
  margin:0 auto;
}
.care-confident-wrap{
  display:flex;
  justify-content:space-between;
  gap:15px;
  margin-top:70px;
}
.care-confident-image{
  width:64%;
}
.care-confident-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0, 0, 0, 0.30);
}
.care-confident-boxes{
  width:36%;
}
.care-green-box{
  background:var(--background-green);
  border-radius:20px;
  padding:75px 30px;
}
.care-blue-box{
  background:var(--background-blue);
  border-radius:20px;
  padding:95px 30px 0;
  margin-top:15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.care-green-box ul{
  margin:0;
  padding:0;
  list-style:none;
}
.care-green-box ul li{
  font-size:20px;
  font-weight:400;
  line-height:1.5;
  margin-bottom:8px;
  color:var(--white-color);
  letter-spacing:0.25px;
  padding-left: 28px;
  position:relative;
}
.care-green-box ul li:before{
  content:'';
  position:absolute;
  left:0;
  top:6px;
  background:url(assets/images/white-check-mark.svg) no-repeat;
  width:18px;
  height:18px;
  background-size:18px;
}
.care-blue-box .care-peace-text{
  font-size: 26px;
  color: var(--white-color);
  font-weight: 700;
  line-height: 1.4;
  margin-left: 10px;
  margin-right: 22px;
  margin-bottom: 40px;
  position: relative;
}
.care-blue-box .care-peace-text:before{
  content:'';
  position:absolute;
  left:0;
  top:-15px;
  background:#98bbd1;
  width:88px;
  height:2px;
}
.franchise-investment-section{
  background:#f9f9f9 url(assets/images/franchise-investment-bg.jpg) no-repeat;
  background-size:cover;
  padding:120px 0;
  position:relative;
}
.franchise-investment-section:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:rgba(239, 239, 239, 0.20);
  width:100%;
  height:100%;
}
.franchise-investment-section .container{
  position:relative;
}
.franchise-investment-section .eyebrow-heading{
  text-align:center;
}
.franchise-investment-section .blue-heading{
  color:var(--blue-color);
  text-align:center;
  max-width:1000px;
  margin:0 auto 22px;
}
.franchise-investment-section .main-subtext{
  font-size:20px;
  color:rgba(0, 0, 0, 0.80);
  max-width:780px;
  margin:0 auto;
  text-align:center;
}
.franchise-investment-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
  margin-top:85px;
}
.franchise-box {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.franchise-box:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.60);
  width: 100%;
  height: 100%;
}
.franchise-box .franchise-image img {
  width: 100%;
  height: 465px;
  object-fit: cover;
  display: block;
}
.franchise-box .overlay {
  position: absolute;
  left: 0;
  bottom:55px;
  width:100%;
  height: auto;
  text-align: center;
}
.franchise-box .overlay .overlay-text{
  font-size: 27px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white-color);
  line-height: 1.2;
  letter-spacing: 1.5px;
  padding: 0 25px;
  text-align:center;
}
.franchise-investment-section .main-button{
  text-align:center;
  margin-top:30px;
}
.franchise-investment-section .main-button a{
  font-size:20px;
}
.process-section{
  padding:0 0 120px;
}
.process-section .main-button a{
  font-size:20px;
  padding: 24px 40px;
}
.process-item{
  display:grid;
  grid-template-columns:75px 335px 1fr 80px;
  gap:40px;
  align-items:center;
  padding:48px 0;
  border-bottom:1px solid #dcdcdc;
}
.process-item:first-of-type{
  border-top:1.5px solid var(--green-color);
}
.process-item:last-child{
  border-bottom:1px solid #dcdcdc;
}
.process-number{
  font-size:58px;
  font-weight:700;
  color:#d4d4d4;
}
.process-title{
  font-size:28px;
  font-weight:700;
  color:#2b6ea5;
}
.process-description{
  font-size:18px;
  line-height:1.8;
  color:#555;
}
.process-link a.arrow{
  width:56px;
  height:56px;
  border:2px solid #cfcfcf;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  color:#111;
  transition:.3s;
  background:url(assets/images/arrow-right.svg) center center no-repeat;
  background-size:25px;
}
.process-link a.arrow:hover{
  border:2px solid var(--blue-color);
  transform:translateX(5px);
}
.process-section .main-button{
  text-align:center;
  margin-top:30px;
}
.care-cta-banner{
  background:var(--background-blue);
  position:relative;
  padding:0 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.30);
  border-radius:40px;
  overflow:hidden;
  z-index:2;
  top:120px;
  display:none;
}
.home .care-cta-banner{
  display:block;
}
.care-cta-banner:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.60);
  z-index:2;
}
.care-cta-content {
  position: absolute;
  z-index:3;
  top:0;
  left: 0;
  height: 100%;
  width: 100%;
}
.care-cta-image img {
  width: 100%;
  display:block;
  height:824px;
  object-fit:cover;
}
.care-cta-main {
  display: flex;
  flex-direction:column;
  height: 100%;
  justify-content:flex-end;
  padding:0;
  text-align:left;
}
.carecta-content{
  padding:0 0 100px 80px;
}
.care-cta-content .eyebrow-heading{
  color:var(--white-color);
  font-size:20px;
  letter-spacing:4px;
}
.care-cta-content .blue-heading{
  font-size:70px;
  color:var(--white-color);
  text-transform:uppercase;
  letter-spacing:4px;
  margin-bottom:20px;
}
.care-cta-content .main-subtext{
  color:rgba(255, 255, 255, 0.92);
  font-size:20px;
  font-weight:500;
  letter-spacing:0.50px;
  max-width:700px;
}
.care-cta-buttons{
  display:flex;
  justify-content:flex-start;
  gap:8px;
  align-items:center;
  margin-top:40px;
}
.care-cta-buttons a{
  background:var(--background-green);
  font-size:18px;
  text-transform: uppercase;
  color: var(--white-color);
  font-weight: 600;
  padding: 23px 32px;
  display: inline-block;
  line-height: 100%;
  letter-spacing: 1px;
  border-radius: 50px;
}
.care-cta-buttons a:hover,
.care-cta-buttons a:last-of-type{
  color:var(--green-color);
  background:var(--background-white);
}
.care-cta-buttons a:last-of-type:hover{
  background:var(--background-green);
  color:var(--white-color);
}
.review-section{
  background:#00306e url(assets/images/review-bg.jpg) no-repeat;
  background-size:cover;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.50);
  padding:152px 15px;
  border-radius:40px;
  margin-bottom:120px;
}
.review-main,
.review-wrap{
  display:flex;
  justify-content:space-between;
  gap:55px;
  max-width:1230px;
  margin:0 auto;
}
.review-heading{
  font-size:60px;
  font-weight:700;
  line-height:1.25;
  text-transform:inherit;
  color:var(--white-color);
  margin-bottom:0;
  width:38%;
}
.review-heading span{
  color:var(--green-color);
}
.review-content{
  width:62%;
}
.review-content .review-text{
  font-size:21px;
  font-weight:500;
  color:var(--white-color);
  line-height:1.7;
}
.review-content .author-name{
  margin-top:35px;
  font-size:28px;
  font-weight:700;
  color:var(--white-color);
  line-height:1.7;
  position:relative;
  padding-left:35px;
}
.review-content .author-name:before{
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  background: var(--background-green);
  width: 3px;
  height: 55px;
}
.review-content .author-name span{
  font-size:16px;
  font-weight:600;
  color:rgba(255, 255, 255, 0.50);
  display:block;
}
.review-section .testimonial-slider.slick-slider{
  display:none;
}
.review-section .testimonial-slider.slick-slider:first-of-type{
  display:block;
}
.review-section .testimonial-slider.slick-slider .slick-dots{
  display: none !important;
  justify-content: center;
  margin:50px 0 0;
  padding: 0;
  list-style-type: none;
}
.review-section .testimonial-slider.slick-slider .slick-dots{
  display:flex !important;
}
.review-section .testimonial-slider.slick-slider .slick-dots li {
  margin: 0 4px;
  width:auto;
  height:auto;
}
.review-section .testimonial-slider.slick-slider .slick-dots button {
  display: block;
  width:12px;
  height:12px;
  padding: 0;
  border: none;
  border-radius:100%;
  background-color:#efefef;
  text-indent: -9999px;
  cursor: pointer;
}
.review-section .testimonial-slider.slick-slider .slick-dots li.slick-active button {
  background-color:var(--background-green);
}
.slick-slider .slick-slide{
  display: none;
}
.slick-slider .slick-slide:first-child{
  display: block;
}
/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.footer-main{
  background: var(--background-green);
  padding:130px 0 70px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  position: relative;
  width: 100%;
  margin-top: -45px;
}
.home .footer-main{
  padding:240px 0 70px;
}
.footer-logo a{
  background: var(--background-white);
  padding: 30px 80px;
  display: inline-block;
  border-radius: 50px;
  box-shadow: 3px 0px 20px rgba(0, 0, 0, 0.20);
}
.footer-logo img{
  width:300px;
  height:44px;
  display:block;
}
.footer-links ul{
  display:flex;
  justify-content:center;
  margin:35px 0;
  padding:0;
  list-style:none;
}
.footer-links ul li{
  padding:0 15px;
}
.footer-links ul li a{
  color:var(--white-color);
  font-size:16px;
  font-weight:500;
  line-height:100%;
  letter-spacing:1.5px;
  border-bottom:2px solid transparent;
}
.footer-links ul li a:hover{
  color:var(--grey-color);
  border-bottom:2px solid var(--grey-color);
}
.footer-main .phone-no a{
  background: var(--background-white);
  color:var(--green-color);
  font-weight: bold;
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 30px;
  letter-spacing: 2px;
  margin-top:5px;
  display:inline-block;
  position:relative;
}
.footer-main .phone-no a:before{
  content: '';
  position: relative;
  top: 4px;
  left: 0;
  display: inline-block;
  background: url(assets/images/green-phone-icon.webp) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  margin-right: 8px;
}
.footer-main .phone-no a:hover{
  background:var(--background-grey);
}
.footer-bottom{
  padding:35px 0;
  font-size:12px;
  text-transform:uppercase;
  color:rgba(0, 0, 0, 0.70);
  font-weight:500;
  letter-spacing:1px;
  line-height:1.3;
  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.80);
}
.copyright{
  padding-left:60px;
}
.created-by{
  padding-right:60px;
}
/*--------------------------------------------------------------
# Inner Content
--------------------------------------------------------------*/
.inner-banner {
  position: relative;
  background:var(--background-black);
  border-radius: 40px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.50);
}
.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: 1400px;
  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:flex-start;
  align-items:flex-end;
}
.entry-header h1.entry-title {
  color: var(--white-color);
  font-size: 26px;
  line-height: 100%;
  font-weight: 800;
  text-transform:uppercase;
  margin-bottom:65px;
  letter-spacing:0;
  margin-left:60px;
}
.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:700;
  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;
  background: transparent;
  max-width: 100%;
  white-space: inherit;
  padding: 0;
}
.single .entry-meta {
  font-size:14px;
}
.single .entry-media {
  text-align: center;
  margin-bottom: 20px;
}
a.entry-button {
  padding: 16px 24px;
  display: inline-block;
  line-height: 100%;
  font-size: 15.2px;
  border-radius: 50px;
  text-transform: uppercase;
  color: var(--white-color);
  font-weight: 700;
  transition: all .5s;
  background: var(--background-green);
  letter-spacing: 1px;
  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-blue);
  padding:35px 25px;
  text-align:center;
  border-radius:50px;
  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: 15px;
  text-transform:inherit;
  color: rgba(255, 255, 255, 0.9);
  line-height:1.5;
  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,
.site-content .entry-content ul li{
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color:rgba(0, 0, 0, 0.80);
}
.two-block .two-block-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
  margin-bottom:15px;
}
.two-block .two-block-wrap.row-reverse .left-image{
  order: 1;
}
.two-block .left-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.30);
}
.territories-section {
  background:#efefef url(assets/images/territories-bg.jpg) no-repeat;
  background-size: cover;
  padding:85px 0;
  color:var(--white-color);
  text-align: center;
  position: relative;
}
.territories-section:before {
  content: " ";
  background: rgba(49, 118, 165, 0.60);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.territories-section .container{
  position:relative;
}
.territories-section .eyebrow-heading,
.territories-section .blue-heading{
  text-align:center;
  color:var(--white-color);
}
.territories-section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding:20px 0 0;
  max-width: 860px;
  gap: 15px;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.territories-section ul li {
  margin: 0 8px 0 0;
  font-size:18px;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
}
.territories-section ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background:url(assets/images/checkmark-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: 24px;
}
.contact-form-block{
  background:var(--background-white);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.30);
}
.contact-info-block{
  background:var(--background-green);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.30);
}
.contact-info-block .contact-info-main {
  padding:50px 40px;
}
.contact-info-block .logo{
  text-align:center;
}
.contact-info-block .logo a{
  background: var(--background-white);
  padding: 16px 40px;
  display: inline-block;
  border-radius: 50px;
  box-shadow: 3px 0px 20px rgba(0, 0, 0, 0.20);
}
.contact-info-block .logo img{
  width:300px;
  height:44px;
  display:block;
  margin:0 auto;
}
.contact-info-block .info{
  border-bottom:1px solid #efefef;
  padding-bottom:30px;
  margin-bottom:30px;
  color:var(--white-color);
  font-size:16px;
  font-weight:400;
  line-height:100%;
}
.contact-info-block .info .email a,
.contact-info-block .info .phone a{
  color:var(--white-color);
  font-size:20px;
  line-height:100%;
  font-weight:600;
}
.contact-info-block .info .phone a{
  font-size:18px;
  font-weight:500;
  margin-top:20px;
  display:inline-block;
}
.contact-info-text{
  font-size: 17px;
  color: var(--white-color);
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0;
  margin-top: 30px;
}
.contact-info-block .info span{
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.follow-us{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:15px;
}
.follow-us .follow-text{
  font-size: 17px;
  color: var(--white-color);
  line-height: 1.6;
  font-weight: 400;
}
.follow-us .social-icons ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}
.follow-us .social-icons ul li{
  padding:0;
}
.follow-us .social-icons ul li a{
  border: 1px solid rgba(255, 255, 255, 0.80);
  color: var(--white-color);
  width: 36px;
  height: 36px;
  display: flex;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
}
.follow-us .social-icons ul li a:hover{
  border: 1px solid var(--white-color);
}
.follow-us .social-icons ul li svg{
  width:16px;
  height:16px;
}
.contact-form-block .gform_wrapper{
  padding:50px 40px;
}
.contact-form-block .gform_wrapper form.contact-form input[type="text"], 
.contact-form-block .gform_wrapper form.contact-form input[type="email"], 
.contact-form-block .gform_wrapper form.contact-form input[type="tel"],
.contact-form-block .gform_wrapper form.contact-form select, 
.contact-form-block .gform_wrapper form.contact-form  textarea {
  background-color:#fff;
  border: 1px solid #c3c1c1;
  border-radius: 0;
  padding:20px 15px;
  font-size: 15px;
  font-weight: 400;
  color: var(--black-color);
  width: 100%;
  box-shadow: none;
}
.contact-form-block .gform_wrapper form.contact-form select{
  padding: 0px 15px;
  min-height: 45px;
  display: grid;
  align-items:center;
}
.contact-form-block .gform_wrapper form.contact-form input[type="text"]:focus, 
.contact-form-block .gform_wrapper form.contact-form input[type="email"]:focus, 
.contact-form-block .gform_wrapper form.contact-form input[type="tel"]:focus, 
.contact-form-block .gform_wrapper form.contact-form  textarea:focus{
  border: 1px solid var(--blue-color);
  box-shadow: none !important;
  outline: none;
}
.contact-form-block .gform_wrapper form.contact-form input[type="submit"] {
  background: var(--background-green) !important;
  color: var(--white-color) !important;
  padding:16px 32px !important;
  text-transform: uppercase !important;
  font-size:16px !important;
  font-weight: 600 !important;
  border-radius:50px !important;
  border:0;
  letter-spacing: 1px !important;
  line-height:100% !important;
  width:auto !important;
  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-block .gform_wrapper form.contact-form  input[type="submit"]:hover {
  background:var(--background-blue) !important;
}
.gform_wrapper.gravity-theme .gfield_label{
  font-weight:400 !important;
}
.contact-form-block .gform_wrapper .gfield textarea.large {
  height:120px !important;
  min-block-size: inherit !important;
}
.contact-form-block .gform_wrapper .gform_fields{
  gap:16px;
}
.contact-form-block .gform_wrapper .gform_required_legend{
  display:none;
}

.contacts-area{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom:50px;
}
.contact-form-block{
  width: 55%;
}
.contact-info-block{
  width:45%;
}
.faq-accordion-section.white{
  background:var(--background-white);
  padding:75px 0;
}
.faq-accordion-section.white .faq-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
  padding-top:30px;
}
.faq-accordion-section.white .faq-wrap.row-reverse .faq-image{
  order: 1;
}
.faq-accordion-section.white .faq-image img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.30);
}
.faq-accordion-section.white .blue-heading {
  max-width: inherit;
  margin-bottom:40px;
}
.faq-accordion-section.white .main-button{
  text-align:center;
}
.care-map-area{
  padding: 0 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.30);
  border-radius: 40px;
  overflow: hidden;
  z-index: 2;
  margin-top: 0 !important;
  position:relative;
}
.page .care-map-area{
  display:block;
}
.home .care-map-area{
  display:none;
}
.care-map-area iframe{
  width: 100%;
  display: block;
  height:610px;
  object-fit: cover;
}
.about-image.mobile{
  display:none;
}
.gform_wrapper form button[type="submit"]{
  background: var(--background-blue) !important;
  color: var(--white-color) !important;
  padding:16px 32px !important;
  text-transform: uppercase !important;
  font-size:16px !important;
  font-weight: 600 !important;
  border-radius:50px !important;
  border:0;
  letter-spacing: 1px !important;
  line-height:100% !important;
  width:100% !important;
  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;
}
.gform_wrapper form button[type="submit"]:hover{
  background:var(--background-green) !important;
}
.no-space .faq-accordion-section{
  padding:0;
}
.csc-cta .home-banner .banner-subtext{
  max-width: 100%;
}
.page-id-576 .review-section,
.page-id-484 .review-section,
.page-id-561 .review-section,
.page-id-541 .review-section,
.page-id-588 .review-section,
.page-id-602 .review-section,
.page-id-612 .review-section,
.page-id-638 .review-section,
.page-id-621 .review-section{
  margin-bottom:50px;
}
.tp-header{
  display:none;
}
.site-header{
  margin-top:15px;
}
.home .tp-header,
.page-id-13 .tp-header{
  display:inherit;
}
#rmp_menu_trigger-322{
  top: 35px !important;
}
.home #rmp_menu_trigger-322,
.page-id-13 #rmp_menu_trigger-322{
  top:72px !important;
}
.contact-info-btn {
  text-align:center;
}
.contact-info-btn a{
  background: var(--background-white);
  font-size:18.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 100%;
  display: inline-block;
  padding:16px 35px;
  text-align: center;
  border-radius: 50px;
  color: var(--blue-color);
  margin-top: 40px;
  border:2px solid transparent;
  box-shadow: 3px 0px 20px rgba(0, 0, 0, 0.20);
}
.contact-info-btn a:hover{
  background:transparent;
  border:2px solid var(--white-color);
  color:var(--white-color);
}

@media (max-width: 479px) {
  #rmp_menu_trigger-322{
    top: 30px !important;
  }
  .home #rmp_menu_trigger-322,
  .page-id-13 #rmp_menu_trigger-322{
    top:65px !important;
  }
}