@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url(/images/vendor/slick-carousel/slick/ajax-loader.gif?fb6f3c230cb846e25247dfaa1da94d8f) center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url(/fonts/vendor/slick-carousel/slick/slick.eot?a4e97f5a2a64f0ab132323fbeb33ae29);
  src: url(/fonts/vendor/slick-carousel/slick/slick.eot?a4e97f5a2a64f0ab132323fbeb33ae29?#iefix) format("embedded-opentype"), url(/fonts/vendor/slick-carousel/slick/slick.woff?295183786cd8a138986521d9f388a286) format("woff"), url(/fonts/vendor/slick-carousel/slick/slick.ttf?c94f7671dcc99dce43e22a89f486f7c2) format("truetype"), url(/fonts/vendor/slick-carousel/slick/slick.svg?2630a3e3eab21c607e21576571b95b9d#slick) format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/***
    The new CSS reset - version 1.8.2 (last updated 23.12.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: "";
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

@font-face {
  font-family: "Khmer MN";
  src: url("/wp-content/themes/bala-baya/assets/dist/fonts/KhmerMN.woff2") format("woff2"), url("/wp-content/themes/bala-baya/assets/dist/fonts/KhmerMN.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Khmer MN";
  src: url("/wp-content/themes/bala-baya/assets/dist/fonts/KhmerMN-Bold.woff2") format("woff2"), url("/wp-content/themes/bala-baya/assets/dist/fonts/KhmerMN-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Beausite Classic";
  src: url("/wp-content/themes/bala-baya/assets/dist/fonts/BeausiteClassic-Light.woff2") format("woff2"), url("/wp-content/themes/bala-baya/assets/dist/fonts/BeausiteClassic-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
body {
  font-family: "Khmer MN", serif;
}

.pop-up h1,
h2,
h1 {
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 1279px) {
  .pop-up h1,
  h2,
  h1 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up h1,
  h2,
  h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up h1,
  h2,
  h1 {
    font-size: 2.1rem;
  }
}

p {
  font-family: "Beausite Classic", sans-serif;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}

.btn, .sign-up .sign-up-content form button, .stacked .wpcf7 form button, .text-section .wpcf7 form button, header nav .nav-details .sign-up form button {
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
  border: 1px solid white;
  padding: 0.8em 2.5em 0.4em;
  transition: color 0.3s ease, background 0.3s ease;
  display: inline-block;
}
@media screen and (max-width: 1919px) {
  .btn, .sign-up .sign-up-content form button, .stacked .wpcf7 form button, .text-section .wpcf7 form button, header nav .nav-details .sign-up form button {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1439px) {
  .btn, .sign-up .sign-up-content form button, .stacked .wpcf7 form button, .text-section .wpcf7 form button, header nav .nav-details .sign-up form button {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  .btn, .sign-up .sign-up-content form button, .stacked .wpcf7 form button, .text-section .wpcf7 form button, header nav .nav-details .sign-up form button {
    padding: 0.7em 2em 0.3em;
  }
}
@media screen and (max-width: 639px) {
  .btn, .sign-up .sign-up-content form button, .stacked .wpcf7 form button, .text-section .wpcf7 form button, header nav .nav-details .sign-up form button {
    font-size: 1.5rem;
  }
}
.btn:hover, .sign-up .sign-up-content form button:hover, .stacked .wpcf7 form button:hover, .text-section .wpcf7 form button:hover, header nav .nav-details .sign-up form button:hover {
  background: white;
  color: #e52328;
}

p a {
  text-decoration: underline;
}

body,
html {
  font-size: 60%;
  margin: 0;
  padding: 0;
  background: #e52328;
}
body.lock,
html.lock {
  overflow: hidden;
}

.carousel {
  overflow: hidden;
}

.container {
  padding: 0 8rem;
  width: 100%;
}
@media screen and (max-width: 1919px) {
  .container {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 1599px) {
  .container {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 1023px) {
  .container {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 639px) {
  .container {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding: 0 2.5rem;
  }
}

.load-overlay,
.site-intro {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffc9c4;
}

.site-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.6rem;
  color: #e52328;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .site-intro {
    font-size: 3rem;
  }
}

#wrapper {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #e52328;
  z-index: 10000;
  display: grid;
  grid-template-columns: 0.5fr 2.5fr 1fr;
}
@media screen and (max-width: 1439px) {
  header .container {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  header .container {
    padding-top: 1.25rem;
    padding-bottom: 1rem;
  }
}
header .container .header-nav {
  display: flex;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1480px) {
  header .container .header-nav {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  header .container .header-nav {
    justify-content: end;
  }
}
header .container .header-nav-inner {
  display: flex;
  color: #fff;
  font-size: 18px;
  display: flex;
}
@media screen and (max-width: 1480px) {
  header .container .header-nav-inner {
    display: none;
  }
}
header .container .header-buttons {
  justify-content: center;
  display: flex;
  gap: 2em;
  margin-left: 5em;
}
@media screen and (max-width: 1480px) {
  header .container .header-buttons {
    justify-content: end;
  }
}
header .container a#book {
  text-transform: uppercase;
  color: white;
  font-size: 2.1rem;
  line-height: 2.1rem;
  text-align: center;
}
header .container a#book span {
  border: 1px solid #eee;
  text-align: center;
  justify-content: center;
  align-items: center;
  transform: translateY(-1px);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1345px) {
  header .container a#book {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1439px) {
  header .container a#book {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  header .container a#book {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  header .container a#book {
    font-size: 1.4rem;
  }
}
header .container a#book:hover {
  opacity: 0.5;
}
header .container a.logo {
  width: 16rem;
}
@media screen and (max-width: 1439px) {
  header .container a.logo {
    width: 15rem;
  }
}
@media screen and (max-width: 1279px) {
  header .container a.logo {
    width: 14rem;
  }
}
@media screen and (max-width: 639px) {
  header .container a.logo {
    width: 13rem;
  }
}
header .container a.logo path {
  fill: white;
}
@media screen and (max-width: 600px) {
  header .container .vouchers {
    display: none;
  }
}
header .container .hamburger {
  padding: 0;
  margin: 0;
  transform: scale(0.9);
  transform-origin: right center;
  display: none;
}
@media screen and (max-width: 1439px) {
  header .container .hamburger {
    transform: scale(0.8);
    transform-origin: right center;
  }
}
@media screen and (max-width: 500px) {
  header .container .hamburger {
    transform: scale(0.7);
  }
}
@media screen and (max-width: 1480px) {
  header .container .hamburger {
    display: block;
  }
}
header .container .hamburger:hover {
  opacity: 0.5;
}
header .container .hamburger .hamburger-inner {
  background: white;
  border-radius: 0;
  height: 0.2rem;
}
header .container .hamburger .hamburger-inner::before, header .container .hamburger .hamburger-inner::after {
  background: white;
  border-radius: 0;
  height: 0.2rem;
}
header .bookings {
  background: #e52328;
  display: flex;
  flex-direction: column;
  width: calc(50% + 1px);
  border-right: 1px solid white;
  left: 0;
  position: absolute;
  top: 100%;
  justify-content: center;
  align-items: center;
  color: white;
  transform: translateX(-100%);
  transition: transform 0.75s ease 0.25s;
}
@media screen and (max-width: 1023px) {
  header .bookings {
    width: calc(100% + 1px);
    transition-delay: 0s;
  }
}
header .bookings.active {
  transform: none;
  transition: transform 0.75s ease;
}
header .bookings .booking-content {
  text-align: center;
  width: 35%;
}
@media screen and (max-width: 1919px) {
  header .bookings .booking-content {
    width: 40%;
  }
}
@media screen and (max-width: 1599px) {
  header .bookings .booking-content {
    width: 50%;
  }
}
@media screen and (max-width: 1279px) {
  header .bookings .booking-content {
    width: 55%;
  }
}
@media screen and (max-width: 1023px) {
  header .bookings .booking-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  header .bookings .booking-content .bookings-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    flex: 1;
  }
}
@media screen and (max-width: 639px) {
  header .bookings .booking-content .bookings-top {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  header .bookings .booking-content .bookings-top {
    width: 65%;
  }
}
header .bookings .booking-content .bookings-top a.btn {
  cursor: pointer;
}
header .bookings .booking-content .bookings-gift-cards {
  margin-bottom: 7em;
}
@media screen and (max-width: 1023px) {
  header .bookings .booking-content .bookings-bottom {
    flex: 0;
    width: 100%;
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 767px) {
  header .bookings .booking-content .bookings-bottom {
    padding: 0 0 4rem;
  }
}
header .bookings .booking-content h2 {
  text-transform: uppercase;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 639px) {
  header .bookings .booking-content h2 {
    margin-bottom: 0.6em;
  }
}
header .bookings .booking-content p {
  font-size: 1.8rem;
  margin-bottom: 2em;
}
@media screen and (max-width: 1439px) {
  header .bookings .booking-content p {
    font-size: 1.6rem;
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 1279px) {
  header .bookings .booking-content p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  header .bookings .booking-content p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  header .bookings .booking-content p {
    font-size: 1.4rem;
  }
}
header .bookings .booking-content p.address {
  text-transform: uppercase;
  margin-bottom: 1.5em;
}
header .bookings .booking-content p.address a {
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  header .bookings .booking-content p.address br:last-child {
    display: none;
  }
}
header .bookings .booking-content a.btn {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1279px) {
  header .bookings .booking-content a.btn {
    margin-bottom: 3rem;
  }
}
header .bookings .booking-content hr {
  width: 40%;
  border-top: 6px dotted #ffffff;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 1023px) {
  header .bookings .booking-content hr {
    width: 100%;
    border-top: 1px solid white;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  header .bookings .booking-content hr {
    margin-bottom: 4rem;
  }
}
header .bookings .booking-content ul {
  font-size: 1.8rem;
  font-family: "Beausite Classic", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 1439px) {
  header .bookings .booking-content ul {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  header .bookings .booking-content ul {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  header .bookings .booking-content ul {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 639px) {
  header .bookings .booking-content ul {
    font-size: 1.4rem;
  }
}
header .bookings .booking-content ul svg {
  margin-right: 0.6rem;
}
header nav {
  height: 100vh;
  width: calc(50% + 1px);
  background: #e52328;
  display: flex;
  flex-direction: column;
  border-left: 1px solid white;
  transform: translateX(100%);
  transition: transform 0.75s ease 0.25s;
  position: absolute;
  top: 100%;
  right: 0;
  overflow-y: auto;
}
@media screen and (max-width: 1023px) {
  header nav {
    width: 100%;
    border-left: none;
    transition-delay: 0s;
  }
}
header nav.active {
  transform: translateX(0);
  transition: transform 0.75s ease;
}
header nav > ul {
  border-bottom: 1px solid white;
  padding: 0 6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1919px) {
  header nav > ul {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 1439px) {
  header nav > ul {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav > ul {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  header nav > ul {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 639px) {
  header nav > ul {
    text-align: center;
    padding: 2.5rem 0 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  header nav > ul {
    padding: 2rem 0 1rem;
  }
}
header nav > ul li {
  font-size: 4rem;
  margin: 0.3em 0;
  color: white;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 2559px) {
  header nav > ul li {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1919px) {
  header nav > ul li {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1439px) {
  header nav > ul li {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav > ul li {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  header nav > ul li {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  header nav > ul li {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 639px) {
  header nav > ul li {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  header nav > ul li {
    font-size: 2.2rem;
    margin: 0.3em 0;
  }
}
header nav > ul li a {
  transition: all 0.3s ease;
}
header nav > ul li a:hover, header nav > ul li a.active {
  opacity: 0.5;
}
header nav .nav-details {
  display: flex;
  flex: 0;
  align-items: flex-start;
}
@media screen and (max-width: 639px) {
  header nav .nav-details {
    display: block;
  }
}
header nav .nav-details > div {
  flex: 1;
}
header nav .nav-details .sign-up,
header nav .nav-details .contact {
  padding: 5rem 6rem 4rem;
}
@media screen and (max-width: 2559px) {
  header nav .nav-details .sign-up,
  header nav .nav-details .contact {
    padding: 4rem 6rem;
  }
}
@media screen and (max-width: 1919px) {
  header nav .nav-details .sign-up,
  header nav .nav-details .contact {
    font-size: 1.6rem;
    padding: 3rem 5rem 2.5rem;
  }
}
@media screen and (max-width: 1439px) {
  header nav .nav-details .sign-up,
  header nav .nav-details .contact {
    padding: 2rem 4rem 2.5rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav .nav-details .sign-up,
  header nav .nav-details .contact {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  header nav .nav-details .sign-up,
  header nav .nav-details .contact {
    padding: 4rem;
  }
}
@media screen and (max-width: 767px) {
  header nav .nav-details .sign-up,
  header nav .nav-details .contact {
    padding: 3rem 4rem;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up,
  header nav .nav-details .contact {
    padding: 2.5rem 3rem;
  }
}
header nav .nav-details .contact {
  border-right: 1px solid white;
  color: white;
  font-size: 1.8rem;
  font-family: "Beausite Classic", sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 2559px) {
  header nav .nav-details .contact {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1919px) {
  header nav .nav-details .contact {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1439px) {
  header nav .nav-details .contact {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav .nav-details .contact {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1023px) {
  header nav .nav-details .contact {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  header nav .nav-details .contact {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .contact {
    text-align: center;
    padding-bottom: 0;
    height: auto;
    border-right: none;
  }
}
@media screen and (max-width: 500px) {
  header nav .nav-details .contact {
    font-size: 1.2rem;
    padding: 2rem 3rem 0;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .contact p {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .contact p:first-child br:last-child {
    display: none;
  }
}
header nav .nav-details .contact .contact-top > ul {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 639px) {
  header nav .nav-details .contact .contact-top > ul {
    margin-bottom: 1em;
  }
}
header nav .nav-details .contact .contact-top > ul li {
  line-height: 1.65;
}
header nav .nav-details .contact .contact-top > ul li svg {
  margin-right: 0.6rem;
}
header nav .nav-details .contact .contact-top p a {
  text-decoration: none;
}
header nav .nav-details .contact .contact-top > a {
  display: inline-block;
}
@media screen and (max-width: 639px) {
  header nav .nav-details .contact .contact-top > a {
    display: none;
  }
}
header nav .nav-details .contact .contact-bottom {
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
}
@media screen and (max-width: 1919px) {
  header nav .nav-details .contact .contact-bottom {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 1439px) {
  header nav .nav-details .contact .contact-bottom {
    margin-top: 2.5rem;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav .nav-details .contact .contact-bottom {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  header nav .nav-details .contact .contact-bottom {
    font-size: 1.2rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  header nav .nav-details .contact .contact-bottom {
    font-size: 1.1rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .contact .contact-bottom {
    display: none;
  }
}
header nav .nav-details .contact .contact-bottom p {
  margin-bottom: 0;
}
header nav .nav-details .contact .contact-bottom p a {
  text-decoration: underline;
}
header nav .nav-details .contact .contact-bottom ul {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 1439px) {
  header nav .nav-details .contact .contact-bottom ul {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav .nav-details .contact .contact-bottom ul {
    font-size: 1.5rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  header nav .nav-details .contact .contact-bottom ul {
    font-size: 1.5rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
header nav .nav-details .sign-up {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up {
    display: block;
    text-align: center;
    padding: 1rem 5rem 2.5rem;
    height: auto;
  }
}
header nav .nav-details .sign-up h2 {
  text-transform: uppercase;
  margin-bottom: 0.5em;
  font-size: 3rem;
}
@media screen and (max-width: 1919px) {
  header nav .nav-details .sign-up h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1439px) {
  header nav .nav-details .sign-up h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav .nav-details .sign-up h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1023px) {
  header nav .nav-details .sign-up h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  header nav .nav-details .sign-up h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up h2 {
    display: none;
  }
}
header nav .nav-details .sign-up form {
  border-top: 1px solid white;
  width: 100%;
  height: 100%;
}
header nav .nav-details .sign-up form fieldset {
  width: 100%;
}
header nav .nav-details .sign-up form fieldset input[type=text],
header nav .nav-details .sign-up form fieldset input[type=email] {
  display: block;
  border-bottom: 1px solid white;
  width: 100%;
  font-size: 1.8rem;
  font-family: "Beausite Classic", sans-serif;
  height: 2.5em;
  padding-left: 0.6em;
}
@media screen and (max-width: 1919px) {
  header nav .nav-details .sign-up form fieldset input[type=text],
  header nav .nav-details .sign-up form fieldset input[type=email] {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1439px) {
  header nav .nav-details .sign-up form fieldset input[type=text],
  header nav .nav-details .sign-up form fieldset input[type=email] {
    font-size: 1.6rem;
    height: 3em;
  }
}
@media screen and (max-width: 1279px) {
  header nav .nav-details .sign-up form fieldset input[type=text],
  header nav .nav-details .sign-up form fieldset input[type=email] {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  header nav .nav-details .sign-up form fieldset input[type=text],
  header nav .nav-details .sign-up form fieldset input[type=email] {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  header nav .nav-details .sign-up form fieldset input[type=text],
  header nav .nav-details .sign-up form fieldset input[type=email] {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  header nav .nav-details .sign-up form fieldset input[type=text],
  header nav .nav-details .sign-up form fieldset input[type=email] {
    font-size: 1.3rem;
  }
}
header nav .nav-details .sign-up form fieldset .checkbox-wrap {
  border: 1px solid white;
  display: flex;
  position: relative;
  margin: 2.5rem 0 4rem;
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap {
    margin-bottom: 0;
  }
}
header nav .nav-details .sign-up form fieldset .checkbox-wrap label {
  font-size: 1.1rem;
  font-family: "Beausite Classic", sans-serif;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label {
    font-size: 1rem;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 500px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label {
    font-size: 1rem;
  }
}
header nav .nav-details .sign-up form fieldset .checkbox-wrap label::before {
  border-right: 1px solid white;
  content: "✓";
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-right: 1.5rem;
  background: #e52328;
  transition: all 0.3s ease;
  color: #e52328;
}
@media screen and (max-width: 1023px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label::before {
    height: 100%;
    width: 5.5rem;
  }
}
header nav .nav-details .sign-up form fieldset .checkbox-wrap label a {
  text-decoration: underline;
}
header nav .nav-details .sign-up form fieldset .checkbox-wrap label span {
  width: calc(100% - 6.5rem);
}
@media screen and (max-width: 1439px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label span {
    padding-right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label span {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label span {
    padding: 1rem 6rem 1rem 0;
    width: calc(100% - 7.5rem);
  }
}
@media screen and (max-width: 500px) {
  header nav .nav-details .sign-up form fieldset .checkbox-wrap label span {
    padding-right: 1.5rem;
  }
}
header nav .nav-details .sign-up form fieldset .checkbox-wrap [type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  z-index: 1;
  position: absolute;
  left: 2.5rem;
  transform: translateX(-50%);
}
header nav .nav-details .sign-up form fieldset .checkbox-wrap [type=checkbox]:checked + label::before {
  background: white;
}
header nav .nav-details .sign-up form button {
  width: auto;
  padding-left: 0.8em;
  padding-right: 0.8em;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up form button {
    margin: 2.5rem auto;
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media screen and (max-width: 500px) {
  header nav .nav-details .sign-up form button {
    margin-bottom: 2rem;
  }
}
header nav .nav-details .sign-up .contact-bottom {
  font-size: 1.3rem;
  display: none;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 639px) {
  header nav .nav-details .sign-up .contact-bottom {
    display: flex;
  }
}
@media screen and (max-width: 500px) {
  header nav .nav-details .sign-up .contact-bottom {
    font-size: 1.1rem;
  }
}
header nav .nav-details .sign-up .contact-bottom p {
  margin-bottom: 0;
}
header nav .nav-details .sign-up .contact-bottom p a {
  text-decoration: underline;
}
header nav .nav-details .sign-up .contact-bottom ul {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 500px) {
  header nav .nav-details .sign-up .contact-bottom ul {
    font-size: 1.6rem;
  }
}

.pop-up-wrapper {
  position: fixed;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pop-up-wrapper {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper {
    padding: 0 3.5rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper {
    padding: 0 3rem;
  }
}
.pop-up-wrapper.home {
  height: auto;
  bottom: 0;
  padding: 0;
  color: white;
  position: absolute;
}
.pop-up-wrapper.home .pop-up {
  background: transparent;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1439px) {
  .pop-up-wrapper.home .pop-up {
    transform: translateY(0);
  }
}
.pop-up-wrapper.home .pop-up .close {
  position: absolute;
  top: 5rem;
  right: 8rem;
}
@media screen and (max-width: 1919px) {
  .pop-up-wrapper.home .pop-up .close {
    right: 6rem;
  }
}
@media screen and (max-width: 1599px) {
  .pop-up-wrapper.home .pop-up .close {
    right: 5rem;
  }
}
@media screen and (max-width: 1023px) {
  .pop-up-wrapper.home .pop-up .close {
    right: 4rem;
    top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .pop-up-wrapper.home .pop-up .close {
    top: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .close {
    right: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper.home .pop-up .close {
    right: 2.5rem;
  }
}
.pop-up-wrapper.home .pop-up .close svg {
  width: 2rem;
}
@media screen and (max-width: 1023px) {
  .pop-up-wrapper.home .pop-up .close svg {
    width: 1.75rem;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.pop-up-wrapper.home .pop-up .pop-up-text > div:first-of-type {
  margin: 0;
}
.pop-up-wrapper.home .pop-up .pop-up-text > div:last-of-type {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1439px) {
  .pop-up-wrapper.home .pop-up .pop-up-text > div:last-of-type {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper.home .pop-up .pop-up-text > div:last-of-type {
    padding: 0 3.5rem;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text > div:last-of-type p {
  font-family: "Khmer MN", serif;
  font-size: 1.8rem;
  margin: 0 auto 0.75em;
  width: 65%;
  line-height: 1.25;
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper.home .pop-up .pop-up-text > div:last-of-type p {
    width: 90%;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text svg {
  width: 15rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .pop-up-wrapper.home .pop-up .pop-up-text svg {
    width: 14rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .pop-up-wrapper.home .pop-up .pop-up-text svg {
    margin-bottom: 2.25rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .pop-up-text svg {
    width: 12rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper.home .pop-up .pop-up-text svg {
    margin-bottom: 1.5rem;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text svg path {
  fill: white;
}
.pop-up-wrapper.home .pop-up .pop-up-text h1 {
  text-transform: none;
  font-size: 6.8rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1919px) {
  .pop-up-wrapper.home .pop-up .pop-up-text h1 {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 1599px) {
  .pop-up-wrapper.home .pop-up .pop-up-text h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1439px) {
  .pop-up-wrapper.home .pop-up .pop-up-text h1 {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .pop-up-wrapper.home .pop-up .pop-up-text h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .pop-up-wrapper.home .pop-up .pop-up-text h1 {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .pop-up-text h1 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper.home .pop-up .pop-up-text h1 {
    font-size: 3rem;
    margin-bottom: 0.65em;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper {
  width: 48rem;
  margin: 0 auto;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 1599px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper {
    width: 42rem;
  }
}
@media screen and (max-width: 1023px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper {
    width: 38rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper {
    width: 35rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper {
    width: 15rem;
    flex-direction: column;
    gap: 2rem;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper .btn, .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper .sign-up .sign-up-content form button, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper button, .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper .stacked .wpcf7 form button, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper button, .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper .text-section .wpcf7 form button, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper button, .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text .button-wrapper button {
  flex: 1;
}
.pop-up-wrapper.home .pop-up .pop-up-text .btn, .pop-up-wrapper.home .pop-up .pop-up-text .sign-up .sign-up-content form button, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .stacked .wpcf7 form button, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .text-section .wpcf7 form button, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text button {
  font-size: 3rem;
  border-color: white;
  cursor: pointer;
}
@media screen and (max-width: 1919px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .btn, .pop-up-wrapper.home .pop-up .pop-up-text .sign-up .sign-up-content form button, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .stacked .wpcf7 form button, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .text-section .wpcf7 form button, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text button {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1599px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .btn, .pop-up-wrapper.home .pop-up .pop-up-text .sign-up .sign-up-content form button, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .stacked .wpcf7 form button, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .text-section .wpcf7 form button, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text button {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1439px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .btn, .pop-up-wrapper.home .pop-up .pop-up-text .sign-up .sign-up-content form button, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .stacked .wpcf7 form button, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .text-section .wpcf7 form button, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text button {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .btn, .pop-up-wrapper.home .pop-up .pop-up-text .sign-up .sign-up-content form button, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .stacked .wpcf7 form button, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .text-section .wpcf7 form button, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text button {
    font-size: 2.1rem;
    padding: 0.9em 2em 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .btn, .pop-up-wrapper.home .pop-up .pop-up-text .sign-up .sign-up-content form button, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .stacked .wpcf7 form button, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .text-section .wpcf7 form button, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text button {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .pop-up-text .btn, .pop-up-wrapper.home .pop-up .pop-up-text .sign-up .sign-up-content form button, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .stacked .wpcf7 form button, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text .text-section .wpcf7 form button, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button, .pop-up-wrapper.home .pop-up .pop-up-text header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text button {
    font-size: 1.6rem;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text .btn:hover, .pop-up-wrapper.home .pop-up .pop-up-text .sign-up .sign-up-content form button:hover, .sign-up .sign-up-content form .pop-up-wrapper.home .pop-up .pop-up-text button:hover, .pop-up-wrapper.home .pop-up .pop-up-text .stacked .wpcf7 form button:hover, .stacked .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button:hover, .pop-up-wrapper.home .pop-up .pop-up-text .text-section .wpcf7 form button:hover, .text-section .wpcf7 form .pop-up-wrapper.home .pop-up .pop-up-text button:hover, .pop-up-wrapper.home .pop-up .pop-up-text header nav .nav-details .sign-up form button:hover, header nav .nav-details .sign-up form .pop-up-wrapper.home .pop-up .pop-up-text button:hover {
  color: black;
}
.pop-up-wrapper.home .pop-up .pop-up-text form .pop-up-form-wrap {
  display: flex;
  flex-wrap: wrap;
}
.pop-up-wrapper.home .pop-up .pop-up-text form input[type=email] {
  text-align: left;
  border: 1px solid white;
  font-size: 1.8rem;
  font-family: "Beausite Classic", sans-serif;
  height: 2.85em;
  padding: 0 0.75em;
  border-right: none;
  width: calc(100% - 11.5rem);
}
@media screen and (max-width: 1439px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form input[type=email] {
    font-size: 1.6rem;
    width: calc(100% - 10.2rem);
  }
}
@media screen and (max-width: 1279px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form input[type=email] {
    width: calc(100% - 11.8rem);
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form input[type=email] {
    font-size: 1.5rem;
    width: calc(100% - 11.1rem);
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form input[type=email] {
    font-size: 1.4rem;
    height: 3em;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text form button {
  cursor: pointer;
  border: 1px solid white;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.4em 0.8em 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1919px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form button {
    font-size: 1.8rem;
    padding: 0.7em 1.5em 0.3em;
  }
}
@media screen and (max-width: 1439px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form button {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form button {
    padding: 0.7em 2em 0.3em;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form button {
    font-size: 1.5rem;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text form button:hover {
  background: white;
  color: #e52328;
}
.pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap {
  border: 1px solid white;
  display: flex;
  position: relative;
  margin-top: 2rem;
  order: 3;
}
.pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap label {
  font-size: 1.3rem;
  font-family: "Beausite Classic", sans-serif;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap label::before {
  border-right: 1px solid white;
  content: "✓";
  background: white;
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  color: white;
}
@media screen and (max-width: 1023px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap label::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap label::before {
    height: 100%;
    width: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap label {
    font-size: 1.1rem;
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap label a {
  text-decoration: underline;
}
.pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap label span {
  width: calc(100% - 6.5rem);
  padding-right: 1.5rem;
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap label span {
    padding: 1rem 1.5rem 1rem 0;
    width: calc(100% - 7.5rem);
  }
}
.pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap [type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  z-index: 1;
  position: absolute;
  left: 2.5rem;
  transform: translateX(-50%);
}
.pop-up-wrapper.home .pop-up .pop-up-text form .checkbox-wrap [type=checkbox]:checked + label::before {
  color: #e52328;
}
.pop-up-wrapper .pop-up {
  background: #ffc9c4;
  color: #e52328;
  width: 56rem;
  text-align: center;
  position: relative;
  pointer-events: all;
}
@media screen and (max-width: 1439px) {
  .pop-up-wrapper .pop-up {
    width: 54rem;
    transform: translateY(4rem);
  }
}
@media screen and (max-width: 767px) {
  .pop-up-wrapper .pop-up {
    width: 100%;
  }
}
.pop-up-wrapper .pop-up .img-wrap {
  position: relative;
  padding-bottom: 70%;
  margin-bottom: 4.5rem;
}
.pop-up-wrapper .pop-up .img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.pop-up-wrapper .pop-up .pop-up-text {
  padding: 0 6rem 4rem;
}
@media screen and (max-width: 1439px) {
  .pop-up-wrapper .pop-up .pop-up-text {
    padding: 0 5rem 5rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper .pop-up .pop-up-text {
    padding: 0 5rem 4rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper .pop-up .pop-up-text {
    padding: 0 3.5rem 4rem;
  }
}
.pop-up-wrapper .pop-up button.close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  cursor: pointer;
  z-index: 2;
}
.pop-up-wrapper .pop-up button.close svg {
  width: 1.5rem;
}
.pop-up-wrapper .pop-up button.close svg path {
  fill: white;
}
.pop-up-wrapper .pop-up h1,
.pop-up-wrapper .pop-up h2 {
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1279px) {
  .pop-up-wrapper .pop-up h1,
  .pop-up-wrapper .pop-up h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper .pop-up h1,
  .pop-up-wrapper .pop-up h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .pop-up-wrapper .pop-up h1,
  .pop-up-wrapper .pop-up h2 {
    font-size: 2.1rem;
    margin-bottom: 0.8em;
  }
}
.pop-up-wrapper .pop-up .button-wrapper {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pop-up-wrapper .pop-up .button-wrapper a.btn {
  flex: 1;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
}
.pop-up-wrapper .pop-up p {
  font-size: 1.6rem;
}
@media screen and (max-width: 639px) {
  .pop-up-wrapper .pop-up p {
    font-size: 1.4rem;
  }
}
.pop-up-wrapper .pop-up a.btn {
  border-color: #e52328;
}

.img-wrapper {
  height: 100vh;
  min-height: 696px;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .img-wrapper {
    min-height: 550px;
  }
}
@media screen and (max-width: 639px) {
  .img-wrapper {
    min-height: 400px;
  }
}
.img-wrapper img,
.img-wrapper video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.overlay {
  display: none;
}

.text-section {
  background: #e52328;
  color: white;
  text-align: center;
  font-size: 1.8rem;
  padding: 19rem 15rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1919px) {
  .text-section {
    padding: 15rem 10rem;
  }
}
@media screen and (max-width: 1439px) {
  .text-section {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  .text-section {
    padding: 10rem 6rem;
  }
}
@media screen and (max-width: 1023px) {
  .text-section {
    padding: 10rem;
    min-height: 0;
  }
}
@media screen and (max-width: 767px) {
  .text-section {
    padding: 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .text-section {
    padding: 5rem 4rem;
    font-size: 1.4rem;
  }
}
.text-section h2 {
  margin-bottom: 1em;
}
.text-section .wpcf7 {
  width: 75%;
  margin: 1.5em 0 2.5em;
}
@media screen and (max-width: 1599px) {
  .text-section .wpcf7 {
    width: 100%;
  }
}
.text-section .wpcf7 form {
  border-top: 1px solid white;
}
.text-section .wpcf7 form input,
.text-section .wpcf7 form textarea {
  display: block;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid white;
  font-size: 1.8rem;
  font-family: "Beausite Classic", sans-serif;
  height: 3em;
}
@media screen and (max-width: 1023px) {
  .text-section .wpcf7 form input,
  .text-section .wpcf7 form textarea {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .text-section .wpcf7 form input,
  .text-section .wpcf7 form textarea {
    font-size: 1.5rem;
  }
}
.text-section .wpcf7 form textarea {
  height: auto;
  margin-top: 1em;
}
.text-section .wpcf7 form .wpcf7-date {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  filter: invert(1);
  border-color: black;
}
.text-section .wpcf7 form ::-webkit-datetime-edit {
  opacity: 1;
}
.text-section .wpcf7 form ::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="white" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
  right: 0;
  position: absolute;
}
.text-section .wpcf7 form .wpcf7-not-valid-tip {
  color: white;
  font-size: 0.75em;
  font-family: "Khmer MN", serif;
  margin-top: 0.5em;
}
.text-section .wpcf7 form .wpcf7-spinner {
  display: none;
}
.text-section .wpcf7 form .wpcf7-response-output {
  border: none;
  padding: 0;
  font-size: 0.75em;
  margin: 0.5em 0 0;
}
.text-section .wpcf7 form br {
  display: none;
}
.text-section .wpcf7 form button {
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .read-more {
    display: none;
  }
}
.read-more p:last-child {
  margin-bottom: 1.5em;
}
.read-more + button {
  display: none;
  font-size: 1em;
  cursor: pointer;
  text-align: center;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.read-more + button:hover, .read-more + button.active {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .read-more + button {
    display: inline-block;
    margin: -0.25em auto 0;
  }
}

.stacked .wpcf7 {
  width: 50%;
  margin: 1.5em 0 2.5em;
}
@media screen and (max-width: 1599px) {
  .stacked .wpcf7 {
    width: 100%;
  }
}
.stacked .wpcf7 form {
  border-top: 1px solid white;
}
.stacked .wpcf7 form input,
.stacked .wpcf7 form textarea {
  display: block;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid white;
  font-size: 1.8rem;
  font-family: "Beausite Classic", sans-serif;
  height: 3em;
}
@media screen and (max-width: 1023px) {
  .stacked .wpcf7 form input,
  .stacked .wpcf7 form textarea {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .stacked .wpcf7 form input,
  .stacked .wpcf7 form textarea {
    font-size: 1.5rem;
  }
}
.stacked .wpcf7 form textarea {
  height: auto;
  margin-top: 1em;
}
.stacked .wpcf7 form .wpcf7-date {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  filter: invert(1);
  border-color: black;
}
.stacked .wpcf7 form ::-webkit-datetime-edit {
  opacity: 1;
}
.stacked .wpcf7 form ::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="white" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
  right: 0;
  position: absolute;
}
.stacked .wpcf7 form .wpcf7-not-valid-tip {
  color: white;
  font-size: 0.75em;
  font-family: "Khmer MN", serif;
  margin-top: 0.5em;
}
.stacked .wpcf7 form .wpcf7-spinner {
  display: none;
}
.stacked .wpcf7 form .wpcf7-response-output {
  border: none;
  padding: 0;
  font-size: 0.75em;
  margin: 0.5em 0 0;
}
.stacked .wpcf7 form br {
  display: none;
}
.stacked .wpcf7 form button {
  cursor: pointer;
}
.stacked .wpcf7 form .wpcf7-submit {
  background: #fff;
  color: red;
}

.split-scroller {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .split-scroller {
    flex-wrap: wrap;
  }
}
.split-scroller.stacked {
  flex-direction: column;
  position: relative;
}
.split-scroller.stacked .text-section {
  background: none;
  z-index: 20;
  position: relative;
}
.split-scroller.stacked .content {
  z-index: 15;
  background: url(http://balabaya.co.uk/wp-content/uploads/2023/09/1-bcaphoto-balabaya-23-09-1244-copy-scaled.jpg) no-repeat center center;
  background-size: cover;
}
.split-scroller.stacked .overlay {
  background: #e52328;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .split-scroller.stacked .fixed {
    order: 1;
  }
}
@media screen and (max-width: 1023px) {
  .split-scroller.stacked .content {
    order: 1;
  }
}
.split-scroller.stacked > div {
  width: 100%;
  flex: unset;
}
@media screen and (max-width: 1023px) {
  .split-scroller.stacked > div {
    width: 100%;
    flex: unset;
  }
}
@media screen and (max-width: 1023px) {
  .split-scroller.left .fixed {
    order: 2;
  }
}
@media screen and (max-width: 1023px) {
  .split-scroller.left .content {
    order: 1;
  }
}
.split-scroller.right .fixed {
  order: 2;
}
.split-scroller.right .content {
  order: 1;
}
.split-scroller > div {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .split-scroller > div {
    width: 100%;
    flex: unset;
  }
}
.split-scroller .fixed .img-wrapper,
.split-scroller .fixed .carousel-wrap {
  position: sticky;
  top: 0;
}
.split-scroller .fixed .carousel-wrap .split-carousel {
  margin-bottom: 0;
}
.split-scroller .fixed .carousel-wrap .slick-dots {
  bottom: 4.5rem;
}
@media screen and (max-width: 1023px) {
  .split-scroller .fixed .carousel-wrap .slick-dots {
    bottom: 3.5rem;
  }
}
.split-scroller .fixed .carousel-wrap .slick-dots li {
  width: 1.1rem;
  height: 1.1rem;
  background: transparent;
  border-radius: 100%;
  border: 1px solid white;
  margin: 0 0.5rem;
  transition: background 0.3s ease;
}
.split-scroller .fixed .carousel-wrap .slick-dots li.slick-active {
  background: white;
}
.split-scroller .fixed .carousel-wrap .slick-dots li button {
  width: 100%;
  height: 100%;
}
.split-scroller .fixed .carousel-wrap .slick-dots li button:before {
  content: "";
  opacity: 1;
}

.home .load-overlay {
  display: none;
}

.intro-content {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .intro-content {
    display: block;
  }
}
.intro-content > div {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .intro-content > div {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .intro-content .fixed {
    display: none;
  }
}
.intro-content .fixed .img-wrapper {
  position: sticky;
  top: 0;
}
.intro-content .scrolling .text-section {
  height: 100vh;
  min-height: 696px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .intro-content .scrolling .text-section {
    height: auto;
    min-height: 0;
  }
}
.intro-content .scrolling .text-section h2 {
  padding: 0 5rem;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .intro-content .scrolling .text-section h2 {
    padding: 0;
  }
}
.intro-content .scrolling .text-section p {
  margin-bottom: 2.5em;
}

.carousel {
  background: black;
}
.carousel.slick-dotted {
  margin-bottom: 0;
}
.carousel .slick-dots {
  bottom: 4rem;
}
@media screen and (max-width: 1023px) {
  .carousel .slick-dots {
    bottom: 3.5rem;
  }
}
.carousel .slick-dots li {
  width: 1.1rem;
  height: 1.1rem;
  background: transparent;
  border-radius: 100%;
  border: 1px solid white;
  margin: 0 0.5rem;
  transition: background 0.3s ease;
}
.carousel .slick-dots li.slick-active {
  background: white;
}
.carousel .slick-dots li button {
  width: 100%;
  height: 100%;
}
.carousel .slick-dots li button:before {
  content: "";
  opacity: 1;
}
.carousel .slide {
  height: 100vh;
  min-height: 696px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel .slide::before {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  content: "";
  opacity: 0.5;
}
.carousel .slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.carousel .slide .slide-content {
  z-index: 2;
  position: relative;
  color: white;
  text-align: center;
  width: 30%;
}
@media screen and (max-width: 1599px) {
  .carousel .slide .slide-content {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 1439px) {
  .carousel .slide .slide-content {
    width: 40%;
  }
}
@media screen and (max-width: 1279px) {
  .carousel .slide .slide-content {
    width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  .carousel .slide .slide-content {
    width: 100%;
    padding: 0 10rem;
  }
}
@media screen and (max-width: 767px) {
  .carousel .slide .slide-content {
    padding: 0 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .carousel .slide .slide-content {
    padding: 0 4rem;
  }
}
.carousel .slide .slide-content h2 {
  margin-bottom: 0.6em;
}
@media screen and (max-width: 500px) {
  .carousel .slide .slide-content h2 {
    font-size: 3rem;
    margin-bottom: 0.4em;
  }
}
.carousel .slide .slide-content p {
  font-size: 1.8rem;
}
@media screen and (max-width: 1439px) {
  .carousel .slide .slide-content p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 639px) {
  .carousel .slide .slide-content p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 639px) {
  .carousel .slide .slide-content a.btn {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 500px) {
  .carousel .slide .slide-content a.btn {
    font-size: 2rem;
  }
}
.carousel .slide .slide-content a.btn:hover {
  color: black;
}

.quote-wrapper {
  background: #ffc9c4;
  padding: 12.5rem 0 20rem;
  color: #e52328;
  position: relative;
}
@media screen and (max-width: 1599px) {
  .quote-wrapper {
    padding: 10rem 0 17.5rem;
  }
}
@media screen and (max-width: 1279px) {
  .quote-wrapper {
    padding: 8rem 0 12.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .quote-wrapper {
    padding: 7rem 0 10rem;
  }
}
@media screen and (max-width: 767px) {
  .quote-wrapper {
    padding: 6rem 0 8.5rem;
  }
}
@media screen and (max-width: 639px) {
  .quote-wrapper {
    padding: 5.5rem 0 8rem;
  }
}
@media screen and (max-width: 500px) {
  .quote-wrapper {
    padding: 5rem 0 7rem;
  }
}
.quote-wrapper h2 {
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 1279px) {
  .quote-wrapper h2 {
    margin-bottom: 1.65em;
  }
}
@media screen and (max-width: 1023px) {
  .quote-wrapper h2 {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .quote-wrapper h2 {
    margin-bottom: 1.25em;
  }
}
@media screen and (max-width: 500px) {
  .quote-wrapper h2 {
    margin-bottom: 1em;
  }
}
.quote-wrapper .quote-slider {
  position: static;
}
.quote-wrapper .quote-slider .slick-list {
  overflow: visible;
  clip-path: inset(-1.5rem 0 0 0);
}
.quote-wrapper .quote-slider.slick-dotted {
  margin-bottom: 0;
}
.quote-wrapper .quote-slider .slick-dots {
  bottom: 5rem;
}
@media screen and (max-width: 1279px) {
  .quote-wrapper .quote-slider .slick-dots {
    bottom: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .quote-wrapper .quote-slider .slick-dots {
    bottom: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .quote-wrapper .quote-slider .slick-dots {
    bottom: 3.75rem;
  }
}
.quote-wrapper .quote-slider .slick-dots li {
  width: 1.1rem;
  height: 1.1rem;
  background: transparent;
  border-radius: 100%;
  border: 1px solid #e52328;
  margin: 0 0.5rem;
  transition: background 0.3s ease;
}
.quote-wrapper .quote-slider .slick-dots li.slick-active {
  background: #e52328;
}
.quote-wrapper .quote-slider .slick-dots li button {
  width: 100%;
  height: 100%;
}
.quote-wrapper .quote-slider .slick-dots li button:before {
  content: "";
  opacity: 1;
}
.quote-wrapper .quote-slider .slide {
  text-align: center;
}
.quote-wrapper .quote-slider .slide blockquote {
  font-family: "Khmer MN", serif;
  font-size: 3.8rem;
  line-height: 1;
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 1919px) {
  .quote-wrapper .quote-slider .slide blockquote {
    width: 50%;
  }
}
@media screen and (max-width: 1599px) {
  .quote-wrapper .quote-slider .slide blockquote {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1439px) {
  .quote-wrapper .quote-slider .slide blockquote {
    width: 55%;
  }
}
@media screen and (max-width: 1279px) {
  .quote-wrapper .quote-slider .slide blockquote {
    font-size: 3.2rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1023px) {
  .quote-wrapper .quote-slider .slide blockquote {
    width: 75%;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .quote-wrapper .quote-slider .slide blockquote {
    width: 100%;
    padding: 0 5rem;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 639px) {
  .quote-wrapper .quote-slider .slide blockquote {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .quote-wrapper .quote-slider .slide blockquote {
    font-size: 2.1rem;
    padding: 0 4rem;
  }
}
.quote-wrapper .quote-slider .slide blockquote cite {
  display: block;
  font-family: "Beausite Classic", sans-serif;
  font-size: 0.525em;
  margin-top: 1.5em;
}
@media screen and (max-width: 1023px) {
  .quote-wrapper .quote-slider .slide blockquote cite {
    font-size: 0.65em;
  }
}
@media screen and (max-width: 500px) {
  .quote-wrapper .quote-slider .slide blockquote cite {
    font-size: 0.7em;
    margin-top: 1em;
  }
}

.faqs {
  min-height: 100vh;
  background: #ffc9c4;
  color: #e52328;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  padding: 19rem 15rem;
  text-align: center;
}
@media screen and (max-width: 1919px) {
  .faqs {
    padding: 15rem 10rem;
  }
}
@media screen and (max-width: 1439px) {
  .faqs {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  .faqs {
    padding: 10rem 6rem;
  }
}
@media screen and (max-width: 1023px) {
  .faqs {
    padding: 10rem;
    height: auto;
    min-height: 0;
  }
}
@media screen and (max-width: 767px) {
  .faqs {
    padding: 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .faqs {
    padding: 5rem 4rem;
    font-size: 1.4rem;
  }
}
.faqs .faq-content {
  width: 100%;
}
.faqs h2 {
  margin-bottom: 1em;
}
.faqs ul.accordion {
  border-bottom: 1px solid #e52328;
}
.faqs ul.accordion li {
  border-top: 1px solid #e52328;
}
.faqs ul.accordion li h3 {
  font-size: 1em;
  font-family: "Beausite Classic", sans-serif;
  line-height: 1;
  padding: 0.75em 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.faqs ul.accordion li h3:hover {
  opacity: 0.5;
}
.faqs ul.accordion li .accordion-content {
  display: none;
  border-top: 1px solid #e52328;
  padding: 3rem;
}

.sign-up {
  background: #e52328;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
@media screen and (max-width: 1023px) {
  .sign-up {
    min-height: 0;
    padding: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .sign-up {
    padding: 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .sign-up {
    padding: 5rem 4rem;
    font-size: 1.6rem;
  }
}
.sign-up .sign-up-content {
  text-align: center;
  width: 35%;
}
@media screen and (max-width: 1599px) {
  .sign-up .sign-up-content {
    width: 40%;
  }
}
@media screen and (max-width: 1279px) {
  .sign-up .sign-up-content {
    width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  .sign-up .sign-up-content {
    width: 100%;
  }
}
.sign-up .sign-up-content h2 {
  margin-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  .sign-up .sign-up-content h2 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 639px) {
  .sign-up .sign-up-content h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 500px) {
  .sign-up .sign-up-content h2 {
    font-size: 2.4rem;
  }
}
.sign-up .sign-up-content p {
  font-size: 3rem;
  font-family: "Khmer MN", serif;
  line-height: 1.1;
}
@media screen and (max-width: 1599px) {
  .sign-up .sign-up-content p {
    margin-bottom: 1.25em;
  }
}
@media screen and (max-width: 1279px) {
  .sign-up .sign-up-content p {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 639px) {
  .sign-up .sign-up-content p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .sign-up .sign-up-content p {
    font-size: 2.1rem;
  }
}
.sign-up .sign-up-content form {
  border-top: 1px solid white;
}
.sign-up .sign-up-content form input[type=text],
.sign-up .sign-up-content form input[type=email] {
  display: block;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid white;
  font-size: 1.8rem;
  font-family: "Beausite Classic", sans-serif;
  height: 3em;
}
@media screen and (max-width: 1023px) {
  .sign-up .sign-up-content form input[type=text],
  .sign-up .sign-up-content form input[type=email] {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .sign-up .sign-up-content form input[type=text],
  .sign-up .sign-up-content form input[type=email] {
    font-size: 1.5rem;
  }
}
.sign-up .sign-up-content form [type=email] {
  margin-bottom: 2em;
}
.sign-up .sign-up-content form fieldset {
  border: 1px solid white;
  display: flex;
  position: relative;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 639px) {
  .sign-up .sign-up-content form fieldset {
    margin-bottom: 3rem;
  }
}
.sign-up .sign-up-content form fieldset label {
  font-size: 1.3rem;
  font-family: "Beausite Classic", sans-serif;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.sign-up .sign-up-content form fieldset label::before {
  border-right: 1px solid white;
  content: "✓";
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-right: 1.5rem;
  background: #e52328;
  transition: all 0.3s ease;
  color: #e52328;
}
@media screen and (max-width: 1023px) {
  .sign-up .sign-up-content form fieldset label::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media screen and (max-width: 639px) {
  .sign-up .sign-up-content form fieldset label::before {
    height: 100%;
    width: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .sign-up .sign-up-content form fieldset label {
    font-size: 1.1rem;
  }
}
.sign-up .sign-up-content form fieldset label span {
  width: calc(100% - 6.5rem);
  padding-right: 3rem;
}
@media screen and (max-width: 1439px) {
  .sign-up .sign-up-content form fieldset label span {
    padding-right: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .sign-up .sign-up-content form fieldset label span {
    padding: 1rem 1.5rem 1rem 0;
    width: calc(100% - 7.5rem);
  }
}
.sign-up .sign-up-content form fieldset a {
  text-decoration: underline;
}
.sign-up .sign-up-content form fieldset [type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  z-index: 1;
  position: absolute;
  left: 2.5rem;
  transform: translateX(-50%);
}
.sign-up .sign-up-content form fieldset [type=checkbox]:checked + label::before {
  background: white;
}
.sign-up .sign-up-content form button {
  cursor: pointer;
}

.page-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner::before {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  content: "";
  opacity: 0.5;
}
.page-banner img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.page-banner .banner-content {
  z-index: 2;
  position: relative;
  color: white;
  text-align: center;
}
.page-banner .banner-content h1 {
  text-transform: uppercase;
  margin-bottom: 0.5em;
  line-height: 1;
}
.page-banner .banner-content p {
  font-size: 1.8rem;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1599px) {
  .page-banner .banner-content p {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 1439px) {
  .page-banner .banner-content p {
    width: 40%;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  .page-banner .banner-content p {
    width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  .page-banner .banner-content p {
    width: 100%;
    padding: 0 10rem;
  }
}
@media screen and (max-width: 767px) {
  .page-banner .banner-content p {
    padding: 0 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .page-banner .banner-content p {
    padding: 0 4rem;
    font-size: 1.4rem;
  }
}
.page-banner .banner-content .button-wrap {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  justify-content: center;
}
@media screen and (max-width: 639px) {
  .page-banner .banner-content .button-wrap {
    flex-direction: column;
    row-gap: 2rem;
    align-items: center;
    width: 16.5rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  .page-banner .banner-content a {
    display: block;
    width: 100%;
  }
}
.page-banner .banner-content a:hover {
  color: black;
}
.page-banner .banner-content a.scroll {
  cursor: pointer;
}

.bottom-content {
  font-size: 1.8rem;
  padding: 15rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffc9c4;
  color: #e52328;
}
@media screen and (max-width: 1919px) {
  .bottom-content {
    padding: 10rem 0;
  }
}
@media screen and (max-width: 1439px) {
  .bottom-content {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  .bottom-content {
    padding: 7.5rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .bottom-content {
    padding: 7.5rem 10rem;
  }
}
@media screen and (max-width: 767px) {
  .bottom-content {
    padding: 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .bottom-content {
    padding: 5rem 4rem;
    font-size: 1.4rem;
  }
}
.bottom-content .content-wrapper {
  width: 35%;
  text-align: center;
}
@media screen and (max-width: 1599px) {
  .bottom-content .content-wrapper {
    width: 40%;
  }
}
@media screen and (max-width: 1279px) {
  .bottom-content .content-wrapper {
    width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  .bottom-content .content-wrapper {
    width: 100%;
  }
}
.bottom-content .content-wrapper h2 {
  margin-bottom: 0.8em;
}

.menu-item {
  margin-bottom: 1.5em;
}
.menu-item:last-child {
  margin-bottom: 0;
}
.menu-item h3 {
  text-transform: uppercase;
  font-size: 1.15em;
  line-height: 1;
  margin-bottom: 0.15em;
}
.menu-item p {
  margin-bottom: 0.3em;
}
.menu-item + h2 {
  margin-top: 1.125em;
}
@media screen and (max-width: 1023px) {
  .menu-item + h2 {
    margin-top: 0.5em;
  }
}

@media screen and (max-width: 1023px) {
  .img-wrapper.blog {
    display: none;
  }
}
.img-wrapper.blog a {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.img-wrapper.blog a.active {
  opacity: 1;
  z-index: 2;
  pointer-events: all;
}

.blog-listing {
  background: #e52328;
  min-height: 100vh;
}
@media screen and (max-width: 1023px) {
  .blog-listing {
    min-height: 0;
  }
}
.blog-listing a.blog-item {
  display: block;
  color: white;
  border-bottom: 1px solid white;
  font-size: 1.8rem;
  padding: 4rem 8rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1919px) {
  .blog-listing a.blog-item {
    padding: 4rem 6rem;
  }
}
@media screen and (max-width: 1599px) {
  .blog-listing a.blog-item {
    padding: 4rem 5rem;
  }
}
@media screen and (max-width: 1439px) {
  .blog-listing a.blog-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .blog-listing a.blog-item {
    text-align: center;
    padding: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .blog-listing a.blog-item {
    padding: 4rem 3.5rem;
  }
}
@media screen and (max-width: 500px) {
  .blog-listing a.blog-item {
    font-size: 1.4rem;
    padding: 3.5rem 3rem 3rem;
  }
}
.blog-listing a.blog-item:hover {
  background: #ffc9c4;
  color: #e52328;
}
@media screen and (max-width: 1023px) {
  .blog-listing a.blog-item:hover {
    background: transparent;
    color: white;
  }
}
.blog-listing a.blog-item h2 {
  width: 50%;
}
@media screen and (max-width: 1599px) {
  .blog-listing a.blog-item h2 {
    width: 66.6666666%;
  }
}
@media screen and (max-width: 1279px) {
  .blog-listing a.blog-item h2 {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .blog-listing a.blog-item h2 {
    width: 50%;
    margin: 0 auto 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .blog-listing a.blog-item h2 {
    width: 75%;
  }
}
@media screen and (max-width: 500px) {
  .blog-listing a.blog-item h2 {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .blog-listing a.blog-item p {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .blog-listing a.blog-item p {
    width: 100%;
  }
}
.blog-listing a.blog-item .btn, .blog-listing a.blog-item header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .blog-listing a.blog-item button, .blog-listing a.blog-item .text-section .wpcf7 form button, .text-section .wpcf7 form .blog-listing a.blog-item button, .blog-listing a.blog-item .stacked .wpcf7 form button, .stacked .wpcf7 form .blog-listing a.blog-item button, .blog-listing a.blog-item .sign-up .sign-up-content form button, .sign-up .sign-up-content form .blog-listing a.blog-item button {
  display: none;
  font-family: "Khmer MN", serif;
}
@media screen and (max-width: 1023px) {
  .blog-listing a.blog-item .btn, .blog-listing a.blog-item header nav .nav-details .sign-up form button, header nav .nav-details .sign-up form .blog-listing a.blog-item button, .blog-listing a.blog-item .text-section .wpcf7 form button, .text-section .wpcf7 form .blog-listing a.blog-item button, .blog-listing a.blog-item .stacked .wpcf7 form button, .stacked .wpcf7 form .blog-listing a.blog-item button, .blog-listing a.blog-item .sign-up .sign-up-content form button, .sign-up .sign-up-content form .blog-listing a.blog-item button {
    display: inline-block;
    width: auto;
  }
}

.blog-info {
  font-size: 1em;
  margin-bottom: 2em;
}
.blog-info h3,
.blog-info p {
  font-family: "Khmer MN", serif;
  line-height: 1;
  margin-bottom: 0.2em;
}

.text-page {
  color: white;
  padding: 22rem 10rem 12rem;
}
@media screen and (max-width: 1439px) {
  .text-page {
    padding: 16rem 10rem 10rem;
  }
}
@media screen and (max-width: 1279px) {
  .text-page {
    padding: 15rem 7.5rem 7.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .text-page {
    padding: 13rem 6.5rem 6.5rem;
  }
}
@media screen and (max-width: 767px) {
  .text-page {
    padding: 13rem 5rem 5rem;
  }
}
@media screen and (max-width: 639px) {
  .text-page {
    padding: 12rem 4.5rem 4rem;
  }
}
@media screen and (max-width: 500px) {
  .text-page {
    padding: 11rem 4rem 4rem;
  }
}
.text-page.not-found {
  text-align: center;
  justify-content: center;
  padding: 8rem 10rem 0;
  align-items: center;
  min-height: 100vh;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .text-page.not-found {
    padding: 8rem 6.5rem 0;
  }
}
@media screen and (max-width: 639px) {
  .text-page.not-found {
    padding: 8rem 4.5rem 0;
  }
}
@media screen and (max-width: 500px) {
  .text-page.not-found {
    padding: 7rem 3.5rem 0;
  }
}
.text-page.not-found .text-container {
  width: 100%;
}
.text-page .text-container {
  width: 80%;
}
@media screen and (max-width: 1023px) {
  .text-page .text-container {
    width: 100%;
  }
}
.text-page h1 {
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (max-width: 1599px) {
  .text-page h1 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 1439px) {
  .text-page h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1279px) {
  .text-page h1 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .text-page h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 639px) {
  .text-page h1 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 500px) {
  .text-page h1 {
    font-size: 2rem;
  }
}
.text-page p.featured {
  font-size: 10rem;
  font-family: "Khmer MN", serif;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 0.65em;
}
@media screen and (max-width: 1599px) {
  .text-page p.featured {
    font-size: 9rem;
  }
}
@media screen and (max-width: 1439px) {
  .text-page p.featured {
    font-size: 8rem;
  }
}
@media screen and (max-width: 1023px) {
  .text-page p.featured {
    font-size: 7rem;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .text-page p.featured {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 639px) {
  .text-page p.featured {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 500px) {
  .text-page p.featured {
    font-size: 4.2rem;
  }
}
.text-page hr {
  width: 11rem;
  border-top: 6px dotted #ffffff;
  margin: 0 auto 8rem;
}
@media screen and (max-width: 1023px) {
  .text-page hr {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .text-page hr {
    border-width: 4px;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .text-page hr {
    width: 8rem;
    margin-bottom: 3rem;
  }
}
.text-page p {
  font-size: 2.1rem;
}
@media screen and (max-width: 1599px) {
  .text-page p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1439px) {
  .text-page p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .text-page p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 639px) {
  .text-page p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .text-page p {
    font-size: 1.3rem;
  }
}
