<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*----------------- 
Seagate Landing Page (stx-lp) 
------------------*/

.stx-lp {
    margin-top: -20px; /* to account for global nav */
}

.stx-lp__hero .btn,
.stx-lp__body .btn {
    margin-bottom: 20px;
}

.stx-lp__hero {
    background-color: #000;
    background-position: center;
    background-size: cover;
    /* background-image set in content */
    color: #fff;
    padding: 50px 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.stx-lp__body {
    background-color: #000;
    background-position: center;
    background-size: cover;
    /* background-image set in content */
    color: #fff;
    padding: 50px 0;
}

.stx-lp__link,
.stx-lp__link:hover {
    color: #fff;
    text-decoration: underline;
}

/* skinning standard bootstrap tabs for now */
.stx-lp .nav-tabs {
    border-bottom: none;
}

.stx-lp .nav-tabs &gt; li &gt; a {
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    margin-right: 0;
    text-decoration: none;
}

.stx-lp .nav-tabs &gt; .active &gt; a {
    color: #fff;
    background-color: #000;
    border: none;
}
/* end bootstrap tabs skin */

.stx-lp__h1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 1.125;
    margin-bottom: 10px;         
}

.stx-lp__h1-eyebrow {
    font-weight: 800;
    font-size: 12px;
    line-height: 1.25;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stx-lp__h1-subheading {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 20px;         
}

.stx-lp__h2 {
    font-weight: 800;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.stx-lp__h3 {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.stx-lp__h1,
.stx-lp__h2,
.stx-lp__h3 {
    color: #fff;
}

.stx-lp__image-featured {
    display: block;
    margin-bottom: 20px;
}

.stx-lp__text--small {
    font-size: 14px;
}

.stx-lp__text--mini {
    font-size: 12px;
    line-height: 1.5;
}

/* form formatting */
.stx-lp__form .text-input {
    padding: 0 .75rem;
    height: 2.5rem;
    border: 1px solid #c6c6c6;
    border-radius: 4px;
    width: 100%;
}

.stx-lp__form .checkbox {
    color: #fff;
}

/* -- make first option (empty value) placeholder text same color as input placeholder text -- */
.stx-lp__form select:invalid{
    color: #999;
}

/* modal */
.stx-lp__modal {
    background-color: #fff;
}

.stx-lp__modal-header {
    border-bottom: none;
}

@media(max-width: 767px) {
    .stx-lp__h1 {
        font-size: 30px;       
    }
    
    .stx-lp__h1-subheading {
        font-size: 20px;
    }
    
    .stx-lp__hero {
        justify-content: flex-end;
    }
    
    .stx-lp__hero .btn {
        margin-bottom: 0;
    }
}

/* light theme defaults */

.stx-lp--light .stx-lp__hero,
.stx-lp--light .stx-lp__body {
    background-color: #fff;
    color: #333;
}

.stx-lp--light .stx-lp__h1,
.stx-lp--light .stx-lp__h2,
.stx-lp--light .stx-lp__h3 {
    color: #333;
}

.stx-lp--light .stx-lp__form .checkbox {
    color: #333;
}

.stx-lp--light .stx-lp__link,
.stx-lp--light .stx-lp__link:hover {
    color: #333;
}

/* form validation error message */
h5.errorMessage {
    color: red;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}</pre></body></html>