/*!
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:#dae1e6;
  --darkgrey-color:#8b8a8c;
  --lightgrey-color:#efefef;
  --lightblue-color:#59b3ea;
  --blue-color:#01a4ce;
  --red-color:#bf4137;
  --white-color:#FFFFFF;
  --background-black:#000000;
  --background-grey:#dae1e6;
  --background-darkgrey:#8b8a8c;
  --background-lightgrey:#efefef;
  --background-lightblue:#59b3ea;
  --background-blue:#01a4ce;
  --background-red:#bf4137;
  --background-white:#FFFFFF;
  --font-family-montserrat:"Montserrat", 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(--red-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: "Montserrat", 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: "Montserrat", sans-serif;
  margin:0;
  font-weight:400;
}

body {
  font-family: "Montserrat", 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{
  max-height:140px;
}
.site-logo{
  position:relative;
  left:0;
  bottom:-6px;
  width:auto;
  height:auto;
  z-index:2;
}
.site-logo a{
  display: inline-block;
  background: #fff;
  padding:7px 14px;
}
.site-logo img{
  width:auto;
  height:176px;
}
.header-contact-info {
  column-gap: 75px;
  display: flex;
  margin-top: 42px;
}
.header-contact-info .phone,
.header-contact-info .address, 
.header-contact-info .hours {
  font-weight:600;
  font-size:16px;
  color: var(--black-color);
  line-height: 1.3;
  letter-spacing: .3px;
  position: relative;
  padding-left:35px;
}
.header-contact-info div span{
  display:block;
  color:var(--lightblue-color);
  letter-spacing:0;
  font-size:14px;
  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:100%;
}
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
.navigation-area{
  background:var(--background-blue);
}
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 10px;
  position:relative;
}
nav.main-menu ul li a {
  display: block;
  padding:18.8px 2px;
  color:var(--white-color);
  font-size:15.5px;
  font-weight:600;
  text-decoration: none;
  position:relative;
  letter-spacing:0.25px;
  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 {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--background-white);
  height: 2px;
  width: 100%;
  z-index: 6;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  margin-left: 0;
}
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{
  color:var(--white-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: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-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);
}
/*--------------------------------------------------------------
   # 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.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: 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:900px;
  object-fit:cover;
}
.home-banner-main {
  display: flex;
  flex-direction:column;
  height: 100%;
  justify-content:center;
  padding:0;
  text-align:left;
}
.home-banner-main .banner-heading{
  font-size:74px;
  font-weight:800;
  text-align:left;
  text-transform:uppercase;
  color:var(--white-color);
  line-height:1.2;
  letter-spacing:1.5px;
  position:relative;
  padding-bottom:25px;
  max-width:685px;
}
.home-banner-main .banner-subtext{
  font-size:20px;
  font-weight:400;
  line-height:1.5;
  color:#fff;
  max-width:595px;
}
.home-banner-main .banner-button a{
  background:var(--background-blue);
  font-size:18px;
  text-transform:uppercase;
  color:var(--white-color);
  font-weight:600;
  padding: 27.5px 28px;
  display:inline-block;
  line-height:100%;
  letter-spacing:0.50px;
  border-radius:0;
  text-align:center;
  margin-top:38px;
}
.home-banner-main .banner-button a:hover{
  background:var(--background-lightblue);
  color:var(--white-color);
}
/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.home-three-boxes .container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width:1220px;
  margin:0 auto;
  gap:32px;
  position: relative;
  margin-top: -90px;
  z-index:10;
}
.home-three-boxes .box{
  background:var(--background-lightgrey);
  min-height:240px;
  text-align:center;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  box-shadow:0 0 20px rgba(0, 0, 0, 0.30);
  position:relative;
}
.home-three-boxes .box a.box-link{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:10;
}
.home-three-boxes .box .patient-icon{
  margin-bottom:22px;
}
.home-three-boxes .box .patient-icon img{
  width:auto;
  height:auto;
  display:block;
}
.home-three-boxes .box .title-patient{
  font-size:22px;
  font-weight:700;
  color:var(--black-color);
  letter-spacing:1px;
  text-transform:uppercase;
  margin:0;
  line-height:1.1;
  -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;
}
.home-three-boxes .box:hover .title-patient{
  color:var(--red-color);
}
.about-section{
  background:var(--background-lightgrey);
  padding:125px 0;
}
.home-three-boxes{
  background:var(--background-lightgrey);
}
.about-wrap {
  display:flex;
  gap:72px;
  justify-content:space-between;
  align-items:center;
}
.about-image{
  width:40%;
}
.about-image img{
  width:100%;
  height:600px;
  display:block;
  object-fit:cover;
}
.about-content {
  width:60%;
}
.about-content .about-title{
  background: #c2dded;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.90);
  letter-spacing: 4px;
  line-height: 100%;
  display: inline-block;
  text-align: center;
  padding: 6px 15px;
  margin-bottom:22px;
}
.about-content .about-welcome{
  font-size:38px;
  font-weight:900;
  color:var(--blue-color);
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:1px;
  max-width:375px;
  margin-bottom:38px;
}
.about-content .about-subtitle{
  font-size:21px;
  font-weight:800;
  color:var(--red-color);
  text-transform:uppercase;
  line-height:1.1;
  margin-bottom:30px;
}
.about-content .about-text{
  font-size:16px;
  line-height:1.7;
  color:var(--black-color);
  font-weight:400;
  max-width:670px;
}
.about-learn-more a{
  background:var(--background-red);
  padding: 24.5px 25px;
  color:var(--white-color);
  font-size:16px;
  font-weight:600;
  letter-spacing:1px;
  line-height:100%;
  display:inline-block;
  text-transform:uppercase;
  margin-top:54px;
}
.about-learn-more a:hover{
  background:var(--background-blue);
}
.specialties-section{
  padding:122px 0;
}
.specialties-title{
  font-size:42px;
  font-weight:900;
  color:var(--black-color);
  line-height:1.2;
  text-transform:uppercase;
  text-align:center;
  letter-spacing:1.5px;
  position:relative;
  margin-bottom:42px;
  padding-bottom:30px;
}
.specialties-title span{
  display:block;
}
.specialties-title:after{
  content:'';
  position:absolute;
  left:50%;
  bottom:0;
  width:72px;
  height:7px;
  background:var(--background-red);
  margin-left:-36px;
}
.specialties-subtext{
  font-size:17.5px;
  color:var(--black-color);
  line-height:1.6;
  font-weight:400;
  text-align:center;
  max-width:870px;
  margin:0 auto;
}
.specialties-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top:80px;
  gap:22px;
}
.specialties-section .special-box {
  background:#eef3f9;
}
.special-box .special-thumbnail img{
  width:100%;
  height:300px;
  display:block;
  object-fit:cover;
}
.special-box .special-care-content{
  padding:45px 30px 55px;
  position:relative;
}
.special-box .primary-icon{
  width:80px;
  height:80px;
  background:var(--background-red);
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:-80px;
  left:0;
}
.special-box .primary-icon img{
  display:block;
  width:50px;
  height:48px;
}
.special-box .primary-caretitle{
  color: var(--blue-color);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 100%;
  margin-bottom:25px;
  text-transform:inherit;
}
.special-box .primary-subtext{
  font-size:15.5px;
  font-weight:500;
  color:var(--black-color);
  line-height:1.7;
}
.special-box .special-learmore-btn a{
  background:var(--background-blue);
  font-size:15px;
  font-weight:600;
  color:#eef3f9;
  line-height:100%;
  display:inline-block;
  text-transform:uppercase;
  padding: 16px 18px;
  margin-top:32px;
  letter-spacing:0.25px;
}
.special-box .special-learmore-btn a:hover{
  background:var(--background-red);
} 
.cta-banner{
  background:var(--background-red);
  padding:112px 0;
  text-align:center;
}
.cta-banner .cta-title{
  font-size:44px;
  font-weight:800;
  letter-spacing:3px;
  color:var(--white-color);
  line-height:1.25;
  max-width:710px;
  margin:0 auto 42px;
  text-transform:inherit;
}
.cta-banner .cta-subtext{
  font-size:19px;
  font-weight:500;
  color:var(--white-color);
  line-height:1.6;
  max-width:710px;
  margin:0 auto;
}
.cta-banner .cta-button a{
  background:var(--background-white);
  padding:27.5px 27px;
  color:var(--black-color);
  font-size:18px;
  font-weight:800;
  letter-spacing:1px;
  line-height:100%;
  display:inline-block;
  text-transform:uppercase;
  margin-top:50px;
}
.cta-banner .cta-button a:hover{
  background:var(--background-lightgrey);
}
.meet-team-section{
  padding:122px 0;
}
.meet-team-section .meet-team-title{
  font-size:42px;
  font-weight:900;
  letter-spacing:2px;
  color:var(--black-color);
  line-height:1.25;
  text-align:center;
  margin-bottom:28px;
  text-transform:uppercase;
}
.meet-team-section .meet-team-title span{
  color:var(--red-color);
}
.meet-team-section .meet-team-subtitle{
  font-size:28px;
  font-weight:700;
  color:var(--blue-color);
  letter-spacing:2px;
  text-transform:uppercase;
  line-height:1.1;
  text-align:center;
  margin:0;
}
.meet-team-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top:90px;
  gap:12px;
}
.meet-team-section .team-box{
  position:relative;
  text-align:center;
  -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;
}
.meet-team-section .team-box a.team-link{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:2;
}
.meet-team-section .team-box .team-image img{
  width:100%;
  height:275px;
  object-fit:cover;
  display:block;
}
.meet-team-section .team-box .overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(1, 164, 206, 0.70);
  -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;
}
.meet-team-section .team-box .team-name{
  font-size:30px;
  font-weight:800;
  color:var(--white-color);
  letter-spacing:2px;
  line-height:1.2;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  width:100%;
  height:100%;
  text-transform:inherit;
}
.meet-team-section .team-box .team-name span{
  display:block;
}
.meet-team-section .team-box:hover .overlay{
  background:rgba(0, 0, 0, 0.50);
}
.meet-team-section .team-box:hover .team-image img{
  filter: grayscale(100%);
}
/*--------------------------------------------------------------
   # Site Footer
--------------------------------------------------------------*/
.footer-top{
  padding:82px 0;
  background:rgba(244, 245, 246, 0.50);
}
.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center;
} 
.footer-content{
  width:45%;
}
.footer-content .contact-title{
  font-size:34px;
  font-weight:800;
  color:var(--black-color);
  line-height:100%;
  text-transform:uppercase;
  margin-bottom:30px;
  letter-spacing:1.5px;
}
.footer-content .contact-text{
  font-size:15.5px;
  font-weight:500;
  line-height:1.6;
  color:rgba(0, 0, 0, 0.85);
  max-width:405px;
}
.footer-content .contact-info{
  margin-top:50px;
  display:flex;
  justify-content:space-between;
  flex-direction:column;
  gap:35px 0;
}
.footer-content .contact-info .info{
  font-size:17px;
  font-weight:500;
  color:rgba(0, 0, 0, 0.90);
  letter-spacing:0.50px;
  line-height:1.3;
}
.footer-content .contact-info .info a{
  color:rgba(0, 0, 0, 0.90);
}
.footer-content .contact-info .info a:hover{
  color:var(--red-color);
}
.footer-content .contact-info .info span{
  font-size:14px;
  font-weight:700;
  color:var(--blue-color);
  line-height:100%;
  display:block;
  text-transform:uppercase;
  letter-spacing:0.5px;
  margin-bottom:5px;
}
.footer-map{
  width:55%;
}
.footer-map iframe{
  width:100%;
  height:522px;
  display:block;
}
.footer-bottom{
  background:var(--background-red);
  padding:25px 0;
}
.footer-bottom .container{
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:center;
}
.copyright,
.created-by{
  font-size:12.2px;
  color:var(--white-color);
  font-weight:400;
  line-height:100%;
  letter-spacing:0.50px;
  text-transform:uppercase;
}
.copyright span,
.copyright a{
  font-weight:700;
  color:var(--white-color);
}
.created-by a{
  color:var(--white-color);
  font-weight:700;
}
.created-by a:hover,
.copyright a:hover{
  color:rgba(255, 255, 255, 0.80);
}
.social-icons {
  margin-top:30px;
}
.social-icons ul{
  list-style:none;
  margin:0;
  padding:0;
}
.social-icons ul li{
  display: inline-block;
  margin-right: 5px;
}
.social-icons ul li a {
  background: var(--background-red);
  color: var(--white-color);
  border-radius: 100%;
  width:38px;
  height:38px;
  display:flex;
  line-height: 35px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.social-icons ul li a svg {
  width: 18px;
  height: 18px;
}
.social-icons ul li a:hover {
  background: var(--background-blue);
}
/*--------------------------------------------------------------
# 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.4);
  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.1;
}
.site-main{
  padding:40px 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:uppercase;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:0;
}
.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(--red-color);
}
.entry-summary{
  position:relative;
}
.entry-media{
  margin-bottom:15px;
}
.entry-meta {
  font-size:13px; 
  line-height: 100%;
  margin-bottom: 15px;
}
.entry-meta a {
  color:var(--blue-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:14.5px;
  border-radius:0;
  text-transform:uppercase;
  color: var(--white-color);
  font-weight: 700;
  transition: all .5s;
  background: var(--background-blue);
  letter-spacing:0;
  margin-top:10px;
}
a.entry-button:hover {
  color:var(--white-color);
  background:var(--background-red);
}
.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:20px;
  border-bottom:0;
  background:var(--background-red);
  padding:35px 25px;
  text-align:center;
  border-radius:0;
}
#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:19px;
  text-transform:uppercase;
  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: 14px;
  text-transform:inherit;
  color: rgba(255, 255, 255, 0.8);
  line-height:1.4;
  font-weight:500;
}
#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  textarea {
  background: #FFF;
  border: 1px solid #6abff2;
  border-radius: 0;
  padding: 22px 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 #333;
}
.contact-form-area .contact-form form.wpcf7-form  span.wpcf7-form-control-wrap {
  margin-bottom: 15px;
  display: block;
}
.contact-form-area .contact-form form.wpcf7-form  textarea {
  height:140px;
}
.contact-form-area .contact-form form.wpcf7-form label{
  text-transform:uppercase;
  font-size:13.5px;
  font-weight: 600;
  letter-spacing:0;
  color:rgba(0, 0, 0, 0.8);
}
.gform_wrapper form.contact-form input[type="submit"] {
  background: var(--background-blue) !important;
  color: var(--white-color) !important;
  padding: 18px 18px !important;
  text-transform: uppercase !important;
  font-size:15px !important;
  font-weight: 600 !important;
  border-radius:0px !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-red) !important;
}
.contact-form-area .contact-form form.wpcf7-form  input::placeholder, 
.contact-form-area .contact-form form.wpcf7-form  textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form-area .contact-form  form.wpcf7-form input::-moz-placeholder, 
.contact-form-area .contact-form form.wpcf7-form  textarea::-moz-placeholder {
  opacity: 1;
}
.contact-form form.wpcf7-form  .wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-transform:initial;
}
.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:uppercase;
  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.1;
  margin-bottom:15px;
  font-size:36px;
  font-weight:800;
  color:var(--blue-color);
  letter-spacing:0px;
  text-transform:uppercase;
}
h3{
  font-size:26px;
  font-weight:800;
  margin-bottom:15px;
  line-height:100%;
  color:var(--red-color);
  text-transform:uppercase;
  letter-spacing: 0.5px;
}
h4{
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
  color:var(--lightblue-color);
}
h5{
  font-size:22px;
  font-weight:600;
  margin-bottom:8px;
  color:var(--black-color);
}
h6{
  font-size:20px;
  font-weight:400;
  margin-bottom:8px;
  color:var(--blue-color);
}
.home .site-main{
  padding: 0;
}
.gform_wrapper h2.gform_title{
  margin-bottom:30px;
  color:var(--red-color);
}
.wp-block-buttons .wp-block-button a.wp-block-button__link:hover,
.wp-block-buttons .wp-block-button a.wp-block-button__link:focus, 
.wp-block-buttons .wp-block-button a.wp-block-button__link:active{
  color:var(--black-color);
}