/**site**/

/**styles related to charts and used by d3**/

.wrapper{
    height:1080px;
}

.chart{
    background-color:#F9FAD8;
    padding-left: 0px;
}

.title{
    font-family: montserrat;
    font-weight: bolder;
    font-size: 1vw;
    color:#3F5248;
}

.domain{
    visibility: hidden;
}

.tick{   
    font-family: montserrat;
    font-weight: bolder;
    color:#3F5248;
}

.ability{
    fill:#E4E5D5;
}

.freshness{
    fill:#800;
}

.enjoyment{
    fill:#3F5248;
}

.creativity{
    fill:red;
}

.polish{
    fill:#CBD4C3;
}

.labelability{
    font-family: montserrat;
    font-weight: bolder;
    font-size: 13px;
    fill:#800;
}

.labelfreshness{
    font-family: montserrat;
    font-weight: bolder;
    font-size: 13px;
    fill:white;
}

.labelenjoyment{
    font-family: montserrat;
    font-weight: bolder;
    font-size: 13px;
    fill:white;
}

.labelcreativity{
    font-family: montserrat;
    font-weight: bolder;
    font-size: 13px;
    fill:white;
}

.labelpolish{
    font-family: montserrat;
    font-weight: bolder;
    font-size: 13px;
    fill:#3F5248;
}

.skill{
    display: flex;
    flex-direction: row;
}


html { 
    box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: #D0D0D0;
}

::-webkit-scrollbar {
  display: none;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
  } 

  a {
    text-decoration: none;
    color: inherit;
  }

  a:hover {
    color: #800;
  }

  a:active {
    color: #800;
  }


  /**Typography**/

  h1 {
    font-family: "montserrat";
    font-size: 1.9vw;
    font-weight: 900;
    white-space: pre;
    text-align: center;
    line-height: 0.8;
    color: #800;
    margin: 8px 0px 0px 0px;
  }

  h2 {    
    font-family: "montserrat";
    font-size: 1vw;
    font-weight: 100;
    white-space: pre;
    text-align: center;
    line-height: 0.8;
    color: #800;
    margin: 8px 0px 0px 0px;
  }

  h3 {
    font-family: "montserrat";
    font-size: 1vw;
    font-weight: 100;
    white-space: pre;
    text-align: center;
    line-height: 0.8;
    color: #3F5248;
    margin: 8px 0px 0px 0px;
  }

  h2.blockTitle {
    font-size: 1vw;
    font-weight: 100;
    white-space: normal;
    hyphens: auto;
    color: #f6E4AF;
    text-align: left;
    margin: 8px 8px 14px 10px;
  }

  h2.blockTitleDark {
    font-size: 1vw;
    font-weight: 100;
    white-space: normal;
    hyphens: auto;
    color: #3F5248;
    text-align: left;
    margin: 8px 8px 14px 10px;
  }

  p.blockText {
    font-family: "hind";
    font-size: .9vw;
    line-height: 1;
    hyphens: auto;
    color: white;
    margin: 8px 8px 8px 10px;
  }

  p.blockTextDark {
    font-family: "hind";
    font-size: .9vw;
    line-height: 1;
    hyphens: auto;
    color: black;
    margin: 8px 8px 8px 10px;
  }

  p.caption {
    font-family: "hind";
    font-size: .7vw;
    line-height: 1;
    hyphens: auto;
    color: black;
    margin: 16px 12px 8px 12px;
  }

  .brss {
    font-size: 1.4vw;
    font-weight: 600;
    color: #800;
  }

  .script {
    font-family: "yesteryear";
    font-weight: 100;
    color: black;
  }

  .skinny {
    font-weight: 100;
  }

  
  /** for browsers less than 660px **/

@media only screen and (max-width: 660px) {

  /** Utilities **/

  :root {
    --tbwf: 9;
  }

  /**Typography modified for screensze**/

.title{

  font-size: 2.6vw;
}

h1 {
  font-size: 2.6vw;
}

h1.mainTitle {
  font-size: 3.6vw;
}

h2 {    
  font-size: 1.4vw;
}

h3 {
  font-size: 1.4vw;
}

h2.blockTitle {
  font-size: 3.2vw;
  color: #3F5248;
}

h2.blockTitleDark {
  font-size: 3.2vw;
}

p.blockText {
  font-size: 2.8vw;
}

p.blockTextDark {
  font-size: 2.8vw;
}

p.caption {
  font-size: 2vw;
}

.brss {
  font-size: 3.2vw;
}

#wrapper {
  max-width: 660px; 
  margin: auto;
  scroll-behavior: smooth;
  width: 100%;
  height: auto;
}

/**Base**/

/**BaseImages**/

#baseImages {
  width: 100%;
  height: 1100px;
  background-color: #CBD4C3;
  display: grid;
  grid-template-columns: repeat(96, 1fr);   
  grid-template-rows: repeat(54, 1fr);
  margin: 0px 0px 0px 0px;
  z-index: 1;
}


#hamburger {
  grid-column-start: 68;
  grid-column-end: span 3;
  grid-row-start: 1;
  grid-row-end: span 3;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1000;
  margin: 10px 0px 0px 0px;
}

/* Dropdown Button */

 .dropbtn {
  background-color:#800;
  opacity: 0;
  padding: 8px;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color:#3F5248;
  z-index: 1000;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  opacity: .9;
  margin-left: -120px;
  z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #800;
  font-family: montserrat;
  font-size: .9rem;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  z-index: 1000;
}


/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: flex;
  flex-direction: column;
  z-index: 1000;
} 


#smallLogo {
  grid-column-start: 11;
  grid-column-end: span 16;
  grid-row-start: 42;
  grid-row-end: span 12;
  background-image: url(images-ms/smallLogo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 22;
  margin: 140px 0px 0px 0px;
}

#baseImageCircleBig {
  grid-column-start: 4;
  grid-column-end: span 48;
  grid-row-start: 30;
  grid-row-end: span 48;
  background-image: url(images-ls/bigCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
}

#baseImageCircleSmall {
  grid-column-start: 58;
  grid-column-end: span 30;
  grid-row-start: 38;
  grid-row-end: span 14;
  background-image: url(images-ls/smallCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px 0px 0px 0px;
  z-index: 1;
}

#bigLogo {
grid-column-start: 28;
grid-column-end: span 36;
grid-row-start: 1;
grid-row-end: span 36;
background-image: url(images-ls/bigLogo.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

#redDot {
grid-column-start: 86;
grid-column-end: span 6;
grid-row-start: 8;
grid-row-end: span 6;
background-image: url(images-ls/reddot.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

    /**baseText**/
    /**Headlines**/

    
    #baseText {
      grid-column-start: 1;
      grid-column-end: span 96;
      grid-row-start: 1;
      grid-row-end: span 54;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(96, 1fr);   
      grid-template-rows: repeat(54, 1fr);
    }
  
  #baseTextHeadline-1 {
      grid-column-start: 48;
      grid-column-end: span 20;
      grid-row-start: 9;
      grid-row-end: span 2;
      background-size: contain;
      background-repeat: no-repeat;
      background-size: 0em;
      z-index: 4;
    }

    #quoteBox {
      grid-column-start: 68;
      grid-column-end: span 32;
      grid-row-start: 11;
      grid-row-end: span 20; 
      display: flex;
      flex-direction: column;
    }

    #quote {
      font-family: "montserrat";
      font-size: .9rem;
      font-weight: 100;
      font-style: italic;
      color: #3F5248;
      line-height: 1rem;
      background-color: rgba(255,255,255,0.5);
      background-size: contain;
      background-repeat: no-repeat;
      padding: 20px 20px 20px 20px;
      margin: -110px 0px 0px 4px;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .quotationMark {
      font-size: 10rem;
      font-weight: bolder;
      Color:#F9FAD8;
      Opacity: .8;
      }

    #frontQuotationMark{
      z-index: 2;
    }
    #backQuotationMark{
      margin: -50px 0px 0px 54px;
      z-index: 2;
    }


/**scrollable section with charts and text avobe charts**/

#scrollBox{
  height: 100vh;
  margin: -900px 0px 40px 0px;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  z-index: 10;
  overflow-y: scroll;
  overflow-x: none;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}

#writeUp{
  padding: 0px 34% 0px 0px;
  margin: 20px 0px 40px 40px;
  z-index: 10;
}

#writeUp p {
  columns: 1;
  font-size: .9rem;
  line-height: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 10;
}

#toolsCharts { 
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
}

.skill{
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
    margin: 0px 0px 0px 0px;
    z-index: 10;
}

.chart{
    width: 100%;
    margin: 4px 0px 4px 4px;
    z-index: 10;
}

.sideCarText{
    width: 100%;
    min-width: 100%;
    height: auto;
    background-color: rgba(255,255,255,0.8);
    hyphens: auto;
    color: black;
    z-index: 10;    
    padding: 14px 4px 10px 10px;
    margin: 0px 0px 12px 0px;
}

.sideCarText p {
  font-size: .8rem;
  line-height: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

}


  /** for browsers between 660px and 960px **/

@media only screen and (min-width: 660px) and (max-width: 960px) {

  /** Utilities **/

  :root {
    --tbwf: 9;
  }

  /**Typography modified for screensze**/

  .title{
    font-size: 2vw;
  }

  h1 {
    font-size: 1.9vw;
  }

  h1.mainTitle {
    font-size: 3.6vw;
  }

  h2 {    
    font-size: 1vw;
  }

  h3 {
    font-size: 1vw;
  }

  h2.blockTitle {
    font-size: 2vw;
  }

  h2.blockTitleDark {
    font-size: 2vw;
  }

  p.blockText {
    font-size: 1.6vw;
  }

  p.blockTextDark {
    font-size: 1.7vw;
  }

  p.caption {
    font-size: 1.4vw;
  }

  .brss {
    font-size: 1.8vw;
  }


/**Layout**/

#wrapper {
  max-width: 960px; 
  margin: auto;
  scroll-behavior: smooth;
  width: 100%;
  height: auto;
}

/**Base**/

/**BaseImages**/

#baseImages {
  width: 100%;
  height: 1000px;
  background-color: #CBD4C3;
  display: grid;
  grid-template-columns: repeat(96, 1fr);   
  grid-template-rows: repeat(54, 1fr);
  margin: 0px 0px 0px 0px;
  z-index: 1;
}


#hamburger {
  grid-column-start: 68;
  grid-column-end: span 3;
  grid-row-start: 1;
  grid-row-end: span 3;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 10px 0px 0px 0px;
  z-index: 1000;
}




 /* Dropdown Button */
 .dropbtn {
  background-color:#800;
  opacity: 0;
  padding: 8px;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #800;
  z-index: 1000;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  opacity: .9;
  margin-left: -120px;
  z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #800;
  font-family: montserrat;
  font-size: .9rem;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  z-index: 1000;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}


/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: flex;
  flex-direction: column;
  z-index: 1000;
} 

#smallLogo {
  grid-column-start: 13;
  grid-column-end: span 7;
  grid-row-start: 45;
  grid-row-end: span 7;
  background-image: url(images-ms/smallLogo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 22;
  margin: 0px 0px 0px 0px;
}

#baseImageCircleBig {
  grid-column-start: 4;
  grid-column-end: span 39;
  grid-row-start: 25;
  grid-row-end: span 39;
  background-image: url(images-ls/bigCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
}

#baseImageCircleSmall {
  grid-column-start: 48;
  grid-column-end: span 16;
  grid-row-start: 43;
  grid-row-end: span 16;
  background-image: url(images-ls/smallCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px 0px 0px 0px;
  z-index: 1;
}

#bigLogo {
grid-column-start: 36;
grid-column-end: span 24;
grid-row-start: 1;
grid-row-end: span 17;
background-image: url(images-ls/bigLogo.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

#redDot {
grid-column-start: 86;
grid-column-end: span 4;
grid-row-start: 7;
grid-row-end: span 4;
background-image: url(images-ls/reddot.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

    /**baseText**/
    /**Headlines**/

    #baseText {
      grid-column-start: 1;
      grid-column-end: span 96;
      grid-row-start: 1;
      grid-row-end: span 54;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(96, 1fr);   
      grid-template-rows: repeat(54, 1fr);
    }
  
  #baseTextHeadline-1 {
      grid-column-start: 64;
      grid-column-end: span 18;
      grid-row-start: 8;
      grid-row-end: span 2;
      background-size: contain;
      background-repeat: no-repeat;
      background-size: 0em;
      z-index: 4;
    }
  
    #quoteBox {
      grid-column-start: 68;
      grid-column-end: span 18;
      grid-row-start: 11;
      grid-row-end: span 20; 
      display: flex;
      flex-direction: column;
    }

    #quote {
      font-family: "montserrat";
      font-size: 1rem;
      font-weight: 100;
      font-style: italic;
      color: #3F5248;
      line-height: 1.2rem;
      background-color: rgba(255,255,255,0.5);
      background-size: contain;
      background-repeat: no-repeat;
      padding: 20px 20px 20px 20px;
      margin: -110px 0px 0px 16px;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .quotationMark {
      font-size: 10rem;
      font-weight: bolder;
      Color:#F9FAD8;
      Opacity: .8;
      }

    #frontQuotationMark{
      z-index: 2;
    }
    #backQuotationMark{
      margin: -50px 0px 0px 94px;
      z-index: 2;
    }

/**scrollable section with charts with top write-up also**/

#scrollBox{
  height: 100vh;
  margin: -800px 0px 40px 40px;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  z-index: 10;
  overflow-y: scroll;
  overflow-x: none;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}

#writeUp{
  margin: 20px 34% 40px 40px;
  z-index: 10;
}

#writeUp p {
  columns: 1;
  font-size: .9rem;
  line-height: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 10;
}

#toolsCharts { 
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
  margin: 0px 0px 0px 40px;
}

.skill{
    display: flex;
    flex-direction: row;
    height: auto;
    margin: 0px 6px 0px 0px;
    z-index: 10;
}

.chart{
    margin: 4px 0px 4px 4px;
    z-index: 10;
}

.sideCarText{
    width: 140px;
    height: auto;
    background-color: rgba(255,255,255,0.8);
    hyphens: auto;
    color: black;
    z-index: 10;  
    padding: 36px 14px 4px 14px;
    margin: 4px 4px 4px 0px;
}

.sideCarText p {
  font-size: .8rem;
  line-height: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

}

/** for browsers between 960px and 1320px **/

@media only screen and (min-width: 960px) and (max-width: 1320px) {

  /** Utilities **/

  :root {
    --tbwf: 9;
  }

 /**Typography modified for screensze**/

 .title{
  font-size: 1.4vw;
}

 h1 {
  font-size: 1.9vw;
}

h2 {    
  font-size: 1vw;
}

h3 {
  font-size: 1vw;
}

h2.blockTitle {
  font-size: 1.1vw;
}

h2.blockTitleDark {
  font-size: 1.1vw;
}

p.blockText {
  font-size: .9vw;
}

p.blockTextDark {
  font-size: .9vw;
}

p.caption {
  font-size: .8vw;
}

.brss {
  font-size: 1.4vw;
}

/**Layout**/

#wrapper {
  max-width: 1320px; 
  margin: auto;
  scroll-behavior: smooth;
  width: 100%;
  height: auto;
}

/**Base**/

/**BaseImages**/

#baseImages {
  width: 100%;
  height: 900px;
  background-color: #CBD4C3;
  display: grid;
  grid-template-columns: repeat(96, 1fr);   
  grid-template-rows: repeat(54, 1fr);
  margin: 0px 0px 0px 0px;
  z-index: 1;
}


#hamburger {
  grid-column-start: 76;
  grid-column-end: span 3;
  grid-row-start: 3;
  grid-row-end: span 3;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 10px 0px 0px 0px;
  z-index: 1000;
}

 /* Dropdown Button */
 .dropbtn {
  background-color:#800;
  opacity: 0;
  padding: 8px;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #800;
  z-index: 1000;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  opacity: .9;
  z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #800;
  font-family: montserrat;
  font-size: .9rem;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  z-index: 1000;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: flex;
  flex-direction: column;
  z-index: 1000;
} 

#smallLogo {
  grid-column-start: 13;
  grid-column-end: span 7;
  grid-row-start: 45;
  grid-row-end: span 7;
  background-image: url(images-ms/smallLogo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 22;
  margin: 0px 0px 0px 0px;
}

#baseImageCircleBig {
  grid-column-start: 4;
  grid-column-end: span 30;
  grid-row-start: 25;
  grid-row-end: span 30;
  background-image: url(images-ls/bigCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
}

#baseImageCircleSmall {
  grid-column-start: 47;
  grid-column-end: span 16;
  grid-row-start: 40;
  grid-row-end: span 16;
  background-image: url(images-ls/smallCircle.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px 0px 0px 0px;
  z-index: 1;
}

#bigLogo {
grid-column-start: 38;
grid-column-end: span 19;
grid-row-start: 1;
grid-row-end: span 14;
background-image: url(images-ls/bigLogo.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

#redDot {
grid-column-start: 80;
grid-column-end: span 4;
grid-row-start: 8;
grid-row-end: span 4;
background-image: url(images-ls/reddot.png);
background-size: contain;
background-repeat: no-repeat;
z-index: 1;
margin: 0px 0px 0px 0px;
}

    /**baseText**/
    /**Headlines**/

    #baseText {
      grid-column-start: 1;
      grid-column-end: span 96;
      grid-row-start: 1;
      grid-row-end: span 54;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(96, 1fr);   
      grid-template-rows: repeat(54, 1fr);
    }
  
  #baseTextHeadline-1 {
      grid-column-start: 63;
      grid-column-end: span 18;
      grid-row-start: 10;
      grid-row-end: span 2;
      background-size: contain;
      background-repeat: no-repeat;
      background-size: 0em;
      z-index: 4;
    }

    #quoteBox {
      grid-column-start: 68;
      grid-column-end: span 18;
      grid-row-start: 11;
      grid-row-end: span 20; 
      display: flex;
      flex-direction: column;
    }

    #quote {
      font-family: "montserrat";
      font-size: 1rem;
      font-weight: 100;
      font-style: italic;
      color: #3F5248;
      line-height: 1.2rem;
      background-color: rgba(255,255,255,0.5);
      background-size: contain;
      background-repeat: no-repeat;
      padding: 20px 20px 20px 20px;
      margin: -110px 0px 0px 16px;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .quotationMark {
      font-size: 10rem;
      font-weight: bolder;
      Color:#F9FAD8;
      Opacity: .8;
      }

    #frontQuotationMark{
      z-index: 2;
    }
    #backQuotationMark{
      margin: -50px 0px 0px 160px;
      z-index: 2;
    }

/**scrollable section with charts with top write-up also**/

#scrollBox{
  height: 100vh;
  margin: -660px 0px 40px 40px;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  z-index: 10;
  overflow-y: scroll;
  overflow-x: none;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}

#writeUp{
  margin: 20px 33% 40px 40px;
  z-index: 10;
}

#writeUp p {
  columns: 2;
  font-size: .9rem;
  line-height: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 10;
}

#toolsCharts { 
  display: flex;
  flex-wrap: wrap;
  z-index: 20;
  margin: 0px 0px 0px 40px;
}

.skill{
    display: flex;
    flex-direction: row;
    height: auto;
    margin: 0px 6px 0px 0px;
    z-index: 10;
}

.chart{
    margin: 4px 0px 4px 4px;
    z-index: 10;
}

.sideCarText{
    width: 140px;
    height: auto;
    background-color: rgba(255,255,255,0.8);
    hyphens: auto;
    color: black;
    z-index: 10;   
    padding: 36px 14px 4px 14px;
    margin: 4px 4px 4px 0px;
}

.sideCarText p {
  font-size: .8rem;
  line-height: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
}

/** for browsers larger than 1320px **/

@media only screen and (min-width: 1320px) {

  /** Utilities **/

  :root {
    --tbwf: 9;
  }

  /**Layout**/

#wrapper {
  max-width: 1920px; 
  margin: auto;
  scroll-behavior: smooth;
  width: 100%;
  height: auto;
}

/**Base**/

/**BaseImages**/

#baseImages {
  width: 100%;
  height: 1000px;
  background-color: #CBD4C3;
  display: grid;
  grid-template-columns: repeat(96, 1fr);   
  grid-template-rows: repeat(54, 1fr);
  margin: 0px 0px 0px 0px;
  z-index: 1;
}

#hamburger {
  grid-column-start: 76;
  grid-column-end: span 3;
  grid-row-start: 3;
  grid-row-end: span 3;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 10px 0px 0px 0px;
  z-index: 1000;
}

 /* Dropdown Button */
 .dropbtn {
  background-color:#800;
  opacity: 0;
  padding: 8px;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #800;
  z-index: 1000;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  opacity: .9;
  z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #800;
  font-family: montserrat;
  font-size: .9rem;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  z-index: 1000;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: flex;
  flex-direction: column;
  z-index: 1000;
} 

#baseImageCircleBig {
    grid-column-start: 4;
    grid-column-end: span 30;
    grid-row-start: 25;
    grid-row-end: span 30;
    background-image: url(images-ls/bigCircle.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    margin: 0px 0px 0px 0px;
  }
  
  #baseImageCircleSmall {
    grid-column-start: 48;
    grid-column-end: span 16;
    grid-row-start: 43;
    grid-row-end: span 16;
    background-image: url(images-ls/smallCircle.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0px 0px 0px 0px;
    z-index: 1;
  }

#bigLogo {
  grid-column-start: 38;
  grid-column-end: span 19;
  grid-row-start: 1;
  grid-row-end: span 14;
  background-image: url(images-ls/bigLogo.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
}

#smallLogo {
  grid-column-start: 84;
  grid-column-end: span 7;
  grid-row-start: 23;
  grid-row-end: span 7;
  background-image: url(images-ls/smallLogo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
}

#redDot {
  grid-column-start: 80;
  grid-column-end: span 4;
  grid-row-start: 8;
  grid-row-end: span 4;
  background-image: url(images-ls/reddot.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0px 0px 0px 0px;
}

    /**baseText**/
    /**Headlines**/

   #baseText {
      grid-column-start: 1;
      grid-column-end: span 96;
      grid-row-start: 1;
      grid-row-end: span 54;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(96, 1fr);   
      grid-template-rows: repeat(54, 1fr);
    }
  
  #baseTextHeadline-1 {
      grid-column-start: 63;
      grid-column-end: span 18;
      grid-row-start: 10;
      grid-row-end: span 2;
      background-size: contain;
      background-repeat: no-repeat;
      background-size: 0em;
      z-index: 4;
    }

    #quoteBox {
      grid-column-start: 68;
      grid-column-end: span 18;
      grid-row-start: 11;
      grid-row-end: span 20; 
      display: flex;
      flex-direction: column;
    }

    #quote {
      font-family: "montserrat";
      font-size: 1.1rem;
      font-weight: 100;
      font-style: italic;
      color: #3F5248;
      line-height: 1.2rem;
      background-color: rgba(255,255,255,0.5);
      background-size: contain;
      background-repeat: no-repeat;
      padding: 20px 20px 20px 20px;
      margin: -110px 0px 0px 16px;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .quotationMark {
      font-size: 10rem;
      font-weight: bolder;
      Color:#F9FAD8;
      Opacity: .8;
      }

    #frontQuotationMark{
      z-index: 2;
    }
    #backQuotationMark{
      margin: -50px 0px 0px 180px;
      z-index: 2;
    }

/**scrollable section with charts with top write-up also**/

 #scrollBox{
    height: 100vh;
    margin: -750px 0px 40px 40px;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
    z-index: 10;
    overflow-y: scroll;
    overflow-x: none;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
  }

#writeUp{
  margin: 20px 33% 40px 40px;
  z-index: 10;
}

#writeUp p {
  columns: 2;
  font-size: .9rem;
  line-height: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 10;
}

#toolsCharts { 
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
  margin: 0px 0px 0px 40px;
}

.skill{
    display: flex;
    flex-direction: row;
    height: auto;
    margin: 0px 6px 0px 0px;
    z-index: 10;
}

.chart{
    margin: 4px 0px 4px 4px;
    z-index: 10;
}

.sideCarText{
    width: 140px;
    height: auto;
    background-color: rgba(255,255,255,0.8);
    hyphens: auto;
    color: black;
    z-index: 10; 
    padding: 36px 14px 4px 14px;
    margin: 4px 4px 4px 0px;
}

.sideCarText p {
  font-size: .8rem;
  line-height: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

}