:root {
    --brand-blue: #26a1b7;
    --hover-blue: #67b3fd;
    --hover-red: #e31f25;
    --light-blue: #e0f0ff;
    --dark-blue: #0a3c5e;
    --s32: 32px;
}
:root {
    --font-family: "PT Sans", sans-serif;
    --second-family: "Inter", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    cursor: default;
    background: #f6f7fb;
    font-family: var(--font-family);
    font-size: 16px;
    color: #192d41;
    font-weight: 300;
}
a {
    color: #192d41;
}
.logo {
    width: 60%;
    aspect-ratio: 179 / 169; /* квадрат */
    background-image: url("/img/loader.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}
.header-line {
    padding: 20px 0;
    border-bottom: solid 1px #192d41;
}
.menu-item {
    text-decoration: none;
    text-transform: uppercase;
}
.full-width {
    width: 100% !important;
}
.hero {
    gap: 15px;
    padding: 50px 0;
}
.hero-title-1 {
    font-family: var(--second-family);
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
.hero-title-2 {
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--brand-blue);
}
.hero-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 200;
}
.button {
    background: #0061e2;
    border: solid 1px #0061e2;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.button-white {
    background: transparent;
    border: solid 1px #0061e2;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #0061e2;
    text-decoration: none;
    font-weight: bold;
}
.gap-16 {
    gap: 16px;
}
.advantages-item {
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ccc;
    height: calc(100% - 20px);
    text-align: center;
}
.btn {
    background: #0061e2;
    border: solid 1px #0061e2;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 auto;
    max-width: 250px;
    text-align: center;
}
#footer {
    background: #0f2238;
    color: #ffffff;
    padding: 64px 0 32px;
}

.footer-top {
    row-gap: 32px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer-nav ul,
.footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-contacts li {
    margin-bottom: 10px;
    font-size: 14px;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.2s ease;
}

footer a:hover {
    color: rgba(255,255,255,1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}


.advantages-img img {
    display: block;
    width: 70%;
    margin: 0 auto;
}
.advantages-img {
    margin-bottom: 15px;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.align-between {
    justify-content: space-between;
}
.advantages-item-name {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 20px;
}
.advantages {
    gap: 35px;
}
.advantages-item-text {
    font-size: 20px;
}
.align-right {
    justify-content: right;
}
.title {
    text-transform: uppercase;
    font-size: 52px;
    text-align: center;
}
.about-item-num {
    font-weight: bold;
    color: var(--brand-blue);
    font-size: 55px;
    line-height: 50px;
}
.about-item {
    display: grid;
    grid-template-columns: 25px 1fr;
}
.about-item-title {
    text-transform: uppercase;
    font-weight: bold;
}
/* минимальные стили — под твою сетку/карточки */
.stats { row-gap: 24px; }

.stat-card{
    background:#fff;
    border-radius:14px;
    padding:24px;
    box-shadow:0 6px 18px rgba(10, 20, 40, .08);
    height:calc(100% - 48px);
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 16px;
    align-items: center;
}

.stat-value{
    display:flex;
    align-items:baseline;
    gap:8px;
    line-height:1;
    font-weight:800;
    color:#0f2238;
    font-size:40px;
}

.stat-prefix{
    font-size:18px;
    font-weight:700;
    color:#0f2238;
    opacity:.75;
    margin-right:2px;
}

.stat-suffix{
    font-size:16px;
    font-weight:700;
    color:#0f2238;
    opacity:.75;
}

.stat-title{
    margin-top:10px;
    font-weight:800;
    letter-spacing:.02em;
    text-transform:uppercase;
    font-size:13px;
    color:#0f2238;
}

.stat-text{
    margin-top:8px;
    font-size:14px;
    color:rgba(15,34,56,.75);
}
.stat-card-ico {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.stat-card-ico-1 {
    background-image: url("/images/num1.jpg");
}
.stat-card-ico-2 {
    background-image: url("/images/num2.jpg");
}
.stat-card-ico-3 {
    background-image: url("/images/num3.jpg");
}
.stat-card-ico-4 {
    background-image: url("/images/num4.jpg");
}
.stat-card-ico-5 {
    background-image: url("/images/num5.jpg");
}
.stat-card-ico-6 {
    background-image: url("/images/num6.jpg");
}
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 24px rgba(10, 20, 40, 0.08);
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f2238;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.price-main {
    font-size: 40px;
    font-weight: 800;
    color: #1e4ed8;
}

.price-period {
    font-size: 16px;
    font-weight: 600;
    color: #0f2238;
    opacity: 0.7;
}

.price-sub {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(15, 34, 56, 0.7);
}

.pricing-divider {
    height: 1px;
    background: rgba(15, 34, 56, 0.08);
    margin: 24px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #0f2238;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
}

.pricing-note {
    font-size: 13px;
    color: rgba(15, 34, 56, 0.6);
}

.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,0.55);
    display: none;
}
.content_inject {
    width: 543px;
    height: 414px;
    background: #fff;
    border-radius: 16px;
    margin: auto;
    z-index: 101;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    display: none;
}
.content_inject_default {
    padding: 40px;
}
.content_inject_close {
    position: absolute;
    right: 31px;
    top: 31px;
    cursor:pointer;

}
.align-center {
    justify-content: center;
}
.vertical-center {
    align-items: center;
}
.cookies {
    background: #fff;
    border-radius: 5px;
    position: fixed;
    z-index: 950;
    bottom: var(--s32);
    left: 0;
    right: 0;
    box-shadow: 0 0 10px #999;
    display: none;
}
.cookies-close {
    background: url(/assets/images/close.png);
    width: 14px;
    height: 14px;
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}
.cookies-grid {
    padding: 15px 90px;
    display: grid;
    gap: var(--s32);
    grid-template-columns: 1fr 140px;
    align-items: center;
}
.cookies-agree {

    border-radius: 5px;
    padding: 10px 18px;
    background: #000;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}
textarea {
    display: block;
    max-width: 100%;
    min-height: 200px;
    padding: 10px;
    border-radius: 8px;
    border: solid 1px #aaa;
    background: #fff;
    outline: none;
    width: 100%;
}
.task-row{
    padding:14px 0;
    border-top:1px solid #b1bac4;
}
.task-row:last-child{
    border-bottom:none;
}
.tbl-name{
    font-size:12px;
    color:#7b8190;
    text-transform:uppercase;
    letter-spacing:.04em;
}
.task-title{
    font-weight:600;
    color:#1f2430;
}
.task-project,
.task-executor,
.task-deadline{
    color:#2d3440;
}
.task-deadline.is-overdue{
    color:#d13b3b;
    font-weight:600;
}
.task-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:28px;
    padding:4px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    line-height:1.2;
    white-space:nowrap;
}
.priority-low{
    background:#eef1f4;
    color:#5f6b7a;
}
.priority-standard{
    background:#e8f2ff;
    color:#2f6fec;
}
.priority-high{
    background:#ffe9e9;
    color:#d13b3b;
}
.status-new{
    background:#eef1f4;
    color:#5f6b7a;
}
.status-work{
    background:#fff4df;
    color:#b7791f;
}
.status-wait{
    background:#f3e8ff;
    color:#7a3db8;
}
.status-done{
    background:#e7f8ec;
    color:#1f8b4c;
}
.status-cancel{
    background:#ffe9e9;
    color:#d13b3b;
}
.task-list-head{
    margin-top:32px;
    margin-bottom:12px;
}
@media (max-width: 991px){
    .task-list-head{
        display:none;
    }
    .task-row .col-12{
        margin-bottom:8px;
    }
}
.task-page{
    margin:32px 0;
}
.task-card{
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:24px;
    padding:28px;
    box-shadow:0 8px 24px rgba(15, 23, 42, 0.04);
}
.task-title-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:24px;
}
.task-title{
    margin:0;

    line-height:1.15;
    font-weight:700;
    color:#0f172a;
}
.task-subtitle{
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    color:#5b6472;
    font-size:14px;
}
.task-meta-item{
    display:inline-flex;
    align-items:center;
    gap:6px;
}
.gap-8 {
    gap: 8px;
}
.task-meta-item .material-symbols-outlined{
    font-size:18px;
    color:#7b8696;
}
.task-grid{
    display:grid;
    grid-template-columns:repeat(12, 1fr);
    gap:16px;
    margin-bottom:24px;
}
.task-box{
    grid-column:span 3;
    background:#f8fafc;
    border:1px solid #e8edf3;
    border-radius:20px;
    padding:18px;
}
.task-box-wide{
    grid-column:span 6;
}
.task-box-full{
    grid-column:span 12;
}
.task-box-title{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
    font-size:13px;
    line-height:1.2;
    color:#6b7280;
    text-transform:uppercase;
    letter-spacing:.04em;
}
.task-box-title .material-symbols-outlined{
    font-size:18px;
}
.task-box-value{
    font-size:18px;
    line-height:1.35;
    font-weight:600;
    color:#0f172a;
}
.task-box-value.light{
    font-weight:500;
}
.task-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.task-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:34px;
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    line-height:1.2;
    white-space:nowrap;
}
.task-badge .material-symbols-outlined{
    font-size:18px;
}

.priority-low{
    background:#eef2f6;
    color:#667085;
}
.priority-standard{
    background:#e8f1ff;
    color:#2563eb;
}
.priority-high{
    background:#ffe8e8;
    color:#dc2626;
}

.status-new{
    background:#eef2f6;
    color:#667085;
}
.status-work{
    background:#fff4db;
    color:#b7791f;
}
.status-wait{
    background:#efe7ff;
    color:#7c3aed;
}
.status-rework{
    background:#ffe9d8;
    color:#ea580c;
}
.status-done{
    background:#e8f8ec;
    color:#15803d;
}
.status-cancel{
    background:#ffe8e8;
    color:#dc2626;
}

.payment-no{
    background:#f1f5f9;
    color:#64748b;
}
.payment-yes{
    background:#e8f8ec;
    color:#15803d;
}

.task-desc{
    font-size:16px;
    line-height:1.65;
    color:#1f2937;
}
.task-desc p:last-child{
    margin-bottom:0;
}
.task-price{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
}
.task-date-overdue{
    color:#dc2626;
}
.task-form{
    margin:32px 0;
}
.task-form-card{
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:24px;
    padding:28px;
    box-shadow:0 8px 24px rgba(15,23,42,.04);
}
.task-form-title{
    margin:0 0 24px;
    font-size:32px;
    line-height:1.15;
    font-weight:700;
    color:#0f172a;
}
.task-form-grid{
    display:grid;
    grid-template-columns:repeat(12, 1fr);
    gap:16px;
}
.task-form-section{
    grid-column:span 12;
    margin-top:12px;
}
.task-form-section-title{
    display:flex;
    align-items:center;
    gap:8px;
    margin:8px 0 14px;
    font-size:18px;
    font-weight:700;
    color:#cf5c7b;
}
.task-form-section-title .material-symbols-outlined{
    font-size:22px;
}
.task-field{
    grid-column:span 6;
}
.task-field.wide{
    grid-column:span 12;
}
.task-label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#334155;
}
.task-static{
    min-height:52px;
    display:flex;
    align-items:center;
    padding:0 16px;
    border:1px solid #dbe2ea;
    border-radius:14px;
    background:#f8fafc;
    color:#0f172a;
}
.task-note{
    margin-top:6px;
    font-size:12px;
    color:#64748b;
}
.task-actions{
    margin-top:24px;
    display:flex;
    gap:12px;
    align-items:center;
}
.task-submit input,
.task-submit button,
.task-submit .button{
    min-height:48px;
    padding:0 22px;
    border:0;
    border-radius:14px;
    background:#0f2d57;
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}
.nc-field{
    margin:0;
}
.nc-field input[type="text"],
.nc-field input[type="number"],
.nc-field input[type="date"],
.nc-field input[type="datetime-local"],
.nc-field select,
.nc-field textarea,
.task-form input[type="text"],
.task-form input[type="number"],
.task-form select,
.task-form textarea{
    width:100%;
    min-height:52px;
    padding:12px 16px;
    border:1px solid #dbe2ea;
    border-radius:14px;
    background:#fff;
    font-size:15px;
    color:#0f172a;
    box-sizing:border-box;
}
.nc-field textarea,
.task-form textarea{
    min-height:160px;
    resize:vertical;
}
.task-form select{
    appearance:none;
}
.warnText{
    margin-bottom:16px;
    padding:14px 16px;
    border-radius:14px;
    background:#fff4e5;
    color:#9a6700;
}
.task-form .nc-field-type-datetime{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    position:relative;
    font-size:0;
}

.task-form .nc-field-type-datetime .nc-field-caption{
    display:block;
    width:100%;
    margin:0 0 8px;
    font-size:14px;
    font-weight:500;
    color:#334155;
}

.task-form .nc-field-type-datetime input[name$="_day"],
.task-form .nc-field-type-datetime input[name$="_month"],
.task-form .nc-field-type-datetime input[name$="_year"]{
    width:90px !important;
    min-width:90px;
    max-width:90px;
    min-height:52px;
    padding:12px 14px;
    border:1px solid #dbe2ea;
    border-radius:14px;
    background:#fff;
    font-size:15px;
    color:#0f172a;
    text-align:center;
    box-sizing:border-box;
}

.task-form .nc-field-type-datetime input[name$="_year"]{
    width:110px !important;
    min-width:110px;
    max-width:110px;
}

.task-form .nc-field-type-datetime input[name$="_hours"],
.task-form .nc-field-type-datetime input[name$="_minutes"],
.task-form .nc-field-type-datetime input[name$="_seconds"]{
    display:none !important;
}

.task-form .nc-field-type-datetime img[id^="nc_calendar_popup_img_"]{
    position:static !important;
    width:20px;
    height:20px;
    cursor:pointer;
    margin-left:4px;
    opacity:.75;
}

.task-form .nc-field-type-datetime > div[style*="display: inline"]{
    display:flex !important;
    align-items:center;
    position:static !important;
}

.task-form .nc-field-type-datetime input::placeholder{
    color:#94a3b8;
    font-size:15px;
}
input[name=f_name] {
    max-width: 100% !important;
}
@media (max-width: 900px){
    .task-form-card{
        padding:20px;
        border-radius:18px;
    }
    .task-field,
    .task-field.wide{
        grid-column:span 12;
    }
    .task-form-title{
        font-size:26px;
    }
}
@media (max-width: 1200px){
    .task-box{
        grid-column:span 4;
    }
    .task-box-wide{
        grid-column:span 6;
    }
}
@media (max-width: 900px){
    .task-card{
        padding:20px;
        border-radius:18px;
    }
    .task-box,
    .task-box-wide,
    .task-box-full{
        grid-column:span 12;
    }
    .task-title{
        font-size:26px;
    }
    .task-title-row{
        flex-direction:column;
    }
}
.finance-dashboard {
    display: grid;
    gap: 24px;
    margin: 24px 0 40px;
    font-family: Arial, sans-serif;
}

.fd-panel {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.05);
}

.fd-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fd-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
}

.fd-subtitle {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 14px;
}

.fd-months {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fd-month-btn {
    border: 1px solid #d9deea;
    background: #fff;
    color: #1f2937;
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: .2s;
}

.fd-month-btn:hover,
.fd-month-btn.is-active {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.fd-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.fd-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.fd-card {
    background: #f8fafc;
    border: 1px solid #ebeff5;
    border-radius: 16px;
    padding: 18px;
}

.fd-card-title {
    margin: 0 0 10px;
    font-size: 14px;
    color: #6b7280;
}

.fd-card-value {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.fd-card-note {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.fd-block-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
}

.fd-table-wrap {
    overflow-x: auto;
}

.fd-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.fd-table th,
.fd-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #edf1f7;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
}

.fd-table th {
    color: #6b7280;
    font-weight: 600;
    background: #fafbfd;
    position: sticky;
    top: 0;
}

.fd-money {
    font-weight: 700;
    white-space: nowrap;
}

.fd-task-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.fd-task-text {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
    max-width: 420px;
}

.fd-muted {
    color: #94a3b8;
}

.fd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.fd-badge.is-default { background: #eef2f7; color: #475569; }
.fd-badge.is-new { background: #eef2ff; color: #4f46e5; }
.fd-badge.is-check { background: #fff7ed; color: #c2410c; }
.fd-badge.is-rework { background: #fef2f2; color: #dc2626; }
.fd-badge.is-ok { background: #ecfdf5; color: #059669; }
.fd-badge.is-cancel { background: #f3f4f6; color: #6b7280; }
.fd-badge.is-work { background: #eff6ff; color: #2563eb; }
.fd-badge.is-done { background: #ecfeff; color: #0891b2; }
.fd-badge.is-wait { background: #fff7ed; color: #d97706; }
.fd-badge.is-paid { background: #ecfdf5; color: #16a34a; }

.fd-hidden {
    display: none !important;
}

.fd-empty {
    padding: 18px;
    border: 1px dashed #d9deea;
    border-radius: 14px;
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .fd-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fd-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .fd-grid-4 {
        grid-template-columns: 1fr;
    }

    .fd-title {
        font-size: 24px;
    }

    .fd-card-value {
        font-size: 24px;
    }
}
.min-height {
    min-height: calc(100vh - 70px - 236px - 158px);
    width: 100%;
}
.projects-grid {

    gap: 24px;
    margin: 32px 0;
}

.project-card {
    background: #f8fafc;
    border: 1px solid #d9dee8;
    border-radius: 24px;
    padding: 28px;
    color: #183153;
    height: calc(100% - 48px);
    transition: 0.2s ease;
    box-shadow: 0 8px 24px rgba(20, 35, 60, 0.06);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(20, 35, 60, 0.10);
    border-color: #c8d2e1;
}

.project-card.big {
    min-height: 260px;
}

.project-card.small {
    min-height: 220px;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef2f7;
    border: 1px solid #d9dee8;
    font-size: 13px;
    font-weight: 500;
    color: #5f6f86;
    line-height: 1;
}

.project-link {
    display: inline-block;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    color: #17345f;
    text-decoration: none;
    margin-bottom: 16px;
}

.project-link:hover {
    color: #0f2748;
    text-decoration: none;
}

.project-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #3e536f;
}