/*!
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
*/

.wp-video[style] {
    width: 100% !important;
}

/*--------------------------------------------------------------
# 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:#eae7e7;
  --red-color:#c30717;
  --lightred-color:#c8102e;
  --white-color:#FFFFFF;
  --background-black:#000000;
  --background-grey:#eae7e7;
  --background-red:#c30717;
  --background-lightred:#c8102e;
  --background-white:#FFFFFF;
  --font-family-outfit: "Outfit", sans-serif;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color:var(--red-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(--black-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: 1250px;
  margin-left: auto;
  margin-right: auto; 
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  max-width:1250px;
  width:auto;
  margin:0 auto;
  padding-right:15px;
  padding-left:15px;
}
/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.header-main .header-wrap{
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:30px;
}
.header-main{
  padding:8px 0;
}
.site-logo{
  position:relative;
  left:0;
  bottom:0;
  width:auto;
  height:auto;
  z-index:2;
}
.site-logo img{
  width:auto;
  height:auto;
  display:block;
}
.header-contact-info {
  column-gap: 75px;
  display: flex;
  margin-top:30px;
}
.header-contact-info .phone,
.header-contact-info .address, 
.header-contact-info .hours {
  font-weight:500;
  font-size:16px;
  color: var(--black-color);
  line-height: 1.2;
  letter-spacing: .3px;
  position: relative;
  padding-left:35px;
}
.header-contact-info div span{
  display:block;
  color:var(--red-color);
  letter-spacing:0.5px;
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:2px;
}
.header-contact-info .phone a{
  color: var(--black-color);
}
.header-contact-info .phone a:hover{
  color: var(--red-color);
}
.header-contact-info .phone:before, 
.header-contact-info .address:before, 
.header-contact-info .hours:before {
  content: '';
  position: absolute;
  left: 0;
  top:20px;
  background: url(assets/images/phone-icon.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
}
.header-contact-info .address:before{
  background: url(assets/images/location-icon.svg) no-repeat;
  width:33px;
  height:33px;
  background-size:33px;
}
.header-contact-info .hours:before{
  background: url(assets/images/clock-hour-icon.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
}
.header-contact-info .address{
  max-width:242px;
}
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
.navigation-area{
  background:var(--background-red);
}
nav.main-menu{
  /*  display:none;*/
  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 24px;
  position:relative;
}
nav.main-menu ul li:last-of-type{
  padding-right:0;
}
nav.main-menu ul li a {
  display: block;
  padding:18px 2px;
  color:var(--white-color);
  font-size:18px;
  font-weight:500;
  text-decoration: none;
  position:relative;
  letter-spacing:1px;
  text-transform:uppercase;
}
nav.main-menu ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: 0 0;
  height: 0;
  width: 0;
  z-index: 3;
  transition: width .3s;
  z-index: 2;
}
nav.main-menu ul li.active a:after, 
nav.main-menu ul li.current-menu-item a:after, 
nav.main-menu ul li:hover a:after,
nav.main-menu ul li.current-menu-ancestor a:after{
  content: '';
  position: absolute;
  left:50%;
  bottom: 0;
  background: var(--background-white);
  height:4px;
  width:12px;
  z-index: 6;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  margin-left:-6px;
}
nav.main-menu ul ul li a:after{
  display:none;
}
nav.main-menu ul li a:hover,
nav.main-menu ul li.current-menu-item a,
nav.main-menu ul li.active a,
nav.main-menu ul li.current-menu-ancestor a{
  color:var(--grey-color);
}
nav.main-menu ul ul {
  background:var(--background-red);
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top:100%;
  width:235px;
  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:500;
}
nav.main-menu ul ul li:hover a,
nav.main-menu ul ul li.current-menu-item a{
  color:var(--white-color) !important;
  background:#d70f20;
  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:#d70f20;
}
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-red);
}
/*--------------------------------------------------------------
   # 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(255, 255, 255, 0.10);
  z-index:2;
}
.home-banner-content {
  position: absolute;
  z-index:3;
  top:0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home-banner .container {
  max-width: 1250px;
  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:785px;
  object-fit:cover;
}
.home-banner-main {
  display: flex;
  flex-direction:column;
  height: 100%;
  justify-content:center;
  padding:0;
  text-align:left;
}
.banner-content{
  position:relative;
  margin-left:145px;
  display:none;
}
.banner-content:before{
  content:'';
  position:absolute;
  left:-45px;
  top:-12px;
  background:var(--background-white);
  width:4px;
  height:248px;
}
.banner-subheading{
  text-transform:uppercase;
  color:var(--white-color);
  font-size:20px;
  font-weight:400;
  line-height:100%;
  letter-spacing:3px;
  margin-bottom:18px;
}
.banner-heading{
  text-transform:uppercase;
  color:var(--white-color);
  font-size:52px;
  font-weight:900;
  line-height:1.3;
  letter-spacing:3px;
  max-width:900px;
}
.banner-button a{
  background:var(--background-red);
  color:var(--white-color);
  padding:19px 24px;
  display:inline-block;
  font-size:20px;
  text-transform:uppercase;
  border-radius:0;
  letter-spacing:3px;
  font-weight:600;
  text-align:center;
  border:2px solid rgba(255, 255, 255, 0.80);
  margin-top:35px;
}
.banner-button a:hover{
  background:transparent;
  color:var(--white-color);
  border:2px solid var(--white-color);
}
/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.services-section{
  padding:125px 0;
}
.services-heading{
  color:var(--black-color);
  font-size:50px;
  text-transform:uppercase;
  text-align:center;
  line-height:1.2;
  margin-bottom:30px;
  font-weight:800;
}
.service-text{
  max-width:900px;
  margin: 0 auto;
  text-align: center;
  font-size:19px;
  color: rgba(0, 0, 0, 0.60);
  line-height: 1.6;
}
.services-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:85px;
}
.service-box {
  position: relative;
  overflow: hidden;
}
.service-box a.service-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}
.service-image img {
  display: block;
  width: 100%;
  height:450px;
  object-fit: cover;
}
.service-title {
  font-size:31px;
  font-weight: 400;
  color:var(--white-color);
  letter-spacing: 1px;
  margin-bottom: 0;
  background:rgba(195, 7, 23, 0.80);
  padding:28px 30px;
  position: absolute;
  bottom: 0;
  width: auto;
  line-height: 1.2;
  width: -webkit-fill-available;
}
.service-box .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background:rgba(195, 7, 23, 0.80);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .8s ease;
}
.service-box:hover .service-title {
  display: none;
  background: 0 0;
  color: transparent;
}
.service-box:hover .overlay {
  bottom: 0;
  height: 100%;
  width: 100%;
  bottom: 0;
}
.service-box .service-content{
  padding:45px 28px;
  color:#fff;
}
.service-box .service-content a{
  color:#fff;
}
.service-box .service-content .title-service{
  font-size: 28px;
  font-weight: 500;
  color:var(--white-color);
  letter-spacing: 1px;
  line-height: 100%;
  margin-bottom: 22px;
}
.service-box .service-content .text-service{
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color:var(--white-color);
}
.service-box .service-content .service-learmore a{
  background:var(--background-white);
  padding: 8px 20px;
  font-size: 18px;
  display: inline-block;
  color: var(--red-color);
  font-weight: 500;
  margin-top: 40px;
}
.video-testimonial-section{
  background:var(--background-red);
  padding:125px 0;
}
.real-stories-heading{
  font-size:48px;
  font-weight:700;
  color:var(--white-color);
  line-height:1.2;
  text-transform:inherit;
  text-align:center;
  letter-spacing:2px;
  max-width:860px;
  margin:0 auto 85px; 
  padding-bottom:30px;
  position:relative;
}
.real-stories-heading:after{
  content:'';
  position:absolute;
  left:50%;
  bottom:0;
  background:rgba(255, 255, 255, 0.80);
  width:144px;
  height:6px;
  margin-left:-72px;
}
.testimonial-video{
  position:relative;
  width:68%;
}
/*.testimonial-video:before{
  content:'';
  position:absolute;
  left:50%;
  top:50%;
  background:url(assets/images/video-play-icon.svg) no-repeat;
  width:90px;
  height:90px;
  background-size:90px;
  margin-left:-45px;
  margin-top:-45px;
  opacity:0.8;
}*/
.testimonial-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
/*.testimonial-video video::-webkit-media-controls-panel {
  display: none;
  opacity: 1;
}*/
.video-testimonial-wrap{
  display:flex;
  gap:35px;
  justify-content:space-between;
}
.testimonial-left{
  background:var(--background-white);
  width:32%;
}
.testimonial-content{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  height:100%;
}
.testimonial-content .testi-text{
  padding:0 35px;
  font-size:18px;
  font-weight:400;
  color:var(--black-color);
  font-style:italic;
  line-height:1.5;
  letter-spacing:0.25px;
  text-align:center;
  position:relative;
}
.testimonial-content .testi-text:before{
  content:'';
  position: relative;
  left: 0;
  top: 0;
  background: url(assets/images/quote-icon.png) no-repeat;
  width: 78px;
  height: 78px;
  background-size: 78px;
  display: block;
  margin:0 auto 20px;
}
.testimonial-button{
  text-align:center;
}
.testimonial-button a{
  background:var(--background-white);
  font-size:22px;
  font-weight:800;
  display:inline-block;
  color:var(--black-color);
  padding:21px 24px;
  margin-top:75px;
  letter-spacing:2px;
  text-transform:uppercase;
  border:2px solid transparent;
}
.testimonial-button a:hover{
  background:transparent;
  border:2px solid var(--white-color);
  color:var(--white-color);
}
.about-section,
.our-awards-section{
  padding:125px 0;
}
.our-awards-section{
  background:#f7f3f3;
}
.about-wrap{
  display:flex;
  gap:75px;
  justify-content:space-between;
  align-items:center;
}
.about-video{
  width:52%;
  position:relative;
}
.about-video img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.about-content{
  width:48%;
  text-align:left;
}
.about-overlay{
  background:#333333;
  padding:35px 32px;
  position:absolute;
  right:-45px;
  bottom:-20px;
  font-size:25px;
  color:var(--white-color);
  font-weight:600;
  letter-spacing:1px;
  line-height:100%;
  text-transform:uppercase;
}
.about-overlay:after{
  content: '';
  position: relative;
  display: block;
  left: 0;
  bottom: 0;
  background: url(assets/images/stars-img.png) no-repeat;
  width: 132px;
  height: 26px;
  background-size: 132px;
  margin-top: 12px;
}
.about-content .about-subheading{
  font-size: 17.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 15px;
}
.about-content .about-heading{
  color:var(--black-color);
  font-size:47px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 28px;
  text-transform: inherit;
}
.about-content .about-text{
  font-size: 18.5px;
  color: rgba(0, 0, 0, 0.70);
  line-height: 1.6;
  font-weight: 400;
  padding-right: 20px;
}
.about-content .about-text .about-lists{
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-content .about-text .about-lists li{
  font-size: 20px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.6;
  font-weight: 700;
  margin-bottom:2px;
  padding-left:30px;
  position:relative;
  letter-spacing:0.5px;
}
.about-content .about-text .about-lists li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  background: rgba(0, 0, 0, 0.85);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.about-content .about-text .about-lists li a,
.about-content .about-contact a{
  color: rgba(0, 0, 0, 0.85);
  border-bottom:1px solid;
}
.about-content .about-text .about-lists li a:hover,
.about-content .about-contact a:hover{
  color:var(--red-color);
  border-bottom:0;
}
.about-content .about-contact{
  font-size: 20px;
  color: rgba(0, 0, 0, 0.70);
  line-height: 1.6;
  font-weight: 500;
  padding-right: 20px;
  margin-top: 28px;
  letter-spacing:0.5px;
}
.about-content .about-contact a {
  font-weight:700;
}
.about-content .signature{
  margin-top:35px;
}
.award-subheading,
.review-subheading{
  color:var(--red-color);
  font-size:18px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:2px;
  line-height:100%;
  text-align:center;
  margin-bottom:20px;
}
.award-heading{
  font-size:46px;
  font-weight:900;
  color:var(--black-color);
  line-height:1.3;
  text-transform:uppercase;
  letter-spacing:2px;
  text-align:center;
  max-width:900px;
  margin:0 auto 20px;
}
.awards-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:0 0;
  margin-top:75px;
  text-align:center;
  max-width:960px;
  margin:75px auto 0;
}
.award-block{
  padding-bottom: 50px;
  position: relative;
  padding-top: 55px;
}
.award-block:after{
  content:'';
  position:absolute;
  right:0;
  top:0;
  background:rgba(0, 0, 0, 0.30);
  width:1px;
  height:100%;
}
.award-block:before{
  content:'';
  position:absolute;
  right:-15px;
  top:0;
  background:rgba(0, 0, 0, 0.30);
  width:100%;
  height:1px;
}
.award-block:first-of-type:before,
.award-block:nth-of-type(2):before,
.award-block:nth-of-type(3):before,
.award-block:nth-of-type(3):after,
.award-block:nth-of-type(6):after{
  background:transparent;
}
.award-block:first-of-type,
.award-block:nth-of-type(2),
.award-block:nth-of-type(3){
  padding-top:20px;
}
.award-block:nth-of-type(4),
.award-block:nth-of-type(5),
.award-block:nth-of-type(6){
  padding-bottom:20px;
}
.award-block .award-icon{
  width:118px;
  height:118px;
  background:var(--background-red);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}
.award-block .award-title{
  font-size:20px;
  font-weight:700;
  color:var(--black-color);
  letter-spacing:0.25px;
  line-height:1.4;
  text-align:center;
  max-width:inherit;
  margin:0 auto;
  text-transform:inherit;
}
.award-block .award-title a{
  color:var(--black-color);
}
.award-block .award-title a:hover{
  color:var(--red-color);
}
.why-choose-us{
  padding:115px 0;
  background:url(assets/images/why-choose-us-bg.jpg) no-repeat;
  background-size:cover;
  position:relative;
}
.why-choose-us:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:rgba(0, 0, 0, 0.80);
  width:100%;
  height:100%;
}
.why-choose-wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:60px;
  position: relative;
}
.why-choose-heading{
  font-size: 47px;
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 45px;
  text-transform: inherit;
}
.why-choose-points ul{
  list-style:none;
  margin:0;
  padding:15px 0 0;
}
.why-choose-points ul li{
  position: relative;
  padding-left: 108px;
  margin-bottom:42px;
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 0.5px;
}
.why-choose-points ul li:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:url(assets/images/check-icon.png) no-repeat;
  width:71px;
  height:71px;
  background-size:71px;
}
.why-choose-points ul li:last-of-type{
  margin-bottom:0;
}
.why-choose-points ul li .point-title{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 100%;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
  text-transform: inherit;
}
.why-choose-video {
  position:relative;
  margin-top:30px;
}
.why-choose-video:before {
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  border:2px solid var(--red-color);
  top:-26px;
  left:-26px;
  z-index:0;
}
.why-choose-video video{
  display:block;
  object-fit:cover;
  width:100%;
  height:100%;
  position:relative;
  z-index:1;
}
.reviews-section{
  padding:115px 0;
}
.review-heading{
  font-size:55px;
  font-weight:700;
  color:var(--black-color);
  line-height:1.1;
  text-align:center;
  text-transform:inherit;
  margin-bottom:70px;
}
.map-area iframe{
  width:100%;
  height:534px;
  display:block;
}
/*--------------------------------------------------------------
   # Site Footer
--------------------------------------------------------------*/
.footer-main{
  padding:80px 0;
}
.footer-main .container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}
.footer-logo img{
  width:auto;
  height:auto;
  display:block;
}
.ftr-text{
  font-size:17.5px;
  color:var(--black-color);
  line-height:1.4;
  font-weight:400;
  margin-top:25px;
}
.widget-title{
  font-size:30px;
  font-weight:600;
  color:var(--red-color);
  letter-spacing:1px;
  line-height:100%;
  text-transform:inherit;
  margin-bottom:34px;
}
.ftr-contact-info .info{
  font-size:19px;
  font-weight:400;
  line-height:1.2;
  color:var(--black-color);
  margin-bottom:20px;
  position:relative;
  padding-left:35px;
}
.ftr-contact-info .info a{
  color:var(--black-color);
}
.ftr-contact-info .info a:hover{
  color:var(--red-color);
}
.ftr-contact-info .phone:before, 
.ftr-contact-info .address:before, 
.ftr-contact-info .hours:before {
  content: '';
  position: absolute;
  left: 0;
  top:1px;
  background: url(assets/images/phone-icon.svg) no-repeat;
  width: 26px;
  height: 26px;
  background-size: 26px;
}
.ftr-contact-info .address:before{
  background: url(assets/images/location-icon.svg) no-repeat;
  width: 36px;
  height: 36px;
  background-size: 36px;
  left: -4px;
}
.ftr-contact-info .hours:before{
  background: url(assets/images/clock-hour-icon.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: 28px;
  top: -4px;
}
.quick-links ul{
  list-style:none;
  margin:0;
  padding:0;
}
.quick-links ul li{
  display:block;
  margin-bottom:5px;
}
.quick-links ul li a{
  font-size:17.2px;
  font-weight:400;
  color:var(--black-color);
  line-height:100%;
}
.quick-links ul li a:hover{
  color:var(--red-color);
}
.social-icons ul{
  list-style:none;
  margin:30px 0 0;
  padding:0;
}
.social-icons ul li{
  padding:0;
  padding-right:2px;
  display:inline-block;
}
.social-icons ul li a{
  width:50px;
  height:50px;
  background:var(--background-red);
  border-radius:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--white-color);
}
.social-icons ul li a:hover{
  background:var(--background-black);
}
.footer-bottom{
  padding:22px 0;
  background:var(--background-red);
  font-size:13.5px;
  font-weight:500;
  letter-spacing:0.5px;
  color:var(--white-color);
  text-transform:uppercase;
  line-height:1.2;
}
.footer-bottom .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}
.footer-bottom a{
  color:rgba(255, 255, 255, 0.80);
}
.footer-bottom a:hover{
  color:var(--white-color);
}
/*--------------------------------------------------------------
# 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.55);
  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:2px;
}
.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(--black-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(--red-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(--red-color);
  font-weight:700;
}
.entry-meta a:hover{
  color:var(--red-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:0px;
  text-transform:uppercase;
  color: var(--white-color);
  font-weight: 700;
  transition: all .5s;
  background: var(--background-red);
  letter-spacing:0.25px;
  margin-top:8px;
}
a.entry-button:hover {
  color:var(--white-color);
  background:var(--background-black);
}
.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-red);
  padding:35px 25px;
  text-align:center;
  border-radius:30px;
  box-shadow:0 12px 0px #ddf0fe;
}
#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;
}
.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(--red-color);
}
.gform_wrapper form.contact-form input[type="submit"] {
  background: var(--background-red) !important;
  color: var(--white-color) !important;
  padding:16px 28px !important;
  text-transform: uppercase !important;
  font-size:17px !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-black) !important;
}
.gform_wrapper.gravity-theme .gfield_label{
  font-weight: 400 !important;
  font-size: 15.2px !important;
  text-transform: inherit;
  line-height: 1.2;
}
.gform_wrapper.gravity-theme .gfield textarea.large {
    height: 160px !important;
}
.single .site-content .entry-title{
  display:none;
}
.gform_wrapper .gform_heading h2.gform_title{
  font-size:32px;
  font-weight:800;
  margin-bottom:25px;
}
article.hentry .entry-content  h2{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0;
  color:var(--red-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(--red-color);
  margin-bottom:30px;
}
.post-navigation .nav-links a{
  font-weight:700;
  color:var(--red-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(--red-color);
  letter-spacing:1px;
  text-transform:uppercase;
}
h3{
  font-size:26px;
  font-weight:800;
  margin-bottom:15px;
  line-height:100%;
  color:var(--black-color);
  text-transform:uppercase;
  letter-spacing: 0.5px;
  line-height:1.2;
}
h4{
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
  color:var(--red-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:18px !important;
  font-weight:600;
  margin-bottom:8px;
  color:var(--black-color);
  line-height:1.2;
  letter-spacing:1px;
}
.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);
}
.inner-faqs-block .faq-section{
  background:transparent;
  padding:0 !important;
}
.inner-faqs-block .faq-section .faq-wrap{
  flex-direction:column;
  gap:0;
}
.inner-faqs-block .faq-section .faq-wrap .faq-left {
  width: 100%;
  display:none;
}
.inner-faqs-block .faq-section .faq-heading{
  margin-top:0;
}
.inner-faqs-block .faq-section .faqs-block {
  width: 100%;
}
.inner-faqs-block .faq-section .container{
  padding-left:0;
  padding-right:0;
}
.review-section .rpi{
  margin-top:45px;
}
.site-footer{
  border-top: 1px solid #ccc;
}
.home .site-footer{
  border-top: 0;
}
.logo-banner{
  background: #f7f3f3;
  padding:32px 0;
  margin:0;
  margin: -100px auto 0;
  max-width: 1250px;
  position: relative;
  padding-left:25px;
  border-radius: 15px;
  padding-right:25px;
  box-shadow: 0 14px 0px var(--red-color);
}
.logo-banner .wp-block-image img{
  display:block;
  width: auto;
  height: 280px;
}
.logo-banner p{
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 0;
}
.logo-banner .wp-block-image {
  margin-bottom:0;
}
.logo-banner .wp-block-heading{
  margin-bottom: 0;
  color: var(--red-color);
  font-size: 47px;
  letter-spacing: 3px;
  font-weight: 900;
}
.gform_wrapper.gravity-theme .contact-form .gfield input.gfield-choice-input{
  vertical-align:top;
  width:15px;
  height:15px;
  position:relative;
  top:6px;
}
.floating-button{
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 5;
}
.gform_wrapper.gravity-theme .contact-form .gfield.gf_list_3col .gfield_checkbox, 
.gform_wrapper.gravity-theme .contact-form .gfield.gf_list_3col .gfield_radio{
    grid-column-gap: 0;
}


/*Inner Pages*/
.auto-section1 .wp-block-image img,
.auto-section2 .wp-block-image img,
.auto-section4 .wp-block-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:5px;
  object-fit:cover;
}
.auto-section1 h2.wp-block-heading{
  max-width:500px;
  line-height: 1.3;
  font-weight:900;
}
.wp-block-button a.wp-block-button__link{
  background:var(--background-red);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius:3px;
  padding:20px 28px;
  display: inline-block;
  margin-top: 20px;
  line-height: 100%;
  color:var(--white-color);
  letter-spacing:0.5px;
}
.wp-block-button a.wp-block-button__link:hover{
  background:var(--background-black);
  color:var(--white-color);
}
.site-main p a, 
.site-content .entry-content p a{
  font-weight:500;
}
.auto-section2 {
  padding:100px 0;
}
.auto-section2 h2.wp-block-heading,
.auto-section1 h2.wp-block-heading,
.auto-section3 h2.wp-block-heading,
.auto-section4 h2.wp-block-heading,
.auto-section5 h2.wp-block-heading,
.homeowners-section6 h2.wp-block-heading{
  font-weight:400;
}
.auto-section2 h2.wp-block-heading strong,
.auto-section2 h1.wp-block-heading strong,
.auto-section3 h2.wp-block-heading strong,
.auto-section4 h2.wp-block-heading strong,
.auto-section5 h2.wp-block-heading strong,
h2.wp-block-heading strong,
.homeowners-section6 h2.wp-block-heading strong{
  font-weight:900;
}
.auto-section2 h5.wp-block-heading{
  font-size:20px;
}
.auto-section2 .gb-layout-column-wrap{
  margin-top:40px;
  gap:12px;
}
.auto-section1 .gb-layout-column-wrap{
  gap:20px;
}
.auto-section2 .auto-section2-content{
  background:var(--background-red);
  border-radius:6px;
  color:var(--white-color);
}
.auto-section2 .auto-section2-content .gb-block-layout-column-inner{
  padding:30px 20px;
  color:var(--white-color);
}
.auto-section2 .auto-section2-content h4.wp-block-heading{
  color:var(--white-color);
  font-size:24px;
}
.auto-section2 .auto-section2-content ul{
  padding-left:20px;
}
.auto-section2 .auto-section2-content ul li{
  padding-bottom:5px;
}
.auto-section2 .auto-section2-content ul li:last-of-type{
  padding-bottom:0;
}
.auto-section2 .auto-section2-content .wp-block-separator{
  border-top: 2px dotted #fff;
  margin:22px 0;
}
.auto-section2 .auto-section2-content p{
  color:var(--white-color);
  font-size:16px;
}
.auto-section2 .wp-block-image{
  margin-bottom:0;
}
.auto-section2 .wp-block-image img{
  height: 840px;
  object-fit: cover;
  border-radius: 6px;
}
.auto-section1 .wp-block-image img{
  height: 645px;
  object-fit: cover;
}
.auto-section3{
  padding: 100px 0 250px;
  background: var(--background-red) url(assets/images/background-design-abstract.svg) !important;
  background-position: 50% 80.2102px;
  background-size: cover;
  position: relative;
  margin: 0px calc(50% - 50vw);
  max-width: 99vw !important;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  color:var(--white-color);
}
.auto-section3:before{
  content:'';
  background-color: rgba(195, 7, 23, 0.85);
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}
.auto-section3 .wp-block-column.container{
  position:relative;
  margin:0 auto;
}
.auto-section3 h6.wp-block-heading {
  color:var(--white-color);
  margin-bottom:15px;
}
.auto-section3 h2.wp-block-heading{
  color:var(--white-color);
  margin-bottom:22px;
}
.auto-section3 p.has-text-align-center{
  color: #fff;
  max-width: 965px;
  margin: 0 auto;
  line-height:1.5;
}
.auto-section3 .auto-section3-main .wp-block-image{
  width: 116px;
  height: 116px;
  border-radius: 100%;
  background:var(--background-red);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px;
  text-align: center;
  border:2px solid var(--white-color);
}
.auto-section3 .auto-section3-main {
  text-align:center;
  margin-top:40px;
}
.auto-section3 .auto-section3-main img{
  width: 82px;
  height: 82px;
}
.auto-section3 .auto-section3-main h4.wp-block-heading{
  padding-top:8px;
  color:var(--white-color);
  font-size:18.5px;
  letter-spacing: 1px;
  padding-top: 10px;
}
.auto-section3 .auto-section3-main p{
  color:var(--white-color);
  margin-bottom:0;
  font-size: 16.5px;
  line-height: 1.45;
}
.auto-section4{
  margin-top:-160px;
  position:relative;
  background:var(--background-white);
  box-shadow:rgba(0, 0, 0, 0.1) 0 6px 6px 0;
  padding-left:0 !important;
  padding-right:0 !important;
  border-radius: 6px;
  overflow:hidden;
}
.auto-section4 .auto-section4-content .gb-block-layout-column-inner{
  padding: 80px 40px 80px 15px;
}
.auto-section4 .wp-block-image{
  margin-bottom:0;
}
.auto-section4 .wp-block-image img{
  border-radius:0;
  height: 545px;
}
.auto-section4 .auto-section4-content .gb-block-layout-column-inner p{
  font-size:17px;
}
.auto-section5{
  padding-top:100px;
}
.auto-section5 .gb-layout-column-wrap{
  gap:15px;
}
.auto-section5 .gb-layout-column-wrap .wp-block-embed iframe{
  width: 100%;
  height: 327px;
  display: block;
  object-fit: cover;
}
.auto-section5 h2.wp-block-heading{
  margin-bottom:35px;
}
.contact-top-block{
  gap:15px;
}
.contact-top-block .contact-info{
  background: #f7f3f3;
  text-align: center;
  border-radius: 8px;
  padding:30px 15px;
}
.contact-top-block .contact-info .wp-block-image{
  background:var(--background-red);
  width:100px;
  height:100px;
  margin:0 auto 10px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:100%;
}
.contact-top-block .contact-info .wp-block-image img{
  width:50px;
  height:50px;
  display:block;
  margin:0 auto;
}
.contact-top-block .contact-info h3{
  font-size: 22px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom:10px;
}
.contact-top-block .contact-info p {
  max-width: 290px;
  margin: 0 auto;
  font-weight:500;
}
.contact-top-block .contact-info p a{
  color:var(--black-color);
}
.contact-top-block .contact-info p a:hover{
  color:var(--red-color);
}
.contact-form-area{
  max-width:760px !important;
  margin:60px auto 0;
}
.contact-form-area .office-text{
  font-size:22px;
  color:var(--red-color);
  font-weight:600;
  line-height:1.5;
  text-align:center;
}
.contact-form-area h4.wp-block-heading  {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color:var(--black-color);
  margin-top:40px;
}
.contact-form-area .gform_wrapper h2.gform_title{
  text-align:center;
}
.contact-form-area .gform_wrapper .gform_required_legend{
  display:none;
}
.contact-map.fullwidth{
  margin: 80px calc(50% - 50vw) 0;
  max-width: 99.4vw !important;
  width: 100vw;
  padding: 0;
}
.contact-map.fullwidth iframe{
  width:100%;
  height:450px;
  display:block;
}
.page-id-13 .site-main,
.page-id-200 .site-main,
.page-id-198 .site-main,
.page-id-9 .site-main{
  padding-bottom:0 !important;
}
.contact-map.fullwidth p{
  margin:0;
}
.page-id-206 .site-main{
  padding-bottom:0 !important;
}
.auto-section1 .wp-block-image{
  margin-bottom:0;
}
.financial-section1 .gb-layout-column-wrap{
  align-items:center;
}
.financial-section1 h2.wp-block-heading{
  margin-bottom:25px;
}
.financial-section1 h2.wp-block-heading strong{
  font-weight:900;
}
.financial-section1 .gb-block-layout-column-inner p{
  max-width:500px;
}
.financial-section2{
  margin-bottom:0;
}
.financial-section1.church .gb-block-layout-column-inner p {
  max-width: 100%;
}
.financial-section2.church p.has-text-align-center{
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.about-section1.fullwidth{
  margin: 0 calc(50% - 50vw) 0;
  max-width: 99.4vw !important;
  width: 100vw;
  padding: 0;
}
.about-section1 .about-section{
  padding-top:0;
}
.about-section1 .about-section .about-content .about-heading{
  font-weight:400;
  color:var(--red-color);
}
.about-section1 .about-section .about-content .about-heading strong{
  font-weight:900;
}
.about-section1 .about-section .about-content .signature{
  display:none;
}
.auto-section3.about-section2{
  padding:100px 0;
}
.auto-section3.about-section2 .auto-section3-main h4.wp-block-heading{
  line-height:1.4;
  letter-spacing: 0.10px;
  font-size:18px;
  margin-bottom:0;
}
.auto-section3.about-section2 .auto-section3-main h4.wp-block-heading a{
  color:var(--white-color);
  border-bottom:2px solid var(--white-color);
}
.auto-section3.about-section2 .auto-section3-main h4.wp-block-heading &nbsp;{
  display:none;
}
.auto-section3.about-section2 .auto-section3-main {
  overflow-x:inherit;
}
.about-team-main{
  margin-top:75px;
  flex-wrap: wrap !important;
  justify-content:center;
}
.about-team-main .team-box{
  width:23%;
  flex-basis: inherit !important;
  flex-grow: inherit !important;
  margin-bottom:20px;
}
.auto-section2.about-section3 .about-team-main .team-box .wp-block-image{
  height:200px;
  width: 200px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto 15px;
  background:#efefef;
}
.auto-section2.about-section3 .about-team-main .team-box .wp-block-image img{
  width:auto;
  height:auto;
  display:block;
  margin:0 auto;
  object-fit:cover;
}
.auto-section2.about-section3 .about-team-main .team-box h3{
  font-size:24px;
  margin-bottom:5px;
}
.auto-section2.about-section3 .about-team-main .team-box h5{
  font-size:18px;
  color:var(--red-color);
  line-height:1.2;
}
.auto-section2.about-section3 .about-team-main .team-box p{
  color:rgba(0, 0, 0, 0.82);
  margin-top:15px;
}
.auto-section2.about-section3 .about-team-image {
  margin-top:60px;
}
.auto-section2.about-section3 .about-team-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.auto-section2.about-section3{
  padding-bottom:50px;
  margin-bottom:0;
}
.auto-section4.homeowners-section3{
  margin-top: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 11px 0;
  -moz-box-shadow: rgba(0,0,0,0.1) 0 0 11px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 11px 0;
  margin-bottom:100px;
}
.homeowners-section2 h2.wp-block-heading{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.auto-section4.homeowners-section3 .gb-layout-column-wrap{
  align-items: center;
}
.homeowners-section3 ul.wp-block-list{
  list-style: none;
  margin: 0 0 15px;
  padding:0;
}
.homeowners-section3 ul.wp-block-list li {
  position: relative;
  padding-left:32px;
  margin-bottom:12px;
  font-size:18.5px;
  font-weight: 500;
}
.homeowners-section3 ul.wp-block-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top:4px;
  background: url(assets/images/check-icon.png) no-repeat;
  width:24px;
  height:24px;
  background-size:24px;
}
.homeowners-section5 .wp-block-genesis-blocks-gb-columns{
  margin-top:15px;
}
.auto-section4.homeowners-section5{
  padding-left:40px !important;
  padding-right:40px !important;
}
.homeowners-section6{
  padding-top:100px;
}
.homeowners-section6 .gb-layout-column-wrap .wp-block-embed iframe{
  width:100%;
  height:342px;
  display: block;
  object-fit: cover;
}
.homeowners-section6 .gb-layout-column-wrap{
  align-items:center;
}
.homeowners-section6 h2.wp-block-heading{
  margin-bottom:0;
  line-height:1.5;
}
.homeowners-section3 .gb-block-layout-column-inner p{
  padding-right:35px;
}
.auto-section2.homeowners-section5 .wp-block-image img{
  border-radius:6px;
}
.site-main p strong, 
.site-content .entry-content p strong{
  font-weight:600;
}
.financial-section1.life-section1 .gb-block-layout-column-inner p,
.homeowners-section2.life-section2 h2.wp-block-heading {
  max-width: 100%;
}
.pum-theme-lightbox .pum-container{
  border:none !important;
}
.pum-theme-lightbox .pum-container .pum-content figure.wp-block-embed{
  margin-bottom:0;
}
.row.post_pagination{
  margin-top: 30px;
  justify-content: space-between;
}
.row.post_pagination a{
  font-weight:bold;
}
.page-id-329 .inner-banner{
  background:var(--background-red);
  margin-top:10px;
}
.page-id-329 .inner-banner:before,
.page-id-329 .inner-banner img{
  display:none;
}
.page-id-329 .entry-header h1.entry-title{
  text-transform:inherit;
  font-weight:600;
  max-width:80%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
}
.page-id-329 .inner-banner {
    height: 300px;
}
.review-main {
  margin-top:35px;
  margin-bottom:0;
}
.page-id-329 h2.wp-block-heading{
  margin-bottom:50px;
  font-weight:400;
}
.page-id-329 h2.wp-block-heading strong{
  font-weight:900;
}
.review-box{
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 11px 0;
  border-radius: 10px;
  background-color: var(--background-white);
  padding: 30px;
  box-shadow: 0 10px 0px var(--red-color);
  border: 1px solid #ccc;
}
.review-box .review-img .wp-block-image{
  border-radius: 100%;
  margin-bottom: 0;
  width: 100px;
  height: 100px;
  position:relative;
}
.review-box .review-img .wp-block-image:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--background-red) url(assets/images/quote-icon.svg) center center no-repeat;
  width: 30px;
  height: 30px;
  background-size: 15px;
  border-radius: 100%;
}
.review-box .review-img .wp-block-image img{
  border-radius:100%;
}
.review-box .review-content h3{
  font-size:25px;
  letter-spacing:1px;
  margin-bottom:8px;
}
.review-box .review-content h4{
 font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.review-box > .wp-block-columns{
  align-items:center !important;
}
.review-box .wp-block-video{
  margin-bottom:0;
}
.wp-block-columns.review-main{
  gap:20px;
}
.logo-banner.hof-area {
  margin-top: -100px;
  border-radius: 15px;
  position: relative;
  z-index: 2;
}
.logo-banner.hof-area .wp-block-columns {
    flex-direction: row-reverse;
}
.logo-banner.hof-area .wp-block-heading{
  color:var(--black-color);
}
.logo-banner{
  margin-top: 6px;
  border-radius: 0 0 15px 15px;
}