/*!
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:#faf7f7;
  --purple-color:#A77BC8;
  --darkpurple-color:#8F57B9;
  --blue-color:#807BC8;
  --pink-color:#C87BC3;
  --white-color:#FFFFFF;
  --background-black:#000000;
  --background-grey:#faf7f7;
  --background-purple:#A77BC8;
  --background-darkpurple:#8F57B9;
  --background-blue:#807BC8;
  --background-pink:#C87BC3;
  --background-white:#FFFFFF;
  --font-family-gesta: "Bellota", serif;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
  color:var(--purpal-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: "Bellota", 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: "Bellota", serif;
  margin:0;
  font-weight:400;
}

body {
  font-family: "Bellota", serif;
  font-style: normal;
  color:var(--black-color);
  font-size:16.2px;
  line-height:1.7;
  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;
}
strong{
  font-weight:700 !important;
}
/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.site-header{
  padding:12px 0;
}
.site-logo img{
  display:block;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
}
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
.nav-area{
  background:var(--background-blue);
}
nav.main-menu{
  /*  display:none;*/
}
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 12px;
  position:relative;
}
nav.main-menu ul li:first-of-type{
  padding-left:0;
}
nav.main-menu ul li:last-of-type{
  padding-right:0;
}
nav.main-menu ul li a {
  display: block;
  padding:5px 2px;
  color:var(--black-color);
  font-size:21px;
  font-weight:400;
  text-decoration: none;
  position:relative;
  letter-spacing:0;
  text-transform:uppercase;
}
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(--purple-color);
}
nav.main-menu ul ul {
  background:var(--background-purple);
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top:100%;
  width:200px;
  z-index:3;
}
nav.main-menu ul ul li {
  display: block;
  position: relative;
  padding:0;
  float:none;
}
nav.main-menu ul ul li a {
  padding:10px 15px;
  color:var(--white-color);
  font-size:17px;
  text-align: left;
  border-bottom:0;
  font-weight:400;
}
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-pink);
  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-pink);
}
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-purple);
}
nav.main-menu ul li.booknow-btn a,
.banner-button a,
.learnmore-button a,
.booknow-btn a,
.footer-buttons a{
  background:var(--background-purple);
  border-radius:50px;
  color:var(--white-color);
  padding:14px 30px;
  display:inline-block;
}
nav.main-menu ul li.booknow-btn a{
  padding:20px 30px;
  margin-top:0;
}
nav.main-menu ul li.booknow-btn a:hover{
  background:var(--background-blue);
}
.site-header div.booknow-btn{
  display:none;
}
/*--------------------------------------------------------------
   # Home Slider
--------------------------------------------------------------*/
.home-banner{
  background:var(--background-purple);
  position:relative;
  border:s;
}
.home-banner:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(255, 255, 255, 0.30);
  z-index:2;
}
.home-banner-content {
  position: absolute;
  z-index: 2;
  top:0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home-banner .container {
  max-width: 1250px;
  margin: 0 auto;
  width: auto;
  height: 100%;
  padding: 0 15px;
}
.home-banner img,
.home-banner video {
  width: 100%;
  display:block;
  height:100%;
  object-fit:cover;
}
.home-banner-main {
  display: flex;
  flex-direction:row;
  height: 100%;
  justify-content:center;
  align-items:center;
  padding:0;
}
/*.home-banner:after{
  content:'';
  position:absolute;
  bottom:-200PX;
  left:0;
  background:url(assets/images/banner-after.png) no-repeat;
  background-size:100%;
  width:100%;
  height:231px;
}*/
.banner-heading{
  font-size:90px;
  color:var(--white-color);
  font-weight:700;
  text-align:center;
  line-height:100%;
  margin-bottom:35px;
  position:relative;
}
.banner-heading:before,
.banner-heading:after{
  content:'';
  position:relative;
  left:0;
  top:-28px;
  background:var(--background-white);
  width:190px;
  height:2px;
  display:inline-block;
  margin-right:35px;
}
.banner-heading:after{
  left:initial;
  right:0;
  margin-right:0;
  margin-left:35px;
}
.banner-subheading{
  font-size:46px;
  color:var(--white-color);
  font-weight:400;
  text-align:center;
  background:var(--background-darkpurple);
  line-height:100%;
  padding:14.5px 35px;
  display:inline-block;
  margin:0 auto;
}
.banner-content{
  text-align:center;
  font-size:20px;
  color:var(--black-color);
  line-height:1.4;
  font-weight:400;
}
.banner-button a,
.learnmore-button a,
.booknow-btn a,
.footer-buttons a{
  margin-top:35px;
  background:var(--background-white);
  color:var(--black-color);
  font-size:24px;
  padding:20px 48px;
  line-height:100%;
  font-weight:700;
  display:inline-block;
  border:2px solid transparent;
}
.banner-button a:hover{
  border:2px solid var(--white-color);
  color:var(--white-color);
  background:transparent;
}
/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.about-section{
  background:var(--background-white);
  padding:120px 0 40px;
  position:relative;
}
.about-section:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:url(assets/images/about-bg.jpg) no-repeat;
  background-size:cover;
  width:100%;
  height:88%;
}
.about-section .container{
  position:relative;
}
.about-wrap{
  display:flex;
  gap:85px;
}
.about-image,
.about-content{
  width:50%;
}
.about-image img,
.callaction-image img{
  border-radius:30px;
  display:block;
  width:100%;
  height:620px;
  object-fit:cover;
}
.about-title {
  font-size:72px;
  color:var(--black-color);
  font-weight:700;
  line-height:1;
  margin-bottom:50px;
  position:relative;
  z-index:2;
}
.about-title:after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  background: rgba(158, 107, 183, 0.40);
  width: 487px;
  height: 32px;
  z-index: -1;
}
.content-text{
  font-size:24px;
  color:rgba(0, 0, 0, 0.50);
  font-weight:700;
  line-height:1.7;
  letter-spacing:0.25px;
  max-width:480px;
}
.learnmore-button a,
.booknow-btn a,
.footer-buttons a{
  background:var(--background-purple);
  color:var(--white-color);
  border:none;
  padding:20px 40px;
}
.learnmore-button a:hover,
.booknow-btn a:hover,
.footer-buttons a:hover{
  background:var(--background-blue);
}
.services-section{
  padding:0 15px;
}
.services-section .container{
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6d519b+0,9e6bb7+100 */
  background: linear-gradient(to right,  #6d519b 0%,#9e6bb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  padding:50px 0;
  border-radius:30px;
  margin-top:50px;
  position:relative;
  margin-bottom:120px;
}
.services-section .container:after{
  content: '';
  position: absolute;
  bottom: -27px;
  left: 50%;
  background: #e7def1;
  width: 90%;
  height: 27px;
  margin-left: -45%;
  border-radius: 0 0 20px 20px;
}
.services-wrap,
.call-action-banner .container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:150px;
}
.service-title{
  color:#f6f3ee;
  font-size:42px;
  text-transform:uppercase;
  font-weight:700;
  line-height:100%;
  position:relative;
  margin-bottom:20px;
  padding:25px 0;
}
.service-title:after{
  content:'';
  position:absolute;
  right:-5px;
  bottom:0;
  background:#b193d2;
  width:113px;
  height:5px;
}
.service-box a:before{
  content: '';
  position: absolute;
  right: -65px;
  bottom: 6.5px;
  background: url(assets/images/arrow-right.svg) no-repeat;
  width: 58px;
  height: 45px;
  background-size: 58px;
  transition: all 1s;
}
.service-box{
  position:relative;
}
.service-box a{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:5;
  transition: 0.9s ease-in;
}
.service-box:after{
  content:'';
  position:absolute;
  right:-100px;
  top:0;
  background:rgba(246, 243, 238, 0.30);
  width:1px;
  height:100%;
}
.service-box:last-of-type:after{
  display:none;
}
.service-box a:hover:before{
  right:-45px;
  transform: translateX(50%);
}
.service-box:hover .service-title{
  color:rgba(255, 255, 255, 0.85);
}
.call-action-banner{
  background:#e7def1;
  padding:105px 0;
}
.callaction-left{
  width:45%;
  position:relative;
}
.eurospa-white{
  position:absolute;
  right:25px;
  bottom:22px;
}
.callaction-content{
  width:55%;
  margin-top:30px;
}
.ready-title{
  font-size:61px;
  color:var(--white-color);
  font-weight:700;
  line-height:1;
  margin-bottom:50px;
  position:relative;
  z-index:2;
  left:-55px;
  text-shadow:2px 0px 5px rgba(0, 0, 0, 0.40);
}
.call-action-banner .container{
  display:flex;
  align-items:start;
  justify-content:center;
  gap:0;
}
.call-contact-info{
  margin-left:85px;
  margin-top:35px;
}
.address-info{
  font-size:22px;
  color:rgba(0, 0, 0, 0.80);
  font-weight:700;
  max-width:310px;
  line-height:1.4;
  margin-bottom:40px;
  position:relative;
  padding-left:45px;
}
.address-info:before,
.hours h3:before,
.text-book:before{
  content: '';
  position: absolute;
  left:0;
  top: 0;
  background: url(assets/images/address-icon.svg) no-repeat;
  background-size: 40px;
  width: 40px;
  height: 35px;
}
.hours h3:before{
  background: url(assets/images/hours-icon.svg) no-repeat;
  background-size: 31px;
  width: 31px;
  height: 31px;
}
.text-book:before{
  background: url(assets/images/call-icon.svg) no-repeat;
  background-size: 32px;
  width: 32px;
  height: 30px;
}
.hours{
  margin-bottom:20px;
}
.hours h3{
  color:rgba(158, 107, 183, 0.90);
  font-size:24px;
  font-weight:700;
  line-height:100%;
  margin-bottom:25px;
  position:relative;
  padding-left:45px;
}
.hours span{
  font-size:17px;
  color:rgba(0, 0, 0, 0.80);
  font-weight:bold;
  line-height:100%;
  display:block;
  margin-bottom:14px;
  position:relative;
  padding-left:15px;
  margin-left:45px;
}
.hours span:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:#927bb5;
  width:3px;
  height:18px;
}
.hours .info-row{
  display:flex;
  justify-content:space-between;
  margin-left:45px;
}
.hours .info-row span{
  margin-left:0;
}
.hours .info-row .col{
  width:50%;
}
.text-book{
  font-size:22px;
  color:rgba(0, 0, 0, 0.80);
  font-weight:700;
  position:relative;
  padding-left:45px;
}
.text-book a{
  color:rgba(158, 107, 183, 0.80);
  font-size:21px;
  font-weight:bold;
}
.text-book a:hover{
  color:rgba(0, 0, 0, 0.80);
}
.faq-section{
  padding:130px 0 110px;
}
.faq-title{
  color:var(--purple-color);
  font-size:47px;
  font-weight:700;
  text-align:center;
  line-height:100%;
  margin-bottom:0;
}
.faqs-container{
  margin-top:55px;
}
.faqs-list{
  max-width:1105px;
  margin:0 auto;
}
.faq-question{
  background-color: #e7def1;
  padding:32px 30px 32px 65px;
  font-size:24px;
  font-weight: 700;
  opacity: 1;
  color:rgba(0, 0, 0, 0.80);
  position: relative;
  border-radius: 12px;
  letter-spacing: 0;
  box-shadow: 0 3px 0px #9e6bb7;
}
.faq-question:after{
  content: '';
  position: absolute;
  left:30px;
  top: 50%;
  background: url(assets/images/plus-icon.png) no-repeat;
  width:21px;
  height:21px;
  background-size:21px;
  margin-top: -10.5px;
}
.faq-single.active .faq-question:after{
  background: url(assets/images/minus-icon.png) no-repeat;
  width:21px;
  height:21px;
  background-size:21px;
}
.faq-content{
  background:var(--background-grey);
  padding:25px 30px;
  font-size:20px;
  font-weight: 400;
  color: var(--black-color);
  line-height: 1.2;
  letter-spacing: 0;
  border-radius: 0 0 12px 12px;
}
.faq-content p{
  line-height:1.55;
  margin-bottom:0;
}
.faq-single.active .faq-question{
  border-radius:12px 12px 0 0;
  box-shadow:none;
}
.faq-single{
  margin-bottom:12px;
}
.faq-single:last-of-type{
  margin-bottom:0;
}


.testimonials-section{
  background:#edeef2 url(assets/images/testimonials-bg.jpg) center center no-repeat;
  background-size:cover;
  padding:142px 0;
}
.testimonial-title{
  color:var(--purple-color);
  font-size:70px;
  font-weight:700;
  margin-bottom:42px;
  line-height:100%;
}
.testimonial-content{
  font-size:22px;
  color:rgba(0, 0, 0, 0.80);
  font-weight:400;
  line-height:1.7;
  max-width:600px;
}
.testimonial-content p{
  margin:0;
}
.author-name{
  color:var(--black-color);
  font-weight:700;
  font-size:25px;
  line-height:100%;
  margin-top:30px;
}
.call-contact-info .booknow-btn a{
  margin-top:45px;
}
.callaction-image img{
  height:550px;
}
.testimonial-content.testi_slider{
  display:none;
}
.testimonial-content.testi_slider:first-child{
  display:block;
}
.testimonial-content.testi_slider .slick-dots{
  position:relative;
  bottom:-15px;
  list-style: none;
  text-align:left;
  padding: 0;
  margin: 0;
  width: 100%;
  left: 0;
}
.testimonial-content.testi_slider .slick-dots li {
  position: relative;
  display: inline-block;
  height:12px;
  width:12px;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
}
.testimonial-content.testi_slider li button {
  border: 0;
  background:#9e6bb7;
  display: block;
  height:12px;
  width:12px;
  outline: 0;
  line-height: 0;
  font-size: 0;
  color: #000;
  padding: 0;
  cursor: pointer;
  border-radius: 100%;
}
.testimonial-content.testi_slider  .slick-dots li.slick-active button {
  background:#d5c6e1;
}
/*--------------------------------------------------------------
   # Site Footer
--------------------------------------------------------------*/
body.home .footer-top{
  padding-top:50px;
}
.footer-top{
  padding:0 0 50px;
}
.footer-top .container{
  display:flex;
  gap:75px;
  align-items:center;
  justify-content:space-between;
}
.footer-buttons{
  display:flex;
  gap:12px;
  justify-content:center;
}
.footer-content{
  text-align:center;
  width:45%;
}
.footer-logo img{
  width:130px;
  height:127px;
  display:block;
  margin:0 auto;
}
.social-icons ul{
  list-style:none;
  margin:25px 0 0;
  padding:0;
}
.social-icons ul li{
  display:inline-block;
  margin-right:3px;
}
.social-icons ul li a {
  background:#b8b8b8;
  color: var(--white-color);
  border-radius: 100%;
  width:42px;
  height:42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-icons ul li a svg{
  width:18px;
  height:18px;
}
.social-icons ul li a:hover{
  background:var(--background-purple);
}
.ftr-links ul{
  list-style:none;
  margin:35px 0 0;
  padding:0;
}
.ftr-links ul li{
  display:inline-block;
  border-right: 2px solid rgba(0, 0, 0, 0.50);
  line-height: 100%;
  padding:0 15px;
}
.ftr-links ul li:last-of-type{
  padding-right:0;
  border-right:0;
}
.ftr-links ul li a{
  color:rgba(0, 0, 0, 0.50);
  font-size:21px;
  padding:0;
  font-weight:700;
}
.ftr-links ul li a:hover{
  color:var(--purple-color);
}
.footer-buttons a{
  font-size:22px;
}
.map-area iframe{
  width:100%;
  height:420px;
  display:block;
  border-radius:20px;
  border:1px solid #ccc !important;
}
.map-area {
  width:55%;
}
.footer-bottom{
  background:var(--background-purple);
  padding:40px 0;
}
.footer-bottom .container{
  display:flex;
  justify-content: space-between;
}
.copyright,
.created-by{
  font-size:16px;
  color:var(--white-color);
  font-weight:400;
  line-height:100%;
}
.created-by a{
  color:rgba(255, 255, 255, 0.80);
  font-weight:400;
}
.created-by a:hover{
  color:var(--white-color);
}
/*--------------------------------------------------------------
# Inner Content
--------------------------------------------------------------*/
.inner-banner {
  position: relative;
  background:var(--background-purple);
}
.inner-banner:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  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: 700;
  text-transform:uppercase;
  margin-bottom: 0;
}
.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:15.5px;
  font-weight:400;
  line-height:1.7;
}
/*=========================================== 
   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:700;
  margin-bottom:10px;
  letter-spacing:0;
}
.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(--blue-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(--blue-color);
  font-weight:700;
}
.entry-meta a:hover{
  color:var(--pink-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 22px;
  display: inline-block;
  line-height: 100%;
  font-size:16px;
  border-radius:50px;
  text-transform:uppercase;
  color: var(--white-color);
  font-weight: 700;
  transition: all .5s;
  background: var(--background-purple);
  letter-spacing:0;
}
a.entry-button:hover {
  color:var(--white-color);
  background:var(--background-pink);
}
.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-purple);
  padding:25px;
  text-align:center;
  border-radius:15px;
  box-shadow: 0 8px 0 #7f36a3;
}
#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:21px;
  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:15.5px;
  text-transform:inherit;
  color: rgba(255, 255, 255, 0.8);
  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;
}
.contact-form-area .contact-form form.wpcf7-form input[type="text"], 
.contact-form-area .contact-form form.wpcf7-form input[type="email"], 
.contact-form-area .contact-form  form.wpcf7-form input[type="tel"], 
.contact-form-area .contact-form form.wpcf7-form  textarea {
  background: #FFF;
  border: 1px solid #dfdcdc;
  border-radius: 0;
  padding:15px 15px;
  font-size: 15px;
  font-weight: 400;
  color: var(--black-color);
  width: 97.5%;
}
.contact-form-area .contact-form form.wpcf7-form input[type="text"]:focus, 
.contact-form-area .contact-form form.wpcf7-form input[type="email"]:focus, 
.contact-form-area .contact-form  form.wpcf7-form input[type="tel"]:focus, 
.contact-form-area .contact-form form.wpcf7-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);
}
.contact-form-area .contact-form  form.wpcf7-form input[type="submit"] {
  background: var(--background-purpal);
  color: var(--white-color);
  padding:17px 25px;
  text-transform:uppercase;
  font-size: 16px;
  font-weight: 700;
  border-radius:50pxpx;
  border:0;
  letter-spacing: 1px;
  line-height:100%;
  width:auto;
  cursor: pointer;
  -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;
}
.contact-form-area .contact-form form.wpcf7-form  input[type="submit"]:hover {
  background: var(--background-pink);
}
.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: 400;
  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:700;
  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.logged-in .site-header{
  top:0;
}
.contact-form-area .map-area iframe{
  margin-top:30px;
  width:100%;
}
h2{
  line-height:1.1;
  margin-bottom:15px;
  font-size:30px;
  font-weight:700;
  color:var(--purple-color);
}
h3{
  font-size:26px;
  font-weight:700;
  margin-bottom:15px;
  line-height:100%;
  color:var(--blue-color);
}
h4{
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
}
h5{
  font-size:22px;
  font-weight:400;
  margin-bottom:8px;
}
h6{
  font-size:20px;
  font-weight:400;
  margin-bottom:8px;
}
.home .site-main{
  padding: 0;
}
.page-id-10 .site-main .wp-block-columns {
  margin-bottom:0px;
}