html {
  background: black;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  cursor: url("./icons/cursor-yellow.png"), auto;
}
::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
a {
  cursor: url("./icons/pointer-yellow.png"), pointer;
}
.webgl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
nav {
  position: fixed;
  width: 100%;
  padding: 30px 15vw 50px 15vw;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  background-image: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 50%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0)
  );
  z-index: 99;
}
.logo {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: beige;
  z-index: 100;
}
.logo:hover {
  font-style: italic;
  color: goldenrod;
}
.logo:active {
  color: gold;
  font-size: 22px;
  text-shadow: 0 0 30px beige;
}
.logo::after {
  content: "";
  position: absolute;
  top: 53px;
  height: 1px;
  width: 0px;
  background: goldenrod;
  transition: width 0.6s ease-out;
}
.logo:hover::after {
  width: 175px;
}
.logoName {
  animation: logoAnim 10s ease-out infinite;
}
.logoName:nth-of-type(1) {
  animation-delay: 0s;
}
.logoName:nth-of-type(2) {
  animation-delay: 0.15s;
}
.logoName:nth-of-type(3) {
  animation-delay: 0.3s;
}
.logoName:nth-of-type(4) {
  animation-delay: 0.45s;
}
.logoName:nth-of-type(5) {
  animation-delay: 0.6s;
}
.logoName:nth-of-type(6) {
  animation-delay: 0.75s;
}
.logoName:nth-of-type(7) {
  animation-delay: 0.9s;
}
.logoName:nth-of-type(8) {
  animation-delay: 1.05s;
}
.logoName:nth-of-type(9) {
  animation-delay: 1.2s;
}
.logoName:nth-of-type(10) {
  animation-delay: 1.35s;
}
.logoName:nth-of-type(11) {
  animation-delay: 1.5s;
}
.logoName:nth-of-type(12) {
  animation-delay: 1.65s;
}
.logoName:nth-of-type(13) {
  animation-delay: 1.8s;
}
.logoName:nth-of-type(14) {
  animation-delay: 1.95s;
}
.logoName:nth-of-type(15) {
  animation-delay: 2.1s;
}
@keyframes logoAnim {
  5% {
    opacity: 0;
    translate: 0 -15px;
  }
  25% {
    opacity: 0;
    translate: 0 15px;
  }
  30% {
    opacity: 1;
    translate: 0 0;
  }
}
.navBig {
  display: flex;
  gap: 30px;
}
.navEach {
  text-decoration: none;
  color: beige;
}
.navEach::before {
  content: ".";
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  line-height: 1px;
  padding-right: 2px;
  opacity: 0;
}
.navEach:hover {
  text-shadow: 0 0 30px white;
  font-weight: bolder;
}
.navEach:hover::before {
  opacity: 1;
}
.navEach:active {
  font-size: 14px;
  text-shadow: 0 0 30px white;
}
#navLink1::after {
  content: "";
  height: 1px;
  width: 0;
  background: goldenrod;
  position: absolute;
  top: 55px;
  translate: -45px 0;
  transition: width 0.5s ease-out;
}
#navLink1.is-on::after {
  width: 48px;
}
#navLink2::after {
  content: "";
  height: 1px;
  width: 0;
  background: goldenrod;
  position: absolute;
  top: 55px;
  translate: -32px 0;
  transition: width 0.5s ease-out;
}
#navLink2.is-on::after {
  width: 34px;
}
#navLink3::after {
  content: "";
  height: 1px;
  width: 0;
  background: goldenrod;
  position: absolute;
  top: 55px;
  translate: -42px 0;
  transition: width 0.5s ease-out;
}
#navLink3.is-on::after {
  width: 44px;
}
#navLink4::after {
  content: "";
  height: 1px;
  width: 0;
  background: goldenrod;
  position: absolute;
  top: 55px;
  translate: -56px 0;
  transition: width 0.5s ease-out;
}
#navLink4.is-on::after {
  width: 57px;
}
#navLink5.is-on::before,
#navLink6.is-on::before,
#navLink7.is-on::before,
#navLink8.is-on::before {
  opacity: 1;
}
.navSmall {
  display: none;
}
.hamburger {
  z-index: 100;
}
.line {
  width: 25px;
  height: 2px;
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover {
  cursor: url("./icons/pointer-yellow.png"), pointer;
}
.hamburger.is-active .line:nth-child(1) {
  width: 20px;
  translate: -7px 12px;
  rotate: 45deg;
}
.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(3) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(4) {
  width: 20px;
  translate: 6px -12px;
  rotate: -45deg;
}
.subMenu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  padding: 75px 15vw 100px 80vw;
  background-image: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 70%,
    rgba(0, 0, 0, 0.5) 90%,
    rgba(0, 0, 0, 0)
  );
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
main {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
section {
  display: flex;
  flex-direction: column;
  height: fit-content;
  min-height: 100vh;
  position: relative;
  font-family: "Roboto Slab", serif;
  color: rgb(255, 249, 239);
  margin: 0 15vw 0 15vw;
  z-index: 90;
  scroll-snap-align: center;
}
#section1 {
  justify-content: flex-end;
}
#section2 {
  justify-content: center;
}
#section3,
#section4 {
  justify-content: flex-start;
}
#section5 {
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
#content1, #content2, #content3, #content4, #content5,#content6 { 
  opacity: 0;
  translate: 0 80px;
}
#content1 {
  transition: opacity 1s 0.1s, translate 1s cubic-bezier(0.13, 0.07, 0.26, 0.99);
}
#content2 {
  transition: opacity 1s 0.3s, translate 1s cubic-bezier(0.13, 0.07, 0.26, 0.99) 0.2s;
}
#content3 {
  transition: opacity 1s 0.5s, translate 1s cubic-bezier(0.13, 0.07, 0.26, 0.99) 0.4s;
}
#content4 {
  transition: opacity 1s 0.7s, translate 1s cubic-bezier(0.13, 0.07, 0.26, 0.99) 0.6s;
}
#content5 {
  transition: opacity 1s 0.9s, translate 1s cubic-bezier(0.13, 0.07, 0.26, 0.99) 0.8s;
}
#content6 {
  transition: opacity 1s 1.1s, translate 1s cubic-bezier(0.13, 0.07, 0.26, 0.99) 1s;
}
.is-visible #content1, .is-visible #content2,
.is-visible #content3, .is-visible #content4,
.is-visible #content5, .is-visible #content6 {
  opacity: 1;
  translate: 0 0;
}
.sec1Tit {
  flex-wrap: wrap;
  font-size: 60px;
  text-shadow: 0 0 30px white;
}
.sec1Name {
  margin-top: -12px;
  flex-wrap: wrap;
  color: beige;
  font-size: 40px;
  line-height: 38px;
  text-shadow: 0 0 20px black, 0 0 40px black;
}
.sec1Des {
  width: fit-content;
  flex-wrap: wrap;
  font-family: "Josefin Sans", sans-serif;
  font-size: 30px;
  margin: 13px 0 13px 0;
  text-shadow: 0 0 20px black, 0 0 40px black;
  background-image: linear-gradient(60deg, #b721ff, #26ff9d, #ffec19, #ff417a);
  background-size: 200%;
  background-position: 0;
  animation: moveGradient 6s alternate infinite;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@keyframes moveGradient {
  50% {
    background-position: 100%;
  }
}
.sec2Part {
  max-width: 50vw;
  min-height: 50px;
  margin: 20px 0 20px 0;
  border-radius: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 19px;
  line-height: 23px;
  color: beige;
  text-shadow: 0 0 20px black, 0 0 40px black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.lineSec2 {
  width: 15vw;
  height: 1px;
  margin: 20px 0 20px 0;
}
#content2.lineSec2 {
  background: linear-gradient(60deg, #b721ff, #26ff9d, #ffec19, #ff417a);
  background-size: 200%;
  background-position: 0;
  animation: moveGradient 6s alternate infinite;
}
#content4.lineSec2 {
  background: linear-gradient(-60deg, #b721ff, #26ff9d, #ffec19, #ff417a);
  background-size: 200%;
  background-position: 0;
  animation: moveGradient 6s alternate infinite;
}




    /* SKILLS START */

.skill {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


/* PROGRAMING LANGUAGES START */

.softwarePro {
  width: 3vh;
  height: 3vh;
}
.softwarePro:nth-of-type(1) {
  background: url("./icons/HTML.png") no-repeat;
  background-size: cover;
}
.softwarePro:nth-of-type(2) {
  background: url("./icons/CSS.png") no-repeat;
  background-size: cover;
}
.softwarePro:nth-of-type(3) {
  background: url("./icons/JavaScript.png") no-repeat;
  background-size: cover;
}
.softwarePro:nth-of-type(4) {
  background: url("./icons/C++_LOGO.png") no-repeat;
  background-size: cover;
}
.softwarePro:nth-of-type(5) {
  background: url("./icons/Python.png") no-repeat;
  background-size: cover;
}
.softwarePro:nth-of-type(6) {
  background: url("./icons/Visual-Studio-Code.png") no-repeat;
  background-size: cover;
}
.softwarePro:nth-of-type(7) {
  background: url("./icons/MATLAB_LOGO.png") no-repeat;
  background-size: cover;
}

/* PROGRAMING LANGUAGES END */



/* DESIGNING & SIMULATION TOOLS START */

.softwareDes {
  width: 3vh;
  height: 3vh;
}
.softwareDes:nth-of-type(1) {
  background: url("./icons/CANVA\ LOGO.png") no-repeat;
  background-size: cover;
}
.softwareDes:nth-of-type(2) {
  background: url("./icons/FIGMA_LOGO.png") no-repeat;
  background-size: cover;
}
.softwareDes:nth-of-type(3) {
  background: url("./icons/SPLINE_LOGO.png") no-repeat;
  background-size: cover;
}
.softwareDes:nth-of-type(4) {
  background: url("./icons/PROTIOUS_LOGO.png") no-repeat;
  background-size: cover;
}

/* DESIGNING & SIMULATION TOOLS END */



/* WORKSPACE TOOLS START */

.softwareDes2 {
  width: 3vh;
  height: 3vh;
}
.softwareDes2:nth-of-type(1) {
  background: url("./icons/MS\ EXCEL_LOGO.png") no-repeat;
  background-size: cover;
}
.softwareDes2:nth-of-type(2) {
  background: url("./icons/NOTION\ LOGO.png") no-repeat;
  background-size: cover;
}
/* WORKSPACE TOOLS END */



/* CLOUD TECHNOLOGY START */

.softwareDes3 {
  width: 3vh;
  height: 3vh;
}
.softwareDes3:nth-of-type(1) {
  background: url("./icons/git.svg") no-repeat;
  background-size: cover;
}
.softwareDes3:nth-of-type(2) {
  background: url("./icons/github.svg") no-repeat;
  background-size: cover;
}

/* CLOUD TECHNOLOGY END */

   /* SKILLS END */




.projectSecret {
  position: absolute;
  height: 10px;
  visibility: hidden;
}
#secret1 {
  width: 1px;
}
#secret2 {
  width: 1px;
}
#secret3 {
  width: 1px;
}
#secret4 {
  width: 1px;
}
#secret5 {
  width: 1px;
}
.sec5Tit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 40px;
  line-height: 32px;
  text-shadow: 0 0 30px white;
  margin-top: 18vh;
} 
.hand {
  width: 40px;
  height: 40px;
  background: url("./icons/icon-so-so-96.png") no-repeat;
  background-size: cover;
  animation: handWave 2.5s ease-in-out infinite;
}
@keyframes handWave {
  4% {
    transform: rotate(-25deg);
  }
  8% {
    transform: rotate(0deg);
  }
  12% {
    transform: rotate(-25deg);
  }
  16% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-25deg);
  }
  24% {
    transform: rotate(0deg);
  }
  28% {
    transform: rotate(-25deg);
  }
  30% {
    transform: rotate(0deg);
  }
}
.secContact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px;
  gap: 20px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
}
.secPhone {
  width: 200px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 1px 0 10px 0 rgb(216, 0, 220);
  background: linear-gradient(
    132deg,
    #6424dc,
    #f80759,
    #ff9318
  );
  background-size: 300%;
  background-position: 0;
  animation: moveGradient 8s alternate infinite;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}
.secPhone::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 34px;
  margin: 0 3px 0 42px;
  border-radius: 8px;
  background-color: black;
}
.phone {
  width: 25px;
  height: 25px;
  margin-left: 11px;
  margin-right: 18px;
  background: url("./icons/icon-whatsapp-50.png") no-repeat;
  background-size: cover;
  z-index: 10;
}
.secPhone:hover {
  box-shadow: 0px 0 15px 0 rgb(255, 145, 0);
}
.secPhone:hover .phone {
  filter: invert(100%);
}
.secPhone:active {
  scale: 0.9;
}
.phoneNumber {
  z-index: 10;
}
.secMail {
  width: 200px;
  height: 40px;
  border: none;
  text-decoration: none;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 1px 0 10px 0 rgb(216, 0, 220);
  background: linear-gradient(
    132deg,
    #ff9318,
    #f80759,
    #6424dc
  );
  background-size: 300%;
  background-position: 0;
  animation: moveGradient 8s alternate infinite;
}
.secMail:hover {
  font-weight: bolder;
  box-shadow: 0px 0 15px 0 rgb(255, 145, 0);
}
.secMail:active {
  scale: 0.9;
}
.mail {
  width: 30px;
  height: 30px;
  background: url("./icons/icon-envelope-64.png") no-repeat;
  background-size: cover;
}
.secSocial {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.social {
  width: 25px;
  height: 25px;
  border-radius: 5px;
}
.social:nth-of-type(1) {
  background: url("./icons/icon-github-64.png") no-repeat;
  background-size: cover;
}
.social:nth-of-type(2) {
  background: url("./icons/INSTA_LOGO.png") no-repeat;
  background-size: cover;
}
.social:nth-of-type(3) {
  background: url("./icons/LINKEDIN_LOGO.png") no-repeat;
  background-size: cover;
}
.social:nth-of-type(4) {
  background: url("./icons/X_LOGO.png") no-repeat;
  background-size: cover;
}
.social:hover {
  filter: invert(48%) sepia(64%) saturate(995%) hue-rotate(17deg)
    brightness(102%) contrast(101%);
  scale: 1.1;
  box-shadow: 0px 0 15px 0 black;
}
.social:active {
  filter: invert(100%);
  scale: 0.9;
}
.nextButton1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 24px;
  margin-bottom: 20vh;
}

@keyframes next {
  50% {
    opacity: 1;
  }
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 10vh;
  padding: 3vh 15vw 0 15vw;
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  background-image: linear-gradient(
    to top,
    rgb(0, 0, 0) 20%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0)
  );
  box-sizing: border-box;
  z-index: 99;
}
.backToTop {
  display: none;
  width: 34px;
  height: 34px;
  margin-top: 3px;
  background: url("./icons/icon-top-arrow-64.png") no-repeat;
  background-size: cover;
  animation: sound 5s infinite;
  opacity: 0.3;
}
.backToTop:hover {
  opacity: 1;
}
.backToTop:active {
  transform: scale(0.9);
}
.moveUp {
  display: none;
  width: 34px;
  height: 34px;
  margin-top: 3px;
  border: none;
  background: url("./icons/icon-up-arrow-64.png") no-repeat;
  background-size: cover;
  animation: sound 5s ease-in-out infinite;
  opacity: 0.4;
}
.moveUp:hover {
  opacity: 1;
}
.moveUp:active {
  scale: 0.9;
}
.endPage {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}
.sound {
  width: 40px;
  height: 40px;
  border: none;
  background: url("./icons/icon-mute-96.png") no-repeat;
  background-size: cover;
  animation: sound 6s infinite;
}
.sound:hover {
  cursor: url("./icons/pointer-yellow.png"), pointer;
}
.sound:active {
  transform: scale(0.9);
}
@keyframes sound {
  50% {
    opacity: 1;
  }
}
.copyright {
  display: none;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  color: beige;
  align-items: center;
  translate: 0 -10px;
}

@media only screen and (max-width: 820px) {
  .sec2Part {
    max-width: 70vw;
  }
  .lineSec2 {
    width: 30vw;
  }

}
@media only screen and (max-width: 480px) {
  nav {
    padding: 30px 10vw 50px 10vw;
  }
  .logo::after {
    top: 60px;
  }
  .navBig {
    display: none;
  }
  .navSmall {
    display: flex;
  }
  .subMenu {
    padding: 75px 10vw 120px 80vw;
  }
  section {
    margin: 0 10vw 0 10vw;
  }
  #section2 {
    justify-content: flex-start;
  }
  .sec2Part {
    max-width: 75vw;
    margin: 10px 0 10px 0;
    font-size: 16px;
    line-height: 20px;
  }
  .sec2Part:nth-of-type(1) {
    margin-top: 18vh;
  }
  .lineSec2 {
    width: 30vw;
    margin: 15px 0 15px 0;
  }
  .softwareDes {
    width: 30px;
    height: 30px;
  }
  .softwarePro {
    width: 30px;
    height: 30px;
  }
  .secPortFrame {
    margin: 1vh 0 2vh 0;
  }
  .project {
    width: 80vw;
    margin: 0 8px 0 8px;
  }
  .picture {
    width: 80vw;
  }
  .projectSoftware {
    padding: 18px 20px 70px 20px;
  }
  .projectIcon {
    width: auto;
    height: 30px;
  }
  .imgButton {
    width: 26px;
    height: 26px;
  }
  

    
    /* EXPERIENCE START */

}
.exp-area {
  padding: 5rem 0;
  margin-bottom: 2rem;
}
.timeline {
  position: relative;
  width: 660px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 1em 0;
  list-style-type: none;
}
.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: ' ';
  display: block;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background: rgb(80, 80, 80);
  background: -moz-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(30, 87, 153, 1)), color-stop(100%, rgba(125, 185, 232, 1)));
  background: -webkit-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
  background: -o-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
  background: -ms-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
  background: linear-gradient(to bottom, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
  z-index: 5;
}
.timeline li {
  padding: 1em 0;
}
.timeline li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.direction-l {
  position: relative;
  width: 300px;
  float: left;
  text-align: right;
}
.direction-r {
  position: relative;
  width: 300px;
  float: right;
}
.flag-wrapper {
  position: relative;
  display: inline-block;

  text-align: center;
}
.flag {
  position: relative;
  display: inline;
  background: rgb(248, 248, 248);
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: 600;
  text-align: left;
}
.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}
.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}
.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: 50%;
  right: -35px;
  content: ' ';
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -10px;
  background: #fff;
  border-radius: 10px;
  border: 4px solid rgb(255, 80, 80);
  z-index: 10;
}
.direction-r .flag:before {
  left: -35px;
}
.direction-l .flag:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-left-color: rgb(248, 248, 248);
  border-width: 8px;
  pointer-events: none;
}
.direction-r .flag:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-right-color: rgb(248, 248, 248);
  border-width: 8px;
  pointer-events: none;
}
.time-wrapper-bl {
  display: inline;

  line-height: 1em;
  font-size: 1em;
  color: rgb(6, 6, 6);
  vertical-align: middle;
}
.time-wrapper {
  display: inline;

  line-height: 1em;
  font-size: 0.66666em;
  color: rgb(250, 80, 80);
  vertical-align: middle;
}
.direction-l .time-wrapper {
  float: left;
}
.direction-r .time-wrapper {
  float: right;
}
.time {
  display: inline-block;
  padding: 4px 6px;
  background: rgb(248, 248, 248);
}
.desc {
  margin: 1em 0.75em 0 0;

  font-size: 0.77777em;
  font-style: italic;
  line-height: 1.5em;
}
.direction-r .desc {
  margin: 1em 0 0 0.75em;
}
.timeline a {
  text-decoration: none;
  color: rgb(31, 32, 32);
}
.exp-title {
  font-size: 1.2em;
  font-weight: 600;
  color: rgb(250, 80, 80);
}

  /* EXPERIENCE END */