<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*

[Table of Contents]

1. GENERAL STYLES

2. HELPER CLASSES
    2.1. BACKGROUND
    2.2. SPACING

3. MODULES
    3.1. BANNER
    3.2. BROWSER UPGRADE
    3.3. COPYRIGHT
    3.4. FEATURE ITEM
    3.5. PREVIEW ITEM
    3.6. PRELOADER
    3.7. SECTION TITLE
    3.8. PROMO BAR

*/

/*------------------------------------*\
    1. GENERAL STYLES
\*------------------------------------*/
html,
body {
    height: 100%;
}

body {
    background-color: #fff;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    font-weight: 500;
    color: #303030;
}

a:hover,
a:focus {
    color: #ff895d;
    text-decoration: none;
    outline: none;
}

.form-control::-webkit-input-placeholder { color: #fff; }
.form-control::-moz-placeholder { color: #fff; }
.form-control::-ms-input-placeholder { color: #fff; }
.form-control.error { border-color: #ff895d; }

a, .btn-link {
    color: #222;
    -webkit-transition: color .25s ease-in-out, border-color .25s, background-color .25s ease-in-out, box-shadow .25s ease-in-out;
    transition: color .25s ease-in-out, border-color .25s, background-color .25s ease-in-out, box-shadow .25s ease-in-out;
}

.btn-link {
    color: inherit;
}

a:hover, .btn-link:hover,
a:focus, .btn-link:focus {
    color: #ff895d;
    text-decoration: none;
}

.btn {
    padding: 8.5px 30px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    box-shadow: none !important;
    outline: 0;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:hover,
.btn-primary:active:focus {
    background-color: #ff895d;
    border-color: #ff895d;
}

.btn-default {
    padding: 0 10px;
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active:hover,
.btn-default:active:focus {
    color: #ff895d;
    background-color: transparent;
    border-color: transparent;
}

/*------------------------------------*\
    2. HELPER CLASSES
\*------------------------------------*/
/** 2.1. BACKGROUND **/
.bg_lighter { background-color: #f9f9f9; }

/** 2.2. SPACING **/
.pt_40 { padding-top: 40px; }
.pt_50 { padding-top: 50px; }
.pt_60 { padding-top: 60px; }
.pt_80 { padding-top: 80px; }
.pt_100 { padding-top: 100px; }
.pt_120 { padding-top: 120px; }

.pb_40 { padding-bottom: 40px; }
.pb_50 { padding-bottom: 50px; }
.pb_60 { padding-bottom: 60px; }
.pb_80 { padding-bottom: 80px; }
.pb_100 { padding-bottom: 100px; }
.pb_120 { padding-bottom: 120px; }

/*------------------------------------*\
    3. MODULES
\*------------------------------------*/
.banner--section {
    position: relative;
    color: #fff;
    background-color: #ccc;
    background-image: url("../img/banner-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/** 3.1. BANNER **/
.banner--content-w {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner--content {
    padding: 100px 0;
}

.banner--logo {
    display: inline-block;
    margin-bottom: 28px;
}

.banner--title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
    line-height: 62px;
    font-weight: 600;
}

.banner--subtitle {
    margin-top: 21px;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    line-height: 34px;
}

.banner--action {
    margin-top: 17px;
    margin-left: -7.5px;
    margin-right: -7.5px;
    font-size: 0;
    line-height: 0;
}

.banner--action .btn {
    margin-top: 15px;
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.banner--action .btn i {
    margin-left: 8px;
}

/** 3.2. BROWSER UPGRADE **/
.browserupgrade {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    margin: 0;
    padding: 20px 0;
    color: #fff;
    background-color: #ff9800;
    text-align: center;
}

.browserupgrade a {
    color: #fff;
    text-decoration: underline;
}

/** 3.3. COPYRIGHT **/
.copyright {
    padding: 33px 0 32px;
    color: #f4fbff;
    background-color: #1b435d;
    text-align: center;
}
.copyright a {
    color: #ff895d;
    font-weight: 600;
}

/** 3.4. FEATURE ITEM **/
.feature--item {
    position: relative;
    min-height: 40px;
    padding-top: 2px;
    padding-left: 55px;
    color: #222;
    font-size: 18px;
    line-height: 32px;
    z-index: 0;
}

.feature--item:before {
    content: "\f00c";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    color: #fff;
    background-color: #ff895d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    font-family: "FontAwesome";
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    vertical-align: middle;
}

/** 3.5. PREVIEW ITEM **/
.preview--item {
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.preview--item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.preview--item:hover,
.preview--item:focus {
    color: #222;
}

.preview--item img {
    display: block;
    width: 100%;
}

.preview--item span {
    display: block;
    position: relative;
    padding: 9px 20px;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color .25s;
    overflow: hidden;
    z-index: 0;
}

.preview--item:hover span {
    color: #ff895d;
}

/** 3.6. PRELOADER **/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

/** 3.6. SECTION TITLE **/
.section--title {
    text-align: center;
}

.section--title .title {
    position: relative;
    margin-top: -5px;
    color: #1b435d;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 25px;
    z-index: 0;
}

.section--title svg {
    fill: none;
    stroke: #ff895d;
    stroke-width: 5px;
    width: 117px;
    height: 6px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 3px;
}

/** 3.8. PROMO BAR **/
#buypromo {
    color: #fff;
    background-color: #ff895d;
    border: 0 none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 15px 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 99;
}
#buypromo button.close {
    float: none;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -3px;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    font-weight: 100;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    outline: 0;
}
#buypromo h2 {
    display: inline-block;
    margin: 0;
    font-size: 18px;
    vertical-align: middle;
}
#buypromo a.btn {
    margin-left: 15px;
    padding: 7px 30px;
    color: #222;
    background-color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
</pre></body></html>