/* ----------------------------------------*/
/* ------------[BASE CLASSES]----------------*/
/* ----------------------------------------*/

:root {
    --windowAspectRatio: 1;
    --windowActualHeight: 1;

    --widthModifierLarge: 1;
    --widthModifierSmall: 1;

    --textScaleModifier: 1;

    --recaptchaScaleModifier: 1;

    --imageScaleModifier_full: 0;
    --imageScaleModifier_half: 0;
}

html, body {
    position: relative;
    -webkit-text-size-adjust: 100%;
   
}

body {
    font-family: Helvetica;
    color: black;
    
    margin: 0%;
    padding: 0%;

    overflow-x: hidden;
    overflow-y: hidden;
}

/* ----------------------------------------*/
/* ------------[IMAGES]----------------*/
/* ----------------------------------------*/

.image-mainContainer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.image-main_full {
    position: fixed;
    z-index: -1;  
   
    /*Fallback Display*/
    width: max(100vw, 145.3vh);
    min-height: max(68.84vw, 100vh);
    top: calc(var(--imageScaleModifier_full)*1vh);

    /*Scale to Inner Height if Possible*/
    width: max(100vw, calc(1.453*var(--windowActualHeight)));
    min-height: max(68.84vw, calc(1*var(--windowActualHeight)));
    top: calc(var(--imageScaleModifier_full)*0.01*var(--windowActualHeight));
}

.image-main_half {
    position: fixed;
    z-index: -1;

    /*Fallback Display*/
    width: max(100vw, 145.3vh);
    min-height: max(68.84vw, 100vh);
    top: calc(var(--imageScaleModifier_half)*1vh);

    /*Scale to Inner Height if Possible*/
    width: max(100vw, calc(1.453*var(--windowActualHeight)));
    min-height: max(68.84vw, calc(1*var(--windowActualHeight)));
    top: calc(var(--imageScaleModifier_half)*0.01*var(--windowActualHeight));
}

/* ----------------------------------------*/
/* ------------[HEADER]----------------*/
/* ----------------------------------------*/

.header-container {
    /*background-color: rgba(0, 128, 0, 0.273);*/
    display: flex;
    flex-flow: row nowrap;

    align-items: flex-start;
    align-content: center;
    justify-content: space-between;

    width: auto;

    padding: 10vh 10vw 0 10vw;
    padding: calc(0.1*var(--windowActualHeight)) 10vw 0 10vw;
    
}

/* ----------------------------------------*/
/* ------------[NAVBAR]----------------*/
/* ----------------------------------------*/

.navbar-expandedFormat {
    background-color: rgba(75, 75, 75, 0.45);
    
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    
    box-shadow: 0px 0px 3px 0px rgba(68, 68, 68, 0.239);
}

.navbar-expandedFormat .navbar-link {
    font-family: Helvetica;

    font-size: calc(1.7vh*var(--textScaleModifier));
    font-weight: 600;
    letter-spacing: 0px;
    
    padding: calc(1vh*var(--textScaleModifier)) calc(3.25vh*var(--textScaleModifier)) calc(1vh*var(--textScaleModifier)) calc(3.25vh*var(--textScaleModifier));
    text-shadow: rgb(140, 140, 140) 0px 0 0.1vw;
}

.navbar-expandedFormat .navbar-highlight a {
    display: flex;
    flex-wrap: row nowrap;

    text-decoration-style: solid;
    text-decoration-color: rgba(180, 180, 180, 0.82);
    text-decoration-line: underline;

    text-decoration-thickness: 0.25vh;
    text-underline-offset: 0.25vh;
    text-decoration-thickness: calc(0.0025*var(--windowActualHeight));
    text-underline-offset: calc(0.0025*var(--windowActualHeight));
}

.navbar-dropdownFormat {
    position: fixed;
    background-color: rgba(75, 75, 75, 0.55);
    
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;

    top: inherit;
    right: 10vw;
    
    box-shadow: 0px 0px 3px 0px rgba(68, 68, 68, 0.239);
}

.navbar-dropdownFormat .navbar-link {
    font-family: Helvetica;

    font-size: calc(2.1vh*var(--textScaleModifier));
    font-weight: 600;
    letter-spacing: 0px;

    padding-top: calc(1vh*var(--textScaleModifier));
    padding-bottom: calc(1vh*var(--textScaleModifier));
    padding-right: calc(5vh*var(--textScaleModifier));
    padding-left: calc(1vh*var(--textScaleModifier));
    
    text-shadow: rgb(140, 140, 140) 0px 0 0.1vw;
}

.navbar-dropdownFormat .navbar-highlight a {
    display: flex;
    flex-wrap: row nowrap;

    text-decoration-style: solid;
    text-decoration-color: rgba(180, 180, 180, 0.82);
    text-decoration-line: underline;

    text-decoration-thickness: 0.25vh;
    text-underline-offset: 0.25vh;
    text-decoration-thickness: calc(0.0025*var(--windowActualHeight));
    text-underline-offset: calc(0.0025*var(--windowActualHeight));

}

.navbar-link a:hover{
    color:rgb(55, 55, 55);
    text-decoration: none;
}

/* ----------------------------------------*/
/* ------------[LOGO]----------------*/
/* ----------------------------------------*/

.logo-container {
    /*background-color: rgba(255, 255, 255, 0.468);*/
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;

    /*background-color: rgba(206, 206, 206, 0.349);*/
    padding: 0.5vh 1vw;

    margin: -0.25vh -0.25vw -0.25vh -0.25vw;
    margin: calc(0.0025*var(--windowActualHeight)) -0.25vw calc(0.0025*var(--windowActualHeight)) -0.25vw;

}

.logo-image   {
    background-color: rgba(255, 255, 255, 0.635);
    height: 6vh;
    height: calc(6.75vh*var(--textScaleModifier));
    height: calc(0.0675*var(--windowActualHeight)*var(--textScaleModifier));
    width: auto;
    margin: 0 1vw 0 0;

    box-shadow:
    0.1vw 0.1vw 0.5vw rgba(255, 255, 255, 0.489),
    -0.1vw 0.1vw 0.5vw rgba(255, 255, 255, 0.489),
    -0.1vw -0.1vw 0.5vw rgba(255, 255, 255, 0.489),
    0.1vw -0.1vw 0.5vw rgba(255, 255, 255, 0.489);
}

.logo-text {
    /*font-family: 'Arial Narrow Bold';*/
    font-family: 'Verdana', 'Garamond', 'Times New Roman', Times, serif;
    color: rgb(0, 0, 0);
    line-height: calc(3.75vh*var(--textScaleModifier));
    line-height: calc(0.0375*var(--windowActualHeight)*var(--textScaleModifier));

    font-weight: 600;
    font-size: calc(3.75vh*var(--textScaleModifier));
    font-size: calc(0.0375*var(--windowActualHeight)*var(--textScaleModifier));

    text-shadow:
    0.1vw 0.1vw 0.5vw rgba(255, 255, 255, 0.489),
    -0.1vw 0.1vw 0.5vw rgba(255, 255, 255, 0.489),
    -0.1vw -0.1vw 0.5vw rgba(255, 255, 255, 0.489),
    0.1vw -0.1vw 0.5vw rgba(255, 255, 255, 0.489);

}

/* ----------------------------------------*/
/* ------------[GROUPS (LAYOUTS)]----------------*/
/* ----------------------------------------*/

.group-verticalSpan {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    align-items: flex-start;
    justify-content: flex-start;
}

.group-verticalSpanConstrained {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    width: 67.5vw;
    max-width: calc(67.5vw*var(--widthModifierLarge));
}

.group-verticalSpanConstrained-small {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    width: 67.5vw;
    max-width: calc(67.5vw*var(--widthModifierSmall));
}

.group-horizontalSpanConstrained {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-wrap: wrap;

    align-items: center;
    justify-content: space-between;

    width: 67.5vw;
    max-width: calc(67.5vw*var(--widthModifierLarge));
}

.group-horizontalSpanConstrained_small {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-wrap: wrap;

    align-items: center;
    justify-content: space-between;

    width: 67.5vw;
    max-width: calc(67.5vw*var(--widthModifierSmall));
}

.group-verticalSpanText {
    background-color: white;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    align-items: center;
    justify-content: flex-start;

    margin-top: 2.5vh;
    z-index: -1;
}

.group-horizontalSpan {
    width: 68.5vw;
    
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-wrap: wrap;

    align-items: flex-start;
    justify-content: space-between;
}

.group-scrollHide {
    width: 100vw;
    height: 75vh;
    background-color: white;
    position: absolute;

    z-index: -1;
    
}

.group-mainTextScroll {
    margin-top: 25vh;
    margin-top: calc(0.25*var(--windowActualHeight));
}

.group-fillPage {
    height: 37.5vh;
    height: calc(0.375*var(--windowActualHeight));

    width: calc(67.5vw*var(--widthModifierLarge));
}



/* ----------------------------------------*/
/* ------------[LINE ELEMENTS]----------------*/
/* ----------------------------------------*/

.style-horizontalBar {
    background-image: linear-gradient(to bottom, #000000, #00000000);
    align-self: flex-start;
    
    width: 67.5vw;
    max-width: calc(67.5vw*var(--widthModifierLarge));
    
    height: 2.5px;
    height: calc(0.004*var(--windowActualHeight));
}

.style-horizontalBar_small {
    background-image: linear-gradient(to bottom, #000000, #00000000);
    width: 67.5vw;
    max-width: calc(67.5vw*var(--widthModifierSmall));
    
    height: 2.5px;
    height: calc(0.004*var(--windowActualHeight));
}

.style-verticalBar {
    background-color: rgb(255, 255, 255);
    width: 0.1vw;
    
    height: 2vh;
    height: calc(0.02*var(--windowActualHeight)*var(--textScaleModifier));
}

.style-errorBorder {
    border-style: solid;
    border-color: rgb(255, 0, 0);

    border-width: 5px;
    border-width: calc(0.0075*var(--windowActualHeight));
}

/* ----------------------------------------*/
/* ------------[TEXT THEMES]----------------*/
/* ----------------------------------------*/

.text-formError{
    font-family: 'Helvetica';
    color: red;

    text-shadow: 0px 0px 0.75px rgb(226, 120, 120);

    font-size: 1.6vh;
    font-size: calc(0.016*var(--windowActualHeight));
    font-weight: 500;
}

.text-alignLeft {
    width: inherit;
    text-align: left;
}

.text-alignRight {
    width: inherit;
    text-align: right;
}

.text-themeLight {
    color: white;
    text-decoration: none;
}

.text-themeDark {
    color: rgb(32, 32, 32);
    text-decoration: none;
}

.text-shadowedLight {
    text-shadow: rgb(127, 127, 127) 0px 0 2px;
}

.text-imageTitle {
    font-family: 'Arial Bold', sans-serif;
    font-weight: 600;
    letter-spacing: 2.5px;
    font-size: 3rem;

    text-shadow: rgb(127, 127, 127) 0px 0 2px;
}

.text-imageTitleHidden {
    font-family: 'Arial Bold', sans-serif;
    font-weight: 600;
    letter-spacing: 2.5px;
    font-size: 3rem;

    text-shadow: rgb(127, 127, 127) 0px 0 2px;
}

.text-subTitle {
    font-weight: 600;
    letter-spacing: 0px;
    font-size: calc(3.5vh*var(--textScaleModifier));
    font-size: calc(0.035*var(--windowActualHeight)*var(--textScaleModifier));
    
    margin-top: 3.75vh;
    margin-top: calc(0.0375*var(--windowActualHeight));
}

.text-paragraph {
    font-family: Helvetica;
    font-weight: 300;
    font-size: calc(2.2vh*var(--textScaleModifier));
    font-size: calc(0.022*var(--windowActualHeight)*var(--textScaleModifier));

    line-height: calc(3.5vh*var(--textScaleModifier));
    line-height: calc(0.035*var(--windowActualHeight)*var(--textScaleModifier));

    text-align: justify;
}

.text-formLabel {
    font-family: Helvetica;
    font-weight: 500;
    font-size: calc(2.4vh*var(--textScaleModifier));
    font-size: calc(0.024*var(--windowActualHeight)*var(--textScaleModifier));
}

.text-formWarning {
    color: #707070;

    font-size: calc(2vh*var(--textScaleModifier));
    font-size: calc(0.02*var(--windowActualHeight)*var(--textScaleModifier));
}

/* ----------------------------------------*/
/* ------------[FORM]----------------*/
/* ----------------------------------------*/


.form-fillSpace {
    height: 3vh;
    height: calc(0.03*var(--windowActualHeight));

    width: 40vw;
    max-width: calc(40vw*var(--widthModifierSmall));
}

.form-groupLayout {
    margin-top: 1vh;
    margin-bottom: 1vh;

    margin-top: calc(0.01*var(--windowActualHeight));
    margin-bottom: calc(0.01*var(--windowActualHeight));
}

.form-inputField {
    font-family: Helvetica;

    border-color: black;
    border-radius: calc(0.5vw*var(--widthModifierSmall));
    
    border-width: 1px;
    border-width: calc(0.00325*var(--windowActualHeight));

    box-shadow: none;
    border-style: solid;
}

.form-invalidEntry {
    background-color: rgba(255, 0, 0, 0.328);
}

.form-invalidEntry {
    background-color: #fff3f3;
    border-color: red;
}

.form-messageBox {
    width: 100%;
    height: 20vh;
    height: calc(0.2*var(--windowActualHeight));
}

/* ----------------------------------------*/
/* ------------[MARGIN]----------------*/
/* ----------------------------------------*/

.margin-above1 {
    margin-top: 1vh;
    margin-top: calc(0.01*var(--windowActualHeight));
}

.margin-above2_5 {
    margin-bottom: 2.5vh;
    margin-bottom: calc(0.025*var(--windowActualHeight));
}

.margin-below2_5 {
    margin-bottom: 2.5vh;
    margin-bottom: calc(0.025*var(--windowActualHeight));
}

.margin-below1 {
    margin-bottom: 5vh;
    margin-bottom: calc(0.05*var(--windowActualHeight));
}

.margin-below5 {
    margin-bottom: 3vh;
    margin-bottom: calc(0.03*var(--windowActualHeight));
}

.margin-below1 {
    margin-bottom: 1vh;
    margin-bottom: calc(0.01*var(--windowActualHeight));
}

/* ----------------------------------------*/
/* ------------[INPUTS]----------------*/
/* ----------------------------------------*/

input[type="text"] {
    font-family: Arial, Helvetica, sans-serif;
    color: black;

    font-size: 1rem;
    font-size: calc(0.02*var(--windowActualHeight));
}

textarea {
    font-family: Arial, Helvetica, sans-serif;
    color: black;

    font-size: 1rem;
    font-size: calc(0.02*var(--windowActualHeight));
}

/* ----------------------------------------*/
/* ------------[RECAPTCHA]----------------*/
/* ----------------------------------------*/

#captcha-boundingBox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.g-recaptcha {
    transform-origin: top left;
    
    transform: scale(calc(0.575));
    transform: scale(calc(0.00005*var(--recaptchaScaleModifier)));

    margin-right: -100vw;
    margin-left: 2vw;
    margin-top: 0;
    margin-bottom: 0;
}

/* ----------------------------------------*/
/* ------------[UNIQUE FORM LABELS]----------------*/
/* ----------------------------------------*/

#errorMessage-name {
    font-size: calc(1.55vh*var(--textScaleModifier));
    font-size: calc(0.0155*var(--windowActualHeight)*var(--textScaleModifier));
    opacity: 0;

    position: relative;
    text-align: right;
    width: inherit;
    margin-bottom: -1vh;
    margin-bottom: calc(-0.01*var(--windowActualHeight));
    align-self: flex-start;
}

#errorMessage-company {
    font-size: calc(1.55vh*var(--textScaleModifier));
    font-size: calc(0.0155*var(--windowActualHeight)*var(--textScaleModifier));
    opacity: 0;

    position: relative;
    text-align: right;
    width: inherit;
    margin-bottom: -1vh;
    margin-bottom: calc(-0.01*var(--windowActualHeight));
    align-self: flex-start;
    
}

#errorMessage-message {
    font-size: calc(1.55vh*var(--textScaleModifier));
    font-size: calc(0.0155*var(--windowActualHeight)*var(--textScaleModifier));

    margin: 0;
    opacity: 0;
}

#submissionGroup {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    align-items: flex-start;
    justify-content: flex-start;

    width: 67.5vw;
    max-width: calc(67.5vw*var(--widthModifierSmall));

    margin-top: -1vh;
    margin-top: calc(-0.01*var(--windowActualHeight));;
}

#contactForm-submitButton {
    font-family: Helvetica, sans-serif;
    font-weight: 600;
    color: black;

    height: 6.25vh;
    height: calc(0.0625*var(--windowActualHeight));

    width: 35vw;
    max-width: calc(20vw*var(--widthModifierSmall));

    background-color: #ffffff;

    font-size: calc(2vh*var(--textScaleModifier));
    font-size: calc(0.02*var(--windowActualHeight)*var(--textScaleModifier));

    border-width: 0.15rem;
    border-width: calc(0.00325*var(--windowActualHeight));

    border-style: solid;
    border-color: rgb(98, 98, 98);

    border-radius: calc(0.2rem * ((17.5*var(--widthModifierSmall))/5));
    border-radius: calc(0.0025*var(--windowActualHeight)*((17.5*var(--widthModifierSmall))/5));
}

#errorMessage-submitError {
    position: relative;
    left: 30vw;
    bottom: 2vh;
    opacity: 0;
}

#contactForm-submitButton:hover {
    background-color: #f6f6f6;

    border-width: 2px;
    border-width: calc(0.0035*var(--windowActualHeight));
}

#contactForm-submitButton:active {
    background-color: #dbdbdb;
    border-color: #eaeaea;

    border-width: 2px;
    border-width: calc(0.005*var(--windowActualHeight));
}

#contactForm-formMain {
    opacity: 1;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
}

#contactForm-succesfulSubmission {
    opacity: 0;
    visibility: hidden;

    position: fixed;
    bottom: 25vh;
    bottom: calc(0.25*var(--windowActualHeight));

    margin-left: calc(16.25vw/var(--widthModifierSmall));
    margin-right: calc(16.25vw/var(--widthModifierSmall));
}


#contactForm-failedSubmission {
    opacity: 0;
    visibility: hidden;

    position: fixed;
    bottom: 25vh;
    bottom: calc(0.25*var(--windowActualHeight));

    margin-left: calc(16.25vw/var(--widthModifierSmall));
    margin-right: calc(16.25vw/var(--widthModifierSmall));
}

#contactForm-submissionInfo {
    width: 100vw;
}

/* ----------------------------------------*/
/* ------------[ANIMATIONS]----------------*/
/* ----------------------------------------*/

.style-fadeIn {
    animation-name: fadein-preactive;
    animation-duration: 1.5s;
}

.style-fadeInUpward {
    animation-name: fadein-upward;
    animation-duration: 1.5s;
}

.animClass-fadein {
    animation: fadein 1s forwards;
}

.animClass-fadeout {
    animation: fadeout 0.5s forwards;
}

.animClass-mainImageMinimize {
    animation-name: minimizeMainImage;
    animation-duration: 1s;
    animation-direction: forwards;
}

.animClass-scrollContentFromBottom {
    animation-name: scrollContentFromBottom;
    animation-duration: 1s;
    animation-direction: forwards;
}

@keyframes fadein {
    from {opacity: 0; visibility: hidden;}
    to {opacity: 1; visibility: visible;}
}

@keyframes fadein-preactive {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes fadeout {
    from {opacity: 1; visibility: visible;}
    to {opacity: 0; visibility: hidden;}
}

@keyframes scrollContentFromBottom {
    0% {
        margin-top: 100vh;
        margin-top: calc(1*var(--windowActualHeight));
    }
    100% {
        margin-top: 25vh;
        margin-top: calc(0.25*var(--windowActualHeight));
    }
}

@keyframes minimizeMainImage {
    0% {
        top: calc(1vh * var(--imageScaleModifier_full));
        top: calc(var(--imageScaleModifier_full)*0.01*var(--windowActualHeight));
        
    }
    100% {
        top: calc(1vh * var(--imageScaleModifier_half));
        top: calc(var(--imageScaleModifier_half)*0.01*var(--windowActualHeight));
    }
}

@keyframes fadeout-upward {
    from {
        transform: translate(0, 0);
        opacity: 1;
    }
    to {
        transform: translate(0, -1em);
        opacity: 0;
    }
}

@keyframes fadein-downward {
    from {
        transform: translate(0, -1em);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes fadein-upward {
    from {
        transform: translate(0, 2.5vh);
        transform: translate(0, calc(0.025*var(--windowActualHeight)));
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}