/*
Theme Name: Myles Home Health Agency
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.6
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/
/*

TABLE OF CONTENTS

1. Custom CSS
2. IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css
  
*/
@font-face {
  font-family: 'Century Gothic';
  src: url("./fonts/century-gothic/CenturyGothic.woff2") format("woff2"), url("./fonts/century-gothic/CenturyGothic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Century Gothic';
  src: url("./fonts/century-gothic/CenturyGothic-Bold.woff2") format("woff2"), url("./fonts/century-gothic/CenturyGothic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
:root {
  --primary-font: 'Roboto', sans-serif;
  --secondary-font: 'Century Gothic', sans-serif;
}

/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/
/* Menu and Sub Menus*/
.header-nav {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
  text-align: right;
}

.header-nav > li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 35px;
}
.header-nav > li:first-child {
  margin-left: 0;
}

.header-nav > li > a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .025em;
  color: #e6e6e6;
  padding: 5px 0;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.header-nav > li > a::before {
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #cbab58;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.header-nav > li:hover > a {
  color: #cbab58;
}
.header-nav > li:hover > a::before {
  left: 0;
  right: 0;
}

/* 2nd Layer Menu */
.header-nav > li:hover > .sub-menu {
  display: block;
  visibility: visible;
  /* shows sub-menu */
  opacity: 1;
  z-index: 5;
  -webkit-transition-delay: 0s, 0s, 0.4s;
  transition-delay: 0s, 0s, 0.4s;
  -webkit-animation: menu-transition 1.5s ease-in-out;
  animation: menu-transition 1.5s ease-in-out;
}

.header-nav .sub-menu {
  list-style: none outside none;
  margin: 0;
  display: none;
  opacity: 0;
  padding-top: 45px;
  position: absolute;
  min-width: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  visibility: hidden;
  overflow: hidden;
}

.toggle-fixed-header .header-nav .sub-menu {
  padding-top: 36px;
}

.header-nav .sub-menu > li {
  position: relative;
  padding-top: 1px;
}

.header-nav .sub-menu > li > a {
  display: block;
  padding: 10px;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .025em;
  color: #e6e6e6;
  background: #1a1a1a;
}

.header-nav .sub-menu > li > a:hover {
  background: #333333;
  text-decoration: none;
  color: #cbab58;
}

/* 3rd Layer Menu */
.header-nav .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
  padding-top: 0;
}

@-webkit-keyframes menu-transition {
  from {
    max-height: 0;
  }
  to {
    max-height: 1000px;
  }
}
@keyframes menu-transition {
  from {
    max-height: 0;
  }
  to {
    max-height: 1000px;
  }
}
@-webkit-keyframes autofill {
  to {
    color: #fff;
    background: transparent;
  }
}
/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/
/* Global */
body {
  font-family: 'Roboto', Arial, Helvetica, Georgia, Sans-serif;
  font-size: 16px;
  background: #FFF;
  color: #000000;
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

div#main-wrapper {
  overflow: hidden;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

.slick-slider,
.slick-slider *,
.slick-slider a,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

@-moz-document url-prefix() {
  select {
    text-indent: -2px;
  }
}
@supports (-ms-ime-align: auto) {
  select {
    text-indent: -2px;
  }
}
.sxn {
  position: relative;
  display: block;
  height: auto;
  width: 100%;
  font-size: 0;
}

.sxn-container {
  width: 100%;
  padding: 0 3.1%;
}

.sxn-heading {
  font-size: 25px;
  letter-spacing: .4em;
  color: #1a1a1a;
  text-transform: uppercase;
}
.sxn-heading strong {
  display: block;
  font-size: 60px;
  letter-spacing: .1em;
  color: #cbab58;
  line-height: 1.2;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Header  */
#main-header {
  position: absolute;
  padding: 10px 0;
  z-index: 1010;
  background: #1a1a1a;
}
#main-header.toggle-fixed-header {
  position: fixed;
  padding: 20px 0;
  background: rgba(26, 26, 26, 0.9);
}

.toggle-fixed-header .header-logo img {
  display: none;
}
.toggle-fixed-header .header-logo--text {
  padding-left: 0;
}
.toggle-fixed-header .sxn-container {
  padding: 0 6.2%;
}
.toggle-fixed-header .header-left {
  width: 38%;
}
.toggle-fixed-header .header-right {
  width: 72%;
}

.header-logo img {
  display: inline-block;
  vertical-align: middle;
}

.header-logo--text {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-family: var(--secondary-font);
  font-size: 32px;
  letter-spacing: -.025em;
  color: #fff;
  padding-left: 15px;
}

.header-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px;
}

.header-col {
  padding: 0 15px;
}

.header-left {
  width: 30%;
}

.header-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-right {
  width: 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-contact {
  margin-left: 75px;
}

.smi-list--header {
  display: inline-block;
  vertical-align: middle;
  margin-left: 35px;
}
.smi-list--header li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.smi-list--header li:first-child {
  margin-left: 0;
}
.smi-list--header li a {
  display: block;
  font-size: 22px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.smi-list--header li a:hover {
  background: #cbab58;
}

.contact-list--header {
  display: inline-block;
  vertical-align: middle;
}
.contact-list--header li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 35px;
}
.contact-list--header li:first-child {
  margin-left: 0;
}
.contact-list--header li a, .contact-list--header li span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: .025em;
  line-height: 1.2;
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
  padding: 5px 0;
}
.contact-list--header li a:hover .wrap::before, .contact-list--header li span:hover .wrap::before {
  left: 0;
  right: 0;
}
.contact-list--header li a:hover em, .contact-list--header li span:hover em {
  color: #cbab58;
}
.contact-list--header li span.wrap {
  position: relative;
}
.contact-list--header li span.wrap::before {
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #cbab58;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.contact-list--header li.email a, .contact-list--header li.email span {
  font-size: 0;
}
.contact-list--header li.email em[class^="ai-font-"] {
  margin: 0;
}
.contact-list--header li.email em[class^="ai-font-"]:hover {
  color: #cbab58;
}
.contact-list--header em[class^="ai-font-"] {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.contact-list--header em[class^="ai-font-phone"] {
  font-size: 17px;
}

/* Call To Action */
.cta-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% / 3);
  background: #c1a050;
  min-height: 150px;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.cta-item:nth-child(2) {
  background: #cbab58;
}
.cta-item:hover {
  background: #333333;
}
.cta-item:hover .cta-title {
  color: #cbab58;
}
.cta-item:hover .cta-1::before {
  background-position: 0px 0px;
}
.cta-item:hover .cta-2::before {
  background-position: 0px 0px;
}
.cta-item:hover .cta-3::before {
  background-position: 0px 0px;
}

.cta-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.cta-title {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .025em;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.cta-title::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  -webkit-transition: all .2s linear;
          transition: all .2s linear;
}
.cta-title.cta-1::before {
  width: 56px;
  height: 54px;
  background: url(images/ic-sprite-services.png) no-repeat;
  background-position: -0px -54px;
}
.cta-title.cta-2::before {
  width: 58px;
  height: 48px;
  background: url(images/ic-sprite-care.png) no-repeat;
  background-position: -0px -48px;
}
.cta-title.cta-3::before {
  width: 54px;
  height: 54px;
  background: url(images/ic-sprite-careers.png) no-repeat;
  background-position: -0px -54px;
}

/* About */
.section-2 {
  background: #1a1a1a;
}

#about-sxn {
  padding: 105px 0;
}

.about-company {
  text-align: center;
}
.about-company h2 {
  font-size: 30px;
  color: #cbab58;
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-top: 55px;
}
.about-company p {
  font-weight: 300;
  letter-spacing: .01em;
  color: #fff;
  line-height: 1.9;
  font-size: 20px;
  margin-top: 30px;
}

.about-company-name {
  font: 700 32px/1.2 var(--secondary-font);
  letter-spacing: -.025em;
  color: #fff;
}

/* Contact Info */
.section-3 {
  background: #e0e0e0;
}

#contact-sxn {
  padding: 40px 0;
}

.contact-list--hp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-list--hp li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 95px;
  border-left: 1px solid #999999;
}
.contact-list--hp li:first-child {
  padding-left: 0;
  border-left: 0;
}
.contact-list--hp li:last-child {
  padding-right: 0;
}
.contact-list--hp li:nth-child(2) {
  padding: 0 85px;
}
.contact-list--hp li a, .contact-list--hp li span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-weight: 300;
  font-size: 20px;
  color: #666666;
  letter-spacing: .01em;
  line-height: 1.2;
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
  cursor: pointer;
}
.contact-list--hp li a:hover .wrap::before, .contact-list--hp li span:hover .wrap::before {
  left: 0;
  right: 0;
}
.contact-list--hp li a:hover em, .contact-list--hp li span:hover em {
  color: #cbab58;
}
.contact-list--hp li span.wrap {
  position: relative;
}
.contact-list--hp li span.wrap::before {
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #cbab58;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.contact-list--hp em[class^="ai-font-"] {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 13px;
  color: #666666;
  margin-right: 20px;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.contact-list--hp em[class^="ai-font-phone"] {
  font-size: 20px;
}
.contact-list--hp em[class^="ai-font-location"] {
  font-size: 26px;
}

/* Testimonials */
.section-4 {
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(images/bg-waves.png) no-repeat center center;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(images/bg-waves.png) no-repeat center center;
  background-size: cover;
}

#testi-sxn {
  padding: 120px 0 140px;
}

.testi-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.testi-row::before {
  display: none;
}

.testi-textview {
  margin-left: -40px;
}

.testi-slick {
  margin-left: -15px;
}

.testi-item {
  position: relative;
  padding-left: 55px;
  padding-top: 5px;
}
.testi-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 34px;
  background: url(images/ic-quote.png) no-repeat center center;
  background-size: 100% 100%;
}
.testi-item p {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .01em;
  color: #666666;
  line-height: 1.9;
}

.testi-author {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2em;
  color: #666666;
  text-transform: uppercase;
  margin-top: 52px;
}

/* Footer */
.footer-top {
  background: url(images/bg-footer.png) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}

.footer-top-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.footer-top-row::before {
  display: none;
}

.footer-right {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-contact-info {
  display: inline-block;
}

.footer-company-name {
  font: 700 32px/1.2 var(--secondary-font);
  letter-spacing: -.025em;
  color: #cbab58;
  margin-left: -45px;
  padding-top: 15px;
}

.contact-list--footer {
  display: inline-block;
  margin-top: 37px;
}
.contact-list--footer li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 17px;
}
.contact-list--footer li:first-child {
  margin-top: 0;
}
.contact-list--footer li a, .contact-list--footer li span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 300;
  font-size: 17px;
  color: #e6e6e6;
  letter-spacing: .01em;
  line-height: 1.2;
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
}
.contact-list--footer li a:hover .wrap::before, .contact-list--footer li span:hover .wrap::before {
  left: 0;
  right: 0;
}
.contact-list--footer li a:hover em, .contact-list--footer li span:hover em {
  color: #cbab58;
}
.contact-list--footer li span.wrap {
  position: relative;
}
.contact-list--footer li span.wrap::before {
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #cbab58;
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.contact-list--footer em[class^="ai-font-"] {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  color: #fff;
  margin-right: 10px;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.contact-list--footer em[class^="ai-font-phone"] {
  font-size: 17px;
}
.contact-list--footer em[class^="ai-font-location"] {
  font-size: 24px;
}

.smi-list--footer {
  display: block;
  text-align: center;
  margin-top: 25px;
}
.smi-list--footer li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.smi-list--footer li:first-child {
  margin-left: 0;
}
.smi-list--footer li a {
  display: block;
  font-size: 22px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.smi-list--footer li a:hover {
  background: #cbab58;
}

.footer-git {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.footer-git .sxn-heading {
  color: #fff;
}

.footer-bot {
  background: #1a1a1a;
  padding: 45px 0;
}

.footer-nav li {
  display: inline-block;
  margin-right: 20px;
}
.footer-nav li:last-child {
  margin-right: 0;
}
.footer-nav li a {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .01em;
  color: #b2b2b2;
  line-height: 1.2;
}
.footer-nav li a:hover {
  color: #cbab58;
}

.footer-copyright {
  text-align: right;
}
.footer-copyright .copyright {
  font-weight: 300;
  font-size: 14px;
  color: #999999;
  letter-spacing: .01em;
  line-height: 1.2;
}
.footer-copyright .copyright .sitename {
  color: #999999;
}
.footer-copyright .copyright a:hover {
  color: #cbab58;
}

.footer-git-form {
  margin-top: 30px;
}
.footer-git-form div.wpcf7 {
  position: relative;
}
.footer-git-form div.wpcf7-response-output {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

.form-view {
  position: relative;
}
.form-view.custom-gutters {
  margin-right: -10px;
  margin-left: -10px;
}
.form-view.custom-gutters > .col,
.form-view.custom-gutters > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.form-view .field-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.form-view input[type*="text"],
.form-view input[type*="tel"],
.form-view input[type*="email"] {
  position: relative;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  border: none;
  padding: 0;
  border-bottom: 1px solid #cbab58;
  font-weight: 300;
  font-size: 17px;
  color: #b2b2b2;
  letter-spacing: .01em;
  border-radius: 0;
  line-height: 50px;
  background: transparent;
  outline: none;
  margin-bottom: 10px;
}
.form-view textarea {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 90px;
  border: none;
  padding: 20px 55px 0 0;
  border-bottom: 1px solid #cbab58;
  border-radius: 0;
  background: transparent;
  outline: none;
  resize: none;
  overflow: hidden;
  font-weight: 300;
  font-size: 17px;
  color: #b2b2b2;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.form-view input[type*="submit"] {
  position: absolute;
  right: 15px;
  bottom: 20px;
  width: 37px;
  height: 35px;
  font-size: 0;
  outline: none;
  border: none;
  background: url(images/ic-airplane.png) no-repeat center center;
  background-size: 100% 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}
.form-view input[type*="submit"]:hover {
  opacity: .8;
}
.form-view .wpcf7-form-control-wrap {
  display: block;
}
.form-view span.wpcf7-not-valid-tip {
  font-size: 11px;
}
.form-view .ajax-loader {
  position: absolute;
  margin: 0 !important;
  top: calc(100% + 5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-banner {
  position: relative;
  width: 100%;
}

.ip-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}

.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 350px;
  background-color: #f9f7f7;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ip-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.ip-banner h1 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Adjust minimum height of page area */
#content-sidebar, #content-full {
  min-height: 500px;
  margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
  width: 77.08%;
}

#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
  width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
  margin-left: -15px;
  margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu {
  line-height: 1.7;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title-wrap {
  display: block;
  text-align: center;
  overflow: hidden;
}

#content .entry-title,
#content .archive-title {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-family: var(--secondary-font);
  font-size: 35px;
  letter-spacing: .1em;
  color: #cbab58;
  text-transform: uppercase;
}
#content .entry-title::before,
#content .archive-title::before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(100% + 15px);
  height: 1px;
  width: 100vw;
  background: #999999;
}
#content .entry-title::after,
#content .archive-title::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  height: 1px;
  width: 100vw;
  background: #999999;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .entry {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .01em;
  color: #666666;
}

.ai-default-cf7wrap input[type="submit"],
.ai-default-cf7wrap input.wpcf7-submit {
  background: #1a1a1a !important;
}

.ai-contact-wrap input.wpcf7-submit:hover,
.ai-default-cf7wrap input.wpcf7-submit:hover,
.error-forms input.wpcf7-submit:hover {
  background: #cbab58 !important;
}

/* Sidebar Goes Here */
.sidebar-item {
  padding: 15px 0;
  text-align: center;
  font-size: 0;
  letter-spacing: 0;
}

/* Sidebar Ends Here */
/******************************
  **** Additional CSS Here ******
  *******************************/
div.wpcf7-response-output {
  text-align: center;
}

/* IP Global Styles */
.ip-global-title{
  font: 700 30px/1.2 var(--secondary-font);
  letter-spacing: -.025em;
  color: #666666;
}
.ip-global-form-wrap{
  text-align: center;
}
.ip-global-form-wrap div.wpcf7{
  max-width: 355px;
  margin: 0 auto;
}
.ip-global-form-wrap span.wpcf7-not-valid-tip{
  font-size: 10px;
  width: auto;
  line-height: 12px;
}
/* End IP Global Styles */

/* Contact us */
.page-id-13 .aidefcf-wrapper {
  text-align: center;
}
.page-id-13 [class*=aidefcf-wrapper-contact-us] .wpcf7 {
  max-width: 355px;
  margin: 0 auto;
}

/* Consent Form */
.ai-consent-wrap-inner,
.consent-form-wrap div.wpcf7-response-output{
  max-width: 550px;
}
.ai-consent-wrap label {
  line-height: 1;
}
.ai-consent-wrap .wpcf7-form-control-wrap {
  margin-bottom: 10px;
  display: block;
}
.consent-form-wrap div.wpcf7-response-output {
  font-size: 12px;
  margin: 0;
}
.ai-consent-wrap span.wpcf7-not-valid-tip {
  font-size: 11px;
}
.ai-consent-wrap input[type^="date"]{
  width: 100%;
  border: 1px solid #969696;
  margin: 5px 0;
  height: 28px;
  padding: 5px 9px!important;
  font-family: Verdana;
  font-size: 11px;
  line-height: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
/* End Consent Form */

.grecaptcha-badge{
  z-index: 1010;
}

footer#main-footer .wpcf7-spinner{
  position: absolute;
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
