.text-primary {
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary);
}
.text-white {
  color: #fff;
}

.bg-primary {
  background-color: var(--color-primary);
}
.bg-secondary {
  background-color: var(--color-secondary);
}
.bg-white {
  background-color: #fff;
}

.font-content {
  font-family: var(--font-content);
}
.font-title {
  font-family: var(--font-title);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  margin: 0;
  color: #333;
  font-family: var(--font-content);
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 20px;
}
h5,
.h5 {
  font-size: 18px;
}
h6,
.h6 {
  font-size: 16px;
}
.text-sm {
  font-size: 14px;
}

h2,
.h2,
h3,
.h3 {
  color: var(--color-secondary);
}

p,
ul {
  font-size: 16px;
}

@media (max-width: 767px) {
  body,
  p,
  ul {
    font-size: 14px;
  }

  h1,
  .h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    font-size: 24px;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  h5,
  .h5 {
    font-size: 16px;
  }
  h6,
  .h6 {
    font-size: 14px;
  }
}

p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 30px;
  margin-left: -15px;
  margin-right: -15px;
}

.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}

.justify-center {
  justify-content: center;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-between {
  justify-content: space-between;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding-left: 15px;
  padding-right: 15px;
}
.col-1 {
  width: 100%;
}
.col-2 {
  width: 16.666667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333333%;
}
.col-5 {
  width: 41.666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333333%;
}
.col-8 {
  width: 66.666667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.333333%;
}
.col-11 {
  width: 91.666667%;
}
.col-12 {
  width: 100%;
}
@media (max-width: 767px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11 {
    width: 100%;
  }

  .reverse > :first-child {
    order: 2;
  }
  .reverse > :last-child {
    order: 1;
  }
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-15 {
  margin-top: 15px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pt-0 {
  padding-top: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}

.font-bold {
  font-weight: 700;
}
.font-regular {
  font-weight: 400;
}

.leading-1 {
  line-height: 1;
}
.leading-1\.5 {
  line-height: 1.5;
}
.leading-2 {
  line-height: 2;
}

@media (min-width: 768px) {
  .columns-2 {
    columns: 2;
  }
}

@media (max-width: 767px) {
  .hidden-phone {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .visible-phone {
    display: none !important;
  }
}

/************/

.topbar {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--color-secondary);
  color: #fff;
  text-align: center;
}

.header {
  background-color: var(--color-header);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo,
.header-button {
  padding: 10px 0;
}
@media (max-width: 767px) {
  .header-inner {
    flex-direction: column;
  }
  .header-button {
    display: none;
  }
}

.sd-button {
  display: inline-block;
  padding: 10px 20px;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  border-radius: var(--border-radius);
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.sd-button:hover {
  background-color: #fff;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .sd-button {
    font-size: 20px;
  }
}

.block-separator {
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px;
  height: 1px;
  background-color: #ccc;
}

.section-hero {
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}
.hero-headline {
  font-family: var(--font-title);
  font-size: 65px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 10px;
}
.hero-bio {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .section-hero {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-headline {
    font-size: 28px;
  }
  .hero-bio {
    font-size: 18px;
  }
}

.section-bar {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .section-bar {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  margin-bottom: 20px;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.faq-question {
  background-color: #e9e8e8;
  color: var(--color-secondary);
  padding: 20px 60px 20px 20px;
  margin-bottom: 0;
  font-weight: 700;
  position: relative;
}
.faq-answer {
  width: 100%;
  padding: 20px;
  transition: 0.2s;
  border: 1px solid #e9e8e8;
}

.credit-title {
  font-size: 14px;
}

.subfooter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.subfooter p {
  font-size: 12px;
}
@media (max-width: 767px) {
  .subfooter {
    margin-bottom: 50px;
  }
}

.callnow {
  display: block;
  position: fixed;
  z-index: 1;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.area-list {
  columns: 5;
  padding-left: 20px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .area-list {
    columns: 3;
  }
}
@media (max-width: 767px) {
  .area-list {
    columns: 1;
  }
}

.form-wrap {
  padding: 20px;
  max-width: 555px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.form-field {
  margin-bottom: 20px;
}
.form-field select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  line-height: 25px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 10px 20px;
  font-family: var(--font-content);
  font-size: 16px;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  background-color: #f8f8f8;
  color: #333;
  width: 100%;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #333;
}
.form-field textarea {
  height: 120px;
}

@media (max-width: 767px) {
  .section-service .col-3 {
    width: 33.33%;
  }
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 30px;
}

@media (max-width: 767px) {
  .logo-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .company-logo {
    max-width: calc(50% - 30px);
    padding: 0 10px;
  }
}
