/* AtacamaBeta Fonts */
@font-face {
  font-family: 'AtacamaBeta';
  src: url('../fonts/AtacamaBeta-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta';
  src: url('../fonts/AtacamaBeta-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta Condensed';
  src: url('../fonts/AtacamaBeta-CondensedBlack.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta Condensed';
  src: url('../fonts/AtacamaBeta-CondensedBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta Condensed';
  src: url('../fonts/AtacamaBeta-CondensedLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta Condensed';
  src: url('../fonts/AtacamaBeta-CondensedMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta Condensed';
  src: url('../fonts/AtacamaBeta-CondensedRegular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta Condensed';
  src: url('../fonts/AtacamaBeta-CondensedSemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta Condensed';
  src: url('../fonts/AtacamaBeta-CondensedThin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta';
  src: url('../fonts/AtacamaBeta-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta';
  src: url('../fonts/AtacamaBeta-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta';
  src: url('../fonts/AtacamaBeta-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta';
  src: url('../fonts/AtacamaBeta-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta';
  src: url('../fonts/AtacamaBeta-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'AtacamaBeta';
  src: url('../fonts/AtacamaBeta-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

/* MMSign Fonts */
@font-face {
  font-family: 'MMSign';
  src: url('../fonts/MMSign-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'MMSign';
  src: url('../fonts/MMSign-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'MMSign';
  src: url('../fonts/MMSign-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'MMSign';
  src: url('../fonts/MMSign-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'MMSign';
  src: url('../fonts/MMSign-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MMSign';
  src: url('../fonts/MMSign-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

.spacing-top--30{
    margin-top: 30px;
}

.spacing-top--40{
    margin-top: 40px;
}

.spacing-top--50{
    margin-top: 50px;
}

@media only all and (max-width: 756px) {
    .hide-mobile {
        display: none;
    }
}
@media only all and (min-width: 757px) {
    .hide-desktop {
        display: none;
    }
}

.hidden {
    display: none;
}

.is-hover-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'AtacamaBeta';
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
    overflow-x: hidden;
}

a, a:visited, a:hover, a:focus, a:active {
    color: #000000;
    text-decoration: none;
}

#page-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    height: 100vh;
}

#header-wrapper, #footer-wrapper {
    padding: 1rem 2rem;
    font-family: 'MMSign';
    font-weight: 500;
    line-height: 1.2;
}

@media only all and (max-width: 756px) {
    #header-wrapper, #footer-wrapper {
        padding: 2rem 1rem 1rem;
    }
}

#header-wrapper .flex-item:last-child {
    text-align: right;
}

#body-wrapper {
    display: flex;
    flex-grow: 1;
}

@media only all and (max-width: 756px) {
    #body-wrapper {
        margin-top: 32px;
    }
}

@media only all and (min-width: 757px) {
    #body-wrapper.flex--center {
        align-items: center;
    }
}

@media only all and (max-width: 756px) {
    .padding {
        padding: 0 1rem;
    }
}

@media only all and (min-width: 757px) {
    .padding {
        padding-right: 2rem;
    }
}


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

@media only all and (max-width: 756px) {
    #body-wrapper .flex-container {
        flex-flow: column;
        justify-content: flex-start;
    }
}
@media only all and (max-width: 756px) {
    #body-wrapper .flex-container--reverse {
        flex-flow: column-reverse;
        justify-content: flex-end;
    }
}

.flex-container--gap {
    gap: 64px;
}
@media only all and (max-width: 756px) {
    .flex-container--gap {
        gap: 16px;
    }
}
@media only all and (min-width: 757px) {
    .flex-item--50 {
        width: 50%;
    }
}

.flex-item--center-h {
    display: flex;
    justify-content: center;
    flex-flow: column;
}

.flex-item--center-v {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.flex-item--50 img {
    max-height: 800px;
}

@media only all and (max-width: 1800px) {
    .flex-item--50 img {
        max-height: 600px;
    }
}

@media only all and (max-width: 756px) {
    .flex-item--50 img {
        max-height: 600px;
    }
}

.switch-container {
    position: relative;
    width: 100%;
    height: 30vw;
    overflow: hidden;
}

@media only all and (max-width: 756px) {
    .switch-container {
        height: 40vh;
    }
}

.switch-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border: 0;
}

.switch-container img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: none !important;
    object-fit: cover;
    z-index: 1;
}

.switch-container__hint {
    position: absolute;
    z-index: 1;
    bottom: 5px;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
}

@media only all and (max-width: 756px) {
    .switch-container__hint {
        font-size: 12px;
        bottom: 10px;
    }
}

@media only all and (min-width: 757px) {
    #body-wrapper:not(.flex--center) .flex-item--50 img {
        width: 100%;
        max-width: 700px;
        max-height: none;
    }
}

.text--main, .text--main a {
    color: #BAAE86;
}

.quote {
    position: relative;
    font-size: 28px;
}
@media only all and (max-width: 756px) {
    .quote {
        font-size: 16px;
    }
}

.accordion {
    margin-bottom: 1.5rem;
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    padding-top: 16px;
    transition: max-height 0.4s ease;
}
.accordion:not(:last-child).open .accordion__body {
    border-bottom: 1px solid;
}

.accordion__head {
    cursor: pointer;
}

.accordion.open .accordion__head {
    font-weight: 700;
}

.accordion__head::after {
    content: '+';
    float: right;
    font-size: 32px;
    font-weight: 700;
}

.accordion.open .accordion__body {
    max-height: 1000px;
}

.accordion.open .accordion__head::after {
    content: '−';
}