:root {
  --primary-color: #26262b;
  --secondary-color: #757575;
  --brand-color: #ddbc85;
  --gradient-color: linear-gradient(90deg, #c0954b 0%, #e7bd74 100%);
  --shadow: 0 2px 6px rgb(0 0 0 / .04), 0 8px 20px rgb(0 0 0 / .06);
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.625;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  color: var(--primary-color);
  background: #fff;
}
span.d-block.color-secondary {
    text-align: left;
    color: #000;
}
p.d-block-content {
    text-align: left !important;
    font-weight: normal !important;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
h1, h2, h3 {
  line-height: 1.25;
  font-weight: 400;
  color: inherit;
}
a {
  text-decoration: none;
  transition: color .35s;
  color: inherit
}
p + p {
  margin-top: 16px;
}
.container {
  max-width: 1348px;
  width: 100%;
  margin: auto;
}
.container-fluid {
  padding: 0 24px;
}
.color-primary {
  color: var(--primary-color);
}
.color-secondary {
  color: var(--secondary-color);
}
.color-brand {
  color: var(--brand-color);
}
.color-white {
  color: #fff;
}
.bg-gradient {
  background: var(--gradient-color)
}
.btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
}
.btn:hover {
	color: inherit;
}
.btn-primary {
  background: var(--gradient-color);
  color: #fff;
}
.btn-primary:hover {
	color: #fff;
}
.btn-secondary {
  background: #fff;
  color: var(--primary-color);
}
.btn-secondary:hover {
	color: var(--primary-color);
}
.btn-lg {
  padding-inline: 44px;
  line-height: 52px;
}
.btn-xs {
  padding-inline: 28px;
  line-height: 40px;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.d-grid {
  display: grid;
}
.d-block {
  display: block;
}
.row {
  margin: 0 calc(-1 * var(--gutter-xs));
	max-width: initial;
}
.col {
  flex: 1 0 auto;
  padding: 0 var(--gutter-xs);
  width: calc(100% / var(--width-xs));
  max-width: calc(100% / var(--width-xs));
}
.between {
  justify-content: space-between;
}
.center {
  justify-content: center;
}
.top {
  align-items: flex-start;
}
.middle {
  align-items: center;
}
.wrap {
  flex-wrap: wrap;
}
.text-center {
  text-align: center;
}
.text-up {
  text-transform: uppercase;
}
.font-12 {
  font-size: 12px;
}
.font-16 {
  font-size: 16px;
}
.font-18 {
  font-size: 18px;
}
.gap-4 {
  grid-gap: 4px;
}
.gap-8 {
  grid-gap: 8px;
}
.gap-12 {
  grid-gap: 12px;
}
.gap-16 {
  grid-gap: 16px;
}
.mb-4 {
  margin-bottom: 4px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-24 {
  margin-bottom: 24px;
}
.pt-48 {
  padding-top: 48px;
}
.pb-48 {
  padding-bottom: 48px;
}
.pb-64 {
  padding-bottom: 64px;
}
.pb-108 {
  padding-bottom: 108px;
}
.title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 32px;
  height: auto;
  background: transparent;
}
.title h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
}
.title:before,
.title:after {
  content: "";
  position: absolute;
  width: 80px;
  left: calc(50% - 40px);
  background: var(--brand-color);
}
.title:before {
  height: 1px;
  bottom: 3px;
}
.title:after {
  height: 2px;
  bottom: 0;
}
.scrollable {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-stop: always;
  overflow-x: auto;
  padding-bottom: 32px;
}
.scrollable-left {
  scroll-padding-left: 36px;
  padding-left: 24px;
  margin-right: 0;
}
.scrollable::-webkit-scrollbar {
  background: 0 0;
  width: 0;
  height: 0
}
.scrollable > div {
  scroll-snap-align: start;
}
header {
  padding: 12px;
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, .2);
}
.hero {
  background: url("img/hero.jpg") no-repeat left top / cover;
  padding: 120px 0;
}
.hero-inner > * {
  margin-bottom: 16px;
}
.hero .btn {
  width: 100%;
  max-width: 360px;
  margin: auto;
}
.hero-title {
  font-size: 32px;
  font-weight: 400;
}
.hero-tel {
  font-size: 32px;
}
.intro {
  padding: 8px;
  margin-top: -76px;
}
.intro-content {
  padding: 20px 10px;
  border: 1px solid #fff;
}
.card {
  box-shadow: var(--shadow);
  height: 100%;
}
.card-img img {
  width: 100%;
}
.card-meta {
  padding: 12px;
}
.card-meta h3 {
  font-weight: 600;
}
.card-meta .d-block {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 2px;
}
.reason {
  background: var(--primary-color);
  color: #fff;
}
.filter {
  box-shadow: var(--shadow);
  padding-inline: 8px;
  background: #fff;
  margin-top: -48px;
}
.filter-button button {
  background: #fff;
  border: 0;
  line-height: 32px;
  padding-inline: 16px;
  width: 100%;
}
.filter-button button:not(.is-checked) {
  border: 1px solid #ececec;
  cursor: pointer;
  margin-top: -1px;
}
.filter-button .is-checked {
  background: var(--gradient-color);
  color: #fff;
}
.filter-item {
  margin-bottom: 20px;
}
.filter-meta {
  position: absolute;
  bottom: 0;
  width: calc(100% - 20px);
  background: rgba(0, 0, 0, .65);
  color: #fff;
  padding: 8px 16px
}
.filter-btn {
  line-height: 32px;
  padding-inline: 16px
}
.testimonial {
  padding: 32px;
  border: 1px solid #ececec;
  height: 100%;
}
.avatar {
  border-radius: 50%;
}
.dots {
  grid-gap: 16px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--brand-color);
  cursor: pointer;
}
.dot-active {
  background: var(--gradient-color);
}
.advice .btn {
  width: 100%;
  max-width: 360px;
  margin: 20px auto 0;
}
.timeline {
  position: relative;
  max-width: 554px;
  margin: auto;
}
.timeline:before {
  content: "";
  background: linear-gradient(180deg, #ddd 0%, rgba(221, 221, 221, 0.05) 100%);
  width: 2px;
  height: calc(100% - 86px);
  position: absolute;
  top: 34px;
  left: 9px;
}
.step {
  padding: 10px;
  border-radius: 50px;
  border: 1px solid #ececec;
  margin-top: 20px;
  position: relative;
  margin-left: 38px;
}
.step:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: -38px;
  top: calc(50% - 9px);
}
.step:before {
  width: 6px;
  height: 6px;
  background: #f8f8f8;
  border: 6px solid var(--secondary-color)
}
.step:hover .step-icon {
  background: var(--primary-color);
}
.step:hover:before {
  border-color: var(--primary-color)
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-color);
  border-radius: 50%;
  transition: background .35s;
}
.step-content {
  flex: 1;
}
.step-x {
  font-weight: 600;
}
.register {
  background: var(--primary-color);
}
.wpcf7-form-control {
  padding-inline: 16px;
  height: 44px;
  border-radius: 2px;
  background: #fff;
  border: 0;
  margin-bottom: 20px;
  width: 100%;
}
.wpcf7-textarea {
  height: auto;
  padding-block: 12px;
}
.wpcf7-submit {
  background: var(--gradient-color);
  border-radius: 50px;
  cursor: pointer;
}
.accordion-item {
  margin-top: 16px;
}
.accordion-header {
  padding: 12px 32px;
  cursor: pointer;
  background: #37373c;
  position: relative;
}
.accordion-header.active {
  background: var(--gradient-color);
}
.accordion-header::before,
.accordion-header::after {
  content: "";
  position: absolute;
  width: 14px;
  border-radius: 2px;
  background: #fff;
}
.accordion-header::before {
  width: 14px;
  height: 2px;
  right: 18px;
}
.accordion-header:after {
  height: 14px;
  width: 2px;
  right: 24px;
}
.accordion-header.active:after {
  opacity: 0;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  background: #37373c;
}
.accordion-content > div {
  padding: 24px 32px;
}
footer {
  background: #202025;
  padding: 24px;
  color: #fff;
}
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.is-popup-show .popup {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  background: var(--primary-color);
  padding: 24px;
  max-width: 600px;
  position: relative;
  transform: translateY(-20%);
  opacity: 0;
  transition: transform .35s, opacity .3s;
  transition-delay: .12s;
  border-radius: 5px;
}
.is-popup-show .popup-inner {
  opacity: 1;
  transform: translateY(0);
}
.popup-close {
  background: transparent;
  border: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
}
.mobile-sidebar,
#popup2,
#popup-menu,
#wpadminbar,
#login-form-popup {
	display: none;
}
@media (min-width: 601px) {
  .col {
    width: calc(100% / var(--width-sm));
    max-width: calc(100% / var(--width-sm));
  }
  .disabled-scroll-sm {
    flex-wrap: wrap;
    padding: 0 14px 32px;
    margin: 0;
  }
  .d-none-sm {
    display: none;
  }
  .mt-sm-20 {
    margin-top: 20px;
  }
  .title {
    margin-inline: 10%;
  }
  .filter-button {
    grid-gap: 12px;
  }
  .filter-button button {
    width: fit-content;
  }
  .btn-sm-md {
    line-height: 48px;
  }
  footer {
    padding: 32px;
  }
}
@media (min-width: 769px) {
  .row {
    margin: 0 calc(-1 * var(--gutter-md))
  }
  .col {
    padding: 0 var(--gutter-md);
    width: calc(100% / var(--width-md));
    max-width: calc(100% / var(--width-md));
  }
  .gap-md-12 {
    grid-gap: 12px;
  }
  .mb-md-12 {
    margin-bottom: 12px;
  }
  .mb-md-32 {
    margin-bottom: 32px;
  }
  .mt-md-32 {
    margin-top: 32px;
  }
  .pt-md-48 {
    padding-top: 48px;
  }
  .pt-md-96 {
    padding-top: 96px;
  }
  .pb-md-96 {
    padding-bottom: 96px;
  }
  .pb-md-156 {
    padding-bottom: 156px;
  }
  .d-none-md {
    display: none;
  }
  .left-md {
    justify-content: flex-start;
  }
  .between-md {
    justify-content: space-between;
  }
  .title {
    margin-inline: 10%;
  }
  .title h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .title p {
    font-size: 18px;
  }
  header .container {
    padding-inline: 24px
  }
  .hero {
    text-align: left;
    display: flex;
    align-items: center;
    min-height: 100vh;
  }
  .hero-inner {
    max-width: 50%;
  }
  .hero-title {
    font-size: 52px;
  }
  .hero-content {
    font-size: 24px;
  }
  .hero-inner > * {
    margin-bottom: 24px;
  }
  .hero .btn {
    width: fit-content;
    margin: 0;
  }
  .intro-content {
    padding: 32px 15%;
  }
  .disabled-scroll-sm {
    padding: 0 24px 32px;
  }
  .card-meta {
    padding-block: 20px;
  }
  .reason h2 {
    margin-inline: 10%;
  }
  .filter {
    margin-top: -100px;
    padding-inline: 32px;
  }
  .filter-item {
    overflow: hidden;
    margin-bottom: 32px;
  }
  .filter-meta {
    width: calc(100% - 32px);
    padding: 16px;
    transition: transform .35s;
    transform: translate3d(0, 100%, 0)
  }
  .filter-item:hover .filter-meta {
    transform: translate3d(0, 0, 0)
  }
  .advice .font-16 {
    font-size: 20px;
  }
  .advice .btn {
    width: auto;
    margin: 0;
  }
  footer {
    padding-block: 48px;
  }
}