/* Fonts */

@font-face {
  font-family: "ArialBlack";
  src: url("../fonts/Arial-Black.ttf");
}

@font-face {
  font-family: "FuturaPTBook";
  src: url("../fonts/FuturaPTBook.otf");
}

@font-face {
  font-family: "FuturaPTMediumItalic";
  src: url("../fonts/FuturaMdBTMediumItalic.ttf");
}

@font-face {
  font-family: "FuturaPTBookItalic";
  src: url("../Fonts/FuturaBkBTBookItalic.ttf");
}

@font-face {
  font-family: "FuturaPTBold";
  src: url("../fonts/FuturaPTBold.otf");
}

/* Global */

html {
  font-size: 18px;
  line-height: 1.4;
  color: black;
  box-sizing: border-box;
}

p {
  font-family: FuturaPTBook;
  font-size: 1.2rem;
  line-height: 1.5;
}

h1 {
  font-family: FuturaPTBookItalic;
  font-size: 3rem;
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-family: FuturaPTMediumItalic;
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
  font-family: FuturaPTMediumItalic;
  margin-bottom: 1.5rem;
}


/* Lines */

.line1 {
  width: 3px;
  background-color: black;
  height: 50rem;
}

.line2 {
  width: 3px;
  background-color: black;
  height: 8rem;
}

.line3 {
  width: 3px;
  background-color: black;
  height: 12rem;
}

.line4 {
  width: 3px;
  background-color: black;
  height: 5rem;
}

.line5 {
  width: 3px;
  background-color: black;
  height: 25rem;
}


/* Local Wrappers */

.main-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 13rem;
}

.paragraph-container {
  margin: 3rem auto;
  width: 20rem;
}

.heading-container {
  margin: 3rem auto;
}

.post-logic-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-container {
  width: 90%;
}


/* Header */

/* Desktop off switch */

#nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

/* Header */

header {
  width: 100%;
  display: grid;
  grid: auto / 1.25fr auto minmax(600px, 900px) 1.25fr;
  align-items: center;
  position: fixed;
  z-index: 50;
  background: white;
}

/* Grid item 1 -- Box 2 */ /* Logo */

.logo-link {
  grid-column: 2 / span 1;
  width: 111px;
  height: 1.5rem;
  margin: 2rem;
}

.logo {
  background: url("../images/logo/Logo-Black.png") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 111px;
  height: 1.5rem;
  transition: background 250ms ease-in;
}

.logo:hover {
  background: url("../images/logo/Logo-Gold.png") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 111px;
  height: 1.5rem;
}

/* Grid item 2 -- Box 3 */ /* Nav */

nav {
  grid-column: 3 / span 1;
  justify-self: flex-end;
}

nav ul {
  list-style: none;
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: ArialBlack;
}

nav li {
  margin-left: 2rem;
}

.link-animation {
  text-decoration: none;
  color: black;
  position: relative;
}

.link-animation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #BDB080;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease-in;
}

.link-animation:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.selected {
  border: 3px solid #BDB080;
  text-decoration: none;
  color: black;
  padding: 4px;
  margin: -7px;
}

.home {
  display: none;
}

/* Tablet & Mobile Nav */


@media only screen and (max-width: 1024px) {

  /* Mobile 'On-Off' Switch */


  .nav-toggle-label {
    display: flex;
  }


  .link-animation::after {
    display: none;
  }

  .link-animation:hover::after {
    display: none;
  }

  /* Header position */

  header {
    display: flex;
    z-index: 999;
  }

  nav {
    position: absolute;
    text-align: left;
    top: 6rem;
    left: 0;
    background: black;
    width: 100%;
    height: 812px;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 750ms ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 400;
  }

  nav ul {
    margin-top: 5.5rem;
    padding: 0;
    list-style: none;
    display: block;
  }

  nav li {
    margin-bottom: 1.5rem;
    margin-left: 3rem;
  }

  nav a {
    color: white;
    font-family: FuturaPTBold;
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
  }

  .link-animation {
    color: white;
  }

  .home {
    color: white;
  }
  nav a:hover {
    color: #BDB080;
  }

  nav .selected {
    color: white;
    font-family: FuturaPTBold;
    text-decoration: none;
    font-size: 2.2rem;
    text-transform: uppercase;
    opacity: 0;
    border: 0;
    transition: opacity 150ms ease-in-out;
    position: relative;
  }

  nav .selected::before {
    content: "";
    position: absolute;
    left: -5px;
    bottom: 26px;
    width: 14.5rem;
    height: 7px;
    background: #BDB080;
  }

  nav .home::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 12rem;
    height: 2px;
    background: white;
  }

  li .white-spacer {
    width: 12rem;
    height: 2px;
    background: white;
    position: absolute;
    top: 5rem;
  }

  .nav-toggle:checked ~ nav {
    transform: scale(1);
    transform-origin: left;
  }

  .nav-toggle:checked ~ nav a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
    display: flex;
  }

  .nav-toggle:checked ~ nav span {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
  }

  /* Hamburger */

  .nav-toggle {
    display: none;
  }

  .nav-toggle-label {
    position: absolute;
    right: 0;
    margin-right: 3.5em;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: black;
    height: 4px;
    width: 2em;
    position: relative;
    transition: background-color 250ms ease-out;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: '';
    position: absolute;
  }

  .nav-toggle-label span::before {
    bottom: 9px;
    left: 9px;
  }

  .nav-toggle-label span::after {
    top: 9px;
    right: 9px;
  }

  .nav-toggle-label span:hover,
  .nav-toggle-label span:hover::before,
  .nav-toggle-label span:hover::after {
    display: block;
    background: #BDB080;
    height: 4px;
    width: 2em;
    position: relative;
  }

  .nav-toggle-label span:hover::before,
  .nav-toggle-label span:hover::after {
    content: '';
    position: absolute;
  }

  .nav-toggle-label span:hover::before {
    bottom: 9px;
    left: 0;
  }

  .nav-toggle-label span:hover::after {
    top: 9px;
    right: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    display: block;
    background: #BDB080;
    height: 4px;
    width: 2em;
    position: relative;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before {
    display: block;
    background: #BDB080;
    height: 4px;
    width: 2em;
    position: relative;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::after {
    display: block;
    background: #BDB080;
    height: 4px;
    width: 2em;
    position: relative;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: '';
    position: absolute;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before {
    bottom: 9px;
    left: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::after {
    top: 9px;
    right: 0;
  }
}


/* Start */

span.start, span.end  {
  border: 6px solid black;
  padding: 0.1rem 0.2rem;
  font-size: 1.5rem;
  font-family: ArialBlack, Arial;
  text-transform: uppercase;
}

.parallelogram {
  width: 27.78rem;
  height: 6rem;
  transform: skew(-40deg);
  border: 3px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome {
  transform: skew(40deg);
}

@media only screen and (max-width: 1024px) {
  .parallelogram {
     width: 18.52rem;
     height: 4rem;
  }
}

.main-image {
  margin: 3rem 1rem 3rem 0;
}

.main-image img {
  height: 15rem;
}


/* Logic [About / Work] */

/* Top Fork */

.top-fork-container {
  display: flex;
  justify-content: center;
}

.decision-diamond {
  width: .75rem;
  height: .75rem;
  background-color: white;
  border: 3px solid black;
  transform: rotate(45deg);
}

.decision-diamond1 {
  width: .75rem;
  height: .75rem;
  background-color: white;
  border: 3px solid black;
  transform: rotate(45deg);
  position: relative;
}

.decision-diamond1::before {
  content: "";
  width: .75rem;
  height: .75rem;
  background-color: white;
  transform: rotate(90deg);
  bottom: .2px;
  right: .2px;
  position: absolute;
  border: 3px solid white;
}

.top-fork-right {
  width: 8rem;
  height: 1rem;
  border-top: 3px solid black;
  margin-top: 0.45rem;
  border-right: 3px solid black;
}


.top-fork-left {
  width: 8rem;
  height: 1rem;
  border-top: 3px solid black;
  margin-top: 0.45rem;
  border-left: 3px solid black;
}

/* Bottom Logic */

.bottom-fork-container-left {
  display: flex;
  justify-content: flex-start;
  width: 18rem;
}

.bottom-fork-left {
  width: 160.5px;
  height: 1rem;
  border-bottom: 3px solid black;
  border-left: 3px solid black;
}

.bottom-fork-container-right {
  display: flex;
  justify-content: flex-end;
  width: 18rem;
}

.bottom-fork-right {
  width: 160.5px;
  height: 1rem;
  border-bottom: 3px solid black;
  border-right: 3px solid black;
}

@media only screen and (max-width: 525px) {
  .top-fork-right {
    width: 5rem;
  }

  .top-fork-left {
    width: 5rem;
  }

  .bottom-fork-left {
    width: 91.5px;
  }

  .bottom-fork-right {
    width: 91.5px;
  }

  .bottom-fork-container-left {
    width: 186px;
  }

  .bottom-fork-container-right {
    width: 186px;
  }
}

/* Toggle */

#expand-toggle-about, #expand-toggle-work {
  display: none;
}

/* Buttons */

/* about-button states */

.about-button {
  background-color: white;
  border: 3px solid black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}

.about-button:hover {
  background-color: black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}

#expand-toggle-about:checked ~ .about-button {
  background-color: #BDB080;
  font-family: FuturaPTMediumItalic;
  border: 3px solid #BDB080;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 525px) {
  .about-button {
    background-color: white;
    border: 3px solid black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-right: 12rem;
    margin-top: 1rem;
  }

  .about-button:hover {
    background-color: black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: white;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-right: 12rem;
    margin-top: 1rem;
  }

  #expand-toggle-about:checked ~ .about-button {
    background-color: #BDB080;
    font-family: FuturaPTMediumItalic;
    border: 3px solid #BDB080;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-right: 12rem;
    margin-top: 1rem;
  }
}


/* work-button states */

.work-button {
  background-color: white;
  border: 3px solid black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

.work-button:hover {
  background-color: black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

#expand-toggle-work:checked ~ .work-button {
  background-color: #BDB080;
  font-family: FuturaPTMediumItalic;
  border: 3px solid #BDB080;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

@media only screen and (max-width: 525px) {
  .work-button {
    background-color: white;
    border: 3px solid black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }

  .work-button:hover {
    background-color: black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: white;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }

  #expand-toggle-work:checked ~ .work-button {
    background-color: #BDB080;
    font-family: FuturaPTMediumItalic;
    border: 3px solid #BDB080;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }
}

/* Load More Button */
.link-none {
  text-decoration: none;
}

.load-more {
  background-color: white;
  border: 3px solid black;
  font-family: FuturaPTBook;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 3rem auto;
}

.load-more h3 {
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  text-decoration: none;
}

.load-more:hover {
  background-color: black;
  font-family: FuturaPTBook;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 3rem auto;
}


.contact-button {
  background-color: black;
  border: 3px solid black;
  font-family: FuturaPTBook;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 2rem;
}


.contact-button h3 {
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-button:hover {
  background-color: white;
  font-family: FuturaPTBook;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/*  About Section */

/* Toggle */

.about-section {
  display: flex;
  width: 100%;
  justify-content: center;
}


/* Images */

/* Used for My Story */
.portrait1 img {
  width: 4.5rem;
  margin: 2rem;
}

/* Used for My Experience & My Publications & My Education */
.portrait2 img {
  width: 5.5rem;
  margin: 2rem;
}


/* Headings */

/* formerly heading3 */ /* Used for My Story */
.global-heading1 {
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  position: relative;
}

.global-heading1::after {
  content: "";
  position: absolute;
  left: 35%;
  bottom: -12px;
  width: 1.5rem;
  height: 2px;
  background: black;
  display: flex;
  justify-content: center;
}

/* Formaly heading3-exp */ /* Used for My Publication & My Experience & My Education */
.global-heading2 {
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  position: relative;
}

.global-heading2::after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -12px;
  width: 1.5rem;
  height: 2px;
  background: black;
  display: flex;
  justify-content: center;
}

/* Used for My Skills */
.global-heading3 {
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  position: relative;
}

.global-heading3::after {
  content: "";
  position: absolute;
  left:25%;
  bottom: -12px;
  width: 1.5rem;
  height: 2px;
  background: black;
  display: flex;
  justify-content: center;
}

/* Used for My Portfolio */
.global-header4 {
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  position: relative;
}

.global-header4::after {
  content: "";
  position: absolute;
  left:30%;
  bottom: -12px;
  width: 1.5rem;
  height: 2px;
  background: black;
  display: flex;
  justify-content: center;
}


/* Grids */

/* Used for My Experience */
.grid1 {
  display: grid;
  grid-template: repeat(4, 9.5rem) / 8rem 8rem;
  gap: 1rem 1.5rem;
  margin: 3rem auto;
}

.grid2 {
  display: grid;
  grid-template: repeat(2, 9.5rem) / 8rem 8rem;
  gap: 1rem 1.5rem;
  margin: 3rem auto;
}

.grid-item {
  width: 100%;
  height: 100%;
  border: 3px solid black;
  display: grid;
  align-items: center;
  justify-items: center;
}

.grid-item:hover {
  border: 3px solid #BDB080;
  cursor: pointer;
}


/* My Experience Tags */

#super-global {
  width: 4.5rem;
}

#peace-accelerators {
  width: 4.6rem;
}

#cloudberry {
  width: 5.7rem;
}

#joller {
  width: 5rem;
}

#ideate {
  width: 6rem;
}

#alight {
  width: 7rem;
}

#gates {
  width: 5rem;
}

#mac {
  width: 3.7rem;
}


/* My Publication */

.jid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 4rem;
  width: 20rem;
}

.medium {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
  margin-bottom: 3rem;
  width: 20rem;
}

.jid a, .medium a {
  font-size: 1.2rem;
  font-family: FuturaPTBook;
  margin-bottom: 1.5rem;
  color: black;
  text-decoration: underline;
  text-decoration-color: #BDB080;
  line-height: 1.5;
}

.jid a::after, .medium a::after {
  content: "";
  background-image:url("../images/external-link.png");
  background-size: 1rem 1rem;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 0.2rem;
}

/* My Education */

#ntu, #knitu {
  width: 5rem;
}

/* Stop */

.stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.oct-container {
  width: 100px;
}

#octagon {
  width: 100px;
  height: 100px;
  background: red;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#octagon:before {
  content: "";
  width: 42px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 29px solid red;
  border-left: 29px solid white;
  border-right: 29px solid white;
}
  #octagon:after {
  content: "";
  width: 42px;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 29px solid red;
  border-left: 29px solid white;
  border-right: 29px solid white;
}

#octagon h5 {
  font-family: ArialBlack;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: black;
}

.stop p {
  font-size: 1.2rem;
  font-family: FuturaPTMediumItalic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

/* Yes (Work) / No (End) Logic */

/* Yes / No Toggle */

#expand-toggle-yes, #expand-toggle-no {
  display: none;
}

.yes-section-about {
  display: none;
}

#expand-toggle-yes:checked ~ .yes-section-about {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* No Section */

.no-section-about {
  display: none;
}

#expand-toggle-no:checked ~ .no-section-about {
  display: flex;
  width: 100%;
  justify-content: center;
}

.no-section-about p {
  font-size: 1.2rem;
  font-family: FuturaPTMediumItalic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

/* Yes Button 1 */

.yes-button {
  background-color: white;
  border: 3px solid black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}


.yes-button:hover {
  background-color: black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}


#expand-toggle-yes:checked ~ .yes-button {
  background-color: #BDB080;
  font-family: FuturaPTMediumItalic;
  border: 3px solid #BDB080;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 525px) {
  .yes-button {
    background-color: white;
    border: 3px solid black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
      margin-right: 12rem;
    margin-top: 1rem;
  }


  .yes-button:hover {
    background-color: black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: white;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
      margin-right: 12rem;
    margin-top: 1rem;
  }


  #expand-toggle-yes:checked ~ .yes-button {
    background-color: #BDB080;
    font-family: FuturaPTMediumItalic;
    border: 3px solid #BDB080;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-right: 12rem;
    margin-top: 1rem;
  }
}

/* No Button 1 */

.no-button {
  background-color: white;
  border: 3px solid black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

.no-button:hover {
  background-color: black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

#expand-toggle-no:checked ~ .no-button {
  background-color: #BDB080;
  font-family: FuturaPTMediumItalic;
  border: 3px solid #BDB080;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

@media only screen and (max-width: 525px) {
  .no-button {
    background-color: white;
    border: 3px solid black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }

  .no-button:hover {
    background-color: black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: white;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }

  #expand-toggle-no:checked ~ .no-button {
    background-color: #BDB080;
    font-family: FuturaPTMediumItalic;
    border: 3px solid #BDB080;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }
}


/* Work Section */

/* Toggle */

.work-section {
  display: flex;
  width: 100%;
  justify-content: center;
}

.work-ethos {
  width: 20rem;
}

.margin-top {
  margin-top: 2rem;
}

.margin-bottom {
  margin-bottom: 2rem;
}

.work-ethos p {
  position: relative;
  margin-left: 1rem;
}

.work-ethos p::before {
  content: "";
  background-image:url("../images/checkmark.png");
  background-size: 1.6rem 1.5rem;
  position: absolute;
  left: -2.5rem;
  width: 1.6rem;
  height: 1.5rem;
  margin-left: 0.2rem;
}

/* Porfolio */

.portfolio {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 3rem 0;
}

.portfolio-container {
  height: 20rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gray {
  background-color: #F8F8F8;
}

.porfolio-content-container {
  display: flex;
  flex-direction: column;
  width: 30rem;
  margin: 2rem;
  align-items: flex-start;
}

@media only screen and (max-width: 525px) {
  .porfolio-content-container {
    display: flex;
    flex-direction: column;
    width: 30rem;
    margin: 0;
    align-items: flex-start;
    padding-left: 3rem;
  }
}

.spacer {
  width: 13rem;
  height: .8rem;
  margin-bottom: 1rem;
}

.joller-green {
  background-color: #4DC6AD;
}

.fna-green {
  background-color: #27C427;
}

.citadel-blue {
  background-color: #193667;
}

.jnj-red {
  background-color: #D51900;
}

.gold {
  background-color: #BDB080;
}

.nfl-blue {
  background-color: #14B8EE;
}

.black {
  background-color: black;
}


.role {
  width: 25rem;
}

.role h6 {
  font-family: FuturaPTBook;
  font-size: .9rem;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.role h2 {
  font-family: FuturaPTBold;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  width: 20rem;
}

@media only screen and (max-width: 525px) {
  .role h2 {
    width: 18rem;
  }
}

.role p {
  font-family: FuturaPTBook;
  font-size: 1rem;
  margin-bottom: 2rem;
  width: 17rem;
}

.case-study {
  background-color: white;
  border: 3px solid black;
  font-family: FuturaPTBook;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.case-study h3 {
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  text-decoration: none;
}

.case-study:hover {
  background-color: black;
  font-family: FuturaPTBook;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.skills {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.skills-container {
  width: 30rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 3rem;
  margin-top: 2rem;
}

@media only screen and (max-width: 525px) {
  .skills-container {
    align-items: center;
  }
}

.skills-container p {
  font-size: 0.75rem;
  font-family: FuturaPTBook;
  text-align: left;
  margin-bottom: 0.1rem;
}

#languages {
  width: 14rem;
  margin-bottom: 1rem;
}

#knowledge {
  width: 27rem;
  margin-bottom: 1rem;
}

#tools {
  width: 14rem;
}


/* Yes - No logic 2 */

#expand-toggle-yes2, #expand-toggle-no2 {
  display: none;
}

/* Yes Button 2 */

.yes-button2 {
  background-color: white;
  border: 3px solid black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}

.yes-button2:hover {
  background-color: black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}

#expand-toggle-yes2:checked ~ .yes-button2 {
  background-color: #BDB080;
  font-family: FuturaPTMediumItalic;
  border: 3px solid #BDB080;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 17rem;
  margin-top: 1rem;
}


@media only screen and (max-width: 525px) {
  .yes-button2 {
    background-color: white;
    border: 3px solid black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
      margin-right: 12rem;
    margin-top: 1rem;
  }


  .yes-button2:hover {
    background-color: black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: white;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
      margin-right: 12rem;
    margin-top: 1rem;
  }


  #expand-toggle-yes2:checked ~ .yes-button2 {
    background-color: #BDB080;
    font-family: FuturaPTMediumItalic;
    border: 3px solid #BDB080;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-right: 12rem;
    margin-top: 1rem;
  }
}

/* No Button 2 */

.no-button2 {
  background-color: white;
  border: 3px solid black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

.no-button2:hover {
  background-color: black;
  font-family: FuturaPTMediumItalic;
  font-size: 1.2rem;
  color: white;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

#expand-toggle-no2:checked ~ .no-button2 {
  background-color: #BDB080;
  font-family: FuturaPTMediumItalic;
  border: 3px solid #BDB080;
  font-size: 1.2rem;
  color: black;
  padding: 0.833rem 4rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 17rem;
  top: -3.2rem;
}

@media only screen and (max-width: 525px) {
  .no-button2 {
    background-color: white;
    border: 3px solid black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }

  .no-button2:hover {
    background-color: black;
    font-family: FuturaPTMediumItalic;
    font-size: 1.2rem;
    color: white;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }

  #expand-toggle-no2:checked ~ .no-button2 {
    background-color: #BDB080;
    font-family: FuturaPTMediumItalic;
    border: 3px solid #BDB080;
    font-size: 1.2rem;
    color: black;
    padding: 0.833rem 2.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-left: 12rem;
    top: -3.2rem;
  }
}

/* Yes Section - Work */

.yes-section-work {
  display: none;
}

#expand-toggle-yes2:checked ~ .yes-section-work {
  display: flex;
}


/* No Section - Work */

.no-section-work {
  display: none;
}

#expand-toggle-no2:checked ~ .no-section-work {
  display: flex;

}


/* Footer */

footer {
  display: flex;
  flex-direction: column;
  background-color: black;
  width: 100%;
  height: 28rem;
  position: relative;
  top: 18rem;
  margin-top: 10rem;
  color: white;
  font-family: FuturaPTMediumItalic;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.chat {
  display: block;
  width: 80%;
}

@media only screen and (max-width: 1024px) {
  .chat {
    padding: 9.5rem 1rem;
    width: 70%;
  }
}

footer p {
  font-size: 2.5rem;
  width: 65%;
  line-height: 1;
  font-family: FuturaPTBold;
}

#gold {
 color: #BDB080;
 font-size: 2.5rem;
 width: 65%;
 line-height: 1;
 font-family: FuturaPTBold;
}



.sub-footer {
  background-color: white;
  display: flex;
  justify-content: center;
  position: relative;
  top: 18rem;
}

.copy {
  font-family: FuturaPTMediumItalic;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 1rem;
  width: 90%;
}
