/*/ 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 { 
    background: var(--select-color);
}
  
  ::selection {
    background: var(--select-color);
}


/*/ ---------- Setting basic Variables for entire Page ---------- /*/
body {
    font-family: "Poppins",sans-serif ,Arial;
    background-color: white;
}


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

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

    transition: 0.6s;
}
.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.5s;
}
.menu-btn--icon-line {
    display: flex;
    width: 35px;
    height: 4px;
    background-color: var(--menu-icon-color);
    border-radius: 1px;
    position: absolute;
    transition: 0.5s;
}
.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);
}

@media only screen and (min-width: 800px) {
    .menu-mobile {
        display: none;
        position: absolute;  left: -999999px;
        

    }
    .menu-fullsize {
        display: block;
    }
}
@media only screen and (max-width: 800px) {
    .menu-mobile {
        display: block;
    }
    .menu-fullsize {
        display: none;
        position: absolute;  left: -999999px;
    }
}



.fullsize-nav {
    height: 70px;
    width: 100vw;

    background-color: white;
    position: absolute;
    top: 0;
    left: 0;

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

    z-index: 100;
}
.fullsize-nav li {
    list-style: none;
    margin: 0 20px 0 0px;
    overflow: hidden;

    display: inline;

    

    position: relative;
    top: 10%;
}
.fullsize-nav li.right {
    float: right;


    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.fullsize-nav .menu-sel {
    text-align: left; 
    position: relative;
    color: var(--menu-text-color);
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;

    color: rgb(51, 51, 51);

    
    
    
}
.fullsize-nav .menu-sel-img {
    text-align: left; 
    position: relative;
    color: var(--menu-text-color);
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;

    color: rgb(51, 51, 51);

    
    
    
}
.nav-skip:focus {
    transform: translateY(0%);
}

.nav-skip {
    transition: transform 325ms ease-in;
    transform: translateY(-120%);
    z-index: 101;
    position: absolute;

    height: 50px;
    width: 150px;

    left: 10px;
    top: 0;
    border: 3px solid white;
    border-top: 0 solid black;
    border-radius: 0 0 20px 20px;

    background-color: black;

    text-align: center;
    color: white;
    text-decoration: none;

    line-height: 50px;

    /*/box-shadow: 0 0  20px black;/*/
}
.fullsize-nav .menu-sel .img {
    width: 35px;
    height: 20px;
}
.fullsize-nav .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;
}
.fullsize-nav .menu-sel:hover::before {
    width: 100%;
}



/*/ -- 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.6s;
}
.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: block;
    
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    top: 90px;
    bottom: 0;

    
    height: 50px;
    width: 90%;



    line-height: 50px;
    padding-left: 30px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.322);


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

    
    bottom: 30px;
    
    
    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--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;
        padding: 0 20% 0 20%;
    }

    .start--title {
        font-size: 50px;

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

        position: relative;
    }
    .start--subtitle {
        font-size: 20px;
    } 

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

    .read-more--philosophy p {
        font-size: 20px;
        padding: 0 20% 0 20%;
    }


    
}

/*/ smaller than 600px /*/
@media only screen and (max-width: 600px) {
    .read-more--founding p {
        font-size: 17px;
        padding: 0 1% 0 1%;
    }
    

    .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;
    }

}
@media only screen and (max-width: 750px) {
    .read-more--philosophy p {
        font-size: 17px;
        padding: 0 1% 0 1%;
    }
}
@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%;
    }
}



/*/ ---- 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: 100vw;

    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;
    max-height: 550px;
    min-height: 200px;
    width: 100%;
    top: 300px;

    position: relative;
}
.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);
    
    height: 1050px;
    width: 100%;
    top: 280px;


    position: relative;
    
}
.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 0 20px 0;
    background-color: var(--read-more-card-bg-color);

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

    border-radius: 10px;

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

    max-width: 700px;
    width: 90%;

    

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

.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 {
    text-decoration: none;
    line-height: 60px;
    text-align: center;

    color: white;
    background: var(--color);
    border-radius: 0 0 10px 10px;

    display: block;
    width: 100%;
    height: 60px;

    position: absolute;
    bottom: 0;

    left: 0;

    font-size: 20px;
    

    -webkit-transition: .2s ease-in-out 0s;
    -moz-transition: .2s ease-in-out 0s;
    -ms-transition: .2s ease-in-out 0s;
    -o-transition: .2s ease-in-out 0s;
    transition: .2s ease-in-out 0s;
    
}
.read-more--project-card .cbutton:hover {
    background-color: #2c87c4;
}
.read-more--project-card .cbutton:active {
    background-color: #4ea1d8;
    
}

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

.logo {
    display: block;

    position: relative;
    
    left: 50%;
    transform: translateX(-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;
}








