/************ PAGE ****************/

/* RESET */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html, body {
    height:100%;
    width: 100%;
}

.page {
    width: 100%;
    padding: 0;
    max-width: initial;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/************ HEAD ****************/

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

.logo {
    width: 130px;
    height: 125px;
    margin-top: 16px;
    margin-left: 18px;
}

.so-me {
    margin-top: 16px;
    margin-right: 62px;
}

.topnav {
    position: fixed;
    top: 16px;
    right: 12px;
    left: calc(100vw - 5.8rem);
}

.menu-button {
    height: 32px;
    width: 32px;
    display: flex;

    border-radius: 100%;
    background: #FFFFFF;
    fill: rgb(234,108,30);
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menuIcon {
    height: 32px;
    width: 32px;
}

.visibleOnMobile {
    display: block !important;
}

.popupBlur {
    display: none;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    background: rgba(41, 39, 38, 0.75);
}

.popupClose {
    background-image: url(/assets/images/close.webp);
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
    background-size: 100% 100%;
    position: fixed;
    right: 15px;
    top: 45px;
}

.popupMenu {
    display: none;
    position: fixed;
    left: 32px;
    height: calc(var(--fh, 100vh) - 128px);
    width: calc(100vw - 64px);
    top: 64px;
    border-radius: 16px;
    overflow: hidden;
}

.popupMenu > div {
    background: rgba(234, 108, 30, 0.75);
    height: 100%;
    width: 100%;

    font-size: calc(((38vh - 64px) / 7));
    line-height: calc(((38vh - 64px) / 7));
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.popupMenu a {
    color: #fff;
    /*padding: 16px 16px;*/
    padding-left: 32px;
    padding-right: 32px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

/*.menu-button:target .popupMenu {display: block;}*/

/************ BODY ****************/

main {
    width: 100%;
}

.banner {
    display: flex;
    flex-direction: column-reverse;
}

.banner, footer {
    padding: 0 64px 32px 32px;
}

.bannerHome {
    height: calc(var(--fh, 100vh) - 52px);
}

.bannerPage {
    height: calc(var(--fh, 100vh) - 147px);
}

.pageContent {
    padding: 0 32px 0 32px;
}

.bannerContentMobile {
    display: flex;
}

.scroll {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 130px;
    margin-left: -8px;
}

.arrow {
    display: none;
}

.full-width {
    width: 100%;
}

.half-width {
    width: 50%;
}

.quarter-width {
    width: 25%;
}

.video {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/************ FOOT ****************/

footer {
    width: 100%;
    background: rgb(234, 108, 30);
    display: flex;
    flex-direction: column;
    /* min-height: 100vh; */
    justify-content: space-between;
    padding-top: 32px;
}

footer *, footer > * > a {
    color: white !important;
}

.botnav {
    display: none;
}

.address {
    display: inline-flex;
    flex-direction: column;

    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.04rem;
    line-height: 2rem;
}

.formal {
    margin-top: 4vh;
}

.formal > div:last-child {
    margin-top: 32px;
}

form {
    display: flex;
    flex-direction: column;
}

.form-header {
    display: none;
}

input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea {
    background: rgba(0, 0, 0, 0);
    border: 0;
    border-bottom: 1px solid white;
    color: rgb(255, 255, 255);
    border-radius: 0;

    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 1px;

    padding: 0;
    outline: none;
    line-height: 0.5;

    margin-top: 16px;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

input[type="button"] {
    font-weight: 800;
    color: rgb(255, 255, 255);
    font-size: 1.6rem;
    letter-spacing: 2.8px;
    border: 0;
    margin-top: 24px;
    padding-left: 0;
}

/************ BANNER ****************/

.bannerContent {
    display: flex;
    height: 100%;
}

.bannerPositioner {
    display: flex;
    width: 100%;
}

.bannerLeft {
    width: 128px;
}

/************ CONTENT ****************/

.pageDescription {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.white {
    background: #FFFFFF;
}

.semiTransparentOrange {
    background: rgba(234, 108, 30, 0.75);
    color: #FFFFFF;
}

.orangeSection {
    background: rgba(234, 108, 30);
    color: #FFFFFF !important;
}

.orangeSection > .pageContent {
    padding: 0 48px 0;
}

.transparent {
    color: #FFFFFF;
}

.spacer-1 {
    height: 1.6rem;
}
.spacer-2 {
    height: 3.2rem;
}
.spacer-3 {
    height: 4.8rem;
}
.spacebot1 > :last-child {
    padding-bottom: 2.4rem;
}
.spacebot2 > :last-child {
    padding-bottom: 3.2rem;
}
.spacebot3 > :last-child {
    padding-bottom: 4.8rem;
}
.spacetop1 > :first-child {
    padding-top: 2.4rem;
}
.spacetop2 > :first-child {
    padding-top: 3.2rem;
}
.spacetop3 > :first-child {
    padding-top: 4.8rem;
}

button {
    margin: 0;
}

.cv-button {
    width: 128px;
}


.table, .tabular {
    display: grid;
}

.audio {
    display: grid;
    grid-gap: 8px;
}

.navigation-boxes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
}

.navigation-box {
    position: relative;
    height: 0;
    padding-top: 62.5%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.navigation-box:hover {
    opacity: 0.6;
}

.navigation-box > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.navigation-box > div > div {
    text-align: center;
    margin-bottom: 5%;
}

.navigation-box-text {
    font-size: 100%;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 1);
}

.navigation-box-button {
    background-color: rgb(255,255,255);
    color: rgb(39,107,34);
}

.navigation-box-button:hover {
    color: rgb(234, 108, 30);
}

@media (min-width: 600px) {
    .navigation-boxes { 
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media (min-width: 800px) {
    .navigation-boxes {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-container{
    position:relative;
    border: 0;
}
.video {
    width: 100%;
    border: 0;
    outline: none;
    cursor: pointer;
}
.play-button {
    width: 60px;
    height: 60px;
    background-color: rgb(234,108,30);
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
    opacity: 0.8;
    border-radius: 30px;
    position:absolute;
    left:0%;
    right:0%;
    top:0%;
    bottom:0%;
    margin:auto;
    cursor: pointer;
}
.play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}
.play-button:before {
    position: absolute;
}
.play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}

.cell:nth-child(even), .row:nth-child(even) {
    margin-bottom: 8px;
}

.flowers1 {
    white-space: nowrap;
    height: 112px;
    overflow: hidden;
    margin-top: -64px;
    display: flex;
    /*margin-bottom: -32px;*/
    justify-content: flex-end;
    align-items: baseline;
}

.flowers1 > .flower1 {
    width: 85px;
    height: 123px;
}

.flowers1 > .flower2 {
    width: 109px;
    height: 158px;
    margin-left: -36px;
}

.flowers1 > .flower3 {
    display: none;
}

.flowers2 {
    white-space: nowrap;
    height: 132px;
    width: calc(100% + 96px);
    overflow: hidden;
    margin-left: -32px;
    margin-top: -64px;
    display: flex;
    margin-bottom: 8px;
    justify-content: space-between;
    align-items: baseline;
    transform: scale(1.125);
}

.flowers2 > * > .flower1 {
    margin-left: 32px;
    width: 45px;
    height: 130px;
    transform: rotate(-23deg) scaleX(-1);
}

.flowers2 > * > .flower2 {
    margin-left: -8px;
    width: 47px;
    height: 133px;
}

.flowers2 > * > .flower3 {
    margin-right: -48px;
    width: 70px;
    height: 198px;
}

.flowers2 > * > .flower4 {
    margin-right: calc(50% + 64px);
    width: 60px;
    height: 168px;
    z-index: 304;
    transform: rotate(34deg);
}

.center-on-mobile {
    display: flex;
    justify-content: center;
}

figure > img {
    max-width: 100%;
}

/* .content-text {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
} */

.content-text > p:not(:last-child) {
    margin-bottom: 2rem;
    /* width: fit-content; */
}

.rightAligned {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.rightAligned > * {
    margin-bottom: 16px;
}

@media (min-width: 1008px) and (min-height: 600px) {
    .not-desktop {
        display: none;
    }
}

@media not all and (min-width: 1008px) and (min-height: 600px) {
    .not-mobile {
        display: none;
    }
}

.mobile-contentWidth > div, .mobile-windowWidth > div, .mobile-stacked > div {
    display: flex;
    justify-content: flex-end;
}

.mobile-stacked > div:nth-child(1) {
    display: block;
    line-height: 0;
}
.mobile-contentWidth > div:nth-child(1) {
    width: 100%;
}
.mobile-windowWidth > div {
    width: 100vw;
    margin-left: -32px;
}

figure {
    margin: 0;
}

/*************************************/
/************* MOBILE ****************/
/*************************************/

/*@media only screen and (max-width: 767px) {*/
/*    .scroll {*/
/*        margin-left: -8px;*/
/*        align-items: start;*/
/*    }*/
/*}*/
