/*
Theme Name: Jessica Kottmeyer's Portfolio
Author: Jessica Kottmeyer
Description: Theme für jessicakottmeyer.ch
Version: 1.0
*/


/*-------------------------------------------------------------------------*/
/* RESETS*/
* {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  box-sizing: border-box;
}

/* VARIABELN */
:root{
  /* colours */
  --co-black: #141414;
  --co-white: #ffffff;
  --co-pink: #ff1a52;
  --co-lachs: #f7b6a2;
  --co-grey: #A8A0A5;
  /* padding */
  --pa-big: 10vh 10vw 10vh 10vw;
  --pa-big-l: 0 0 0 10vw;
  --pa-big-r: 0 10vw 0 0;
  --pa-big-lr: 0 10vw 0 10vw;
  --pa-big-t: 10vh 0 0 0;
  --pa-big-b: 0 0 10vh 0;
  --pa-small-b: 0 0 4vh 0;
  --pa-big-tb: 10vh 0 10vh 0;
  --pa-small-tb: 4vh 0 4vh 0;
  /* borders */
  --bo-big: 16px solid var(--co-pink);
  --bo-small: 8px solid var(--co-pink);
  --bo-active: 4px solid var(--co-pink);
  --bo-hover: 4px dashed var(--co-black);
}

/* GRUNDEINSTELLUNGEN */
html {
/*   cursor: none; */
}
#main_container {
  display: grid;
  grid-row-gap: 0px;
  grid-column-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto auto;
}

body {
  color: var(--co-black);
  background-color: var(--co-white);
  font-family: "acumin-pro", sans-serif;
  min-width: 100%;
  min-height: 100vh;
}
main {
  background-color: var(--co-white);
  font-family: "acumin-pro", sans-serif;
  height: auto;
}
article {
  height: auto;
  width: auto;
}

/* FONTS */
h1 {
  font-family: "acumin-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 3rem;
  line-height: 3.75rem;
  color: var(--co-black);
}
h2 {
  font-family: "acumin-pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: var(--co-black);
  margin-block-start: 1.75rem;
  margin-block-end: 1.75rem;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
h3 {
  font-family: "acumin-pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: var(--co-black);
}
h4 {
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--co-grey);
  text-transform: uppercase;
}
h5, h5 a {
  font-family: "roboto-slab", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--co-black);
  text-transform: uppercase;
}
h6 {
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--co-black);
}
p {
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.75rem;
  display: block;
  color: var(--co-black);
  margin-block-start: 1.15rem;
  margin-block-end: 1.15rem;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
a {
  color: var(--co-black);
  text-decoration: none;
}
span.co_lachs {
  color: var(--co-lachs);
}
span.co_grey {
  color: var(--co-grey);
}

/*-------------------------------------------------------------------------*/

/* DESKTOP---------------------------------------------------------------- */
/* DESKTOP---------------------------------------------------------------- */
/* DESKTOP---------------------------------------------------------------- */

/* ------------------------------------------- */
/* header ------------------------------------ */
/* ------------------------------------------- */

#header {
  grid-area: 1 / 2 / 2 / 12;
}
#header_bg {
  grid-area: 1 / 1 / 2 / 13;
  height: 12vh;
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: var(--co-white);
}
header {
  height: 10vh;
  position: sticky;
  top: 0;
  z-index: 10;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--co-black);
  background-color: var(--co-white);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
/*Logo*/
#header_logo {
  height: 8vh;
}
/*Navigation*/
header nav {
  display: flex;
  flex-direction: column;
}
header div ul {
  list-style-type: none;
}
header div ul li {
  display: inline;
  margin: 0 0 0 20px;
  padding: 0 0 2px 0;
  border-bottom: 2px dashed var(--co-black);
}
header div ul li:hover {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--co-black);
}
header div ul li.current_page_item {
  border-bottom: 2px solid var(--co-pink);
}

/* ------------------------------------------- */
/* footer ------------------------------------ */
/* ------------------------------------------- */

#footer {
  grid-area: 5 / 2 / 6 / 12;
}
footer {
  height: auto;
  color: var(--co-grey);
  background-color: var(--co-white);
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 2px solid var(--co-grey);
  margin: var(--pa-big-tb);
}
footer h5, footer h5 a {
  color: var(--co-grey);
}
footer a h4 {
  width: 100%;
}
.button_up {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.button_up  p a {
  color: var(--co-grey);
}
.arrow_up {
  height: 0.75em;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 0.5em;
} #arrow_up {
  transform: rotate(180deg);
}

/* ------------------------------------------- */
/* frontpage --------------------------------- */
/* ------------------------------------------- */

/* front-page - work ------------------------- */
#work_intro_text {
  grid-area: 2 / 4 / 3 / 9;
  z-index: 2;
  height: auto;
  width: 100%;
  margin: 150px 0 0 0;
}
#work_intro_text h1 {
  background-color: var(--co-white);
}
#work_intro {
  grid-area: 2 / 5 / 3 / 10;
  height: auto;
  width: 100%;
  padding: 0 16px 0 0;
  margin: 100px 0 150px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.work_intro_show {
  padding: 12px 0 12px 0;
}
.work_intro_box {
  z-index: 1;
  height: auto;
  width: 100%;
  background-color: var(--co-white);
  border: var(--bo-big);
  box-shadow: 16px 16px 0px 0px var(--co-lachs);
  padding: 25px 25px 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.work_intro_hide {
  color: var(--co-white);
  padding: 12px 0 12px 0;
}
.button_down {
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end
}
.arrow_down {
  height: 0.75em;
  width: auto;
  display: flex;
  padding-right: 0.5em;
}
.arrow_grey {
  fill: var(--co-grey);
}

/* post_work */
#portfolio {
  grid-area: 3 / 3 / 4 / 11;
}
.post_work {
  height: 60vh;
  margin: var(--pa-big-b);
  display: flex;
  flex-direction: row;
}
.post_work:nth-child(even) {
  flex-direction: row-reverse;
}
.post_work:nth-child(even) .post_work_text {
  margin-right: 0%;
  margin-left: 5%;
}
.post_work_text {
  width: 30%;
  margin-right: 5%;
  margin-left: 0%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.post_work .post_work_title {
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed var(--co-black);
}
.post_work:hover .post_work_title {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--co-black);
}
.post_work_title {
  margin-bottom: 1rem;
}
.frontpage_tags {
  color: var(--co-lachs);
}
.post_work_bild {
  width: 65%;
  overflow: hidden;
  position: relative;
}
.size-post-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.post_work_exerpt {
  position: absolute; /*absolute position so that this div can sit over the image*/
  top: 0;
  opacity: 0;
/*  background-color: rgba(247, 182, 162, 0.8); */
  background-color: rgba(255, 26, 82, 0.8);
  width: 100%;
  height: 100%;
  padding: 4rem 30% 4rem 4rem;
  color: var(--co-black);
  transition: 200ms; /* speed the overlay to retract when moving the mouse off*/
  -webkit-transition:200ms;
  -moz-transition:200ms;
  -o-transition:200ms;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.post_work:hover > .post_work_bild .post_work_exerpt {
  opacity: 1;
}

/* more Projects */
#project_more {
  height: 20vh;
  grid-area: 4 / 3 / 5 / 11;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: var(--pa-big-t);
}
h4.project_more_text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--co-black);
}



/* ------------------------------------------- */
/* single ------------------------------------ */
/* ------------------------------------------- */

/* single - project -------------------------- */
/* intro */
#project_intro_img {
  grid-area: 1 / 1 / 3 / 13;
  height: 80vh;
}
#project_intro_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#project_intro_text {
  grid-area: 1 / 3 / 3 / 7;
  height: auto;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 25px 25px 25px 25px;
}
.project_title {
  color: var(--co-black);
}
.project_info {
  text-transform: uppercase;
  color: var(--co-pink);
}

/* aside */
#project_aside {
  grid-area: 3 / 3 / 5 / 5;
  padding-left: 25px;
}
.aside_link {
  margin: 20vh 0 0 0;
}
h5.sidebar_project_link a {
  line-height: 2rem;
  color: var(--co-black);
  border-bottom: 2px dashed var(--co-pink);
}
h5.sidebar_project_link a:hover {
  border-bottom: 2px solid var(--co-pink);
}
.aside_spez {
  margin: 50px 0 50px 0;
}
h5.sidebar_project_spez {
  color: var(--co-black);
}
h6.sidebar_project_text {
  margin: 0 0 1rem 0;
}
h6.sidebar_project_nav a span{
  margin: 0 0 0.5rem 0;
}
.aside_sidenav {
  position: sticky;
  top: 18vh;
  margin: 0 0 50px 0;
}

/* main content */
#project_main {
  grid-area: 3 / 5 / 4 / 11;
  margin: 20vh 0 0 0;
}
section {
  margin: 0 0 80px 0;
}
/* Project Box */
.project_box {
  width: 65%;
  height: auto;
  border: var(--bo-small);
  box-shadow: 8px 8px 0px 0px var(--co-lachs);
  padding: 25px 25px 25px 25px;
}
.project_box_link {
  margin: 1rem 0 0 0;
}

/* previous & next Project */
#project_other {
  height: 20vh;
  grid-area: 4 / 3 / 5 / 11;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: var(--pa-big-t);
}
h4.project_other_text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--co-black);
}
h4.project_other_space {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--co-black);
  padding: 0 0.5rem 0 0.5rem;
}
#project_other_prev {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#project_other_next {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.arrow_left {
  height: 0.5em;
  width: auto;
  display: flex;
  padding-right: 0.25em;
} #arrow_left {
  transform: rotate(90deg);
}
.arrow_right {
  height: 0.5em;
  width: auto;
  display: flex;
  padding-left: 0.25em;
} #arrow_right {
  color: var(--co-black);
  transform: rotate(270deg);
}
.arrow_black {
  fill: var(--co-black);
}


/* ------------------------------------------- */
/* page -------------------------------------- */
/* ------------------------------------------- */

/* page - about ------------------------------ */
#about_side_about h2, #about_side_skills h2 {
  margin-block-start: 0;
  margin-block-end: 0;
}
#about_side_about {
  grid-area: 2 / 3 / 4 / 5;
  height: auto;
  width: 100%;
}
#about_image {
  grid-area: 2 / 5 / 3 / 8;
  z-index: 2;
  height: auto;
  width: 90%;
  background-image: url("assets/img/profilbild.jpg");
  background-size: cover;
  background-position: center;
  margin: 0 0 41px 41px;
}
#about_contact {
  grid-area: 2 / 5 / 3 / 11;
  z-index: 1;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  background-color: var(--co-white);
  border: var(--bo-big);
  box-shadow: 16px 16px 0px 0px var(--co-lachs);
  padding: 25px 25px 25px 25px;
  margin: 80px 0 0 0;
}
.about_contact_text {
  height: auto;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about_contact_text p {
  margin-block-start: 0;
  margin-block-end: 0;
}
.about_contact_text h6 {
  margin: 16px 0 0 0;
}
a.contact_box_link {
  margin: 0 0 1rem 0;
}
a.contact_box_link  {
  line-height: 2rem;
  color: var(--co-black);
  border-bottom: 2px dashed var(--co-pink);
}
a.contact_box_link:hover {
  border-bottom: 2px solid var(--co-pink);
}
#about_text {
  grid-area: 3 / 5 / 4 / 11;
  height: auto;
  width: 100%;
  margin: 50px 0 80px 0;
}
#about_side_skills {
  grid-area: 4 / 3 / 5 / 5;
  height: auto;
  width: 100%;
}
#about_skills_bar {
  grid-area: 4 / 5 / 5 / 8;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#about_skills_text {
  grid-area: 4 / 8 / 5 / 11;
  height: auto;
  width: 100%;
}
.skills_other_text {
  margin-block-start: 0;
  margin-block-end: 0;
}
.skills_languages {
  margin-top: 25px;
  margin-block-end: 0;
}





/* IPAD------------------------------------------------------------------- */
/* IPAD------------------------------------------------------------------- */
/* IPAD------------------------------------------------------------------- */

@media only screen and (max-width: 992px) {
/*
  body {
    background-color: lightblue;
  }
*/
  #main_container {
    grid-column-gap: 8px;
    grid-template-rows: auto auto auto auto auto auto auto;
  }
  #work_intro {
    grid-area: 2 / 3 / 3 / 11;
  }
  #portfolio {
    grid-area: 3 / 2 / 4 / 12;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
  h2 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  h4 {
    font-size: 1.15rem;
    line-height: 1.75rem;
  }
  h5, h5 a {
    font-size: 0.8rem;
    line-height: 1.5rem;
    letter-spacing: 1.5px;
  }
  h6 {
    font-size: 1.15rem;
    line-height: 1.75rem;
    letter-spacing: 1.5px;
  }
  p {
    font-size: 1.15rem;
    line-height: 1.75rem;
  }

  /* ------------------------------------------- */
  /* header ------------------------------------ */
  /* ------------------------------------------- */

  #header_bg {
    height: 8vh;
  }
  header {
    height: 7vh;
    font-size: 1.5rem;
  }
  /*Logo*/
  #header_logo {
    height: 4vh;
  }

  /* ------------------------------------------- */
  /* footer ------------------------------------ */
  /* ------------------------------------------- */
  #footer {
    grid-area: 7 / 2 / 8 / 12;
  }
  footer {
    height: auto;
    color: var(--co-grey);
    background-color: var(--co-white);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 2px solid var(--co-grey);
    margin: var(--pa-big-tb);
  }



  /* ------------------------------------------- */
  /* frontpage --------------------------------- */
  /* ------------------------------------------- */

  /* front-page - work ------------------------- */
  /* einleitung (titel) */
  #work_intro_text {
    grid-area: 2 / 2 / 3 / 11;
  }
  #work_intro {
    grid-area: 2 / 3 / 3 / 12;
  }
  .work_intro_box {
    z-index: 1;
    height: auto;
    width: 100%;
    background-color: var(--co-white);
    border: var(--bo-big);
    box-shadow: 16px 16px 0px 0px var(--co-lachs);
    padding: 25px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .work_intro_hide {
    color: var(--co-white);
  }
  .button_down {
    z-index: 1;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end
  }
  .arrow_down {
    height: 0.75em;
    width: auto;
    display: flex;
    padding-right: 0.5em;
  }
  .arrow_grey {
    fill: var(--co-grey);
  }

  /* post_work */
  .post_work {
    height: 40vh;
    margin: 0 0 10vh 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  .post_work:nth-child(even) {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  .post_work:nth-child(even) .post_work_text {
    margin-right: 0;
    margin-left: 0;
  }
  .post_work_bild {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .post_work_text {
    width: 100%;
    margin: 4vh 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .post_work_title {
    margin-bottom: 1.5rem;
  }
  .post_work_exerpt {
    padding: 2rem 30% 2rem 2rem;
  }

  /* more Projects */
  #project_more {
    height: 12vh;
    grid-area: 4 / 2 / 5 / 12;
    margin: 4vh 0 4vh 0;
  }



  /* ------------------------------------------- */
  /* single ------------------------------------ */
  /* ------------------------------------------- */

  /* single - project -------------------------- */
  /* intro */
  #project_intro_img {
    height: 40vh;
  }
  #project_intro_text {
    grid-area: 1 / 2 / 3 / 7;
  }
  .project_info {
    display: none;
  }
  /* aside */
  #project_aside {
    grid-area: 3 / 2 / 5 / 5;
  }
  .aside_link {
    margin: 50px 0 0 0;
  }
  .aside_sidenav {
    top: 12vh;
  }

  /* main content */
  #project_main {
    grid-area: 3 / 5 / 4 / 12;
    margin: 0 0 0 0;
  }
  /* Project Box */
  .project_box {
    width: 100%;
  }

  /* previous & next Project */
  #project_other {
    height: 12vh;
    grid-area: 4 / 2 / 5 / 12;
    margin: 4vh 0 4vh 0;
  }
  h4.project_other_text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--co-black);
  }
  h4.project_other_space {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--co-black);
    padding: 0 0.5rem 0 0.5rem;
  }


  /* ------------------------------------------- */
  /* page -------------------------------------- */
  /* ------------------------------------------- */

  /* page - about ------------------------------ */
  #about_side_about h2, #about_side_skills h2 {
    margin-block-start: 1.75rem;
    margin-block-end: 1.75rem;
  }
  #about_side_about {
    grid-area: 2 / 2 / 3 / 12;
  }
  #about_image {
    grid-area: 3 / 2 / 4 / 7;
  }
  #about_contact {
    grid-area: 3 / 2 / 4 / 12;
  }
  #about_text {
    grid-area: 4 / 2 / 5 / 12;
    margin: 50px 0 50px 0;
  }
  #about_side_skills {
    grid-area: 5 / 2 / 6 / 12;
  }
  #about_skills_bar {
    grid-area: 6 / 2 / 7 / 7;
  }
  #about_skills_text {
    grid-area: 6 / 7 / 7 / 12;
  }
}

/* MOBIL------------------------------------------------------------------ */
/* MOBIL------------------------------------------------------------------ */
/* MOBIL------------------------------------------------------------------ */

@media only screen and (max-width: 680px) {
/*
  body {
    background-color: pink;
  }
*/
  #main_container {
    grid-column-gap: 8px;
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
  }
  #work_intro {
    grid-area: 2 / 4 / 3 / 10;
  }
  #portfolio {
    grid-area: 3 / 3 / 6 / 11;
  }

  h1 {
    font-size: 2rem;
    line-height: 2.75rem;
  }
  h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  h4 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  h5, h5 a {
    font-size: 0.8rem;
    line-height: 1.5rem;
    letter-spacing: 1.5px;
  }
  h6 {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 1.5px;
  }
  p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  /* ------------------------------------------- */
  /* header ------------------------------------ */
  /* ------------------------------------------- */

  #header_bg {
    height: 8vh;
  }
  header {
    height: 7vh;
    font-size: 1.5rem;
  }
  /*Logo*/
  #header_logo {
    height: 4vh;
  }
  header div ul li a {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }



  /* ------------------------------------------- */
  /* footer ------------------------------------ */
  /* ------------------------------------------- */
  #footer {
    grid-area: 9 / 2 / 10 / 12;
  }
  footer {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    margin: var(--pa-small-tb);
  }


  /* ------------------------------------------- */
  /* frontpage --------------------------------- */
  /* ------------------------------------------- */

  /* front-page - work ------------------------- */
  /* einleitung (titel) */
  #work_intro_text {
    grid-area: 2 / 2 / 3 / 11;
    margin: 75px 0 0 0;
  }
  #work_intro {
    grid-area: 2 / 3 / 3 / 12;
    height: auto;
    width: 100%;
    padding: 0 16px 0 0;
    margin: 50px 0 100px 0;
  }
  .work_intro_show {
    padding: 8px 0 8px 0;
  }
  .work_intro_box {
    border: var(--bo-small);
    box-shadow: 8px 8px 0px 0px var(--co-lachs);
    padding: 12px 12px 12px 12px;
  }
  .work_intro_hide {
    padding: 8px 0 8px 0;
  }
  /* post_work */
  .post_work {
    height: 50vh;
    margin: 0 0 10vh 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  .post_work_title {
    margin-bottom: 1rem;
  }
  .post_work_exerpt {
    padding: 2rem 2rem 2rem 2rem;
  }

  /* more Projects */
  #project_more {
    grid-area: 4 / 2 / 5 / 12;
  }
  h4.project_more_text {
    font-size: 1rem;
  }


  /* ------------------------------------------- */
  /* single ------------------------------------ */
  /* ------------------------------------------- */

  /* single - project -------------------------- */
  /* intro */
  #project_intro_img {
    height: 40vh;
  }
  #project_intro_text {
    grid-area: 1 / 2 / 3 / 9;
  }
  .project_info {
    display: none;
  }
  /* aside */
  #project_aside {
    grid-area: 3 / 2 / 4 / 12;
    padding-left: 0;
    position: inherit;
  }
  .aside_spez {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0 0 0;
  }
  .aside_group {
    width: 45%;
  }
  .aside_sidenav {
    display: none;
  }
  /* main content */
  #project_main {
    grid-area: 4 / 2 / 5 / 12;
  }
  /* previous & next Project */
  #project_other {
    height: 12vh;
    grid-area: 5 / 2 / 6 / 12;
    margin: 4vh 0 4vh 0;
  }
  h4.project_other_text {
    font-size: 1rem;
  }
  h4.project_other_space {
    font-size: 1rem;
  }


  /* ------------------------------------------- */
  /* page -------------------------------------- */
  /* ------------------------------------------- */

  /* page - about ------------------------------ */
  #about_side_about h2, #about_side_skills h2 {
    margin-block-start: 1.75rem;
    margin-block-end: 1.75rem;
  }
  #about_side_about {
    grid-area: 2 / 2 / 3 / 12;
  }
  #about_image {
    grid-area: 3 / 2 / 4 / 8;
    z-index: 2;
    height: 50vw;
    width: 100%;
    background-image: url("assets/img/profilbild.jpg");
    background-size: cover;
    background-position: center;
    margin: 0 0 33px 33px;
  }
  #about_contact {
    grid-area: 3 / 2 / 5 / 12;
    z-index: 1;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: var(--co-white);
    border: var(--bo-small);
    box-shadow: 8px 8px 0px 0px var(--co-lachs);
    padding: 30vw 25px 25px 25px;
    margin: 25vw 0 0 0;
  }
  .about_contact_text {
    width: 100%;
  }
  #about_text {
    grid-area: 5 / 2 / 6 / 12;
    height: auto;
    width: 100%;
    margin: 25px 0 25px 0;
  }
  #about_side_skills {
    grid-area: 6 / 2 / 7 / 12;
  }
  #about_skills_bar {
    grid-area: 7 / 2 / 8 / 12;
  }
  #about_skills_text {
    grid-area: 8 / 2 / 9 / 12;
    margin: 0 0 50px 0;
  }
  .skills_languages {
    margin-top: 12px;
    margin-block-end: 0;
  }
}
