*{
    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',sans-serif;

    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%;

}

/* ================= EXPERIENCE ================= */

.projects{

    width:80%;

    margin:130px auto;

}

.projects h1{

    font-family:'Space Grotesk',sans-serif;

    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:18px;

    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;

    flex-shrink:0;

    font-size:30px;

    color:#2F6FED;

    transition:.35s;

}

.project-card:hover .project-icon{

    background:#2F6FED;

    color:white;

    transform:rotate(8deg);

}

/* ================= CONTENT ================= */

.project-content{

    flex:1;

}

.project-content h2{

    font-size:24px;

    color:#1E4E8C;

    margin-bottom:5px;

}

.project-content h3{

    font-size:17px;

    font-weight:500;

    color:#617D99;

    margin-bottom:8px;

}

.date{

    color:#7B91AA;

    font-size:15px;

    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;

}

/* ================= DURATION CIRCLE ================= */

.duration{

    width:90px;

    height:90px;

    min-width:90px;

    border-radius:50%;

    background:#DCEEFF;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.duration span{

    font-size:28px;

    font-weight:700;

    color:#2F6FED;

    line-height:1;

}

.duration small{

    margin-top:4px;

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#617D99;

    font-weight:600;

}

.project-card:hover .duration{

    background:#2F6FED;

    transform:scale(1.08);

    box-shadow:0 8px 25px rgba(47,111,237,.25);

}

.project-card:hover .duration span,

.project-card:hover .duration small{

    color:white;

}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

.project-card{

    flex-direction:column;

    align-items:flex-start;

}

.duration{

    align-self:flex-end;

}

.projects{

    width:92%;

}

}

@media(max-width:600px){

nav{

    padding:0 5%;

}

nav ul{

    gap:18px;

    font-size:14px;

}

.project-card{

    padding:22px;

}

.project-content h2{

    font-size:20px;

}

.project-content h3{

    font-size:15px;

}

.duration{

    width:75px;

    height:75px;

    min-width:75px;

}

.duration span{

    font-size:22px;

}

.duration small{

    font-size:9px;

}

}
/* ===================================
   CONFERENCES & WORKSHOPS
=================================== */

.conference-link{

    display:block;

    text-decoration:none;

    color:inherit;

    margin-top:50px;

}

.conference-card{

    background:white;

    border-radius:16px;

    padding:30px;

    display:flex;

    align-items:center;

    gap:25px;

    border:2px solid #DCEEFF;

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

    transition:.35s;

    cursor:pointer;

}

.conference-card:hover{

    transform:translateY(-6px);

    border-color:#2F6FED;

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

}

.conference-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#DCEEFF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    color:#2F6FED;

    flex-shrink:0;

}

.conference-content{

    flex:1;

}

.conference-content h2{

    color:#1E4E8C;

    font-size:23px;

    margin-bottom:8px;

}

.conference-content p{

    color:#617D99;

    font-size:15px;

    line-height:1.7;

}

.conference-arrow{

    font-size:30px;

    color:#2F6FED;

    transition:.3s;

}

.conference-card:hover .conference-arrow{

    transform:translateX(8px);

}