* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

input, textarea {
  color: #888;
}
input::placeholder, textarea::placeholder {
  font-size: 1rem;
  color: #888;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
}

body {
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #000;
  position: relative;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

main {
  overflow: hidden;
}

.header {
  position: relative;
  z-index: 100;
}
.header__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.header__inner--nav, .header__inner--actions {
  width: 37.5%;
}
.header__inner--nav {
  padding-left: 24px;
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding-top: 12px;
  width: calc(75% - 200px);
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .header__inner--nav {
    display: flex;
  }
}
.header__inner--nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header__inner--nav ul li {
  margin-right: 24px;
  position: relative;
  z-index: 10;
}
.header__inner--nav ul li a {
  color: #333333;
}
.header__inner--nav ul li.current_page_item a {
  color: #4B202A;
  text-decoration: underline;
}
.header__inner--nav ul li:hover .sub-menu, .header__inner--nav ul li:focus .sub-menu {
  display: block;
}
.header__inner--nav ul li .sub-menu {
  background-color: #FFF;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  padding: 0 12px 12px 12px;
  flex-wrap: wrap;
  display: none;
}
.header__inner--nav ul li .sub-menu li {
  margin: 12px 0 0 0;
  width: 100%;
}
.header__inner--actions {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  width: 200px;
  display: none;
}
@media (min-width: 768px) {
  .header__inner--actions {
    display: flex;
  }
}
.header__inner--actions a {
  height: 100%;
  padding: 12px 24px;
  display: flex;
  max-width: 200px;
  align-items: center;
  justify-content: center;
  background-color: #CEBFC2;
  color: #333333;
}
.header__inner--actions a:hover, .header__inner--actions a:focus {
  background-color: #4B202A;
  color: #FFF;
}
.header__inner--logo {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  width: 60%;
}
@media (min-width: 768px) {
  .header__inner--logo {
    width: 25%;
    padding-left: 24px;
  }
}
.header__inner--logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.header__inner--mobile {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .header__inner--mobile {
    display: none;
  }
}
.header__inner--mobile .phone {
  margin-right: 12px;
}
.header__inner--mobile svg {
  height: 24px;
  width: auto;
  vertical-align: middle;
}
.header__inner--mobile svg path {
  fill: #333;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 400px;
  width: 100%;
  background-color: #FFF;
  height: 100%;
  z-index: 10000000;
  overflow: scroll;
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  transition: 0.5s;
  transform: translateX(-400px);
}
.mobile-menu.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #ddd;
}
.mobile-menu__top svg {
  vertical-align: middle;
}
.mobile-menu__top .left svg {
  width: 200px;
  height: auto;
}
.mobile-menu__top .right svg {
  width: 24px;
  height: auto;
  fill: #333;
}
.mobile-menu__items {
  border-bottom: 1px solid #ddd;
  padding: 0 24px 24px 24px;
}
.mobile-menu__items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu__items ul li {
  margin-top: 24px;
}
.mobile-menu__items ul li a {
  color: #333;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.mobile-menu__items ul li.menu-item-has-children > a {
  display: none;
}
@media (min-width: 768px) {
  .mobile-menu__items ul li.menu-item-has-children > a {
    display: block;
  }
}
.mobile-menu__items ul li.current-menu-item a {
  color: #000;
}
.mobile-menu__actions {
  border-bottom: 1px solid #ddd;
  padding: 24px;
}
.mobile-menu__actions .actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mobile-menu__actions .actions__item {
  margin-right: 12px;
}
.mobile-menu__actions .actions__item:last-child {
  margin-right: 0;
}
.mobile-menu__actions .actions__item a {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #000;
  align-items: center;
  justify-content: center;
}
.mobile-menu__actions .actions__item a:hover, .mobile-menu__actions .actions__item a:focus {
  background: #000;
}
.mobile-menu__actions .actions__item a:hover svg path, .mobile-menu__actions .actions__item a:focus svg path {
  fill: #FFF;
}
.mobile-menu__actions .actions__item a svg path {
  fill: #000;
}

.footer {
  border-top: 5px solid #4B202A;
  width: 100%;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  padding: 48px 24px;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__inner--column {
  width: 100%;
}
.footer__inner--column img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  max-width: 350px;
}
.footer__inner--column .copyright {
  margin-top: 12px;
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
}
.footer__inner--column .title {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  font-weight: 600;
}
.footer__inner--column ul {
  padding: 0;
  list-style: none;
}
.footer__inner--column ul li {
  margin-top: 12px;
}
.footer__inner--column ul li a {
  color: #333;
}

body.page-template-home .hero {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  min-height: 450px;
}
body.page-template-home .hero__right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .hero__right {
    width: 40%;
  }
}
body.page-template-home .hero__right .image {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .hero__right .image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
  }
}
body.page-template-home .hero__right .image img {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  max-height: 250px;
}
@media (min-width: 768px) {
  body.page-template-home .hero__right .image img {
    max-height: 100%;
  }
}
body.page-template-home .hero__left {
  width: 100%;
  background-color: #4B202A;
  display: flex;
  align-items: center;
  justify-items: center;
}
@media (min-width: 768px) {
  body.page-template-home .hero__left {
    width: 60%;
  }
}
body.page-template-home .hero__left .inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px;
}
body.page-template-home .hero__left .inner h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
  color: #FFF;
  line-height: 1.1;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media (min-width: 768px) {
  body.page-template-home .hero__left .inner h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-home .hero__left .inner p {
  color: #FFF;
  margin: 12px 0 0 0;
}
body.page-template-home .content {
  padding: 64px 0 0 0;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-home .content__inner {
  padding: 0 24px 64px 24px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
body.page-template-home .content__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .content__inner--left {
    width: 90%;
  }
}
body.page-template-home .content__inner--left h1, body.page-template-home .content__inner--left h2, body.page-template-home .content__inner--left h3 {
  font-weight: 400;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
body.page-template-home .content__inner--left p, body.page-template-home .content__inner--left ul {
  margin: 12px 0 0 0;
}
body.page-template-home .content__inner--left p, body.page-template-home .content__inner--left li {
  line-height: 1.7;
}
body.page-template-home .content__inner--right {
  width: 20%;
}
body.page-template-home .content__inner--right .image {
  position: absolute;
  right: 24px;
  bottom: 0;
  height: auto;
  width: 40%;
  text-align: right;
  z-index: -1;
}
@media (min-width: 768px) {
  body.page-template-home .content__inner--right .image {
    height: 100%;
  }
}
body.page-template-home .content__inner--right .image svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  body.page-template-home .content__inner--right .image svg {
    height: 100%;
    width: auto;
  }
}
body.page-template-home .services {
  background-color: rgba(206, 191, 194, 0.5);
  width: 100%;
}
body.page-template-home .services__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 24px;
  column-gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
body.page-template-home .services__inner--item {
  width: 100%;
  position: relative;
  z-index: 10;
}
body.page-template-home .services__inner--item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  vertical-align: bottom;
}
body.page-template-home .services__inner--item .title {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 12px;
  right: 0;
  z-index: 10;
  text-align: right;
  background: #333;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0) 0%, rgb(51, 51, 51) 100%);
}
body.page-template-home .services__inner--item .title p {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  color: #FFF;
}

body.page-template-default .hero {
  width: 100%;
  height: 300px;
}
body.page-template-default .hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  vertical-align: bottom;
}
body.page-template-default .content__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-default .content__inner--left {
  width: 100%;
  order: 2;
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.page-template-default .content__inner--left {
    margin-top: 0;
    width: 70%;
    order: 1;
    padding-right: 48px;
  }
}
body.page-template-default .content__inner--left h1, body.page-template-default .content__inner--left h2, body.page-template-default .content__inner--left h3, body.page-template-default .content__inner--left h4, body.page-template-default .content__inner--left h5 {
  font-weight: 400;
}
body.page-template-default .content__inner--left h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
body.page-template-default .content__inner--left h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-default .content__inner--left h3 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-default .content__inner--left a {
  color: #4B202A;
  font-weight: 700;
}
body.page-template-default .content__inner--left p, body.page-template-default .content__inner--left ul, body.page-template-default .content__inner--left ol {
  margin: 24px 0 0 0;
}
body.page-template-default .content__inner--left img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  margin-top: 24px;
}
body.page-template-default .content__inner--right {
  width: 100%;
  order: 1;
}
@media (min-width: 768px) {
  body.page-template-default .content__inner--right {
    width: 30%;
    order: 2;
  }
}
body.page-template-default .content__inner--right .inner {
  width: 100%;
  padding: 24px;
  background-color: #4B202A;
}
body.page-template-default .content__inner--right .inner h3, body.page-template-default .content__inner--right .inner a {
  color: #FFF;
}
body.page-template-default .content__inner--right .inner h3 {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-default .content__inner--right .inner .block {
  margin-top: 24px;
}
body.page-template-default .content__inner--right .inner .block:first-child {
  margin-top: 0;
}
body.page-template-default .content__inner--right .inner ul {
  list-style: none;
  padding: 0;
}
body.page-template-default .content__inner--right .inner ul li a {
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
}
body.page-template-default .content__inner--right .inner ul li.current_page_item a {
  text-decoration: underline;
}

/*# sourceMappingURL=app.css.map */
