:root {
  --sitecolor: #153431;
  --textcolor: #153431;
  --titlecolor: #153431;
  --linkcolor: #153431;
  --linkcolor-hov: #153431;
  --accentcolor: #153431;
  --headerHeight: 92px;
  --btnPrimaryColor: #C9EAD0;
  --btnPrimaryBgColor: #153431;
  --btnPrimaryBorder: #C9EAD0;
  --btnPrimaryColorHover: #153431;
  --btnPrimaryBgColorHover: #C9EAD0;
  --btnPrimaryBorderHover: #153431;
  --btnSecondaryColor: #153431;
  --btnSecondaryBgColor: #C9EAD0;
  --btnSecondaryBorder: #153431;
  --btnSecondaryColorHover: #C9EAD0;
  --btnSecondaryBgColorHover: #153431;
  --btnSecondaryBorderHover: #C9EAD0;
  --btnTertiaryColor: #153431;
  --btnTertiaryColorHover: #153431;
  --gridGap: 50px;
}
@media (max-width: 1277px) {
  :root {
    --headerHeight: 101px;
    --gridGap: 20px;
  }
}
@media (max-width: 767px) {
  :root {
    --headerHeight: 71px;
  }
}
.button {
  background-color: var(--btnPrimaryBgColor);
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  color: var(--btnPrimaryColor);
  padding: 12px 18px;
  box-sizing: border-box;
  appearance: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.7s cubic-bezier(0, -0.042, 0.391, 0.932);
  font-size: clamp(1.125rem, 0.78828829vw + 0.93285473rem, 1.5625rem);
  line-height: clamp(1.5rem, 1.12612613vw + 1.22550676rem, 2.125rem);
  isolation: isolate;
  position: relative;
}
.button:after {
  content: '';
  position: absolute;
  transition: all 0.7s cubic-bezier(0, -0.042, 0.391, 0.932);
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--btnPrimaryBgColorHover);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    color: var(--btnPrimaryColorHover);
    background-color: var(--btnPrimaryBgColor);
  }
  .button:hover:after,
  .button:focus:after {
    width: 100%;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.area--one {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 var(--gridGap);
}
.area--one .unit {
  grid-column: span 6;
}
.area--one .unitOne--1-2 {
  grid-column: span 3;
}
.area--one .unitTwo,
.area--one .unitOne--1-3 {
  grid-column: span 3;
}
.area--masonry {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 90px;
}
.area--masonry .unit {
  grid-column: span 3;
}
@media (max-width: 1277px) {
  .area--masonry .unit:nth-child(even) {
    padding-top: 110px;
    box-sizing: border-box;
  }
}
.area--one .unit--bentoImages {
  width: calc(100% + 230px);
  margin-left: -115px;
}
.area--one .unit--bentoImages .unit__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--gridGap);
}
.area--one .unit--bentoImages .bentoImage .cb-image-caption {
  width: calc(100% - var(--bentoIndent, 20px));
}
.area--one .unit--bentoImages .bentoImage--one {
  --bentoIndent: clamp(5rem, -6.294rem + 23.53vw, 12.5rem);
  width: 57.8125%;
}
.area--one .unit--bentoImages .bentoImage--two {
  --bentroImgRatio: 159 / 238;
  width: 27.34375%;
  padding-top: 40px;
  box-sizing: border-box;
}
.area--one .unit--bentoImages .bentoImage--three {
  width: 37.5%;
}
.area--one .unit--bentoImages .bentoImage--four {
  --bentoIndent: clamp(2.5rem, -1.265rem + 7.84vw, 5rem);
  width: 53.125%;
}
/*# sourceMappingURL=./screen-medium.css.map */