@font-face {
    font-family: codec-pro;
    src: url('../libs/font/codec-pro/CodecPro-Regular.ttf');
    font-display: block;
}

:root {
    --primary: #165583;
}

* {
    font-family: codec-pro, sans-serif;
}

.navbar-brand {
    letter-spacing: 1px;
}

header {
    background-color: var(--primary);
}

.navbar-nav .nav-link.active {
    font-weight: bold;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.text-truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-bg-primary{
    background-color: color-mix(in srgb, var(--primary), transparent 85%) !important;
    color: var(--primary) !important;
}

.cursor-pointer {
    cursor: pointer;
}

main {
    margin-top: 80px;
    padding-top: 20px;
    position: relative;
}
.shape {
    background-color: var(--primary);
    width: 100%;
    height: 45vh;
    position: absolute;
    top: 0;
    z-index: -1;
}

.project-list {
    border: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.project-list .card-header {
    border-bottom-style: dotted;
}

article {
    background-color: color-mix(in srgb, var(--primary), transparent 95%) !important;
    margin-top: 20px;
}
article:hover .project-name {
    color: var(--primary);
}
article .icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    color: var(--primary);
}
article .action {
    width: 100px;
    display: flex;
    justify-content: flex-end;
    column-gap: 5px;
}
article .action .tmb {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--primary);
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    transition: 400ms ease;
}
article .action .tmb i {
    font-size: 14px;
}
article .action .tmb:active {
    transform: scale(1.1);
}
article .action .tmb:hover {
    background-color: color-mix(in srgb, var(--primary), transparent 30%);
}
article .action .tmb[disabled] {
    pointer-events: none;
    opacity: 0.5;
}
