@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:200,400,500);
body {
  margin: 0 auto;
  width: 100%;
  background-color: #be9874;
  color: #369289;
  font-family: "calling-code", sans-serif;
  max-height: 100vh;
}

h1 {
  font-family: "bahnschrift", sans-serif;
  font-size: 50px;
  margin: 0;
}

h2 {
  font-size: 40px;
  color: #e4cdb0;
  margin-top: 20px;
}

p {
  color: #be9874;
}

#logo {
  width: 70%;
}

#container {
  display: flex;
  height: 100vh;
}
#container #header {
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
}
#container #content-container {
  width: 50vw;
  display: flex;
  align-items: center;
}

@media (max-width: 1919px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 26px;
    margin-top: 18px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 23px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  #logo {
    margin-top: 8%;
  }
  h1 {
    font-size: 25px;
    margin-left: 10vw;
    margin-top: 5vh;
  }
  h2 {
    font-size: 15px;
    margin-top: 10px;
  }
  #container {
    display: block;
    height: 100vh;
    flex-direction: row;
  }
  #container #header {
    width: 100vw;
    align-self: left;
    margin-left: 0;
  }
  #container #content-container {
    width: 100vw;
    display: block;
    align-items: left;
  }
}
.btn {
  margin-top: 35px;
  width: 200px;
  border-radius: 36px;
  display: block;
  font-size: 25px;
  transition: all 0.4s ease;
  height: 35px;
  text-align: center;
  text-decoration: none;
}

#skills-btn {
  border: 2px solid #BF4539;
  color: #BF4539;
  background-color: transparent;
}
#skills-btn:hover {
  background-color: #BF4539;
  color: #e4cdb0;
}

#contact-btn {
  border: 2px solid #369289;
  color: #e4cdb0;
  background-color: #369289;
}
#contact-btn:hover {
  border: 2px solid #e4cdb0;
  color: #eee0d0;
}

#projects-btn {
  display: none;
}

.btn-img {
  position: absolute;
  display: inline-block;
  width: 160px;
  border-radius: 36px;
  font-family: "calling-code", sans-serif;
  font-size: 18px;
  transition: all 0.4s ease;
  height: 25px;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  top: 75%;
}

#btn-case-study {
  color: #e4cdb0;
  background-color: #BF4539;
  border: 1px solid #BF4539;
  margin-right: 36px;
  left: 20%;
}
#btn-case-study:hover {
  background-color: #BF4539;
  color: #eee0d0;
  border: 1px solid #e4cdb0;
}

#btn-see-online {
  margin-left: 36px;
  right: 20%;
  border: 2px solid #369289;
  color: #e4cdb0;
  background-color: #369289;
}
#btn-see-online:hover {
  border: 2px solid #e4cdb0;
  color: #eee0d0;
}

@media (max-width: 1919px) {
  .btn {
    margin-top: 28px;
    width: 170px;
    font-size: 20px;
    height: 30px;
  }
  .btn-img {
    width: 115px;
    height: 18px;
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .btn {
    margin-top: 17px;
    width: 162px;
    font-size: 18px;
    height: 27px;
  }
}
@media (max-width: 768px) {
  .btn {
    color: #BF4539;
    margin-top: 6vh;
    justify-content: space-around;
    font-size: 14px;
    height: auto;
    gap: 10px;
    padding: 2px 0 2px;
    margin-bottom: 5%;
  }
  #skills-btn {
    border: 0px;
  }
  #contact-btn {
    color: #BF4539;
    border: 0px;
    background-color: transparent;
  }
  #contact-btn:hover {
    border: 0px;
    background-color: #BF4539;
    color: #eee0d0;
  }
  #projects-btn {
    display: flex;
    color: #BF4539;
    border: 0px;
  }
  #projects-btn:hover {
    background-color: transparent;
    background-color: #BF4539;
    color: #eee0d0;
  }
}
#nav-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 15px;
  max-width: 90vw;
}

@media (max-width: 480px) {
  .btn-img {
    width: 90px;
    height: 16px;
    font-size: 13px;
  }
}
#projects {
  display: grid;
  margin: 0 auto;
  margin-right: 295px;
  grid-template-rows: 1fr 1fr 1fr;
  text-align: center;
}
#projects img {
  max-height: 33.3vh;
  filter: grayscale(20%);
  transition: all 0.4s ease;
}
#projects img:hover {
  filter: grayscale(0%);
}

.p-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 1919px) {
  #projects {
    margin-right: 175px;
  }
}
@media (max-width: 1199px) {
  #projects {
    margin-right: 115px;
  }
}
@media (max-width: 1023px) {
  #projects {
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  #projects {
    display: block;
    margin-right: 0px;
  }
  #projects img {
    max-height: 35vh;
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#skills {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 95vh;
}
#skills p {
  color: #BF4539;
  transition: all 0.1s ease-in-out;
  align-items: center;
  margin: 0;
  margin-right: 400px;
  font-size: 27px;
}
#skills h2 {
  margin-top: 2vh;
}

@media (max-width: 1919px) {
  #skills p {
    margin-right: 250px;
    font-size: 19px;
  }
}
@media (max-width: 1199px) {
  #skills p {
    margin-right: 115px;
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  #skills p {
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  #skills {
    justify-content: left;
    margin-top: 2vh !important;
    margin-left: 5vw;
    margin-right: 5vw;
  }
  #skills p {
    align-items: center;
    margin-left: 10vw;
    margin-right: 10vw;
    font-size: 17px;
  }
  #skills h2 {
    font-size: larger;
  }
}
* {
  border: 0;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: inherit;
  display: flex;
  flex-direction: column;
  font-family: "Fira Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #79838c;
}

a {
  color: #50585f;
  text-decoration: none;
}
a:hover {
  color: #383e44;
}

div.container {
  display: flex;
  flex: auto;
  flex-direction: column;
  max-height: 100%;
}

div.header {
  height: auto;
  text-align: center;
  background: slategrey;
  color: ghostwhite;
  padding: 2.3rem 1rem 2.3rem 1rem;
  position: relative;
}
div.header:after {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0rem;
  height: 5.1rem;
  display: block;
  width: 100%;
  z-index: 300; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=0 ); /* IE6-9 */
}
div.header h1 {
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  font-weight: 200;
  font-size: 1.6em;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  div.header h1 {
    font-size: 1.9em;
    letter-spacing: 0.2rem;
  }
}
div.header h2 {
  font-size: 1.1em;
  font-weight: 400;
  color: #cfd7de;
  max-width: 30rem;
  margin: auto;
}

div.item {
  display: flex;
  flex: auto;
  overflow-y: auto;
  padding: 0rem 1rem 0rem 1rem;
}

.no-scrollbar {
  overflow-y: auto; /* Enables vertical scrolling */
  max-height: 400px; /* Adjust height based on how much you want visible */
}

/* Hides scrollbar for WebKit-based browsers like Chrome and Safari */
.no-scrollbar::-webkit-scrollbar {
  width: 0px; /* Removes the scrollbar width */
  background: transparent; /* Optional: For better aesthetics */
}

/* Hides scrollbar in Firefox */
.no-scrollbar {
  scrollbar-width: none; /* Hides scrollbar in Firefox */
}

/* Hides scrollbar in Internet Explorer and Edge */
.no-scrollbar {
  -ms-overflow-style: none; /* Hides scrollbar in IE and Edge */
}

#timeline {
  position: relative;
  display: table;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
}
#timeline div:after {
  content: "";
  width: 2px;
  background-color: #369289;
  position: absolute;
  top: 0.5rem;
  bottom: 0rem;
  left: 60px;
  z-index: 1;
}
#timeline h3 {
  position: sticky;
  top: 5rem;
  color: #BF4539;
  margin: 0;
  font-size: 1em;
  font-weight: 400;
}
@media (min-width: 62em) {
  #timeline h3 {
    font-size: 1.1em;
  }
}
#timeline section.year {
  position: relative;
}
#timeline section.year:first-child section {
  margin-top: -1.3em;
  padding-bottom: 0px;
}
#timeline section.year section {
  position: relative;
  padding-bottom: 1.25em;
  margin-bottom: 2.2em;
}
#timeline section.year section h4 {
  position: absolute;
  bottom: 0;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.2em;
  margin: 0;
  padding: 0 0 0 89px;
  color: #be9874;
}
@media (min-width: 62em) {
  #timeline section.year section h4 {
    font-size: 1em;
  }
}
#timeline section.year section ul {
  list-style-type: none;
  padding: 0 0 0 75px;
  margin: -1.35rem 0 1em;
  max-width: 32rem;
  font-size: 1em;
}
@media (min-width: 62em) {
  #timeline section.year section ul {
    font-size: 1.1em;
    padding: 0 0 0 81px;
  }
}
#timeline section.year section ul:last-child {
  margin-bottom: 0;
}
#timeline section.year section ul:first-of-type:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #e4cdb0;
  border: 2px solid #369289;
  border-radius: 50%;
  position: absolute;
  left: 54px;
  top: 3px;
  z-index: 2;
}
#timeline section.year section ul li {
  margin-left: 0.5rem;
  color: #e4cdb0;
  transition: color 0.3s ease-in-out;
}
#timeline section.year section ul .intern {
  color: #BF4539;
}
#timeline section.year section ul:before {
  content: "·";
  margin-left: -0.5rem;
  padding-right: 0.3rem;
}
#timeline section.year section ul:not(:first-child) {
  margin-top: 0.5rem;
}
#timeline section.year section ul span.price {
  color: #BF4539;
  font-weight: 500;
}

#contact .c {
  display: flex;
  align-items: center;
  margin-right: 295px;
}
#contact p {
  color: #BF4539;
  font-size: 32px;
  margin: 0px 0px 0px 75px;
}
#contact a {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  justify-content: center;
}
#contact img {
  margin: 0;
  max-height: 35px;
  width: 30px;
  justify-content: flex-end;
}

@media (max-width: 1919px) {
  #contact .c {
    margin-right: 0px;
  }
  #contact p {
    font-size: 22px;
    margin: 0px 0px 0px 42px;
  }
  #contact img {
    max-height: 25px;
    width: 20px;
  }
}
@media (max-width: 1199px) {
  #contact .c {
    display: flex;
    align-items: center;
    margin-right: 115px;
  }
  #contact p {
    font-size: 18px;
    margin: 0px 0px 0px 34px;
  }
  #contact img {
    margin: 0;
    max-height: 20px;
  }
}
@media (max-width: 1023px) {
  #contact .c {
    margin-right: 70px;
  }
}
@media (max-width: 768px) {
  #contact {
    margin-top: 10vh;
  }
  #contact .c {
    margin-right: 10vw;
  }
  #contact p {
    font-size: 15px;
    margin: 0px 0px 0px 0px;
  }
  #contact a {
    margin-top: 4vh;
  }
  #contact img {
    margin: 0 10vw;
    max-height: 22px;
    width: 20px;
    justify-content: flex-end;
  }
}/*# sourceMappingURL=index.css.map */