/*/ Importing Assets/*/
@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");


/*/ Setting Variables /*/
:root {
    --color: #3498db;
    --color-light: #7cc3f3;
    --basic-text-color: #ffffff;
    --normal-text-color: #000000;

    --select-color: #0099ff93;

    --menu-icon-color: #000000;
    --menu-text-color: #ffffff;
    --menu-underline-color: #25a8ff;
    --menu-bg-color: #5a5a5acc;
    --menu-close-btn-color: #ff6b6b;


    --read-more-founding-bg-color: #efefef;
    --read-more-border-color: #3498db;
    --read-more-philosophy-bg-color: #efefef;

    --read-more-card-bg-color: #ececec;
}

/*/ From here on only code is following.../*/



/*/ --------------- Basic Stuff --------------- /*/


/*/ BTN TEMPLATE /*/

.btn {
    width: 250px;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    line-height: 50px;
    margin: 15px;
   

    cursor: pointer;
    font-size: 18px;

    border: 2px solid #3498db;
    border-radius: 10px;

    text-align: center;

    color: white;
    background-color: #3498db;
    text-decoration: none;

    transition: .4s;
}
.btn:hover {
    color: #3498db;
    background-color: transparent;
}


/*/ ----- Setting Selection color ----- /*/

::-moz-selection { /* Code for Firefox */
    background: var(--select-color);
}
  
  ::selection {
    background: var(--select-color);
}

/*/ ---------- Setting basic Variables for entire Page ---------- /*/
body {
    font-family: "Poppins",sans-serif ,Arial; /*/ Font to Poppins (Imported earlier) /*/
    
        background-color: white; /*/ Setting Background Color /*/;
}


/*/ ------ Menu ------ /*/

/*/ -- Menu Button -- /*/
.journal-btn--container {
    left: 0px;
    top: 30px;
    z-index: 120;
    overflow: hidden;
    max-height: 500px;
    position: fixed;

    cursor: pointer;

    transition: 0.5s;
}
.journal-btn--container.open {
    left: 240px;
}
.journal-btn--container a {
    
    display: block;
    color: #f2f2f2;
    text-align: center;
    
    text-decoration: none;
    font-size: 17px;
}
.journal-btn--icon {
    display: inline-flex;
    width: 20px;
    height: 17px;
    position: relative;

    margin: 30px;

    right: 0;

    transition: 0.4s;
}
.journal-btn--icon-line {
    display: flex;
    width: 20px;
    height: 4px;
    background-color: var(--menu-icon-color);
    border-radius: 100px;
    position: absolute;

    transition: 0.4s;
}
.journal-btn--icon-line:nth-child(1) {
    transform: rotate(55deg);
    top: 0;
}
.journal-btn--icon-line:nth-child(2) {
    transform: rotate(125deg);
    bottom: 0;
}

.journal-btn--icon.open .journal-btn--icon-line:nth-child(1) {
    transform: rotate(125deg);
}
.journal-btn--icon.open .journal-btn--icon-line:nth-child(2) {
    transform: rotate(55deg);
}
.journal-btn--icon.open .journal-btn--icon-line {
    background-color: var(--menu-close-btn-color);
}



.journal--menu {
    margin: 0;
    padding: 0;

    z-index: 120;

    position: fixed;
    width: 250px;
    height: 110vh;
    top: 0;
    left: -250px;

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

    background: white;

    box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.719);

    list-style: none;

    overflow-y: auto;


    


    transition: 0.5s;
}
.journal--menu nav {
    margin: 0;
}
.journal--menu nav li {
    margin: 0;
}
.journal--menu .journal-menu--wrapper {
    background: rgb(240, 240, 240);
    color: black;

    margin: 0 0 0 0;


    display: block;
    position: relative;
    height: 100px;
    width: 250px;

    left: 50%;
    transform: translateX(-50%);

    
    border-bottom: 2px solid rgba(0, 0, 0, 0.103);

    transition: 0.1s;
}
.journal--menu .journal-menu--wrapper {
    display: flex;
}

.journal--menu .journal-menu--wrapper:hover {
    cursor: pointer;
    background: rgb(226, 226, 226);


    width: 240px;
    border-radius: 20px;
}

.journal--menu .journal-menu--wrapper .title {
    text-decoration: none;
    position: absolute;

    margin: 7px;

    font-size: 17px;
    left: 5px;
    top: 5px;
}
.journal--menu .journal-menu--wrapper .author {
    text-decoration: none;
    position: absolute;

    margin: 6px;

    color: rgba(0, 0, 0, 0.671);

    font-size: 13px;
    bottom: 6px;
    left: 10px;
}

.journal--menu.open {
    left: 0;
}
/*/ ^Journal Menu BTN^ /*/





.menu-btn--container {
    right: 0px;
    z-index: 120;
    overflow: hidden;
    max-height: 500px;
    position: fixed;

    cursor: pointer;

    transition: 0.5s;
}
.menu-btn--container.open {
    right: 240px;
}
.menu-btn--container a {
    
    display: block;
    color: #f2f2f2;
    text-align: center;
    
    text-decoration: none;
    font-size: 17px;
}
.menu-btn--icon {
    display: inline-flex;
    width: 35px;
    height: 35px;
    position: relative;

    margin: 30px;

    right: 0;

    transition: 0.4s;
}
.menu-btn--icon-line {
    display: flex;
    width: 35px;
    height: 4px;
    background-color: var(--menu-icon-color);
    border-radius: 1px;
    position: absolute;
    transition: 0.4s;
}
.menu-btn--icon-line:nth-child(1) {
    top: 0;
    left: 0;
}
.menu-btn--icon-line:nth-child(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.menu-btn--icon-line:nth-child(3) {
    bottom: -1px;
    left: 0;
}
.menu-btn--icon.open .menu-btn--icon-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
}
.menu-btn--icon.open .menu-btn--icon-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%);
}
.menu-btn--icon.open .menu-btn--icon-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.menu-btn--icon.open .menu-btn--icon-line:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}
.menu-btn--icon.open .menu-btn--icon-line:nth-child(3) {
    bottom: 38%;
    transform: translateY(-50%) rotate(45deg);
}
.menu-btn--icon.open .menu-btn--icon-line {
    background-color: var(--menu-close-btn-color);
}






/*/ -- Menu-Page --/*/
.menu {
    margin: 0;
    padding: 0;

    z-index: 100;

    position: fixed;
    width: 250px;
    height: 100vh;
    top: 0;
    right: -250px;

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

    background: var(--menu-bg-color);

    box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.719);


    transition: 0.5s;
}
.menu.open {
    right: 0;
}
.menu nav {
    display: grid;
    
}
.menu li {
    list-style: none;
    margin: 20px;
    overflow: hidden;
}
.menu-rule {
    position: relative;
    height: 2px;
    width: 100%;
    background-color: var(--menu-text-color);

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.397);
}
.menu .menu-sel {
    text-align: center;
    color: var(--menu-text-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    position: relative;

    transform: translateY(40px);
}
.menu .menu-sel .img {
    width: 35px;
    height: 20px;
    
}
.menu .menu-sel::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 5px;
    background: var(--menu-underline-color);
    bottom: 2px;
    left: 0;
    border-radius: 15px;
    z-index: -1;

    transition: 0.2s linear;
}
.menu .menu-sel:hover::before {
    width: 100%;
}
@media only screen and (min-width: 600px) {
    .menu .menu-sel {
        font-size: 25px;
    }
}
@media only screen and (max-width: 600px) {
    .menu .menu-sel {
        font-size: 25px;
    }
}

/*/ ---- footer ---- /*/
.footer-start {
    display: inline-block;
    bottom: 0px;
    
    position: relative;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    line-height: 100px;
    padding-left: 30px;
    margin: 0;
    
    
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.178);

    top: 190%;
}
.footer-impressum {
    display: block;
    bottom: 0px;
    
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    line-height: 100px;
    padding-left: 30px;
    margin: 0;

    top: 84%;
    
    
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.178);
}
.footer--btn {
    text-decoration: none;
    color: black;

    border-bottom: 0px solid var(--color);

    margin-right: 20px;
    
    transition: 0.3s;
}

.footer-journal {
    bottom: 20px;
    
    position: fixed;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);

    z-index: 5px;
    

    height: 50px;
    line-height: 50px;
    padding-left: 30px;

    margin: 0;

    
    
    
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.322);
}

.footer--btn:hover {
    border-bottom: 3px solid var(--color);
    text-decoration-color: var(--color);
}
/*/ --------------- Normal CSS --------------- /*/
/*/ This code is now for individual Objects /*/



/*/ ---------- @media Query ---------- /*/


/*/ bigger than 600px /*/
@media only screen and (min-width: 600px) {
    .read-more--founding p {
        font-size: 20px;
    }
    .read-more--philosophy p {
        font-size: 20px;
        
    }

    .start--title {
        font-size: 50px;
    }
    .start--subtitle {
        font-size: 20px;
    } 

    .read-more--project-card .ctext{
        font-size: 20px;
    }
    .read-more--project-card .cbutton {
        margin: auto;
        margin-top: 30px;
    }
    .footer-start {
        top: 2400px;
    }

    
}

/*/ smaller than 600px /*/
@media only screen and (max-width: 600px) {
    .read-more--founding p {
        font-size: 16px;
    }
    .read-more--philosophy p {
        font-size: 14px;
        
    }

    .start--title {
        font-size: 40px;
    }
    .start--subtitle {
        font-size: 15px;
    } 

    .read-more--project-card .ctext{
        font-size: 14px;
    }
    .read-more--project-card .cbutton {
        margin: auto;
        margin-top: 5px;
    }
    .footer-start {
        top: 2300px;
    }
}
@media only screen and (max-width: 400px) { 
    .cf-text-c {
        width: 90%;
    }
    .cf-text-b {
        width: 90%;
    }
}
@media only screen and (min-width: 400px) { 
    .cf-text-c {
        width: 67%;
    }
    .cf-text-b {
        width: 20%;
    }
}

/*/ Containers /*/
.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
    "."
    "."
    ".";
}

/*/ ---- Start ---- /*/
.start--center {
    position: absolute;
    left: 50%;
    right: 50%;
    top: 50%;

    -ms-transform: translate(0%, -50%);
    transform: translate(-40%, -50%);

    margin: 0;
    padding: 0;

    width: 80%;

}
.start--container {
    width: 80%;
}
.start--title { /*/ Font size set by @media Query ( - 50px <- | 600px < screen |    ///\\\///    40px <- | 600px > screen | /*/
    text-align: center;
    margin: 10px;
}
.start--subtitle { /*/ Font size set by @media Query ( - 20px <- | 600px < screen |    ///\\\///    15px <- | 600px > screen | /*/
    text-align: center;
}
.start--button {
    color: var(--color);
    text-decoration: none;
    line-height: 45px;
    text-align: center;

    box-shadow: 0px 0px 40px rgb(0, 0, 0, 0.200);
    border: solid 2px var(--color);
    border-radius: 20px;

    display: block;
    width: 200px;
    height: 45px;
    margin: auto;
    
    -webkit-transition: .4s ease-in-out 0s;
    -moz-transition: .4s ease-in-out 0s;
    -ms-transition: .4s ease-in-out 0s;
    -o-transition: .4s ease-in-out 0s;
    transition: .4s ease-in-out 0s;
    
}
.start--button:hover {
    background-color: var(--color);

    color: white;
}
.start--button:active {
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.500);
    transform: scale(0.95);
    
}

/*/ ---- Read more! ---- /*/
.read-more--container {
    top: 85vh;
    position: absolute;

    width: 100%;

    right: 0;
}

/*/ -- Founding --/*/
.read-more--founding {
    background-color: var(--read-more-founding-bg-color);
    box-shadow: 0px -10px 200px rgba(0, 0, 0, 0.3);
    height: 300px;
    width: 100%;

    position: absolute;
    
}
.read-more--founding .spacer {
    font-size: 3px;
}
.read-more--founding .title {
    text-align: center;

    font-size: 40px;
    
}
.read-more--founding p {  /*/ Font size set by @media Query ( - 20px <- | 600px < screen |    ///\\\///    16px <- | 600px > screen | /*/
    text-align: center;
}

/*/ -- Philosophy --/*/
.read-more--philosophy {
    background-color: var(--read-more-philosophy-bg-color);
    border-top: 2px solid var(--read-more-border-color);
    position: absolute;
    height: 550px;
    width: 100%;
    top: 300px;
}
.read-more--philosophy .spacer {
    font-size: 3px;
}
.read-more--philosophy .title {
    text-align: center;

    font-size: 35px;
    
}
.read-more--philosophy p {  /*/ Font size set by @media Query ( - 20px <- | 600px < screen |    ///\\\///    15px <- | 600px > screen | /*/
    text-align: center;
}

/*/ -- Projects -- /*/
.read-more--projects {
    background-color: var(--read-more-philosophy-bg-color);
    border-top: 2px solid var(--read-more-border-color);
    position: absolute;
    height: 950px;
    width: 100%;
    top: 850px;

    
}
.read-more--projects .title {
    text-align: center;
    font-size: 27px;
}
.read-more--projects .spacer {
    font-size: 3px;
}
.read-more--project-card {
    height: 250px;
    margin: 20px;
    background-color: var(--read-more-card-bg-color);

    /*/ https://pixabay.com/de/photos/schreibmaschine-buch-notizen-papier-801921/ /*/
    
    
    

    border-radius: 10px;

    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.178);
}

.read-more--project-card .ctitle {
    text-align: center;
    color: var(--normal-text-color);
    font-size: 30px;
}
.read-more--project-card .ctext{
    margin-left: 15px;
    text-align: center;
}
.read-more--project-card .cbutton {
    color: var(--color);
    text-decoration: none;
    line-height: 40px;
    text-align: center;

    
    border: solid 2px var(--color);
    border-radius: 30px;

    display: block;
    width: 200px;
    height: 40px;
    
   
    
    
    -webkit-transition: .4s ease-in-out 0s;
    -moz-transition: .4s ease-in-out 0s;
    -ms-transition: .4s ease-in-out 0s;
    -o-transition: .4s ease-in-out 0s;
    transition: .4s ease-in-out 0s;
    
}
.read-more--project-card .cbutton:hover {
    background-color: var(--color);

    color: white;
}
.read-more--project-card .cbutton:active {
    transform: scale(0.97);
    
}

/*/ --- logo ---/*/

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;

    height: 80px;
    width: 300px;
}


/*/ --- Impressum --- /*/
.info-field {
    position: absolute;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 200px rgba(0, 0, 0, 0.3);

    border: 2px solid white;
    border-radius: 10px;

    display: block;
    width: 80%;
    height: 75%;

    margin: 0;
    padding: 0;

    left: 50%;
    top: 43%;
    transform: translate(-50%,-50%);
}
.info-field h1 {
    text-align: center;
}
.info-field p {
    position: relative;

    text-align: center;
}

/*/ --- Kontakt Formular --- /*/


.c-headline {
    font-size: 30px;
}

.contact-formular {
    text-align: center;
    align-items: center;
    align-content: center;

    
    
}

.cf-text {
    display: inline-flex;
    width: 90%;
    height: 50px;

    border-radius: 5px;
    border: 2px solid #8d8d8d;
    margin: 10px;
    font-size: 16px;
    font-family: "Poppins";
}


.cf-text-b {
    display: inline-flex;
    
    height: 50px;

    border-radius: 5px;
    border: 2px solid #8d8d8d;
    margin: 10px;
    font-size: 16px;
    font-family: "Poppins";
}
.cf-text-c {
    display: inline-flex;

    height: 50px;

    border-radius: 5px;
    border: 2px solid #8d8d8d;
    margin: 10px;
    font-size: 16px;
    font-family: "Poppins";
}



.cf-text-area {
    display: inline-flex;
    width: 90%;
    height: 200px;

    border-radius: 5px;
    border: 2px solid #8d8d8d;
    margin: 10px;
    font-size: 16px;
    font-family: "Poppins";

    
}

.cf-submit {
    display: inline-flex;
    width: 90%;
    height: 50px;


    margin: 10px;
    font-size: 18px;
    font-family: "Poppins";

    border-radius: 10px;
    border: 2px solid #3498db;
    background-color: #3498db;
    color: white;
    font-weight: normal;
}



.error-center {
    text-align: center;

    transform: translateX(9%);
}
.error {
    position: relative;
    
    height: 60px;
    width: 80%;

    margin: 20px;

    background-color: rgba(255, 0, 0, 0.466);
    border-radius: 10px;

    color: white;

    line-height: 50px;

    text-align: center;
}
.display {
    position: relative;
    top: 30px;

    min-height: 520px; 
    width: 80%;
    left: 50%;
    
    transform: translateX(-50%);


    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.29), 0 6px 10px rgba(0,0,0,0.33);
    
    padding: 1rem;
}








