html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

html,
body {
  height: 100%; }

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word; }

input,
button,
textarea,
select {
  font: inherit; }

button,
input[type="submit"],
summary {
  cursor: pointer; }

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%; }

input,
textarea,
button {
  border-radius: 0;
  border: 0;
  background: none;
  text-transform: inherit; }

details summary::-webkit-details-marker {
  display: none; }

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

:root {
  --font: "ABC Diatype";
  --black: #000;
  --white: #fff;
  --beige: #B0A58A;
  --pink: #FF786E;
  --gutter: 30px
  // transitions
  --sec: 0.3s
  --timing: ease; }

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

*:focus {
  outline: none; }

html {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html,
body {
  font-family: var(--font);
  background-color: var(--beige);
  color: var(--white); }

body {
  padding: 15px 25px;
  text-transform: uppercase; }
  body[data-template="home"] {
    height: var(--vh);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden; }

a {
  text-decoration: none;
  color: currentColor; }

h1, .h1 {
  font-size: 34px;
  line-height: 34px;
  font-weight: bold; }
  @media (max-width: 1100px) {
    h1, .h1 {
      font-size: 28px;
      line-height: 28px; } }
  @media (max-width: 750px) {
    h1, .h1 {
      font-size: 20px;
      line-height: 20px; } }
h2, .h2 {
  font-size: 24px;
  line-height: 26px; }
  @media (max-width: 750px) {
    h2, .h2 {
      font-size: 20px;
      line-height: 20px; } }
h3, .h3 {
  font-size: var(--h3); }

p, .p {
  font-size: var(--p);
  line-height: 1.4; }

button {
  color: var(--white); }

img, video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%; }

a span {
  transition: color 0.3s ease; }

@media (min-width: 750px) {
  a:hover span {
    color: var(--black); } }

.tel {
  display: block; }

.flex-between {
  width: 100%;
  display: flex;
  justify-content: space-between; }

.text-center {
  text-align: center; }
  .text-center p {
    line-height: 1; }

.text-right {
  text-align: right; }

.address-link p {
  line-height: 1.2; }

.site-header {
  opacity: 0;
  animation: fade-in 1s ease 2s forwards;
  -webkit-animation: fade-in 1s ease 2s forwards; }

.site-footer {
  opacity: 0;
  animation: fade-in 1s ease 2s forwards;
  -webkit-animation: fade-in 1s ease 2s forwards; }
