
@font-face {
	font-family: "Literata 24 Medium";
	src: url("../Literata/static/Literata_24pt-Medium.ttf") format("WOFF");
}

@font-face {
    font-family: 'Inconsolata SemiBold';
    src: url('../Inconsolata/static/Inconsolata-SemiBold.ttf');
}

#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #E8ACD2; 
  z-index: 9999;
  transition: width 0.1s ease-out;
}


.project-outer-wrap {
    margin-top: 4%;
}

.project-h1 {
    font-family: "Literata 24 Medium";
    font-size: 16px;
    color: #2B2E2E;
}

.col-project-flex {
  margin-top: 2%;
  display: flex;
  flex-direction: column;
}

.left-col {
  padding-bottom: 1rem;
}

.left-col a {
  display: flex;
  margin: 1rem 0;
  color: #606565;
  text-decoration: none;
  font-size: 11px;
  font-family: "Helvetica Now Text Regular";
}

.research {
    color: #606565;
    font-size: 11px;
    font-family: "Helvetica Now Text Regular";
}

.research-link {
    text-decoration: underline;
    color: #606565;
    font-family: "Helvetica Now Text Regular";
}

.link-standard {
    text-decoration: underline;
    color: #606565;

}

.about-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.right-col section {
  margin-bottom: 8rem;
}

.project-metadata {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-wrap {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

.section-wrap img {
    width: 2.5vw;
}

section h3, .meta-label {
    display: flex;
    color: #606565;
    font-size: 11px;
    font-family: "Helvetica Now Text Medium";
}

section p {
    margin-top: 1rem;
    color: #2B2E2E;
    font-family: "Helvetica Now Text Regular";
    font-size: 13px;
    line-height: 130%;
}

.sec-img {
    width: 100%;
    margin-top: 1rem;
    border-radius: 6px;
    border: 1px solid #C7C7C7;
}

.full-img {
    width: 100%;
}

.end-small-img {
    width: 50%;
}

.section-divider {
    height: 4rem;
}

.project-link {
    color: #E97503;
}

.social-link {
    color: #4A5899;
}

.social-link:hover {
    text-decoration: underline;
}

.next-project-wrap {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 1rem; 
}

.button-next {
	font-family: "Helvetica Now Text Regular";
	font-size: 11px;
	display: inline-block;
	padding: 8px 8px; 
	border-radius: 30px;
	white-space: nowrap;
	border: 1px solid #860957;
	background-color: #E8ACD2;
    color: #860957;
	width: auto;
}

/* TABLET MEDIA QUERY */
@media screen and (min-width: 768px) { 



}

/* LAPTOP MEDIA QUERY */
@media screen and (min-width: 992px) { 

.project-h1 {
    font-size: 36px;
}

.col-project-flex {
    margin-top: 4%;
    flex-direction: row;
}

 .left-col {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    width: 20%;
}

.left-col a:nth-child(1) {
    margin-top: 10%;
}

.project-label {
    margin-top: 1rem;
    width: 100%;
}

.project-metadata {
    flex-direction: row;
    justify-content: space-between;
}

.project-metadata p {
    line-height: 130%;
}

.left-col a {
    font-size: 12px;
    margin: .5rem 0;
    padding: .3rem;
    border-radius: 2px;
    transition: all 200ms ease-in-out;
}

.left-col a:hover {
    transform: translateX(4px);
    background-color: #d1d1d1;
}

.right-col {
    width: 90%;
    margin-left: 6rem;
}

.about-flex {
    gap: 2rem;
}

section h3, .meta-label {
    font-size: 14px;
}

section p {
    font-size: 16px;
    width: 60%;
}

.section-wrap {
    gap: 1vh;
}

.section-wrap img {
    width: .7vw;
}

.project-link {
    transition: all 200ms ease-in-out;

}

.project-link:hover {
    text-decoration: underline;
}

.research {
    font-size: 13px;
    width: 100%;
}

.end-small-img {
    margin-top: 1rem;
    width: 30%;
}

.button-next {
	font-size: 16px;
	padding: 10px 10px; 
    font-family: "Helvetica Now Text Medium";
	border: 1px solid;
	transition: all 300ms ease-in-out;
}

.button-next:hover {
	background-color: #e183bf;
	border: 1px solid #4f0633;
    color: #5D003A;
	padding: 10px 14px; 
}

}