.nsd-service {
    position: relative;
    padding: 3rem !important;
    flex: calc(50% - 10px);
    color: var(--service-fg);
    background-color: var(--service-bg);
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nsd-service h1,
.nsd-service h2,
.nsd-service h3,
.nsd-service h4,
.nsd-service h5,
.nsd-service h6 {
  color: inherit;
}

.nsd-service h3 {
    font-size: 1.8rem;
}

.nsd-service h3 {
    margin: 0;
}

.nsd-service-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.nsd-service-btn-container {
    text-align: center;
    padding-top: 4rem;
}

.nsd-service-btn,
.nsd-service-btn:visited 
{
    color: inherit;
    background-color: inherit;
    border-color: inherit;
}

.nsd-service-btn:hover,
.nsd-service-btn:focus-visible,
.nsd-service-btn:focus,
.nsd-service-btn:active 
{
    background-color: var(--service-fg);
    color: var(--service-bg);
    border: 1px solid var(--service-fg);
}

/* Responsive Mobile Landscape */

@media screen and (max-width: 767px) and (max-height: 400px) {
    .nsd-hero {
        min-height: 80vh;
    }

    .nsd-service-container {
        flex-direction: column;
    }
}