html, body {
    font-family: 'Bitter', 'Poppins', 'Sans', sans-serif;
    background-color: var(--offwhitefill);
    color: var(--bodyfontcolor);
    font-size: 100%;
    line-height: 1.55rem;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    /* 'Proxima Nova', 'Exo' */
}

h1 {
  font-family: 'Inter', 'Segoe UI', sans-serif; /* Bitter */
  font-size: 1.7em;
  line-height: 1em;
  text-transform: uppercase;
  margin-block-start: 0%;
  font-weight: Bold;
}

h2 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 2.1em;
  text-transform: uppercase;
  line-height: 1.5em; 
  margin: 0;
}
h3 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.6em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: bold;
}
h4 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 1rem;
}
h5 {
  font-size: 1.3em;
  margin-bottom: .1rem;
}
h6 {
  font-size: 1.25em;
  margin-bottom: .1rem;
}

p, ul, ol {
  font-size: 1.1em;
}

header {
  margin: 0;
}


#header_holder_interior {
  /* JS header thing */
  margin: 0 4%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

:root {
  --bodyfontcolor: #282727;
  --bodygreencolor: #5E803C;
  --bodybluecolor: #336699; /* 3C5E80 */
  --makewhite: #FFF;
  --offwhitefill: #FCFCFC;
  --panelcolor: #F9F9F9;
  --modgray: #555;
  --lightgray: #DCDCDC;
  --makered: #AF0E0E;
  --buttonborder: #C5C5C5;
}


#menu_logo_holder {
  width: 33%;
  /* border: 1px blue dashed; */
}

#menu_logo_holder img {
  width: 48px;
}

#menu_logo_holder a {
  display: block;
  cursor: pointer;
}

#menu_title_holder {
  text-transform: uppercase;
  width: 33%;
  font-size: 1.35em;
  text-align: center;
  justify-content: center;
  align-items: center;
  /* border: 1px red dashed; */
}

#menu_nav_holder {
  width: 33%;
  justify-content: right;
  align-items: center;
  /* border: 1px purple dashed; */
  overflow: hidden;
}

#main_nav_icon {
   display: none;
   float: right; 
}

#nav_menu_icon {
  -webkit-transition: all .3s ease-in-out;
  transition: all 0.3s ease;
  /* -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1); */
}

nav {
  text-align: right;
}

nav ul, #footer_social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  padding: 3px .5em;
  display: inline-block;
}

nav a:link, nav a:visited {
  text-decoration: none;
  color: var(--bodygreencolor); 
}
nav a:hover, nav a:active {
  color: var(--bodyfontcolor);
  font-weight: 700;
  border-bottom: 3px solid var(--bodygreencolor);
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}

.nav_active {
  text-decoration: line-through;
  color: var(--bodyfontcolor);
  font-weight: 900;
}

footer {
    width: 100%;
    border-bottom: 5px solid var(--bodygreencolor);
    border-top: 1px solid #DDDCDC;
}

figure {
   margin: 0;
}

figcaption {
  text-align: center;
  font-weight: bold;
  font-size: .85em;
}

legend {
	display: none;
}

fieldset {
	border: none;
  margin: 0;
  padding: 0;
}

input[type=text], textarea {
    border: none;
    border: 1px solid #464646;
    background: none;
    /* margin-top: 1.5em; */
    font-size: 1.1em;
    width: 99%;
    background-color: var(--makewhite);
    color: var(--bodybluecolor);
    -webkit-transition: width .35s ease-in-out;
    transition: width .35s ease-in-out;
}

input[type=text] {
      height: 2em;
      padding: 0 .3em;
}

input[type=text]:focus, textarea:focus {
    background-color: none;
    border: 2px solid #464646;
    outline: none;
    width: 99%;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

textarea {
  resize: vertical;
  font-size: 1.2em;
  padding: .3em;
}

.input_error_border {
    border: 2px solid var(--makered) !important;
}

.hideElement {
  display: none;
}

.clearfix {
  clear: both;
}

.nocss {
  position: absolute;
  left: -5000px;
}

.img_margin {
  margin-right: 20px;
}

.floatleft {
float: left;
}

.floatright {
float: right;
}

#big, #medium, #small {
  opacity: 0;
}
#big, #medium, #small {
  transition:  all 1s ease;
}

#small {
  transform: translateX(2%);
  opacity: 100%;
}

#medium {
  transform: translateX(4%);
  opacity: 100%;
}

#big {
  transform: translateX(6%);
  opacity: 100%;
}

.frmButton {
margin: 0;
padding: .7em 1.5em;
align-items: center;
width: 180px;
height: 50px;
display: flex;
justify-content: center;
text-decoration: none;
background: var(--makewhite);
color: var(--bodyfontcolor);
font-size: 1.1em;
cursor: pointer;
border: 1px solid var(--buttonborder);
float: right;
border-radius: 7px;
-webkit-transition: color .35s ease-in-out;
transition: color 0.3s ease, transform 0.3s ease;
}

.frmButton:hover {
background: var(--makewhite);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.bodyButton {
margin-right: 2em;
padding: .7em 1.5em;
align-items: center;
width: 130px;
display: flex;
justify-content: center;
text-decoration: none;
color: var(--bodyfontcolor);
cursor: pointer;
border: 1px solid var(--buttonborder);
border-radius: 7px;
-webkit-transition: color .35s ease-in-out;
transition: color 0.3s ease, transform 0.3s ease;
}

.bodyButton_type2 {
  margin-right: 2em;
  padding: .7em 1.5em;
  align-items: center;
  /* width: 180px; */
  height: 50px;
  display: flex;
  justify-content: center;
  background-color: transparent;
  color: #282727;
  font-size: 1.1em;
  cursor: pointer;
  border: 1px solid var(--buttonborder);
  border-radius: 7px;
  -webkit-transition: color .35s ease-in-out;
  transition: color 0.3s ease, transform 0.3s ease;
}

.bodyButton:last-of-type, .bodyButton_type2:last-of-type {
margin-right: 0;
}

.bodyButton img, .frmButton img, .bodyButton_type2 img {
margin-right: 1em;
}

.bodyButton:hover, .bodyButton_type2:hover {
background: var(--makewhite);
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.bbactive {
  background: var(--makewhite);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}


/******** Footer ID and Classes ********/

#footer_content {
  padding: 1em 0 2em 0;
  margin: 0 11%;
}

#footer_copyright {
  font-size: .9em;
}

#footer_social li {
 margin: 0 .2em;
 display: inline-block;
}
#footer_social li:first-child {
  margin-left: 0;
}

#footer_social a {
  width: 36px;
  height: 36px;
  display: block;
}

.footer_ports_title {
  width: 75%;
  margin: 0 auto;
}

.footer_ports_subnav ul { 
  list-style: none;
  text-align: center;
}

.footer_ports_subnav li { 
  display: inline-block;
  margin: 2rem 3%;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

.footer_ports_subnav li:first-child {
  margin: 2rem 4% 2rem 0;
}

.footer_ports_subnav li:last-child {
  margin: 2rem 0 2rem 4%;
}

.footer_ports_subnav img { 
   width: 200px;
   height: auto;
   margin-bottom: 1.2rem;
   border-radius: 15px;
}

/******** Social Media Buttons ********/

#soc1 {
  width: 36px;
  height: 36px;
  background: url(../img/behance.svg) no-repeat center;
  background-size: 70%;
  cursor: pointer;
  background-color: var(--bodyfontcolor);
  border-radius: 7px;
}


#soc3 {
  position: relative;
  width: 36px;
  height: 36px;
  background: url(../img/linkedin.svg) no-repeat center;
  background-size: 70%;
  cursor: pointer;
  background-color: var(--bodyfontcolor);
  border-radius: 7px;
}

#soc4 {
  position: relative;
  width: 36px;
  height: 36px;
  background: url(../img/Instagram_wh.svg) no-repeat center;
  background-size: 70%;
  cursor: pointer;
  background-color: var(--bodyfontcolor);
  display: block;
  border-radius: 7px;
}


#soc1:hover, #soc2:hover, #soc3:hover, #soc4:hover {
background-color: var(--bodygreencolor);
}




/****** Text Manipulations ********/

.make_verde {
  fill: var(--bodygreencolor);
}

.make_white {
  fill: var(--makewhite);
}

.blau {
  color: var(--bodybluecolor);
}

.verde {
  color: var(--bodygreencolor);
}

.modgray {
  color: var(--modgray);
}

.errortext {
  color: var(--makered);
}

.form_errortext {
  color: var(--makered);
  font-size: .9em;
}

.right_text {
  text-align: right;
  display: block;
}

/* .key_callout_text_center {
  font-size: 1.5em;
  color: var(--bodybluecolor); 
  text-align: center;
  font-weight: bold;
} */

.key_callout_text {
  font-size: 1.5em;
  color: var(--bodybluecolor);
  font-weight: bold;
}

.problemstatement_text {
  font-size: 1.3em;
  color: var(--bodybluecolor); /* Blau */
  font-weight: bold;
}

.projectplatformtext {
  font-size: 1.4em;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-weight: bold;
}

.subblocktext {
  border: 1px solid #DDDCDC;
  border-radius: 15px;
  padding: 2em;
  margin: 3em;
  font-size: 1em;
  line-height: 1.5em;
  /* width: 90%; */
}

.port_content_holder {
  position: absolute;
  left: 40%;
  top: 120px;
  width: 40%;
  height: 45%;
}

.port_content_subholder {
  margin-bottom: 1.1rem;
}


.port_name {
  font-size: 1.6em;
  font-weight: 700;
}

.port_subtitle {
  font-size: .9em;
  font-weight: 500;
}

.bodytext_smaller {
  font-size: .9em;
  font-weight: 500;
}

.port_type, .byline {
  font-size: .7em;
}

.port_link a:link, .port_link a:visited {
  position: absolute;
  bottom: 10%;
  padding: 0.3em 1.3em;
  background: var(--bodygreencolor);
  color: var(--makewhite);
  cursor: pointer;
  border: none;
  font-size: 1.2em;
  text-decoration: none;
  text-align: center;
  border-radius: 7px;
}

.port_link a:hover, .port_link a:active {
  background: #803c5e;
}

.textcenter {
  text-align: center;
}

.textitalics {
   font-style: italic;
   font-weight: 700;
}

.paragraph_spacer {
   margin-top: 1.5rem;
}

.tagline {
  font-size: 2.8em;
  line-height: 1.4em;
}

.boldtext {
  font-weight: bold;
}

.boldtextinline {
  font-weight: bold;
}

.awardtext {
   font-weight: bold;
   font-style: italic;
}

.awardcaption {
  font-size: .76em;
  line-height: 1.3em;
}

.awardimg {
 width: 100%;
 height: auto;
}

.imgcenter {
  display: block;
  margin: 0 auto;
}

.imgtextvertcenter {
  display: flex;
  align-items: center;
}

.art_title {
  font-family: 'Nunito', 'Sans', sans-serif;
}

.artfont {
  font-family: 'Shadows Into Light', 'Sans', sans-serif;
  font-size: 1.8em;
  line-height: 1.2em;
}
.artfont_large {
  font-family: 'Shadows Into Light', 'Sans', sans-serif;
  font-size: 2.5em;
  line-height: 1.5em;
  margin-block-start: 0;
}

.feedback_title {
  font-family: 'Nunito', 'Sans', sans-serif;
  margin: 1em 0 0 0;
  list-style: 1em;
  font-size: 1.2em;
}

/* .feedback_locale {
 /* nichts 
} */


/********** Header Scroll Top Menu ***********/

.nav_main_holder--scrolled {
    margin: 21px 0 0 0;
}

.header_holder--scrolled {
    background: var(--makewhite);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    margin: 0;
    box-shadow: 5px 2px 2px rgb(231, 231, 231);
    /* opacity: 0.9; */
    -webkit-transition: all .35s ease-in-out;
    transition: all 0.3s ease;
    border-bottom: 2px solid #DDDCDC;
}

.header_holder--scrolled .header_logo {
  color: var(--makewhite);
  font-size: 1.4em;
}

.hide--title {
  display: none;
}

.display--title  {
  display: block;
}

#logo_holder {
   display: none;
}


/**************** Page Framework ****************/

/******** Main Section *******/

#main_section_holder {
  margin: 0 4%;
}

#main_section_header {
  margin: 15% 0;
}

#main_section_holder_body_panels {
  margin: 3rem 0;
}

#main_section_holder_uberfooter {
  background-color: #F9F9F9;
  margin: 0 -4%;
  padding: 8% 0;
}

#main_section_holder_form {
  margin: auto;
  width: 33.333333333%;
}


#main_section_portfolio_header {
    margin: 75px auto;
    padding: 5% 7%;
    padding-bottom: 45px;
    line-height: 1.8em;
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    /* background-color: #efefef; */
    background-color: var(--panelcolor);
}

#main_section_portfolio_header p {
  margin: 0;
}

#main_section_portfolio_header_left {
    float: left;
    width: 48%;
    margin-right: 3%;
}
#main_section_portfolio_header_right {
  float: right;
  width: 47%;
  padding: 0 1%;
}

#main_section_holder_sc {
  margin: 45px 0;
  padding: 70px 20.966667%;
  text-align: center;
}

.main_section_divider {
  margin: 20% 8%;
}

.main_section_divider_other {
  margin: 10% 8%;
}


.main_section_divider ul, .main_section_divider_other ul  {
  list-style:none;
  margin: 3% 0;
  padding: 0;
  width: 100%;
}

.main_section_divider li  {
  margin: 0 7% 0 0;
  float: left;
}

.main_section_divider_other li {
  margin: 0 0 5% 0;
}

#main_section_holder_columns h3 {
  color: #5E803C;
  font-size: 2em;
  margin: 1em 0;
}

#main_section_holder_body ul  {
    list-style:none;
    margin: 0;
    padding: 0;
}

#main_section_holder_body li {
    margin: 0 1.5% 4% 0;
}

#figframe {
  width: 100%;
  height: 800px;
  background-color: var(--makewhite);
}


#main_section_portfolio_body article {
  width: 80%;
  margin: 0 auto;
}

#main_section_portfolio_subnav {
  /* width: 100%;
  margin: 0 auto; */
  padding: 4%;
  background-color: var(--panelcolor);
}

#main_section_portfolio_subnav a:link, #main_section_portfolio_subnav a:visited, .bodylinks:link, .bodylinks:visited {
  color: #5E803C;
  /* border-bottom: 3px solid #5E803C; */
  text-decoration: underline;
}

#main_section_portfolio_subnav a:hover, #main_section_portfolio_subnav a:active, .bodylinks:hover {
  color: #282727;
  font-weight: 700;
  /* border-bottom: 3px solid #282727; */
  text-decoration: underline;
}

#main_section_holder_columns ul {
  margin: 0 0 1.6em 1.1em;
  float: none;
  list-style-type: circle;
}

#main_section_holder_columns li {
  margin: 3px 2px 3px 0;
  padding: 2px 0;
  font-weight: 700;
  float: none;
}



/******** Main Portfolio Panels ********/

.main_section_work_holder {
    margin: 100px 0;
}

.main_section_work {
  display: flex;
  flex-direction: row;
   /* border: 1px solid blue;  */
}

.main_section_work_left, .main_section_work_right {
  flex: 1;
  width: 48%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.main_section_work_right {
  margin-right: 0;
}

.main_section_work_links {
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.main_section_work_thanks {
  padding: 2em;
  border-radius: 15px;
  border: var(--lightgray) 1px solid;
  /* box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); */
}

.main_section_teams {
  margin-left: 2%;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  height: 100%;
}

.main_section_teams img {
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  width: 90%;
  
}

.main_section_speaking_buttons {
  display: flex;
  flex-direction: row;
  margin-top: 2em;
}

.main_section_speaking_images {
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  margin: 1em 0;
}

.main_section_speaking_images img {
  border-radius: 9px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  max-width: 200px;
  width: 50%;
  height: auto;
  margin-right: 1em;
}

.main_section_locale_images {
  display: flex;
  flex-direction: row;
}

.main_section_locale_images img {
  border-radius: 7px;
  margin: 0 1em 0 0;
}

.section_relative_holder {
  position: relative;
}

.flexjustify_column {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.flexjustify_rows {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: row;
}

.flexjustify_left {
  display: flex;
  align-content: center;
  flex-direction: row;
}


.flexjustify_center {
  display: flex;
  justify-content: center;
  align-content: center;
}

.flexjustify_right {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  flex-wrap: wrap;
}

.flexjustify_top {
  justify-content: start;
}

.dreizigflex {
  width: 33%;
}

.funfflex {
  width: 5%;
}

.halbflex {
  width: 50%;
}

.sechszigflex {
  width: 60%;
  /* border: 1px solid red; */
}

.sechszigflex_left {
  width: 55%;
  margin-right: 5%;
}
.sechszigflex_right {
  width: 55%;
  margin-left: 5%;
}

.vierzigflex {
  width: 40%;
  /* border: 1px solid purple; */
}

.viertelflex {
  width: 25%;
}

.siebzigflex {
  width: 75%;
}

.zwanzigflex {
  width: 20%
}
.neunzigflex {
  width: 90%;
}

#port1 {
    background: url(../img/panels/mvh_dashboard_panel.jpg) no-repeat;
}

#port2 {
    background: url(../img/panels/mvh_panel_accounts.jpg) no-repeat;
}

#port3 {
    background: url(../img/panels/vvm_panel.jpg) no-repeat;
}

#port4 {
    background: url(../img/panels/nts_panel.jpg) no-repeat;
}


/******** Microsoft Page Portfolio Panels ********/

#portA img {
  /* background: url(../img/panels/wfp_panel.jpg) no-repeat;
  background-size: 400px 400px; */
  width: 400px;
  height: auto;
  border-radius: 15px;
}

#portB img {
  /* background: url(../img/panels/turnitin_panel.jpg) no-repeat;
  background-size: 400px 400px; */
  width: 400px;
  height: auto;
  border-radius: 15px;
}

#portD img {
  /* background: url(../img/panels/flash_panel.jpg) no-repeat;
  background-size: 400px 400px; */
  width: 400px;
  height: auto;
  border-radius: 15px;
}

/******** Portfolio Panels ********/

#port1, #port2, #port3, #port4, #port5, #port6, #port7, #port8, #portA, #portB, #portC, #portD {
  position: relative;
  background-size: cover;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent;

  border-radius: 15px;
  /* border: #dcdcdc 2px solid; */
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#port1 p, #port2 p, #port3 p, #port4 p {
  text-align: center;
  padding: 10px;
  z-index: 10;
  -webkit-transition: color .35s ease-in-out;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateY(-10px);
}

.main_section_work_links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Initially transparent */
  -webkit-transition: background-color .35s ease-in-out;
  transition: background-color 0.3s ease;
  border-radius: 15px;
}

.main_section_work_links:hover #port1 p, .main_section_work_links:hover #port2 p, .main_section_work_links:hover #port3 p, .main_section_work_links:hover #port4 p {
  color: #fff;
  transform: translateX(0);
}

.main_section_work_links:hover::before {
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}


/******** Award Panels ********/

.main_section_awards_outer {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  height: 435px;
  margin-right: 5%;
}

.main_section_awards_outer:first-of-type {
  margin-left: 0;
}

.main_section_awards_inner {
  position: relative;
  height: 100%;
}

.main_section_awards_top {
  background-color: #282727;
  border-radius: 15px 15px 0 0;
  height: 150px;
}

.main_section_awards_bottom {
  padding: .6em 1em;
}

.main_section_awards_bottom_last {
  position: absolute;
  bottom: .5em;
  left: 1em;
}

.award_flags_img img {
  border-radius: 7px;
  margin: 0 2%;
}

/* Award Images */

#first_award {
  background: url("../img/w8poy_image.jpg") no-repeat;
  background-size: cover;
}
#second_award {
  background: url("../img/pspspoy_image.jpg") no-repeat;
  background-size: cover;
}
#third_award {
  background: url("../img/wp7poy_image.jpg") no-repeat;
  background-size: cover;
}
#fourth_award {
  background: url("../img/msfthimss_image.jpg") no-repeat;
  background-size: cover;
}
#fifth_award {
  background: url("../img/adipeckoc_image.jpg") no-repeat; 
  background-size: cover;
}



/* #aboutme_img1 {
   background: url(../img/img1.jpg) no-repeat center center;
   background: contain;
   position: relative;
   width: 25%;
   height: 200px;
}
#aboutme_img2 {
   background: url(../img/img2.jpg) no-repeat center center;
   background: contain;
   position: relative;
   width: 25%;
   height: 200px;
}
#aboutme_img3 {
   background: url(../img/img3.jpg) no-repeat center center;
   background: contain;
   position: relative;
   width: 25%;
   height: 200px;
}
#aboutme_img4 {
   background: url(../img/img4.jpg) no-repeat center center;
   background: contain;
   position: relative;
   width: 25%;
   height: 320px;
} */


#Button_Top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
  border: none;
  background: url(../img/space_ship.svg) no-repeat;
  width: 120px;
  height: 140px;
  -webkit-transition: color .35s ease-in-out;
  transition: color 0.3s ease, transform 0.3s ease;
}

#Button_Top:hover {
  background: url(../img/space_ship_fire.svg) no-repeat;
}

.sub_content {
    margin: 0 auto;
    padding: 1.6em 0;
    width: 90%;
}

.long_quote_condenser {
  margin: 2em auto;
  width: 70%;
}

.sub_panel_social {
    width: 100%;
}

.drawingme_photo {
  width: 50%;
}

.aboutme_photo {
  display: flex;
  justify-content: right;
  align-items: center;
}

.aboutme_photo img {
  border-radius: 15px;
}

.aboutme_text {
    width: 48%;
}

.aboutme_talks {
    width: 100%;
    margin-top: 6em;
}

.aboutme_talks li {
   float: none !important;
   margin: 2% 0 !important;
}

.resume_right {
  margin-left: 15%;
}

.art_holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.art_holder img {
  border-radius: 0;
  box-shadow: 2px 2px 2px rgb(28, 27, 27, 0.5);
}

.artleft, .artright {
  flex: 1;
  width: 45%;
  margin: 0 5% 0 0;
}
.artright {
  margin-right: 0;
}


.art_spacer {
  margin: 200px 0;
}
.art_spacer_line {
  margin: 200px 0;
  padding: 75px 0;
  border-top: 1px solid #DDDCDC;
}

.art_sizer img {
  width: 90%;
  height: auto;
  margin: 2%;
}

.resume_download {
  align-self: flex-end;
}

.resume_splitter {
  border-top: 1px solid var(--lightgray);
  margin: 3em 0;
  padding: 1.5em 0;
}

.resume_splitter ul {
  list-style-type: disc !important;
  margin: 0 2em 0 3em !important;
}
.resume_splitter li {
  margin: 0 11% 4% 0 !important;
  float: none !important;
}

.main_header_holder {
  min-height: 300px;
  display: flex;
  flex-direction: row; 
}

.main_header_img {
  flex: 1;
  width: 25%;
  text-align: center;
}

.main_header_text {   
  flex: 3;
  width: 75%;
}

.main_header_text a:link, .main_header_text a:visited {
  color: var(--bodyfontcolor);
  text-decoration: dotted;
}

.main_header_text a:hover, .main_header_text a:active {
  color: var(--bodygreencolor);
  text-decoration: underline;
}



.main_section_portfolio_section {
    border-bottom: 1px solid var(--lightgray);
    padding-bottom: 45px;
    margin: 0 auto;
    margin-bottom: 90px;
}

.main_section_portfolio_section_text_callout {
    width: 100%;  
    padding: 45px;
    background-color: var(--panelcolor);
}


.main_section_portfolio_section:last-child {
  border: none;
}

#main_section_portfolio_section_skippy {
  margin-top: 2.5em;
}


.main_section_portfolio_subsection {
    margin: 150px auto;

}

.main_section_portfolio_section_text {
    /* width: 75%; */
    margin: 7% auto;
}

.main_section_portfolio_section_text_doubleblock {
    width: 100%;
    /* margin: 75px auto; */
}
.main_section_portfolio_section_text_doubleblock_blocks {
  float: left;
  width: 45.7777%;
  font-size: 1.0em;
  padding: 0 4% 0 0;
}
.main_section_portfolio_section_text_doubleblock_blocks_r {
  float: right;
  width: 48%;
  font-size: 1.0em;
  line-height: 1.8rem;
}

.main_section_portfolio_section_text_doubleblock_blocks_r li {
  margin: 2.1% 0;
}


/************ UX Thoughts *************/

.main_section_portfolio_section_text_uxholder  {
  margin-top: 5.5rem;
}

.main_section_portfolio_section_uxthoughts  {
   width: 100%;
   margin: 2.5rem 0;
   padding: .6em 5%;
   background-color: var(--panelcolor);
}

.main_section_portfolio_section_uxthoughts p {
  line-height: 1.3em;
}

.main_section_portfolio_section_uxthoughts h5 {
  font-family: 'Raleway Medium', 'Segoe UI', sans-serif;
}

/************* check with other port pieces to see if kill above ux thoughts ********/

.main_section_portfolio_section_maxcallout  {
  /* width: 85%; */
  margin: 8rem auto;
  padding: 6rem 10%;
  background-color: var(--bodybluecolor);
  color: var(--panelcolor);
}

.main_section_hidden {
  margin: 3em 0;
  padding: 2em;
  background-color: var(--panelcolor);
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.main_section_hidden_type2 {
  margin: 0 5%;
  padding: 1.7% 5%;
  background-color: var(--panelcolor);
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  font-size: .8em;
}


/*************** POST ITs *****************/

.postit_technology, .postit_technology_flex_row {
  font-family: 'Indie Flower', 'Segoe UI', sans-serif;
  font-size: 1.2em;
  margin-top: 5%;
}

.postit_technology ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.postit_technology ol {
  display: flex;
  list-style: none;
  /* justify-content: space-between; */
  padding-left: 0;
  margin: 0;
  
}

.postit_flexwrap ol {
  display: flex;
  flex-wrap: wrap;
  padding-left: 3%;
}

.postit_technology li {
   padding: 8%;
   margin-right: 4%;
   background-size: contain;
   background-position: center;
}


.postit_inrow li {
   /*padding: 4% 3%; */
   padding: 3% 2.5%;
   margin-right: 1%;
   background-size: contain;
   background-position: center;
  width: 300px;     /* set fixed width */
  height: 200px;    /* set fixed height */
  box-sizing: border-box;
  
}

.postit_technology_typeA {
  margin: 10%;
}

.postit_technology_typeA ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* .postit_technology_row li {
  display: inline-block;
} */

.postit_technology_type1 {
  background: url(../img/kraftwerk/postit_blue.svg) no-repeat;
  width: 30%;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--makewhite);
}

.postit_technology_type2 {
  background: url(../img/kraftwerk/postit_green.svg) no-repeat;
  width: 30%;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.postit_technology_type3 {
  background: url(../img/kraftwerk/postit_blue.svg) no-repeat;
  width: 17%;
  height: 165px;
  color: var(--makewhite);
}

.postit_technology_type4 {
  background: url(../img/kraftwerk/postit_yellow.svg) no-repeat;
  width: 30%;
  height: 220px;
}

.postit_technology_type5 {
  background: url(../img/kraftwerk/postit_red.svg) no-repeat;
  width: 30%;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--makewhite);
}

.postit_technology_type_red {
  background: url(../img/kraftwerk/postit_red.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  color: var(--makewhite);
  padding: 5em;
  height: 100%;
}

.postit_technology_type_red2 {
  background: url(../img/kraftwerk/postit_red.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  color: var(--makewhite);
  padding: 6em;
  height: 100%;
}

.postit_technology_type_blue {
  background: url(../img/kraftwerk/postit_blue.svg) no-repeat;
  width: 30%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--makewhite);
}

.postit_technology_type_green {
  background: url(../img/kraftwerk/postit_green.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  color: var(--makewhite);
  padding: 5em;
  height: 100%;
}

.postit_technology_type_green2 {
  background: url(../img/kraftwerk/postit_green.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  color: var(--bodyfontcolor);
  padding: 1em;
  height: 100%;
}

.postit_technology_type_yellow2 {
  background: url(../img/kraftwerk/postit_yellow.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  color: var(--bodyfontcolor);
  padding: 1.2em;
  height: 100%;
}

.center_cut_column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; 
  align-content: center;
  justify-content: center;
}

/* .postit_technology li:last-child {
  margin-right: 0;
} */

.index_card_technology {
  position: absolute;
  font-family: 'Indie Flower', 'Segoe UI', sans-serif;
  background: url(../img/kraftwerk/index_card.svg) no-repeat;
  right: -2%;
  top: -1.2em;
  height: 100%; 
  background-position: right top;
  /* box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); */
}

.index_card_technology_inner {
  width: 75%;
  line-height: 1.87em;
  margin-top: 2.5em;
  padding-left: 19%;
}

.index_card_technology h6 {
  margin: 0;
}

.index_card_technology_inner p {
  margin-top: .9em;
  margin-bottom: 0;
}
.index_card_technology_inner ul {
  margin-top: 0;
  /* margin-bottom: 0; */
}


.cards_technology {
  margin: 5% auto;
  width: 90%;
}

.cards_technology ul {
  list-style:none;
  margin: 0;
  padding: 0;
}

.cards_technology li {
  margin: 1.5em 0;
  padding: 3% 6% 4% 7%;
  border: 1px solid #DDDCDC;
  /* border-left: 11px solid #803c5e; */
  border-radius: 15px;
}

.cards_technology_subline {
  font-size: .9em;
  color: #803c5e;
  font-style: italic;
}

.cards_technology_subdiv {
  margin: 1% 2%;
  width: 40%;
  float: left;
  padding: 0 2%;
  border: 1px solid #DDDCDC;
  /* border-left: 11px solid #803c5e; */
  border-radius: 15px;
  min-height: 300px;
}

.cards_technology_subdiv_images {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  width: 55%;
  margin: 5%;
  padding: 5%;
}


/*************** Color Cards ******************/

.color_cards_technology {
  font-family: 'Indie Flower', 'Segoe UI', sans-serif;
  font-size: 1.2em;
  /* color: #FFF; */
}

.color_cards_technology ul, .color_cards_technology ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.color_cards_technology li {
  margin-bottom: 3%; 
  padding: 3% 3% 3% 8%;
   width: 36%;
    align-items: center;
    background-color: var(--makewhite);
    border-radius: 15px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  
}

.color_cards_male {
    background: url(../img/kraftwerk/male_participant.svg) no-repeat 3% 20% / 64px auto;
}
.color_cards_female {
    background: url(../img/kraftwerk/female_participant.svg) no-repeat 3% 20% / 64px auto;
}

.color_cards_one {
    background: url(../img/kraftwerk/one_participant.svg) no-repeat 3% 20% / 64px auto;
}
.color_cards_two {
    background: url(../img/kraftwerk/two_participant.svg) no-repeat 3% 20% / 64px auto;
}

/* 
.color_cards_red {
    border: dashed 5px #E0103D;
    background: #FC498B url(../img/kraftwerk/male_red.svg) no-repeat 1% center / 48px auto; 
}

.color_cards_blue {
    border: dashed 5px #2C455E;
    background: #3C5E80 url(../img/kraftwerk/female_blue.svg) no-repeat 1% center / 48px auto; 
}

.color_cards_green {
    border: dashed 5px  #A6BE14;
    background: #BFDA22 url(../img/kraftwerk/female_participant.svg) no-repeat 1% center / 48px auto; 
} */


/********** Imapct Statistics **********/

.impact_statistics_lists ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  /* border: 1px purple solid; */
}

.impact_statistics_lists li {
    display: inline-block;
    margin: 4% .5%;  /* .5%; */
    padding: 1% 0;
    text-align: center;
    width: 47%;
    /* border: 1px pink solid; */
}


/****** Testimonials Carousel Classes ********/

.feedback_section_holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 600px;
  margin: 0 auto;
}

.slideshow_container_feedback {
  position: relative;
  width: 80%;
}

.carousel-slides {
  display: flex;
  overflow: hidden;
}

.slide {
  flex: 0 0 100%;
  height: 600px;
  transition: transform 0.5s ease;
}

.slide_feedback_usa, .slide_feedback_germany, .slide_feedback_czech, .slide_feedback_southafrica  {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 13%;
  height: 100%;
}

.slide_feedback_usa {
  background-image: url(../img/flags/libertybell.svg);
  background-repeat: no-repeat;
  background-position: right 5px top 60px;

}
.slide_feedback_germany {
  background-image: url(../img/flags/fernsehturm.svg);
  background-repeat: no-repeat;
  background-position: right -36px;  
}

.slide_feedback_czech {
  background-image: url(../img/flags/czechtower.svg);
  background-repeat: no-repeat;
  background-position: right bottom 25px;
}
.slide_feedback_southafrica {
  background-image: url(../img/flags/jobergtower.svg);
  background-repeat: no-repeat;
  background-position: right bottom 44px;
}


.slide_locale {
  display: flex;
  flex-direction: row;
}

.slide_locale img {
  margin-right: 1em;
}

/* Styles for the timeline */
.carousel-navigation {
  text-align: center;
  margin-top: 20px;
}

.carousel-prev, .carousel-next {
  padding: .7em;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #282727;
  cursor: pointer;
  border: 1px solid var(--buttonborder);
  border-radius: 7px;
  -webkit-transition: color .35s ease-in-out;
  transition: color 0.3s ease, transform 0.3s ease;
}

.carousel-prev {
  margin-right: 1em;
}

.carousel-next {
  margin-left: 1em;
}


.carousel-prev:hover, .carousel-next:hover {
  background: #ffffff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}


/* Styles for the dots */
.carousel-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #555;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

/* Style for the currently active dot */
.dot.active {
  background-color: var(--bodygreencolor);
}







/****** Press News IDs ********/

#press_news_list {
   width: 95%;
}
#press_news_list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  display: table;
  table-layout: fixed;
}

#press_news_list li {
   display: inline-block;
   margin: 0 3%;
   padding: 0;
   width: 19%;
}
#press_news_list img {
   width: 96.5%;
   height: auto;
   border: 1px solid var(--lightgray);
}

/********** Project Meta Data CSS **********/

#main_section_holder_metadata {
    margin: 45px auto;
    padding: 70px 0%;
    /* border-top: 1px solid #F5F5F5; */
    width: 100%;
    border-top: 1px solid var(--lightgray);
    border-bottom: 1px solid #F5F5F5;
    padding-top: 45px;
}

#main_section_holder_metadata_inner {
  width: 100%;
  margin: 0 1%;
}

#main_section_holder_metadata_inner h3 {
  font-size: 1.0em;
  margin-bottom: 1rem;
}

#main_section_holder_metadata_inner p, #main_section_holder_metadata_inner ul {
  font-size: 1.0em;
}


.holder_metadata_lists, .holder_metadata_links {
    text-align: center;
    margin-left: 1%;
}

.holder_metadata_links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 1em;
}

.holder_metadata_links_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}

.holder_metadata_links_col img, .holder_metadata_links_col p {
  width: 50%;
}

.holder_metadata_lists ul {
    padding: 0;
    width: 100%;
    list-style-type: none;
    margin: 0 auto;
}

.holder_metadata_lists li {
    display: inline-block;
    margin: .5%;
    padding: 1% 2%;
    font-weight: bold;
    background-color: #DDD;
    border-radius: 7px;
    /* color: #f8f8f8; */
    color: var(--bodyfontcolor);
    font-size: .9em;
}



/****** Kraftwerk Images *******/

.image1layout_wide {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.image1layout_mobile {
    width: 40%;
    height: auto;
}

.image2layout_wide {
    width: 80%;
    height: auto;
    border-radius: 15px;
}

.image3layout_wide {
  width: 95%;
  height: auto;
  border-radius: 9px;
}

.image2layout_mobile {
    width: 31%;
    height: auto;
    margin: 3em .5%;
}
.image2layout_havy {
    width: 45.65%;
    height: auto;
    vertical-align: top;
}
.image3layout_havy {
  width: 45.65%;
  height: auto;
  margin: 3em 0 -1em 0;
}
.image3layout_mobile {
    width: 32%;
    height: auto;
    margin: 3em 0;
}

.image4layout_havy {
    width: 49%;
    height: auto;
    vertical-align: top;
}

.image_border {
  border: 10px black solid;
  border-radius: 9px;
}

.video1layout_wide {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 5% 0;
}

.video_portfolio {
  width: 880px;
  height:660px;
}

.figurefloat {
  float: left;
  width: 46%;
  margin-right: 4%;
}

/******** Microsoft Page *********/

.msft_section_portfolio_section_text {
  width: 75%;
  margin: 9% auto;
}

.msft_main_section_holder_logo {
  margin-bottom: 5%;
}

.msft_main_section_holder ul  {
  list-style:none;
  margin: 3% 0;
  padding: 0;
  width: 100%;
}

.msft_main_section_holder li  {
  margin: 0 2.2% 4% 0;
  float: left;
}




/**********************************************************************/
/**************            MEDIA QUERIES                   ************/
/**********************************************************************/

@media (min-width: 1400px) {
  /** check on a large monitor */
}

@media only screen and (min-width : 1024px) and (max-width: 1440px) {
  .port_content_holder {
    left: 50%;
  }

  .image2layout_mobile {
      width: 30%;
  }
}



@media only screen and (max-device-width : 480px), (max-width:480px) {

h1 {
    font-size: 2.1em;
}

h2 {
      font-size: 1.6em;
      margin: 3.5em 0 1.1em 0;
}

footer {
    max-width: 100%;
    padding: 0;
}

nav {
  text-align: left;
}

nav li {
  display: block;
  margin: 3% 4%;
}

input[type=text], textarea {
  width: 99%;
}


input[type=text]:focus, textarea:focus {
  width: 99%;
}

/******  Need to show menu icon here *******/

#main_nav_icon {
  display: block;
}

#main_nav_menu {
  position: absolute;
  top: 90px;
  left: 0;
  background-color: #fff;
  width: 100%;
  box-shadow: 5px 2px 2px rgb(231, 231, 231);
  -webkit-transition: all .35s ease-in-out;
  transition: all 0.3s ease;
  border-bottom: 2px solid #DDDCDC;
  z-index: 100;
}

#main_section_portfolio_subnav a:link, #main_section_portfolio_subnav a:visited, #main_section_portfolio_subnav a:hover, #main_section_portfolio_subnav a:active {
  text-decoration: none;
}

.main_nav_menu_class {
  display: none;
}

.main_nav_menu_class.showElement {
  display: block;
}

.main_header_holder {
  min-height: inherit;
  flex-direction: column;
}

.main_header_text {
  flex: 1;
  width: 100%;
}

.main_header_img {
  width: 45%;
  margin: 0 auto;
}

/******** Main Portfolio Panels ********/

.main_section_work {
  flex-direction: column;
  margin: 10% 0;
}

.main_section_work_left, .main_section_work_right {
  width: 100%;
  margin-bottom: 10%;
}

.main_section_work_links::before {
  /* content: ""; */
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 15px;
}

.main_section_work_links:hover #port1 p, .main_section_work_links:hover #port2 p, .main_section_work_links:hover #port3 p, .main_section_work_links:hover #port4 p {
  color: #fff;
  /* transform: translateX(0); */
}

.main_section_work_links:hover::before {
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}




.main_section_teams {
margin-left: 0;
justify-content: center;
text-align: center;
height: 100%;
}

.main_section_teams img {
width: 100%;
}


.main_section_divider_other {
margin: 10% 5%;
}

.main_section_awards_outer {
margin: 5% 0;
height: 550px;
}

.main_section_awards_top {
height: 250px;
}

.main_section_portfolio_section_text, .msft_section_portfolio_section_text {
    width: 100%;
}

.main_section_portfolio_section_text_callout {
  padding: 0;
}

.main_section_portfolio_section:last-child {
  margin-bottom: 0;
}

.main_section_portfolio_section_text_doubleblock_blocks_r {
  float: none;
  width: 100%;
  /* font-size: 1.2em; */
}

.main_section_speaking_buttons {
  flex-direction: column;
  margin: 10% 0;
}

.nav_main_holder {
    width: 77%;
    margin: 16px 0 0 0;
}

.header_holder--scrolled {
  padding: 3% 0;
}

.nav_main_holder--scrolled {
    margin: 5px 0;
}


/******* Text Manipulations ******/

.tagline {
  font-size: 1.4em;
}

.artfont_large {
  font-size: 1.9em;
}

.long_quote_condenser {
  width: 100%;
}


.cards_technology_subdiv {
  margin: 1% 0;
  width: 95%;
  float: none;
}

.cards_technology_subdiv_images {
  margin: 1% 0;
  width: 95%;
  float: none;
}

.frmButton {
  width: 100%;
}

.bodyButton {
  margin: 5% 0;
  width: 85%;
  height: 50px;
}

.bodyButton_type2 {
  margin: 5% 0;
  width: 100%;
  height: 50px;
}

.drawingme_photo {
  width: 85%;
  margin-left: 3%;
}

.aboutme_photo {
  float: none;
  width: 100%;
}

.aboutme_text {
    margin-left: 0;
    float: none;
    width: 95%;
}
.aboutme_talks {
    margin: 0;
    width: 100%;
    margin-top: 3em;
}

.resume_download {
  border: 2px solid #5E803C;
  margin: 1em 0;
  padding: 1.5em;
  text-align: center;
  width: 100%;
 
}

.resume_download a:link, .resume_download a:visited {
  font-weight: bold;
  text-decoration: none;
}
.resume_download img {
  display: none;
}

.resume_right {
  margin-left: 0;
}

.subblocktext {
  margin: 1em;
}

.holder_footer_lists {
  float: none;
  width: 98%;
  margin-bottom: 2em;
}

.port_content_holder {
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(33, 33, 33, 0.83);
  padding: 117px 6%;
  width: 88%;
  height: unset;
}

.port_content_subholder {
  margin-bottom: .6rem;
}


.port_name {
  font-size: 1.2em;
}

.port_subtitle {
  font-size: .8em;
  font-weight: 300;
}

.main_section_work_links {
  color: var(--makewhite);
}

.video_portfolio {
  width: 100%;
  height: auto;
}

.feedback_section_holder {
  width: 85%;
}

.slideshow_container_feedback {
  width: 100%;
}

.carousel-prev, .carousel-next {
  margin-right: 0;
}

.footer_ports_title {
  width: 100%;
}

.footer_ports_subnav ul {
  text-align: unset;
}

.footer_ports_subnav li, .footer_ports_subnav li:first-child, .footer_ports_subnav li:last-child {
  margin: 2rem 5%;
}

#logo_holder {
   display: none;
}

#menu_logo_holder {
  width: 17%;
}

#menu_title_holder {
  width: 70%;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  padding: 3px 0;
}

#menu_nav_holder {
  width: 12%;
  justify-content: right;
}

#main_section_holder {
    margin: 10% 0;
}

#main_section_holder_header {
    margin: 4%;
    padding: 0;
    /* border: 2px dotted green; */
}

#main_section_portfolio_header {
  margin: 40px 0 0 0;
}

#main_section_holder_body_panels {
  margin: 0;
}

#main_section_holder_body li:last-child {
    margin: 1.2em 0 0 0;
}

#main_section_header, #main_section_holder_body, #main_section_portfolio_body, .main_section_divider, #main_section_holder_uberfooter, #main_section_header_ab {
    margin: 4%;
}

#main_section_portfolio_body article {
    float: none;
    width: 98%;
    font-size: 1em;
}


#main_section_portfolio_subnav {
      margin-top: 40px;
      width: 90%;
}

#main_section_holder_form {
    margin: auto;
    width: 100%;
}

#main_section_holder_body li {
   margin: 1.2em 0 0 0;
}

#figframe {
  width: 100%;
  height: 300px;
}


#main_section_holder_footer {
  margin: 15px auto;
}

#main_section_holder_footer_inner h3 {
    margin-bottom: 0em;
}

#main_section_holder_sc {
  padding: 20px 20.966667%;
}

#main_section_portfolio_header_left, #main_section_portfolio_header_right, .main_section_portfolio_section_text_doubleblock_blocks {
  float: none;
  width: 100%;
}


#press_news_list {
    width: 100%;
}

#press_news_list ul {
  margin: 0;
}

#press_news_list li {
    display: inline-block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 47%;
}

#holder_footer_typeofproject, #holder_footer_teams, #holder_footer_tools, #holder_footer_links {
    float: none;
    width: 100%;
    margin: 0;
    display: block;
    line-height: 2em;
}

.holder_footer_lists p, .holder_footer_lists ul {
  font-size: 1.2em;
  font-weight: normal;
}

#footer_content {
  margin: 0 5px;
  width: 95%;
}
#footer_content span {
  line-height: 1.1em;
}

#footer_copyright {
  font-size: .8em;
  line-height: 1.6em;
  margin-bottom: 15%;
}

#footer_social {
   width: 70%;
}


#main_section_holder_body li:nth-child(3), #main_section_holder_body li:nth-child(6), #main_section_holder_body li:nth-child(8) {
    margin: 1.2em 0 0 0;
}

#main_section_portfolio_header_left, #main_section_portfolio_header_right {
  float: none;
}

#port1, #port2, #port3, #port4, #port5, #port6, #port7, #port8, #portA, #portB, #portC, #portD {
  height: 300px;
  color: var(--makewhite);
  justify-content: end;
  align-items: end;
  margin: 0;

}

#port1 p, #port2 p, #port3 p, #port4 p {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius:  0 0 15px 15px;
  margin: 0;
  padding: 2%;
  transform: translateY(0);
}

#port1 img, #port2 img, #port3 img, #port4 img, #port5 img, #port6 img, #port7 img, #port8 img, #portA img, #portB img, #portC img, #portD img {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: auto;
  
}

/******** Index Card Technology *********/

.index_card_technology {
  position: static;
}

.index_card_technology_inner {
  width: 100%;
  padding: 14% 3.3%;
}

/******** Post It Technology *********/

.postit_technology ol {
  flex-wrap: wrap;
}

.postit_technology li {
  padding: 20%;
  margin: 0;
}

.postit_inrow li {
   padding: 25%;
   margin-bottom: 2%;
  width: 100%;    
  height: 240px; 
}

.postit_technology_type1, .postit_technology_type2, .postit_technology_type5 {
  width: 60%;
  height: 150px;
}

.postit_technology_type3, .postit_technology_type4 {
  width: 60%;
  height: 200px;
}

.postit_technology_type_blue {
  width: 65%;
  height: 170px;
}

/************** Color Cards ***************/

.color_cards_technology li { 
  padding: 3% 3% 3% 16%;
  width: 100%;
}

.color_cards_male {
    background: url(../img/kraftwerk/male_participant.svg) no-repeat 3% 10px / 32px auto;
}
.color_cards_female {
    background: url(../img/kraftwerk/female_participant.svg) no-repeat 3% 10px / 32px auto;
}


    /****** Kraftwerk Images *******/

    .image1layout_wide, .image2layout_wide, .image2layout_havy, .image3layout_havy, .image3layout_mobile  {
        width: 100%;
        height: auto;
        float: none !important;
        margin: .8em 0;
        
    }
    .image1layout_mobile, .image2layout_mobile {
        max-width: 73%;
        width: 280px;
        height: auto;
        float: none !important;
        text-align: center;
        margin: .8em auto;
    }

    .image_border {
      border: 3px black solid;
      border-radius: 9px;
    }
    #press_news_list img {
      width: 96%;
      height: auto;
      border: 1px solid #dcdcdc;
    }

    .figurefloat {
      float: none;
      width: 100%;
    }


    /********* Art page **********/

    .art_holder {
      display: block;
      flex-direction: unset;
    }

    .art_holder img {
      width: 100%;
      height: auto;
    }

    .art_spacer {
      margin: 50px 0;
    }

    .artleft, .artright {
      flex: none;
      width: 100%;
    }

    /********** Flexs ***********/

    .dreizigflex, .halbflex, .viertelflex, .vierzigflex, .sechszigflex, .zwanzigflex, .siebzigflex, .sechszigflex_left {
      width: 100%;
    }
 
}

@media (min-width: 480px) and (max-width: 1050px) {

  h1 {
      font-size: 2.3em;
  }

  nav {
      text-align: left;
    }
    
  nav li {
      display: block;
      margin: 3% 4%;
  }

/******  Need to show menu icon here *******/

  #main_nav_icon {
    display: block;
  }

  #main_nav_menu {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 5px 2px 2px rgb(231, 231, 231);
    -webkit-transition: all .35s ease-in-out;
    transition: all 0.3s ease;
    border-bottom: 2px solid #DDDCDC;
    z-index: 100;
  }

  .main_nav_menu_class {
    display: none;
  }

  .main_nav_menu_class.showElement {
    display: block;
  }

  #menu_title_holder {
    width: 40%;
    margin: 10px 0 0 0;
    /* margin: auto; */
  }

  #menu_nav_holder {
    width: 30%;
  }

  #main_section_portfolio_body article, #main_section_portfolio_subnav, .main_section_portfolio_section_text_doubleblock_blocks {
    float: none;
    width: 100%;
    /* font-size: 1.2em; */
  }

  #main_section_holder_header {
      margin: 4%;
      padding: 3% 9%;
  }

  #main_section_holder_body_panels {
    margin: 0;
  }

  #main_section_holder_form {
      margin: auto;
      width: 60%;
  }

  .main_section_divider img {
    width: 50%;
  }

  .main_section_divider li {
    margin: 0;
    float: none;
  }
    

  .main_section_portfolio_section_text {
      width: 100%;
  }

  .main_section_portfolio_section_text_doubleblock_blocks_r {
    float: none;
    width: 100%;
  }

  .port_content_holder {
    position: absolute;
    left: 45%;
    top: 30%;
    width: 40%;
    height: 45%;
  }

  .port_link a:link, .port_link:hover {
    bottom: unset;
  }

  .video_portfolio {
    width: 100%;
    height: auto;
  }

  .awardimg {
      width: 250px;
      height: auto;
  }

  .resume_right {
    margin-left: 0;
  }

  .main_header_holder {
      width: 55%;
      min-height: inherit;
      margin: 0px 0 0 7%;
  }

  .main_header_text {
      position: inherit;
  }

  .main_header_img {
      width: 35%;
      float: left;
  }

  .main_section_portfolio_section {
    padding-bottom: 1.6em;
    margin-bottom: 0;
  }

  #main_section_portfolio_body {
    margin-bottom: 4em;
  }

  .main_section_work_left, .main_section_work_right {
    width: 100%;
  }

  #press_news_list li {
      display: inline-block;
      margin: 0 .5%;
      padding: 0;
      width: 23%;
  }

  #main_section_portfolio_header_left { 
      float: none;
      width: 100%;
      margin: 0;
  }
  #main_section_portfolio_header_right {
    float: none;
    width: 100%;
    margin: 10% 0 0 0;
  }

  .main_section_speaking_buttons {
    margin: 10% 0;
  }

  .main_section_hidden_type2 {
    margin: 10% 5%;
    font-size: 1em;
  }

  #port1, #port2, #port3, #port4, #port5, #port6, #port7, #port8, #portA, #portB, #portC, #portD {
    height: 275px;
    background-size: 275px;
  }

  /********* Index Cards ********/

  .index_card_technology_inner {
    /* nothing yet */
  }

  /********* Post Its ***********/

  .postit_technology li {
    margin-right: 1%;
    padding: 4%;
  }
  .postit_technology_type4 {
    width: 24%;
    height: 210px;
  }

  .postit_technology_type1, .postit_technology_type2, .postit_technology_type5 {
    width: 24%;
    height: 215px;
  }

  /************** Color Cards ***************/

.color_cards_technology li { 
  padding: 3% 3% 3% 10%;
  width: 100%;
}

  /********* Art page **********/

  .art_holder, .main_section_work {
    display: block;
    flex-direction: unset;
  }

  .main_section_work {
    margin: 10% 0;
    /** smiliar to mobile media break */
  }

  .art_holder img {
    width: 100%;
    height: auto;
  }

  .art_spacer:first-of-type {
    margin-top: 50px;
  }

  .artleft, .artright {
    flex: none;
    width: 100%;
  }

  /********** Flexs ***********/

  .dreizigflex, .halbflex, .viertelflex, .sechszigflex, .zwanzigflex, .siebzigflex, .sechszigflex_left {
    width: 100%;
  }

  .flexjustify_right {
    justify-content: center;
    align-content: center;
  }

  /* --------- Kraftwerk Images --------- */

  .image3layout_wide {
    width: 100%;
  }

}

@media (min-width: 480px) and (max-width: 650px) {

  .postit_technology li {
    margin-right: 1%;
    padding: 10%;
  }

  .postit_technology_type1, .postit_technology_type2, .postit_technology_type3, .postit_technology_type4, .postit_technology_type5 {
      width: 50%;
      height: 250px;
    }
}



@media screen and (max-width:400px) {
    @-ms-viewport{
        width:320px;
    }
}
