.pgContent {
    padding-top: 180px;
    padding-bottom: 80px;
}

.pgContent h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

.pgContent h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.pgContent h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    color: var(--white-color);
}

.pgContent p {
    font-size: 17px;
    line-height: 165%;
    color: #bbb;
    letter-spacing: 0.03em;
    
    margin-bottom: 16px;
}

.pgHero {
    margin-bottom: 36px;
    border-radius: 20px;
    overflow: hidden;
    
}

.pgHero-img {
    width: 100%;
    height: auto;
    display: block;
}


/* ======= SERVICES TABLE ======= */

.svcTableWrap {
    margin: 32px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.svcTable {
    width: 100%;
    
    border-collapse: collapse;
    font-size: 16px;
}

.svcTable thead th {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--light-grey);
    padding: 0 0 14px;
    border-bottom: 2px solid #313131;
}

.svcTable tbody td {
    padding: 16px 20px 16px 0;
    border-bottom: 1px solid #1e1e1e;
    color: #ccc;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
}

.svcTable tbody td:last-child {
    font-weight: 600;
    color: var(--white-color);
    white-space: nowrap;
}

.svcTable tbody tr:last-child td {
    border-bottom: 2px solid #313131;
}

.svcNote {
    font-size: 14px;
    color: #707070;
    margin-top: 8px;
}


/* ======= JOB CARDS ======= */

.jobCard {
    margin: 36px 0;
    padding: 32px 36px;
    border-radius: 20px;
    background:
        linear-gradient(145.4deg, #505050 4.97%, rgba(0, 0, 0, 0) 41.71%),
        linear-gradient(137.44deg, rgba(0, 0, 0, 0) 41.56%, #505050 94.61%);
    position: relative;
    
}

.jobCard::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(0, 0, 0, .79);
    border-radius: 19px;
    z-index: 1;
    pointer-events: none;
}

.jobCard > * {
    position: relative;
    z-index: 2;
}

.jobCard h2 {
    margin-top: 0;
    font-size: 22px;
}

.jobCard h3 {
    margin-top: 20px;
}

.jobCard p {
    font-size: 15px;
    line-height: 160%;
    margin-bottom: 10px;
}


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

@media screen and (max-width: 1199px) {
    .pgContent {
        padding-top: 140px;
    }
    .pgContent h1 {
        font-size: 34px;
    }
}

@media screen and (max-width: 767px) {
    .pgContent {
        padding-top: 110px;
        padding-bottom: 50px;
    }
    .pgContent h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .pgContent h2 {
        font-size: 20px;
        margin-top: 30px;
    }
    .pgContent p {
        font-size: 15px;
    }
    .svcTable {
        font-size: 14px;
    }
    .svcTable tbody td {
        padding: 12px 12px 12px 0;
        font-size: 14px;
    }
    .svcTable thead th {
        font-size: 12px;
    }
    .jobCard {
        padding: 24px 22px;
        margin: 28px 0;
    }
    .jobCard h2 {
        font-size: 19px;
    }
    .jobCard p {
        font-size: 14px;
    }
}
