*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:#EAF5FF;

font-family:'Inter',sans-serif;

color:#35506A;

}

/* NAVBAR */

nav{

position:fixed;

top:0;

width:100%;

height:75px;

background:white;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 8%;

box-shadow:0 4px 15px rgba(0,0,0,.05);

z-index:100;

}

.logo{

font-family:'Space Grotesk';

font-size:28px;

font-weight:700;

color:#1E4E8C;

}

nav ul{

display:flex;

list-style:none;

gap:35px;

}

nav ul li a{

text-decoration:none;

color:#5A718A;

font-weight:500;

position:relative;

}

nav ul li a.active{

font-weight:700;

color:#1E4E8C;

}

nav ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:#2F6FED;

transition:.3s;

}

nav ul li a:hover::after{

width:100%;

}

nav ul li a.active::after{

width:100%;

}

/* PROJECTS */

.projects{

width:80%;

margin:130px auto;

}

.projects h1{

font-family:'Space Grotesk';

font-size:40px;

color:#1E4E8C;

margin-bottom:10px;

}

.subtitle{

color:#617D99;

margin-bottom:40px;

font-size:17px;

}

/* LINKS */

.project-link{

display:block;

text-decoration:none;

color:inherit;

margin-bottom:25px;

}

/* CARD */

.project-card{

background:white;

border-radius:15px;

padding:28px;

display:flex;

align-items:center;

gap:25px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

transition:.35s;

border-left:6px solid #2F6FED;

cursor:pointer;

}

.project-card:hover{

transform:translateY(-6px);

box-shadow:0 18px 35px rgba(47,111,237,.15);

}

/* ICON */

.project-icon{

width:75px;

height:75px;

border-radius:50%;

background:#DCEEFF;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

color:#2F6FED;

}

/* CONTENT */

.project-content{

flex:1;

}

.project-content h2{

font-size:24px;

color:#1E4E8C;

margin-bottom:6px;

}

.project-content h3{

font-size:17px;

font-weight:500;

color:#617D99;

margin-bottom:15px;

}

/* TAGS */

.tags{

display:flex;

flex-wrap:wrap;

gap:10px;

}

.tags span{

background:#EAF5FF;

padding:6px 14px;

border-radius:20px;

font-size:14px;

font-weight:600;

color:#2F6FED;

}

/* YEAR */

.year{

background:#DCEEFF;

padding:10px 18px;

border-radius:25px;

font-weight:700;

color:#2F6FED;

}

/* RESPONSIVE */

@media(max-width:850px){

.project-card{

flex-direction:column;

align-items:flex-start;

}

.year{

margin-top:15px;

}

.projects{

width:92%;

}

}