@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

:root {
  --primary-font: "Lato", sans-serif;
  --site-max-width: 1500px;
  --site-padding: 24px;
  --site-border-radius: 12px;
  --menu-background: rgba(255, 255, 255, 0.62);
  --accent-color: #EB6F1A;
  --accent-color-text: #FFFFFF;
  --button-color: #2E5FA4;
  --button-color-hover: #0D1D41;
  --button-text-color: #FFFFFF;
  --background-color: #FFFFFF;
  --text-color: #000000;
  --gray-color: #5C5C5C;
  --footer-text-color: #FFFFFF;
  --footer-background: #000000;
  --header-height: 102px;
}

body {
  font-family: var(--primary-font);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: var(--text-color);
  background-color: var(--background-color);
  padding-top: var(--header-height);
}

.cms-toolbar-expanded #header {
  top: 46px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  text-transform: uppercase;
  margin: 0.9em 0 0.6em 0;
  line-height: 1.4em;
}

h1, h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.35em;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 100ms, border-color 200ms, background-color 300ms;
}

ul,
p {
  line-height: 1.65em;
  margin: 1.5em 0;
}

.button-wrapper {
  clear: both;
  text-align: center;
  padding: 7% 0;
}

.button {
  display: inline-block;
  padding: 18px;
  background-color: transparent;
  color: var(--text-color);
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--text-color);
  cursor: pointer;
  min-width: 11em;
}

.button:hover {
  color: var(--button-text-color);
  background-color: var(--text-color);
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--background-color);
}

#header .header-inner {
  position: relative;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 8px var(--site-padding);
  height: var(--header-height);
  box-sizing: border-box;
}

#header .header-inner:after {
  content: "";
  display: block;
  clear: both;
}

#header .logo {
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

#header .logo img {
  width: 100%;
  height: auto;
  max-width: 100px;
}

#header .menu-toggle {
  display: none;
  position: absolute;
  z-index: 10000;
  left: 50%;
  bottom: 16px;
  width: 48px;
  height: 48px;
  background: url("../img/menu-icon.d332897221fd.png") no-repeat 50% 50%;
  cursor: pointer;
  transform: translateX(-50%);
  filter: brightness(0);
}

#header.is-active .menu-toggle {
  background-size: 32px;
}

#header.is-active .menu-toggle {
  background-image: url("../img/menu-close-icon.6fabbff1396c.png");
}

#mainnav {
  float: right;
}

.mainmenu {
  list-style: none;
  padding: 0;
  margin: 26px 0 0 0;
}

.mainmenu .child {
  display: inline-block;
  margin-right: 1.5em;
  vertical-align: middle;
}

.mainmenu .child.icon:last-child,
.mainmenu .child:last-child {
  margin-right: 0;
}

.mainmenu .child a {
  display: block;
  color: var(--text-color);
  text-transform: uppercase;
}

.mainmenu .child.icon {
  display: inline-block;
  line-height: 0;
  margin-right: 0.7em;
}

.mainmenu .child.icon img {
  width: 100%;
  max-width: 35px;
  height: auto;
}

/* Section */
section.section-white {
  background-color: var(--background-color);
}

section.section-light {
  background-color: #EEF0EB;
}

/* Text */
section .text {
  max-width: 950px;
  margin: 3em auto 3em auto;
  padding: 0 var(--site-padding);
  text-align: center;
}

/* Icon Text */
.icon-text-list {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8rem;
  padding: 0 1rem;
  overflow: hidden;
}

.icon-text-list .icon-text {
  flex: 0 1 calc(25% - 9rem);
  max-width: calc(25% - 9rem);
  box-sizing: border-box;
  text-align: center;
  width: 25%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.icon-text-list .icon-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.icon-text-list .icon-text img {
  max-width: 100%;
  width: 6em;
  height: auto;
  display: inline-block;
}

.icon-text-list .icon-text p {
  font-size: 0.8em;
  line-height: 1.2em;
}

/* Image */
section .image-container {
  line-height: 0;
}

section .image-container.format-original {
  text-align: center;
}

section .image-container.format-original .image {
  max-width: 100%;
}

section .image-container.format-landscape .image {
  width: 100%;
}

section .image {
  height: auto;
}

section .image-cover {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section .image-cover.format-text-box {
  padding: 8% 0;
}

section .image-cover.format-text-box::after {
  content: "";
  display: block;
  clear: both;
}

section .image-cover.format-text-box .image-cover-text {
  float: right;
  width: 45%;
  min-width: 700px;
  padding: 4em;
  background-color: rgba(72, 87, 36, 0.87);
  color: #FFFFFF;
  box-sizing: border-box;
  text-align: center;
  margin-right: -100%;
  transition: margin-right 0.6s ease-in-out;
}

section .image-cover.format-text-box.visible .image-cover-text {
  margin-right: 0;
}

section .image-cover.format-text-center {
  padding: 14em var(--site-padding) 12em var(--site-padding);
}

section .image-cover.format-text-center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.46);
  z-index: 1000;
}

section .image-cover.format-text-center .image-cover-text {
  position: relative;
  z-index: 1001;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.6em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}


section .image-cover.format-text-icon {
  padding: 5em var(--site-padding) 20em var(--site-padding);
  text-align: center;
  background-attachment: fixed;
}

section .image-cover.format-text-icon .image-cover-text {
  position: relative;
  z-index: 1001;
  color: #FFFFFF;
  font-size: 1.3em;
  max-width: 950px;
  margin: 0 auto;
  opacity: 0;
}

section .image-cover.format-text-icon.visible .image-cover-text {
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

section .image-cover.format-text-icon .image-cover-icon {
  width: 100%;
  max-width: 360px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards;
  pointer-events: none;
}

section .image-cover.format-text-icon .image-cover-text h3,
section .image-cover.format-text-icon .image-cover-text h2,
section .image-cover.format-text-icon .image-cover-text h1 {
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Gallery */
.gallery-wrapper {
  margin-bottom: 3em;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  max-width: var(--site-max-width);
  gap: var(--site-padding);
  padding: var(--site-padding);
  margin: 0 auto;
}

.gallery .gallery-image {
  flex-grow: 1;
  height: 30vw;
  width: 36%;
  border-radius: var(--site-border-radius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.6s;
}

.gallery .gallery-image.visible {
  opacity: 1;
}

.gallery-image:nth-of-type(5n + 2) {
  width: calc(64% - var(--site-padding));
}

.gallery-image:nth-of-type(5n + 5) {
  width: calc(28% - (var(--site-padding) * 2));
}

.gallery-more {
  max-width: var(--site-max-width);
  padding: 0 var(--site-padding);
  margin: 0 auto 1.5em auto;
  text-align: right;
}

.gallery-more i {
  font-style: normal;
}

.gallery-more a {
  display: inline-block;
  color: #6E6E6E;
  font-size: 1.2em;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 6px;
}

.gallery-more a:hover {
  color: var(--text-color);
}

/* Maps */
.contact-wrapper {
  display: flex;
  max-width: 1300px;
  justify-content: center;
  margin: 0 auto 4em auto;
  gap: var(--site-padding);
  padding: 0 var(--site-padding);
}

.contact-wrapper .map-canvas {
  width: 50%;
  border-radius: 7px;
  min-height: 60vh;
}

.contact-wrapper .forms {
  width: 50%;
  background-color: #F0EFF0;
  border-radius: var(--site-border-radius);
  padding: var(--site-padding);
  box-sizing: border-box;
}

.contact-wrapper .forms p {
  margin-top: 0;
  font-size: 1.3em;
  line-height: 1.3em;
}

/* Plan List */

section .plan-list {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 6em;
  flex-wrap: wrap;
  padding: 0 var(--site-padding);
  box-sizing: border-box;
}

section .plan-list .plan {
  display: block;
  background-color: #a8a8a8;
  border-radius: var(--site-border-radius);
  text-align: center;
  padding: 3em 2em;
}

section .plan-list .plan:hover {
  background-color: #485724;
}

section .plan .plan-type {
  display: block;
  font-size: 9em;
  font-weight: 900;
  line-height: 1em;
  color: #FFFFFF;
}

section .plan .plan-type sup {
  position: relative;
  line-height: 0;
  vertical-align: baseline;
  top: -.5em;
  font-size: 42%;
  margin-left: 32px;
}

section .plan .plan-separator {
  display: inline-block;
  border-bottom: 2px solid #FFFFFF;
  width: 60%;
  margin: 2.5em 0 5em 0;
}

section .plan .plan-size {
  display: block;
  color: #FFFFFF;
  font-size: 2em;
  line-height: 1.45em;
}

/* Forms */
.forms .form-field {
  margin-bottom: 1em;
}

.forms label {
  display: block;
  margin-bottom: 6px;
}

.forms .form-field.CheckboxInput,
.forms .form-field select,
.forms .form-field textarea,
.forms .form-field input:not([type="checkbox"]) {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--text-color);
  background-color: transparent;
  color: var(--text-color);
  display: block;
  padding: 6px 0;
}

.forms .form-field textarea {
  border-bottom: 0;
  resize: vertical;
  height: 180px;
  min-height: 180px;
}

.forms .errorlist {
  list-style: none;
  padding: 0;
  margin: 0;
  color: red;
}

.forms .form-recaptcha {
  text-align: center;
}

.forms .form-recaptcha .g-recaptcha {
  display: inline-block;
}

.forms .form-sent p {
  text-align: center;
  margin: 0;
}

/* Footer */
footer {
  background: var(--footer-background);
}

footer .credit {
  padding: 1% 0;
  text-align: center;
}

footer .credit .credit-text,
footer .credit .credit-logo {
  display: inline-block;
  vertical-align: middle;
}

footer .credit .credit-text {
  font-size: 0.8em;
  color: var(--footer-text-color);
}

footer .credit .credit-logo {
  display: inline-block;
  margin: 15px 3px;
  width: 164px;
  height: 32px;
  background: no-repeat url("../img/myo-concept.08c39a72ac73.png");
  background-size: contain;
}

/* Manager */
#tinymce {
  padding-top: 0;
}