/**
 * Basic styling
 */
html {
    background-color: #476ca1;
}

body {
    font-size: 1.6em;
}

a,
a:active,
a:hover,
a:visited {
    color: #476ca1;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}

a.no-feedback,
a.no-feedback:active,
a.no-feedback:hover,
a.no-feedback:visited {
    text-decoration: none;
    color: #222;
}

/**
 * Promo area
 */
.ba-promo {
    background-color: #476ca1;
    color: #fff;
    padding: 60px 0px 70px 0px;
}
.ba-promo-text {
    padding-top: 60px;
}
.ba-promo .button.button-primary.button.ba-button {
    background-color: #476ca1;
    border-color: #fff;
    color: #fff;
}
.ba-promo .button.button-primary.button.ba-button:hover {
    background-color: #fff;
    border-color: #fff;
    color: #476ca1;
}

/**
 * Stats banner
 */
.ba-stats-banner {
    background-color: #f5f5f5;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 40px 0px;
}
.ba-stat-number {
    color: #476ca1;
    font-size: 2.2em;
    font-weight: 600;
}
.ba-stat-label {
    color: #666;
}

/**
 * Data tables
 */
table {
    width: 100%;
    margin: 20px 0px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}
table th,
table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e6e6e6;
}
table th:first-child,
table td:first-child {
    padding-left: 20px;
}
table th:last-child,
table td:last-child {
    padding-right: 20px;
}
table tbody tr:last-child th,
table tbody tr:last-child td {
    border-bottom: none;
}
table thead th {
    background-color: #f7f7f7;
    font-weight: 600;
    color: #333;
}
table tbody td {
    font-family: "SFMono-Regular", Consolas, Menlo, monospace;
    color: #333;
}

/**
 * Call-to-action banner
 */
.ba-cta-banner {
    background-color: #f5f5f5;
    color: #222;
    padding: 40px 0px;
}
.ba-cta-banner .row {
    display: flex;
    align-items: center;
}
.ba-cta-banner h5 {
    margin: 0;
    color: #222;
}
.ba-cta-banner p {
    margin: 0;
}
.ba-cta-banner .button.button-primary.button.ba-button {
    background-color: #476ca1;
    border-color: #fff;
    color: #fff;
}
.ba-cta-banner .button.button-primary.button.ba-button:hover {
    background-color: #fff;
    border-color: #fff;
    color: #476ca1;
}

/**
 * Quote banner
 */
.ba-quote-banner {
    background-color: #f5f5f5;
    color: #222;
    padding: 80px 0px;
    text-align: center;
}
.ba-quote-title {
    font-size: 2.8rem;
    line-height: 1.4;
    margin: 0 0 24px 0;
    color: #476ca1;
    font-weight: 600;
}
.ba-quote-highlight {
    color: #f2c94c;
}
.ba-quote-subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: #666;
    font-size: 1.6rem;
}
@media (max-width: 550px) {
    .ba-quote-title {
        font-size: 1.9rem;
    }
}

/**
 * Screen furniture
 */
.ba-page-header {
    padding: 20px 0px;
}
.ba-page-header .columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ba-page-header img {
    display: block;
}
.ba-page-header .button.ba-button {
    background-color: #fff;
    border-color: #476ca1;
    color: #476ca1;
    margin: 0;
}
.ba-page-header .button.ba-button:hover {
    background-color: #476ca1;
    border-color: #476ca1;
    color: #fff;
}
.ba-page-header,
.ba-page-content {
    background-color: #fff;
}
.ba-page-content {
    padding: 40px 0px;
}
.ba-page-footer {
    background-color: #476ca1;
    color: #fff;
    font-size: smaller;
    margin-top: 40px;
    padding: 40px 0px;
}
.ba-page-footer a,
.ba-page-footer a:active,
.ba-page-footer a:hover,
.ba-page-footer a:visited {
    color: #fff;
    font-weight: 200;
    text-decoration: none;
}

/**
 * Sections, dividers, etc
 */
.ba-section {
    padding-top: 20px;
}
.ba-spacer {
    margin-top: 20px;
}
.ba-divider {
    border-color: transparent;
    padding: 10px 0px;
}
.ba-center-text {
    text-align: center;
}
.ba-features-section {
    padding-top: 60px;
}
.ba-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.ba-section-header h4 {
    margin: 0;
    white-space: nowrap;
}
.ba-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e6e6e6;
    margin-top: 40px;
    margin-bottom: 40px;
}
.ba-feature-card {
    display: block;
    padding: 24px;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    transition: background-color 0.15s ease;
}
.ba-feature-card:hover {
    background-color: #f7f7f7;
}
.ba-feature-card:nth-child(3n) {
    border-right: none;
}
.ba-feature-card:nth-child(n + 4) {
    border-bottom: none;
}
.ba-feature-card h5 {
    margin: 0 0 8px 0;
}
.ba-feature-card p {
    color: #666;
    margin: 0;
}
.ba-feature-icon {
    display: block;
    color: #476ca1;
    padding: 0;
    margin-bottom: 16px;
    width: 28px;
    height: 28px;
}
.ba-feature-card:hover .ba-feature-icon {
    color: #404040;
}
@media (max-width: 550px) {
    .ba-feature-grid {
        grid-template-columns: 1fr;
    }
    .ba-feature-card {
        border-right: none;
    }
    .ba-feature-card:nth-child(n) {
        border-bottom: 1px solid #e6e6e6;
    }
    .ba-feature-card:last-child {
        border-bottom: none;
    }
}
.ba-product-image {
    width: 350px;
}
.ba-video-list {
    border-top: 1px solid #e6e6e6;
    margin-top: 20px;
    text-align: left;
}
.ba-video-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0px;
    border-bottom: 1px solid #e6e6e6;
    color: #222;
    text-decoration: none;
    transition: background-color 0.15s ease;
}
.ba-video-item:hover {
    background-color: #f7f7f7;
    text-decoration: none;
    color: #222;
}
.ba-video-thumb {
    position: relative;
    flex: 0 0 120px;
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}
.ba-video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f2c94c;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ba-video-play::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 3px;
    border-style: solid;
    border-width: 7px 0 7px 11px;
    border-color: transparent transparent transparent #fff;
}
.ba-video-info {
    flex: 1 1 auto;
}
.ba-video-title {
    font-weight: 600;
}
.ba-video-tag {
    margin-left: 10px;
    font-size: 0.75em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #888;
}
.ba-fineprint {
    font-size: smaller;
    font-style: oblique;
}
.ba-customer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 48px;
    margin-top: 20px;
}
.ba-customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}
.ba-customer-logo img {
    max-height: 100%;
    max-width: 160px;
    width: auto;
    height: auto;
}
.ba-thumbnail {
    max-width: 100%;
    height: auto;
    border: 1px solid #ababab;
    border-radius: 2px;
    padding: 4px;
    box-sizing: border-box;
}
.ba-thumbnail:hover {
    border-color: #787878;
}
.button.button-primary.ba-button {
    background-color: #476ca1;
    border-color: #476ca1;
}
.button.button-primary.ba-button:hover {
    background-color: #fff;
    border-color: #375cb1;
    color: #375cb1;
}

.pull-right {
    float: right;
}
