/*!
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:#435BA0;
  --lightblue-color:#4F6DCD;
  --green-color:#43D5CB;
  --white-color:#FFFFFF;
  --background-black:#000000;
  --background-grey:#eeeeee;
  --background-blue:#435BA0;
  --background-lightblue:#4F6DCD;
  --background-green:#43D5CB;
  --background-white:#FFFFFF;
  --font-family-manrope: "Manrope", sans-serif;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color:var(--green-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(--blue-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: "Manrope", 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: "Manrope", sans-serif;
  margin:0;
  font-weight:400;
}
body {
  font-family: "Manrope", 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:1320px;
  margin-left: auto;
  margin-right: auto; 
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  max-width:1320px;
  width:auto;
  margin:0 auto;
  padding-right:15px;
  padding-left:15px;
}
/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.header-top{
  background:var(--background-blue);
  padding:0;
  position:relative;
}
.header-top .container{
  position:relative;
  max-width:1760px;
}
.header-main .container{
  max-width:1760px;
}
.header-top .container:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:var(--background-white);
  width:6%;
  height:100%;
}
.tophdr-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
  padding:8.5px 0;
}
.contact-info{
  display:flex;
  gap:20px;
  align-items:center;
  margin-left:75px;
  position: relative;
  z-index: 2;
}
.header-main .container{
  display:flex;
  justify-content:space-between;
  gap:15px;
  align-items:center;
  position:relative;
}
.site-logo{
  position:relative;
  margin-top:-55px;
}
.site-logo img{
  width:264px;
  height:112px;
  display:block;
}
.contact-info,
.review-link{
  color: var(--white-color);
  font-size: 14.12px;
  font-weight: 600;
  letter-spacing: 0.50px;
  line-height: 1.2;
}
.contact-info a{
  color:var(--white-color);
  font-weight:600;
}
.contact-info .info{
  position:relative;
  padding-left: 25px;
}
.contact-info .address:before,
.contact-info .phone:before {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  background: url(assets/images/address-icon.svg) no-repeat;
  width: 20px;
  height: 20px;
  background-size: 20px;
  display: inline-block;
}
.contact-info .phone:before{
  background: url(assets/images/call-icon.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  top:-5px;
}
.review-link{
  position:relative;
}
.review-link a{
  color:var(--white-color);
  text-transform:uppercase;
  font-size:15px;
  letter-spacing: 0.50px;
}
.review-link:after{
  content:'';
  position:relative;
  right:0;
  background:url(assets/images/stars-icon.png) no-repeat;
  top:3px;
  width:115px;
  height:19px;
  background-size:115px;
  display:inline-block;
  margin-left:15px;
}
.review-link a:hover,
.contact-info a:hover{
  color:rgba(255, 255, 255, 0.85);
}
.hdr-right{
  display:flex;
  gap:25px;
  align-items:center;
  justify-content:space-between;
}
.hdr-right .social-icons ul{
  margin:0;
}
.hdr-right .social-icons ul li a {
  width:30px;
  height:30px;
  background: var(--background-white);
  color:var(--blue-color);
}
.hdr-right .social-icons ul li a:hover{
  background:var(--background-grey);
}
.hdr-right .social-icons ul li a svg{
  width:16px;
  height:16px;
}
/*--------------------------------------------------------------
# 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 16px;
  position:relative;
}
nav.main-menu ul li:last-of-type{
  padding-right:0;
}
nav.main-menu ul li a {
  display: block;
  padding:37px 2px;
  color:var(--blue-color);
  font-size:17.5px;
  font-weight:700;
  text-decoration: none;
  position:relative;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
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(--lightblue-color);
}
nav.main-menu ul ul {
  background:var(--background-blue);
  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:13px 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-lightblue);
  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-lightblue);
}
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-blue);
}
nav.main-menu ul li.link-review{
  display:none;
}
/*--------------------------------------------------------------
   # 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: 1320px;
  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:852px;
  object-fit:cover;
}
.home-banner-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 0;
  text-align: left;
}
.banner-heading{
  text-transform:uppercase;
  color:var(--white-color);
  font-size:74px;
  font-weight:300;
  line-height:1.1;
  letter-spacing:1.5px;
}
.banner-heading span{
  font-weight:800;
  display:block;
}
.banner-subheading{
  background: rgba(255, 255, 255, 0.70);
  padding: 17px 28px;
  color: var(--blue-color);
  display: inline-block;
  text-transform: inherit;
  font-weight: 800;
  line-height: 1.2;
  font-size: 42.5px;
  margin-top: 25px;
  letter-spacing: 1.5px;
}
.banner-content{
  margin-top:110px;
}
/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.why-impc-wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:45px;
  align-items:center;
}
.why-impc-section{
  padding:125px 0 175px;
}
.why-impc-images{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:24px;
}
.why-impc-images img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}
.impc-img1 img,
.impc-img4 img{
  height:452px;
}
.impc-img2 img,
.impc-img3 img{
  height:275px;
}
.impc-img1,
.impc-img3{
  margin-bottom:24px;
}
.why-impc-heading{
  font-size:70px;
  letter-spacing:1px;
  color:var(--blue-color);
  font-weight:800;
  line-height:1.2;
  text-transform:inherit;
  margin-bottom:12px;
}
.why-impc-subheading{
  font-size:21.5px;
  font-weight:800;
  color:rgba(91, 91, 91, 0.60);
  letter-spacing:0.50px;
  line-height:1.5;
  margin-bottom:45px;
}
.why-impc-text{
  font-size:19px;
  font-weight:400;
  letter-spacing:0.50px;
  color:rgba(78, 78, 78, 0.80);
  line-height:1.6;
}
.why-impc-text ul{
  list-style:none;
  margin:50px 0 0;
  padding:0;
}
.why-impc-text ul li{
  font-size:19px;
  color:#4e4e4e;
  font-weight:600;
  letter-spacing:0.50px;
  margin-bottom:10px;
  line-height:1.4;
  padding-left:30px;
  position:relative;
}
.why-impc-text ul li:before{
  content:'';
  position:absolute;
  left:0;
  top:11px;
  background:#4e4e4e;
  width:5px;
  height:5px;
  border-radius:50%;
}
.services-section{
  padding:138px 0 112px;
  background:var(--background-grey);
  position:relative;
}
.services-section:before{
  content:'';
  position:absolute;
  left:50%;
  top:-70px;
  background:url(assets/images/pharmacy-icon.png) no-repeat;
  width:140px;
  height:140px;
  background-size:140px;
  margin-left:-70px;
}
.services-heading,
.our-providers-heading,
.review-heading{
  font-size:62px;
  font-weight:800;
  color:var(--blue-color);
  text-transform:inherit;
  text-align:center;
  letter-spacing:-2px;
  line-height:1.1;
  margin-bottom:30px;
}
.services-subtext,
.providers-subtext,
.review-subtext{
  font-size:26px;
  font-weight:400;
  letter-spacing:0.50px;
  text-align:center;
  line-height:1.2;
  color:rgba(0, 0, 0, 0.50);
}
.services-wrap{
  display:flex;
  justify-content:center;
  gap:210px 30px;
  flex-wrap:wrap;
  margin-top:185px;
}
.services-wrap .service-box{
  background:var(--background-white);
  box-shadow:5px 0 40px rgba(0, 0, 0, 0.15);
  width:30.7%;
  text-align:center;
  padding-bottom:130px;
  position:relative;
}
.services-wrap .service-box:first-of-type,
.services-wrap .service-box:nth-child(2){
  width:40%;
  margin:0 10px;
}
.service-box .service-icon{
  background:var(--background-green);
  border-radius:50%;
  width:215px;
  height:215px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:-102px auto 0;
}
.service-box .title-service{
  font-size:30px;
  font-weight:800;
  color:var(--black-color);
  line-height:1.1;
  letter-spacing:-1px;
  text-transform:inherit;
  margin-top:50px;
  margin-bottom:30px;
  max-width:80%;
  margin-left:auto;
  margin-right:auto;
}
.services-wrap .service-box:first-of-type .title-service,
.services-wrap .service-box:nth-child(2) .title-service{
  font-size:35px;
}
.service-box .service-text{
  font-size:19px;
  line-height:1.5;
  font-weight:500;
  color:rgba(55, 55, 55, 0.80);
  max-width:85%;
  margin:0 auto;
}
.services-wrap .service-box:first-of-type .service-text,
.services-wrap .service-box:nth-child(2) .service-text{
  font-size:22px;
  max-width: 80%;
}
.service-box .service-learnmore{
  position:absolute;
  bottom:60px;
  width:100%;
  text-align:center;
}
.service-box .service-learnmore a{
  font-size:17.5px;
  font-weight:700;
  color:var(--blue-color);
  line-height:100%;
  margin-top:42px;
  display:inline-block;
  position:relative;
}
.services-wrap .service-box:first-of-type .service-learnmore a,
.services-wrap .service-box:nth-child(2) .service-learnmore a{
  font-size:21.5px;
}
.service-box .service-learnmore a:hover{
  color:var(--green-color);
}
.service-box .service-learnmore a:after {
  content: '';
  position: relative;
  right:-8px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: url(assets/images/blue-arrow-right.svg) center no-repeat;
  background-size: 20px;
  display: inline-block;
}
.cta-banner{
  background:var(--background-green) url(assets/images/cta-banner-bg.jpg) no-repeat;
  background-size:cover;
  padding:100px 0;
  position:relative;
}
.cta-banner:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:url(assets/images/cta-banner-before.png) no-repeat;
  background-size:cover;
  width:100%;
  height:100%;
}
.cta-banner .cta-contant-block{
  position:relative;
}
.cta-heading{
  font-size:60px;
  font-weight:800;
  letter-spacing:-1px;
  color:var(--blue-color);
  text-transform:inherit;
  line-height:1.1;
  margin-bottom:25px;
}
.cta-text{
  font-size:22.5px;
  color:rgba(255, 255, 255, 0.80);
  font-weight:400;
  color:var(--white-color);
  line-height:1.5;
  max-width:835px;
  letter-spacing:0.10px;
}
.cta-button a{
  background: var(--background-white);
  color: var(--blue-color);
  font-size: 20px;
  font-weight: 800;
  display: inline-block;
  padding: 22px 45px;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 35px;
  position: relative;
}
.cta-button a:hover{
  background:var(--background-grey);
}
.cta-button a:after{
  content: '';
  position: relative;
  display: inline-block;
  right: -15px;
  top: 2.1px;
  background: url(assets/images/blue-arrow-right.svg) no-repeat;
  background-size: 25px;
  width: 25px;
  height: 22px;
}
.our-providers-section{
  padding:160px 0;
}
.our-providers-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:130px 145px;
  margin-top:85px;
  max-width:1092px;
  margin-left:auto;
  margin-right:auto;
}
.team-block .team-image{
  width:238px;
  height:238px;
  border-radius:100%;
  position:relative;
  background:var(--background-grey);
}
.team-block .team-image:before{
  content: '';
  position: absolute;
  left:-12px;
  background: linear-gradient(to bottom,  #7be2da 0%,#7be2da 50%,#ffffff 50%,#ffffff 50%,#ffffff 100%); 
  border-radius: 100%;
  width:261px;
  height:261px;
  top: -12px;
  z-index:-1;
  transition: width 2s, height 2s, background-color 2s, transform 2s;
}
.team-block:hover .team-image:before{
  transform: rotate(180deg);
}
.team-block .team-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 100%;
}
.team-block .team-name {
  font-size:25px;
  font-weight:800;
  letter-spacing:-0.50px;
  line-height:1.3;
  color:var(--blue-color);
  text-align:center;
  margin-top:25px;
  margin-bottom:15px;
}
.team-block .team-name a{
  color:var(--blue-color);
}
.team-block .team-name span{
  display:block;
  font-size:18px;
  color:#a7b6e2;
  text-transform:uppercase;
}
.team-block .team-name span a{
  color:#a7b6e2;
}
.team-block .team-position{
  font-size:17.5px;
  color:#9c9c9c;
  font-weight:500;
  text-align:center;
  line-height:1.2;
}
.team-block{
  position:relative;
}
.team-block:after{
  content:'';
  position:absolute;
  left:50%;
  bottom:-60px;
  width:45px;
  height:6px;
  background:url(assets/images/team-block-after.png) no-repeat;
  margin-left:-22.5px;
}
.our-providers-heading{
  font-size:60px;
  margin-bottom: 18px;
}
.providers-subtext, .review-subtext{
  font-size: 21.5px;
}
.team-block:nth-child(4):after,
.team-block:nth-child(5):after,
.team-block:nth-child(6):after{
  display:none;
 }
.review-heading{
  color:var(--lightblue-color);
  font-size:46px;
}
.reviews-section{
  padding-bottom:145px;
}
.review-subtext{
  margin-bottom:35px;
}
/*--------------------------------------------------------------
   # Site Footer
--------------------------------------------------------------*/
.cta-footer{
  background: linear-gradient(to bottom,  #435ba0 0%,#435ba0 56%,#ffffff 56%,#ffffff 56%,#ffffff 100%);
  padding:95px 0 100px;
  text-align:center;
}
.cta-getcare-heading{
  font-size:60px;
  font-weight:800;
  color:var(--white-color);
  letter-spacing:-0.5px;
  text-transform:inherit;
  line-height:1.2;
  margin-bottom:25px;
}
.cta-subtext{
  font-size:21px;
  font-weight:400;
  color:rgba(255, 255, 255, 0.70);
  line-height:1.6;
  max-width:600px;
  margin:0 auto;
}
.cta-contact-block .contact-info{
  display:block;
  margin:0 auto;
}
.cta-footer .cta-contact-block{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap:15px;
  margin-top:65px;
}
.cta-footer .contact-info {
  text-align:center;
}
.cta-footer .contact-info .icon{
  background:var(--background-white) url(assets/images/address-pin.svg) center center no-repeat;
  width:204px;
  height:204px;
  border-radius:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background-size:48px;
  position:relative;
  margin:0 auto 32px;
  box-shadow:0px 5px 10px rgba(0, 0, 0, 0.20);
}
.cta-footer .contact-info .icon:before{
  content:'';
  position:absolute;
  left:50%;
  top:50%;
  border:5px solid #7be2da;
  width:72px;
  height:72px;
  border-radius:100%;
  margin-top:-42px;
  margin-left:-42px;
}
.cta-footer .contact-info.phone .icon{
  background:var(--background-white) url(assets/images/phone-icon.png) center center no-repeat;
}
.cta-footer .contact-info.fax .icon{
  background:var(--background-white) url(assets/images/fax-icon.png) center center no-repeat;
}
.cta-footer .contact-info.email .icon{
  background:var(--background-white) url(assets/images/mail-icon.png) center center no-repeat;
}
.cta-footer .contact-info.billing .icon{
  background:var(--background-white) url(assets/images/billing-icon.png) center center no-repeat;
}
.cta-footer .contact-info span{
  font-size:14.12px;
  font-weight:800;
  letter-spacing:3px;
  color:#7be2da;
  text-transform:uppercase;
  display:block;
  margin-bottom:18px;
}
.cta-footer .contact-info .info{
  font-size:20px;
  font-weight:600;
  color:rgba(123, 123, 123, 0.60);
  line-height:1.3;
  padding-left:0;
}
.cta-footer .contact-info .info a{
  color:rgba(123, 123, 123, 0.60);
}
.cta-footer .contact-info .info a:hover{
  color:#7be2da;
}
.footer-wrap{
  display:flex;
  gap:145px;
  align-items: center;
  justify-content:space-between;
}
.footer-wrap .map-area{
  width:60%;
  border-right:5px solid var(--blue-color);
}
.footer-wrap .footer-widget{
  width:40%;
}
.footer-logo img {
  width: 374px;
  height: 118px;
}
.map-area iframe{
  width:100%;
  height:405px;
  display:block;
  border:none;
}
.social-icons ul{
  list-style:none;
  margin:25px 0 0;
  padding:0;
}
.social-icons ul li{
  padding:0;
  margin-right:4px;
  display:inline-block;
}
.social-icons ul li:last-of-type{
  margin-right:0;
}
.social-icons ul li a{
  width:42px;
  height:42px;
  background:var(--background-blue);
  border-radius:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--white-color);
}
.social-icons ul li a svg{
  width:18px;
  height:18px;
}
.social-icons ul li a:hover{
  background:var(--background-green);
}
.footer-buttons {
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:40px;
}
.footer-buttons a{
  background: var(--background-green);
  color: var(--white-color);
  font-weight: 800;
  letter-spacing: 2px;
  display: inline-block;
  line-height: 100%;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 14.5px;
}
.footer-buttons a:hover,
.footer-buttons a.patient{
  background:var(--background-blue);
}
.footer-buttons a.patient:hover{
  background:var(--background-green);
}
.footer-bottom{
  text-align:center;
  padding:35px 0;
  font-size:14.5px;
  color:rgba(91, 91, 91, 0.80);
  font-weight:500;
  letter-spacing:1px;
}
.footer-bottom .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}
.footer-bottom a{
  color:rgba(91, 91, 91, 0.70);
}
.footer-bottom a:hover{
  color:rgba(91, 91, 91, 0.98);
}
.footer-bottom .copyright a{
	color: var(--blue-color);
	font-weight:600;
}
.floating-buttons{
  position: relative;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-direction: row;
  margin-top:20px;
}
.floating-buttons a{
  background: var(--background-blue);
  font-size: 19px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 15px 15px 70px;
  text-align: left;
  color: var(--white-color);
  min-width:175px;
  position: relative;
}
.floating-buttons a.patient{
  background:var(--background-green);
}
.floating-buttons a.contact{
  background:var(--background-grey);
  color:var(--blue-color);
}
.floating-buttons a:before{
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  background: url(assets/images/payment-icon.png) no-repeat;
  width: 34px;
  height: 34px;
  background-size: 34px;
}
.floating-buttons a.patient:before{
  background:url(assets/images/user-icon.png) no-repeat;
  width:32px;
  height:32px;
  background-size:32px;
}
.floating-buttons a.contact:before{
  background:url(assets/images/icon-call.png) no-repeat;
  width:32px;
  height:32px;
  background-size:32px;
  top:15px;
}
.floating-buttons a:hover{
  opacity:0.90;
}
/*--------------------------------------------------------------
# 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:1.5px;
}
.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:0px;
}
.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(--lightblue-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(--lightblue-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 20px;
  display: inline-block;
  line-height: 100%;
  font-size:16px;
  border-radius:0;
  text-transform:uppercase;
  color: var(--white-color);
  font-weight: 700;
  transition: all .5s;
  background: var(--background-blue);
  letter-spacing:0.25px;
  margin-top:8px;
}
a.entry-button:hover {
  color:var(--white-color);
  background:var(--background-lightblue);
}
.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:30px;
  box-shadow:0 12px 0px var(--lightblue-color);
}
#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;
  background:var(--background-white) url(assets/images/magnifying-glass.svg) 96% no-repeat;
  background-size:20px;
}
.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;
}
.gform_wrapper form.contact-form input[type="text"], 
.gform_wrapper form.contact-form input[type="email"], 
.gform_wrapper form.contact-form input[type="tel"],
.gform_wrapper form.contact-form select, 
.gform_wrapper form.contact-form  textarea {
  background: #FFF;
  border: 1px solid #c3c1c1;
  border-radius: 0;
  padding:16px 15px;
  font-size: 15px;
  font-weight: 400;
  color: var(--black-color);
  width: 100%;
  box-shadow: none;
}
.gform_wrapper form.contact-form input[type="text"]:focus, 
.gform_wrapper form.contact-form input[type="email"]:focus, 
.gform_wrapper form.contact-form input[type="tel"]:focus, 
.gform_wrapper form.contact-form  textarea:focus{
  border:1px solid var(--lightblue-color);
}
.gform_wrapper form.contact-form input[type="submit"] {
  background: var(--background-blue) !important;
  color: var(--white-color) !important;
  padding:16px 25px !important;
  text-transform: uppercase !important;
  font-size:16px !important;
  font-weight: 500 !important;
  border-radius:0 !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;
}
.gform_wrapper form.contact-form  input[type="submit"]:hover {
  background:var(--background-lightblue) !important;
}
.gform_wrapper.gravity-theme .gfield_label{
  font-weight:500 !important;
}
.gform_wrapper.gravity-theme .gfield textarea.large {
    height: 160px !important;
}
.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:0.5px;
  text-transform:uppercase;
}
h3{
  font-size:26px;
  font-weight:800;
  margin-bottom:15px;
  line-height:100%;
  color:var(--green-color);
  text-transform:uppercase;
  letter-spacing: 0.5px;
  line-height:1.2;
}
h4{
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
  color:var(--lightblue-color);
  line-height:1.2;
}
h5{
  font-size:22px;
  font-weight:600;
  margin-bottom:8px;
  color:var(--black-color);
  line-height:1.2;
}
h6{
  font-size:20px;
  font-weight:400;
  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: 400;
  letter-spacing: 0.10px;
  color: rgba(0, 0, 0, 0.75);
}
.faqs-container .faq-single .faq-question{
  background: transparent;
  padding:15px 40px 20px 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-color);
  border-radius: 0;
  position: relative;
  line-height: 1.2;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: inherit;
  border-bottom:1px solid transparent;
}
.faqs-container .faq-single .faq-content{
  background: transparent;
  padding: 15px 0 30px;
  font-size: 16.5px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  position: relative;
  margin-top: 0;
  border-radius: 0;
}
.faqs-container .faq-single .faq-content p{
  color:rgba(0, 0, 0, 0.75);
}
.faqs-container .faq-single.active .faq-question{
  border-radius:0;
  border-bottom:1px solid rgba(67, 213, 203, 0.60);
}
.faqs-container .faq-question:after{
  content: '';
  position: absolute;
  right:15px;
  top: 50%;
  background: url(assets/images/down_arrow_white.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
  margin-top: -14px;
}
.faqs-container .faq-single.active .faq-question:after {
  background: url(assets/images/white_left_arrow.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
}
.faqs-container .faq-question:after{
  background: url(assets/images/down_arrow_black.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
}
.faqs-container .faq-single.active .faq-question:after{
  background: url(assets/images/black_left_arrow.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
}
.faqs-container .faq-single{
  margin-bottom:15px;
  border-bottom:1px solid rgba(67, 213, 203, 0.60);
}
.faqs-container .faq-single:last-of-type{
  margin-bottom:0;
}
.site-main .wp-block-media-text,
.site-main .wp-block-columns{
  max-width: 1350px;
}
.site-main .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{
  padding-left:0;
}
.site-main .gb-block-profile{
  width:auto;
}