@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/opensans-300-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/opensans-600-latin.woff2') format('woff2');
}

:root {
    --accent: #f92400;
    --content-width: 980px;
    --body-text: #2e3333;
}

html {
    font-family: sans-serif;
    font-size: 10px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: var(--body-text);
    word-wrap: break-word;
    line-height: 1.9;
    letter-spacing: 1px;
    background-color: #ffffff;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

article,
aside,
footer,
header,
main,
section {
    display: block;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    background-color: transparent;
    color: var(--accent);
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

a:hover,
a:focus {
    color: var(--accent);
    text-decoration: underline;
}

a:active,
a:hover {
    outline: 0;
}

b,
strong {
    font-weight: 700;
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #272727;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.1;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

p {
    margin: 0 0 20px;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: var(--content-width);
    }
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after {
    clear: both;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

#content > .container {
    padding: 0;
    background-color: #fff;
}

.custom-logo-link {
    display: block;
}

.custom-logo-link img {
    display: block;
    max-height: 90px;
    margin: 0;
}

.content-area {
    width: 811px;
    float: left;
    margin-left: -1px;
}

.fullwidth {
    width: 100% !important;
}

.site-header {
    padding: 15px 0;
    width: 100%;
    z-index: 999;
    position: relative;
    background-color: #202529;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .container {
    padding-left: 0;
    padding-right: 0;
}

.site-header-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    max-width: 980px;
}

.site-branding {
    line-height: 0;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    line-height: 0;
}

.product-link img {
    display: block;
    width: 180px;
    height: auto;
}

.site-header-actions {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
}

.company-info-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.company-info-link:hover,
.company-info-link:focus {
    color: #ffffff;
    border-color: var(--accent);
    background-color: var(--accent);
    text-decoration: none;
}

.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    cursor: pointer;
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav summary:hover,
.mobile-nav summary:focus {
    border-color: var(--accent);
    background-color: var(--accent);
    outline: 0;
}

.mobile-nav .sow-icon-ionicons {
    font-size: 24px;
}

.mobile-nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    padding: 8px 0;
    background-color: #202529;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    z-index: 1000;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.mobile-nav-menu img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: cover;
    object-position: left center;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:focus {
    color: #ffffff;
    background-color: var(--accent);
    text-decoration: none;
}

.header-image {
    position: relative;
    text-align: center;
    max-width: var(--content-width);
    margin: 0 auto;
}

.header-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(23, 31, 37, 0.58);
}

.header-info {
    width: 100%;
    position: absolute;
    top: 22%;
    text-align: center;
    z-index: 11;
}

.header-text {
    margin: 0 auto;
    color: #fff;
    font-size: 58px;
    display: block;
    max-width: 900px;
    text-transform: none;
    letter-spacing: 1px;
    line-height: 1.15;
    font-weight: 600;
}

.header-subtext {
    color: #fff;
    display: block;
    max-width: 900px;
    margin: 0 auto 24px;
    padding: 0 15px 20px;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 400;
}

.small-header {
    display: none;
}

.large-header {
    display: block;
}

.large-header,
.small-header {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
}

.site-footer-compact {
    background-color: #202529;
    clear: both;
}

.site-footer-compact,
.site-footer-compact a {
    color: #ffffff;
}

.site-footer-compact a:hover {
    text-decoration: none;
    color: #fcd088;
}

.site-footer-compact {
    padding: 22px 0;
}

.site-footer-compact .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 18px;
}

.footer-links {
    display: contents;
    font-size: 14px;
    line-height: 1.5;
}

.footer-email {
    grid-column: 2;
    justify-self: center;
    font-weight: 600;
}

.site-footer-compact .footer_logo {
    grid-column: 1;
    justify-self: start;
}

.footer-copyright {
    grid-column: 3;
    justify-self: end;
}

body {
    background-color: #ffffff;
}

.panel-grid {
    zoom: 1;
}

.panel-grid:before {
    content: '';
    display: block;
}

.panel-grid:after {
    content: '';
    display: table;
    clear: both;
}

.panel-grid-cell {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 1em;
}

.panel-grid-cell .so-panel {
    zoom: 1;
}

.panel-grid-cell .so-panel:before {
    content: '';
    display: block;
}

.panel-grid-cell .so-panel:after {
    content: '';
    display: table;
    clear: both;
}

.panel-grid-cell .panel-last-child {
    margin-bottom: 0;
}

.panel-grid-cell .widget-title {
    margin-top: 0;
}

.panel-row-style {
    zoom: 1;
}

.panel-row-style:before {
    content: '';
    display: block;
}

.panel-row-style:after {
    content: '';
    display: table;
    clear: both;
}

@font-face {
    font-family: "sow-ionicons";
    src: url("fonts/ionicons.woff?v=2.0.0") format("woff"),
        url("fonts/ionicons.ttf?v=2.0.0") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.sow-icon-ionicons {
    display: inline-block;
    font-family: "sow-ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sow-icon-ionicons[data-sow-icon]:before {
    content: attr(data-sow-icon);
}

@font-face {
    font-family: 'feature-background';
    src: url('fonts/feature-background.woff') format('woff'),
        url('fonts/feature-background.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.sow-features-list {
    margin: 0 -25px;
    zoom: 1;
}

.sow-features-list:before {
    content: '';
    display: block;
}

.sow-features-list:after {
    content: '';
    display: table;
    clear: both;
}

.sow-features-list .sow-features-feature {
    text-align: center;
    float: left;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 25px;
    margin-bottom: 40px;
}

.sow-features-list .sow-features-feature .sow-icon-container {
    text-decoration: none;
}

.sow-features-list .sow-features-feature .sow-icon-container [class^="sow-icon-"],
.sow-features-list .sow-features-feature .sow-icon-container .sow-icon-image {
    text-decoration: none;
    display: block;
    color: #FFFFFF;
    width: 1em;
    height: 1em;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -0.5em;
    margin-left: -0.5em;
    background-size: contain;
}

.sow-features-list .sow-features-feature h5 {
    margin: 1em 0;
}

.sow-features-list .sow-features-feature h5 a {
    color: inherit;
    text-decoration: none;
}

.sow-features-list .sow-features-feature h5 a:hover {
    text-decoration: underline;
}

.sow-features-list .sow-features-feature p:last-child {
    margin-bottom: 0;
}

.sow-features-list .sow-features-feature.sow-features-feature-last-row {
    margin-bottom: 0;
}

.sow-features-list .sow-icon-container {
    font-family: 'feature-background';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-size: 90px;
    position: relative;
    color: #404040;
}

.sow-features-list .sow-icon-container.sow-container-rounded-square:before {
    content: "\e604";
}

.sow-features-list .sow-features-feature .textwidget > h5 {
    font-size: 28px;
}

.section-block {
    padding: 58px 0;
}

.intro-copy {
    max-width: none;
}

.intro-copy h2 {
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 22px;
    letter-spacing: 1px;
}

.intro-copy p {
    font-size: 20px;
    font-weight: 300;
}

.visual-break {
    background: #ffffff url("../img/stock-photo-bokeh-electronic-circuit-close-up-computer-436386421.jpg") no-repeat center center;
}

.visual-break-spacer {
    height: 500px;
}

.services-grid .sow-features-feature {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 36px;
    text-align: left;
    float: none;
    padding: 0;
    margin-bottom: 34px;
}

.services-grid {
    margin-left: 0;
    margin-right: 0;
}

.services-grid .sow-features-feature.sow-features-feature-last-row {
    margin-bottom: 34px;
}

.services-grid .sow-features-feature:last-child {
    margin-bottom: 0;
}

.services-grid .sow-icon-container {
    -webkit-flex: 0 0 74px;
    -ms-flex: 0 0 74px;
    flex: 0 0 74px;
    font-size: 74px;
    color: var(--accent);
    width: 74px;
    height: 74px;
    margin-top: 5px;
}

.services-grid .sow-icon-container [class^="sow-icon-"],
.services-grid .sow-icon-container .sow-icon-image {
    font-size: 44px;
}

.services-grid .textwidget {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.services-grid .sow-features-feature .textwidget > h5 {
    margin: 0 0 10px;
    font-size: 26px;
}

.services-grid .sow-features-feature .textwidget > h5 br {
    display: none;
}

.services-grid .sow-features-feature p {
    max-width: 820px;
    font-size: 19px;
    line-height: 1.75;
}

.footer_logo {
    display: block;
}

#pl-25 .panel-grid-cell .so-panel,
#pl-25 .panel-grid {
    margin-bottom: 30px;
}

#pg-25-0 .panel-grid-cell,
#pg-25-1 .panel-grid-cell,
#pg-25-2 .panel-grid-cell {
    float: none;
}

#pl-25 .textwidget > :last-child {
    margin-bottom: 0;
}

#pl-25 .panel-grid {
    margin-left: 0;
    margin-right: 0;
}

#pl-25 .panel-grid .panel-grid-cell {
    padding-left: 0;
    padding-right: 0;
}

@media only screen and (max-width: 1199px) {
    .content-area {
        width: 610px;
        float: left;
    }

    .header-text {
        font-size: 42px;
    }

    .header-info {
        top: 18%;
    }

    .header-subtext {
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-size: 18px;
    }

}

@media only screen and (max-width: 1024px) {
    .large-header {
        display: none;
    }

    .small-header {
        display: block;
    }

    .site-branding {
        margin-bottom: 0;
    }

    .header-info {
        top: 16%;
    }

    .header-text {
        font-size: 34px;
        max-width: 720px;
    }

    .header-subtext {
        font-size: 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 780px) {
    .container,
    .site-header .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #content > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-image {
        width: calc(100% - 40px);
    }

    .services-grid .sow-features-feature {
        gap: 28px;
        margin-bottom: 30px;
    }

    #pl-25 .panel-grid .panel-grid-cell {
        float: none;
        width: auto;
    }

    .intro-copy h2 {
        font-size: 28px;
    }

    .site-footer-compact .container {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .footer-email,
    .footer-copyright {
        grid-column: auto;
        justify-self: auto;
    }
}

@media (max-width: 640px) {
    .site-header-layout {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .product-link,
    .site-header-actions > .company-info-link {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
}

@media (max-width: 520px) {
    .header-info {
        top: 12%;
    }

    .header-text {
        font-size: 28px;
    }

    .site-header-layout {
        gap: 12px;
    }

    .custom-logo-link img {
        width: 170px;
    }

    .company-info-link {
        min-height: 34px;
        padding: 8px 11px;
        font-size: 11px;
    }

    .services-grid .sow-features-feature {
        display: grid;
        grid-template-columns: 56px 1fr;
        column-gap: 16px;
        row-gap: 8px;
        align-items: center;
        text-align: left;
    }

    .services-grid .sow-icon-container {
        display: block;
        width: 56px;
        height: 56px;
        margin: 0;
        font-size: 56px;
    }

    .services-grid .sow-icon-container [class^="sow-icon-"],
    .services-grid .sow-icon-container .sow-icon-image {
        font-size: 32px;
    }

    .services-grid .sow-features-feature .textwidget > h5 {
        align-self: center;
        font-size: 24px;
    }

    .services-grid .textwidget {
        display: contents;
    }

    .services-grid .sow-features-feature .textwidget > p {
        grid-column: 1 / -1;
    }

    .services-grid .sow-features-feature p {
        font-size: 18px;
        line-height: 1.7;
    }

    .sow-features-list.sow-features-responsive .sow-features-feature {
        width: 100% !important;
        float: none;
        margin-bottom: 40px;
    }

    .sow-features-list.sow-features-responsive .sow-features-feature:last-child {
        margin-bottom: 0;
    }

    .services-grid.sow-features-responsive .sow-features-feature {
        margin-bottom: 30px;
    }

    .services-grid.sow-features-responsive .sow-features-feature:last-child {
        margin-bottom: 0;
    }
}
