html,
body {
    background: #222 url('/img/shadow-header.png') no-repeat right top scroll;
    min-width: 360px
}
.container{max-width: 1070px;}
nav .navbar-collapse.show .nav-link,
nav .navbar-collapse.collapsing .nav-link {
    padding-left: 0.75rem;
    border-bottom: 1px rgba(255, 255, 255, 0.15) solid;
}

.hero {
    min-height: 540px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgb(0 0 0 / 84%), rgba(15, 29, 40, .68)), url(/img/hero-banner.png) center / cover no-repeat;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}








.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.about-box {
    background: #444539;
    border-radius: 14px;
    padding: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {font-size: 1.4rem;}




.service-card {
    height: 100%;
    border: 1px solid var(--pv-border);
    border-radius: 12px;
    background: #111;
    padding: 35px 28px;
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eaf5fb;
    color: black;
    font-size: 1.7rem;
    margin-bottom: 22px;
}