/* HEADER */
#header{
    width: 100%;
    min-height: 40lvh;
    padding-top: var(--navbar-height);

    display: flex;
    justify-content: center;
    align-items: center;
}
#header-container{
    flex-direction: column;
    padding-bottom: 0px;
    color: var(--clr-3);

    text-align: center;
}

#head-back-link{
    align-self: flex-start;
    left: 35px;
    top: 100px;
    margin-top: 40px;
    margin-bottom: 40px;

}

#header-project-name{
    font-size: calc(var(--font-size) * 2.5);
    font-weight: 700;
    margin-bottom: 5px;

    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--clr-3);
    text-decoration-thickness: 2px;

}
#header-project-date{
    font-size: calc(var(--font-size) * 1.2);
    font-weight: 500;
}

#header-subtitle{
    max-width: 700px;
    font-size: calc(var(--font-size) * 1.3);
    font-weight: 500;
    margin: 20px 0;
    margin-top: 35px;
    max-width: 700px;
    line-height: 2;
}

#header-link{
    padding: 10px;
    margin-top: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}
#header-link-icon{
    width: 40px;
    filter: brightness(0) saturate(100%) invert(9%) sepia(7%) saturate(2933%) hue-rotate(169deg) brightness(96%) contrast(88%);
}


/* MAIN */
#main{
    width: 100%;
    padding: 100px 0;

    display: flex;
    justify-content: center;
    align-items: center;
}



/* SERVICE */
#reference{
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#reference-container{
    flex-direction: column;
}
#reference-title{
    border-top-right-radius: var(--border-radius-3);
    border-bottom-right-radius: var(--border-radius-3);
    padding: 5px 30px;
}
#reference-title::after{
    width: var(--title-left-0);
    right: calc(100% - 5px);
}





.reference-gallery{
    margin-top: 50px;
    width: 100%;
    text-align: center;
}

.reference-gallery-item{
    display: inline-block !important;
    width: 300px;
    height: 300px;
    background: #ccc;
    margin-bottom: 10px;
}
.reference-gallery-item a{
    width: 100%;
    height: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.reference-gallery-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

