/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| LOGO
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/


.Logo {
    display: block;
    width: 11em;
    height: 11em;
    padding-top: 2.8em;
    border-radius: 100%;
    background-color: var(--black-50); 
    font-family: Font1;
}

.Logo span {
    display: block;
    width: 100%;
    line-height: 1em;
    text-align: center;

}

.Logo-A1 {
    color: var(--main-1-50);
    font-size: 1.6em;
}

.Logo-A2 {
    color: var(--main-1-50);
    font-size: 2.9em;
    font-weight: bold;
}



/* LOGO
////////////////////////////////////////////////////
///////////// || MAIN LOGO
////////////////////////////////////////////////////
*/

#HomeLogo {
    position: static;
    margin-top: 50dvh;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| MAIN MENU BUTTON
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/

#MainMenuButton {
    position: fixed;
    display: block;
    bottom: 1rem;
    right: 1rem;
    width: 6em;
    height: 6em;
    border-radius: 100%;
    background-color: var(--black-50);
    font-size: 1rem;
    z-index: 100;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
#MainMenuButton::before {
    position: fixed;
    content: "";
    bottom: 1rem;
    right: 1rem;
    width: 6em;
    height: 6em;
    background-color: var(--black-50);
    border-radius: 50%;
    transition: .4s ease-in-out;
}
.on#MainMenuButton::before {
    bottom: 0%;
    right: 0%;
    width: 100dvw;
    height: 100dvh;
    border-radius: 0;
}
#MainMenuButtonBar::before,
#MainMenuButtonBar,
#MainMenuButtonBar::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.2em;
    height: 0.2em;
    border-radius: 0.1em;
    transition: .4s ease-in-out;
    animation-duration: .4s;
    animation-iteration-count: 1; /* or number */
}
#MainMenuButtonBar::before,
#MainMenuButtonBar::after {
    content: "";
    background-color: var(--main-1-50);
}
#MainMenuButtonBar::before {
    transform: translate(-50%, -160%);
}
#MainMenuButtonBar {
    transform: translate(-50%, -50%);
}
#MainMenuButtonBar::after {
    transform: translate(-50%, 60%);
}
.on #MainMenuButtonBar::before {
    transform: translate(-50%, -50%) rotate(90deg);
    animation-name: mmb_on_p1;
}
.on #MainMenuButtonBar {
    transform: translate(-50%, -50%) rotate(-45deg);
    animation-name: mmb_on_p2;
}
.on #MainMenuButtonBar::after {
    transform: translate(-50%, -50%) rotate(0deg);
    animation-name: mmb_on_p3;
}
@keyframes mmb_on_p1 {
    0% {transform: translate(-50%, -190%) rotate(0deg);}
    50% {transform: translate(-50%, -50%) rotate(0deg);}
    100% {transform: translate(-50%, -50%) rotate(90deg);}
}
@keyframes mmb_on_p2 {
    0% {transform: translate(-50%, -50%) rotate(0deg);}
    50% {transform: translate(-50%, -50%) rotate(0deg);}
    100% {transform: translate(-50%, -50%) rotate(-45deg);}
}
@keyframes mmb_on_p3 {
    0% {transform: translate(-50%, 90%) rotate(0deg);}
    50% {transform: translate(-50%, -50%) rotate(0deg);}
    100% {transform: translate(-50%, -50%) rotate(0deg);}
}


/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| ARROWS
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/

/* ARROWS
////////////////////////////////////////////////////
///////////// ARROW 1
////////////////////////////////////////////////////
*/
#DirectionArrow1 {
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
}
#DirectionArrow1::before, /* Arrowhead */
#DirectionArrow1::after {
    display: block;
    content: '';
    background-color: var(--black-50);
}
#DirectionArrow1::before { /* Arrowhead */
    width: 100%;
    height: 4rem;
    clip-path: polygon(
        50% 0%, 100% 100%, 50% 100%, 0% 100%
    );
}
#DirectionArrow1::after {
    height: 80dvh;
    width: 30%;
    margin-left: 35%;
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 100%, 0% 100%
    );
}

/* ARROWS
////////////////////////////////////////////////////
///////////// ARROW 2
////////////////////////////////////////////////////
*/
#DirectionArrow2 {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
}
#DirectionArrow2::before,
#DirectionArrow2::after {
    display: block;
    content: '';
    background-color: var(--black-50);
}
#DirectionArrow2::before { 
    height: 58dvh;
    width: 30%;
    margin-left: 35%;
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 100%, 0% 100%
    );
}
#DirectionArrow2::after { /* Arrowhead */
    width: 100%;
    height: 4rem;
    clip-path: polygon(
        50% 100%, 100% 0%, 50% 0%, 0% 0%
    );
}









/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| INTRO PHRASES
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/

/* p */
.SQ p {
    display: block;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 0.5em 5%;
    text-align: center;
    font-size: 1.6rem;
    font-size: 2rem;
    border-radius: 0%;
    /* background-color: var(--main-1-50); */
    transition: all 0.3s ease-in-out;
}

a.Style1 {
    display: block;
    width: 9rem;
    height: 9rem;
    margin-top: -2em;
    margin-left: 29%;
    padding-top: 10%;
    padding-left: 8%;
    align-content: center;
    text-decoration: none;
    color: var(--black-50);
    background-color: var(--main-1-50);
    border: 0.08em solid var(--black-50);
    border-radius: 100%;
    transition: all 0.3s ease-in-out;
}

.SQ a span {
    display: inline-block;
}

/* span */

.SQ span {
    display: block;
}

.SQ span.Style1 {
    margin: 0 auto;
    width: fit-content;
    min-width: 2em;
    padding: 0 0.3em;
    background-color: var(--black-50);
    color: var(--main-1-40);  
}

.SQ .Size1 {
    font-size: 1em;
}

.SQ .Size2 {
    font-size: 1.4em;
}

.SQ .Size3 {
    font-size: 2.2em;
}

/* SQ 1 */

#SQ1 {
    height: 80dvh;
    margin-top: 0;
}

#SQ1 span:first-child {
    padding-top: 0.4em;
}


#SQ1 span:last-child {
    padding-bottom: 0.2em;
}

#SQ1 .Size2:nth-child(2) {
    font-size: 1.4em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

/* SQ 2 */

#SQ2 {
    margin-top: 0;
}

#SQ2 .Style2 {
    line-height: 2em;
}

#SQ2 p:nth-child(2),
#SQ2 p:nth-child(3) span:nth-child(2) {
    margin: 0.8em 0 0.4em 0;
}

/* SQ 3 */

#SQ3 .Style2 {
    line-height: 2em;
}

#SQ3 p:nth-child(2),
#SQ3 p:nth-child(3) span:nth-child(2) {
    margin: 0.8em 0 0.4em 0;
}

/* SQ 4 */

#SQ4 .Style2 {
    line-height: 2em;
}

#SQ4 p:nth-child(2),
#SQ4 p:nth-child(3) span:nth-child(2) {
    margin: 0.8em 0 0.4em 0;
}

/* SQ 5 */



#SQ5 p:nth-child(2),
#SQ5 p:nth-child(3) span:nth-child(2) {
    margin: 0.8em 0 0.4em 0;
}


/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| PRICE STYLES
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/

/* PRICE STYLES
////////////////////////////////////////////////////
///////////// STYLE 1
////////////////////////////////////////////////////
*/

.PriceStyle1 span {
    display: inline-block;
}

.PriceStyle1 span:nth-child(1) {
    position: relative;
    width: 4em;
    height: 4em;

    align-content: center;
    border-radius: 100%;
    background-color: var(--black-50);
    color: var(--main-1-50);
    transition: all 0.3s ease-in-out;
}

.PriceStyle1 span:nth-child(2) {
    transform: translateY(-1.2em);
}



/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| HEADER
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/


#Header {
    position: fixed;
    display: block;
    width: 100%;
    height: 0;
    /* pos 2 */
    top: -4rem;
    left: 0;
    /* pos 1 */
    top: 0;
    left: 0;
    font-size: 1rem;
    /* overflow: hidden; */
    z-index: 100;
}

#Header:before {
    display: block;
    position: absolute;
    content: "";
    width: 110%;
    height: 4rem;
    top: -1.5rem;
    left: -5%;
    background-color: var(--black-50);
    transform: rotate(-3deg);
    transition: all 0.3s ease-in-out;
}
.HP #Header:before {
    top: -4.5rem;
}


#Header .Logo {
    position: absolute;
    font-size: 0.5em;
    top: 1rem;
    left: 1.4rem;
    border: 0.4em solid var(--black-50);
    background-color: var(--main-1-50); /* second color */
    transition: all 0.3s ease-in-out;
}

.HP #Header .Logo {
    top: -6rem;
}
#Header .Logo span {
    color: var(--black-50);
}


/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| CONTENT LOGO
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/

#SQ6 {
    position: relative;
    height: 34rem;
    background-color: var(--black-50);
}

#SQ6 .Logo {
    position: absolute;
    font-size: 1.2rem;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-1-50);
}

#SQ6 .Logo span {
    color: var(--black-50);
}

#SQ6 p {
    position: absolute;
    display: block;
    top: 67%;
    color: var(--main-1-50)
}

/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| CONTENT LOGO
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/


#SQ7 a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.8rem;
}

#SQ7 a span {
    padding: 0.8em 0.6em;
    color: var(--main-1-60)
}

/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| CONTENT LOGO
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/

#Impressum {
    position: relative;
    width: 100%;
    max-width: 44rem;
    margin: 0 auto;
    padding: 7rem 5%;
    background-color: var(--black-50);
    text-align: center;
}

#Impressum h1,
#Impressum h2,
#Impressum h3 {
    color: rgb(129, 123, 110);
    margin: 2rem 0;
    transition: all 0.3s ease-in-out;
}
#Impressum h2 {
    opacity: 0;
}
.DA#Impressum h2 {
    opacity: 1;
}


#Impressum a {
    text-decoration: none;
    padding: 2rem 0;
    color: var(--main-1-50);
}

#Impressum p {
    color: var(--main-1-30);
    font-size: 1.4rem;
}

#Impressum span {
    font-weight: bold;
    font-size: 1.3em;
    color: var(--main-1-20);
}