@charset "UTF-8";
.animate {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes width {
    0% {
        width: 0%
    }
    100% {
        width: 100%
    }
}

@keyframes width {
    0% {
        width: 0%
    }
    100% {
        width: 100%
    }
}

@-webkit-keyframes popIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes closeDropdown {
    0% {
        display: block;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    95% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    95%,
    99% {
        display: block;
        opacity: 0
    }
    100% {
        display: none;
        opacity: 0
    }
}

@keyframes closeDropdown {
    0% {
        display: block;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    95% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    95%,
    99% {
        display: block;
        opacity: 0
    }
    100% {
        display: none;
        opacity: 0
    }
}

@-webkit-keyframes openDropdown {
    0% {
        display: none;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    0%,
    1% {
        opacity: 0
    }
    1%,
    100% {
        display: block
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes openDropdown {
    0% {
        display: none;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    0%,
    1% {
        opacity: 0
    }
    1%,
    100% {
        display: block
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

*,
::after,
::before {
    box-sizing: border-box
}

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: transparent
}

@media (max-width:990px) {
    html {
        -webkit-text-size-adjust: none
    }
}

@media (max-width:740px) {
    html {
        -webkit-text-size-adjust: none
    }
}

body {
    margin: 0
}

@media (max-width:990px) {
    body {
        margin-bottom: 1px
    }
}

@media (max-width:740px) {
    body {
        padding-bottom: 1px;
        margin-bottom: 1px
    }
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block
}

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden] {
    display: none
}

abbr[title] {
    border-bottom: 1px dotted
}

dfn {
    font-style: italic
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

mark {
    background: #ff0;
    color: #000
}

pre {
    margin: 1em 0;
    white-space: pre-wrap;
    word-wrap: break-word
}

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em
}

q {
    quotes: none
}

q:before,
q:after {
    content: '';
    content: none
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

dl,
menu {
    margin: 1em 0
}

dd {
    margin: 0 0 0 40px
}

menu {
    padding: 0 0 0 40px
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    height: auto;
    vertical-align: middle
}

iframe {
    max-width: 100%
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 0
}

::-moz-selection {
    background: #3A3E3E;
    color: #fff;
    text-shadow: none
}

::selection {
    background: #3A3E3E;
    color: #fff;
    text-shadow: none
}

.full-width {
    position: relative;
    width: 100%
}

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

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

.container:after {
    clear: both
}

.row {
    margin-right: -15px;
    margin-left: -15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

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

.row:after {
    clear: both
}

[class*="span"] {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left
}

.lt-ie9 [class*="span"] {
    box-sizing: border-box
}

.span1 {
    width: 8.333333333333332%
}

.span2 {
    width: 16.666666666666664%
}

.span3 {
    width: 25%
}

.span4 {
    width: 33.33333333333333%
}

.span5 {
    width: 41.66666666666667%
}

.span6 {
    width: 50%
}

.span7 {
    width: 58.333333333333336%
}

.span8 {
    width: 66.66666666666666%
}

.span9 {
    width: 75%
}

.span10 {
    width: 83.33333333333334%
}

.span11 {
    width: 91.66666666666666%
}

.span12 {
    width: 100%
}

.offset1 {
    margin-left: 8.333333333333332%
}

.offset2 {
    margin-left: 16.666666666666664%
}

.offset3 {
    margin-left: 25%
}

.offset4 {
    margin-left: 33.33333333333333%
}

.offset5 {
    margin-left: 41.66666666666667%
}

.offset6 {
    margin-left: 50%
}

.offset7 {
    margin-left: 58.333333333333336%
}

.offset8 {
    margin-left: 66.66666666666666%
}

.offset9 {
    margin-left: 75%
}

.offset10 {
    margin-left: 83.33333333333334%
}

.offset11 {
    margin-left: 91.66666666666666%
}

.pad-top-10 {
    padding-top: 10px
}

.pad-top-20 {
    padding-top: 20px
}

.pad-top-40 {
    padding-top: 40px
}

.mb3 {
    text-align: center;
    color: #fff
}

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

@media (max-width:1190px) {
    .container {
        width: 970px;
        padding-right: 10px;
        padding-left: 10px
    }
    .row {
        margin-right: -10px;
        margin-left: -10px
    }
    [class*="span"] {
        padding-right: 10px;
        padding-left: 10px
    }
    .span-l-1 {
        width: 8.333333333333332%
    }
    .span-l-2 {
        width: 16.666666666666664%
    }
    .span-l-3 {
        width: 25%
    }
    .span-l-4 {
        width: 33.33333333333333%
    }
    .span-l-5 {
        width: 41.66666666666667%
    }
    .span-l-6 {
        width: 50%
    }
    .span-l-7 {
        width: 58.333333333333336%
    }
    .span-l-8 {
        width: 66.66666666666666%
    }
    .span-l-9 {
        width: 75%
    }
    .span-l-10 {
        width: 83.33333333333334%
    }
    .span-l-11 {
        width: 91.66666666666666%
    }
    .span-l-12 {
        width: 100%
    }
    .offset-l-0 {
        margin-left: 0
    }
    .offset-l-1 {
        margin-left: 8.333333333333332%
    }
    .offset-l-2 {
        margin-left: 16.666666666666664%
    }
    .offset-l-3 {
        margin-left: 25%
    }
    .offset-l-4 {
        margin-left: 33.33333333333333%
    }
    .offset-l-5 {
        margin-left: 41.66666666666667%
    }
    .offset-l-6 {
        margin-left: 50%
    }
    .offset-l-7 {
        margin-left: 58.333333333333336%
    }
    .offset-l-8 {
        margin-left: 66.66666666666666%
    }
    .offset-l-9 {
        margin-left: 75%
    }
    .offset-l-10 {
        margin-left: 83.33333333333334%
    }
    .offset-l-11 {
        margin-left: 91.66666666666666%
    }
}

@media (max-width:990px) {
    .container {
        width: 720px;
        padding-right: 10px;
        padding-left: 10px
    }
    .row {
        margin-right: -10px;
        margin-left: -10px
    }
    [class*="span"] {
        padding-right: 10px;
        padding-left: 10px
    }
    .span-m-1 {
        width: 8.333333333333332%
    }
    .span-m-2 {
        width: 16.666666666666664%
    }
    .span-m-3 {
        width: 25%
    }
    .span-m-4 {
        width: 33.33333333333333%
    }
    .span-m-5 {
        width: 41.66666666666667%
    }
    .span-m-6 {
        width: 50%
    }
    .span-m-7 {
        width: 58.333333333333336%
    }
    .span-m-8 {
        width: 66.66666666666666%
    }
    .span-m-9 {
        width: 75%
    }
    .span-m-10 {
        width: 83.33333333333334%
    }
    .span-m-11 {
        width: 91.66666666666666%
    }
    .span-m-12 {
        width: 100%
    }
    .offset-m-0 {
        margin-left: 0
    }
    .offset-m-1 {
        margin-left: 8.333333333333332%
    }
    .offset-m-2 {
        margin-left: 16.666666666666664%
    }
    .offset-m-3 {
        margin-left: 25%
    }
    .offset-m-4 {
        margin-left: 33.33333333333333%
    }
    .offset-m-5 {
        margin-left: 41.66666666666667%
    }
    .offset-m-6 {
        margin-left: 50%
    }
    .offset-m-7 {
        margin-left: 58.333333333333336%
    }
    .offset-m-8 {
        margin-left: 66.66666666666666%
    }
    .offset-m-9 {
        margin-left: 75%
    }
    .offset-m-10 {
        margin-left: 83.33333333333334%
    }
    .offset-m-11 {
        margin-left: 91.66666666666666%
    }
}

@media (max-width:740px) {
    .container {
        width: auto;
        padding-right: 10px;
        padding-left: 10px
    }
    .row {
        margin-right: -10px;
        margin-left: -10px;
        display: block
    }
    [class*="offset"] {
        margin-left: 0
    }
    [class*="span"] {
        display: block;
        float: none;
        width: auto;
        padding-right: 20px;
        padding-bottom: 20px;
        padding-left: 20px
    }
    [class*="span-s"] {
        float: left
    }
    .span-s-1 {
        width: 8.333333333333332%
    }
    .span-s-2 {
        width: 16.666666666666664%
    }
    .span-s-3 {
        width: 25%
    }
    .span-s-4 {
        width: 33.33333333333333%
    }
    .span-s-5 {
        width: 41.66666666666667%
    }
    .span-s-6 {
        width: 50%
    }
    .span-s-7 {
        width: 58.333333333333336%
    }
    .span-s-8 {
        width: 66.66666666666666%
    }
    .span-s-9 {
        width: 75%
    }
    .span-s-10 {
        width: 83.33333333333334%
    }
    .span-s-11 {
        width: 91.66666666666666%
    }
    .span-s-12 {
        width: 100%
    }
    .offset-s-0 {
        margin-left: 0
    }
    .offset-s-1 {
        margin-left: 8.333333333333332%
    }
    .offset-s-2 {
        margin-left: 16.666666666666664%
    }
    .offset-s-3 {
        margin-left: 25%
    }
    .offset-s-4 {
        margin-left: 33.33333333333333%
    }
    .offset-s-5 {
        margin-left: 41.66666666666667%
    }
    .offset-s-6 {
        margin-left: 50%
    }
    .offset-s-7 {
        margin-left: 58.333333333333336%
    }
    .offset-s-8 {
        margin-left: 66.66666666666666%
    }
    .offset-s-9 {
        margin-left: 75%
    }
    .offset-s-10 {
        margin-left: 83.33333333333334%
    }
    .offset-s-11 {
        margin-left: 91.66666666666666%
    }
}

html,
body,
button {
    -webkit-font-smoothing: antialiased
}

body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #3A3E3E;
    line-height: 1.5;
    background: #3A3E3E
}

@media (max-width:990px) {
    body {
        font-size: 14.4px
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0
}

p {
    padding: 0 0 15px
}

h1,
h2,
h3 {
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 300
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #3A3E3E;
    line-height: 1.2;
    text-rendering: optimizeLegibility
}

.h1,
.h2,
.h3 {
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 300
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #3A3E3E;
    line-height: 1.2;
    text-rendering: optimizeLegibility
}

.h1,
h1 {
    font-size: 44px
}

@media (max-width:990px) {
    .h1,
    h1 {
        font-size: 37px
    }
}

@media (max-width:740px) {
    .h1,
    h1 {
        font-size: 32px
    }
}

.h2,
h2 {
    font-size: 30px
}

@media (max-width:990px) {
    .h2,
    h2 {
        font-size: 26px
    }
}

.h3,
h3 {
    font-size: 26px
}

@media (max-width:990px) {
    .h3,
    h3 {
        font-size: 22px
    }
}

.h4,
h4 {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px
}

@media (max-width:990px) {
    .h4,
    h4 {
        font-size: 16px
    }
}

h5,
.h5 {
    font-size: 16px
}

h5,
.h5,
h6,
.h6 {
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 700
}

h6,
.h6 {
    font-size: 12px
}

.small,
small {
    font-size: 14px
}

.strong,
strong {
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700
}

.strong,
strong,
i {
    font-style: normal
}

blockquote {
    text-align: left;
    position: relative;
    margin: 0;
    padding: 0 0 0 40px;
    font-size: 20px
}

blockquote:before {
    content: "“";
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #767F7F;
    font-size: 68px;
    position: absolute;
    top: -10px;
    left: 0;
    line-height: 1
}

@media (max-width:1190px) {
    blockquote {
        font-size: 16px
    }
}

@media (max-width:990px) {
    blockquote {
        padding: 0 0 0 20px
    }
    blockquote:before {
        font-size: 48px;
        top: -5px;
        left: -9px
    }
}

.quote {
    padding: 0
}

.cite {
    font-size: 14px;
    padding: 20px 0 0
}

form {
    margin: 0
}

form:-moz-placeholder,
form::-moz-placeholder {
    color: #ccc
}

form:-ms-input-placeholder {
    color: #ccc
}

form::-webkit-input-placeholder {
    color: #ccc
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
    *margin-left: -7px
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle
}

button,
input {
    line-height: normal
}

button,
select {
    text-transform: none
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    *overflow: visible
}

button[disabled],
html input[disabled] {
    cursor: default
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    *height: 13px;
    *width: 13px
}

input[type="search"] {
    appearance: none;
    border-radius: 0
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

@media (max-width:740px) {
    .table-responsive {
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        border: 1px solid #fff;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch
    }
    .table-responsive>.table {
        margin-bottom: 0
    }
    .table-responsive>.table>thead>tr th,
    .table-responsive>.table>thead>tr td,
    .table-responsive>.table>tbody>tr th,
    .table-responsive>.table>tbody>tr td,
    .table-responsive>.table>tfoot>tr th,
    .table-responsive>.table>tfoot>tr td {
        white-space: nowrap
    }
}

.compare tr {
    border-bottom: 1px solid #8fb5b8
}

.compare tr:first-child {
    border-top: 1px solid #8fb5b8
}

.compare tr:last-child {
    border-bottom: 0
}

.compare tr:last-child td {
    min-width: 200px
}

.compare tr:last-child td:nth-child(2) {
    background-color: #fff
}

.compare tr:last-child td:nth-child(2) span {
    text-align: center;
    font-size: 14px
}

.compare tr:last-child span {
    display: block
}

.compare th,
.compare td {
    white-space: nowrap;
    padding: 17px
}

.compare th:nth-child(2),
.compare td:nth-child(2) {
    padding: 17px 0;
    background-color: #f6f7f7
}

.compare .feature {
    background-color: #76B83F;
    width: 25px;
    color: #fff;
    font-size: 11px;
    left: -40px;
    padding: 3px 6px;
    margin-left: -53px;
    margin-right: 18px
}

.compare .btn {
    display: block
}

.compare .ut-dl-btn {
    color: #3A3E3E
}

.table-compare {
    width: 100%;
    border-top: 1px solid #fff
}

.table-compare.pro-table tr:last-of-type {
    border-bottom: 1px solid #8fb5b8
}

.table-compare.pro-table tr:last-of-type td {
    padding: 15px
}

.table-compare.pro-table th:first-of-type {
    text-align: left;
    padding-left: 15px
}

.table-compare.pro-table td {
    width: 10px
}

.table-compare.pro-table td:first-of-type {
    padding-right: 45px
}

.table-compare tr {
    border-bottom: 1px solid #8fb5b8
}

.table-compare tr:last-of-type {
    border: none
}

.table-compare tr:last-of-type td {
    padding: 25px 15px 0
}

.table-compare th {
    padding: 25px 0;
    font-size: 20px;
    font-weight: 400
}

.table-compare td {
    padding: 15px
}

.table-compare td:first-of-type {
    text-align: left
}

@media (max-width:990px) {
    .table-compare .btn {
        min-width: 190px;
        padding-right: 0;
        padding-left: 0
    }
}

@media (max-width:740px) {
    .table-compare {
        min-width: 650px;
        border-top: none
    }
}

img,
video,
object {
    max-width: 100%
}

.lt-ie9 iframe {
    position: relative;
    z-index: 0
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0
}

ul.circle {
    list-style: circle;
    padding-top: 10px;
    margin-left: 20px
}

ul.circle span {
    font-weight: 700
}

ol {
    counter-reset: list
}

ol>li {
    position: relative;
    padding-left: 32px
}

ol>li:before {
    counter-increment: list;
    content: "0" counter(list);
    color: inherit;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    left: 0
}

ol.decimal>li {
    padding-bottom: 10px
}

ol.decimal>li:before {
    content: counter(list)"."
}

.list-inline li {
    display: inline-block
}

@media (max-width:740px) {
    .list-inline li {
        display: block
    }
}

.list-spacer-horz li {
    margin: 0 10px
}

@media (max-width:740px) {
    .list-spacer-horz li {
        margin: 0 0 15px
    }
    .list-spacer-horz li:last-of-type {
        margin: 0
    }
}

.list-spacer-vert li {
    margin: 0 0 10px
}

.list-spacer-vert li:last-of-type {
    margin: 0
}

.list-icon li {
    margin: 0 0 60px;
    display: block
}

.list-icon li:before,
.list-icon li:after {
    content: " ";
    display: table
}

.list-icon li:after {
    clear: both
}

.list-icon li:last-of-type {
    margin: 0
}

.list-icon .icon-wrap {
    width: 20%;
    float: left;
    text-align: center
}

.list-icon .content-wrap {
    width: 80%;
    padding-left: 30px;
    float: right
}

.list-icon h4 {
    padding: 0 0 15px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 400
}

@media (max-width:740px) {
    .list-icon li {
        margin: 0 0 20px
    }
    .list-icon li:last-of-type {
        margin: 0
    }
}

.lt-ie9 .list-icon .content-wrap {
    width: 74%
}

.list-get-started {
    padding: 0;
    position: relative
}

.list-get-started:before,
.list-get-started:after {
    content: " ";
    display: table
}

.list-get-started:after {
    clear: both
}

.list-get-started li {
    display: block;
    float: left;
    text-align: center;
    width: 25%
}

.list-get-started i {
    background-color: #fff
}

.list-get-started p {
    padding: 8px 0 0
}

.list-get-started.three-col li {
    width: 33.33333%
}

@media (max-width:740px) {
    .list-get-started li {
        width: 50%;
        padding: 0 0 20px
    }
}

.list-checkmark {
    color: #737373;
    text-align: left;
    padding: 30px 0 10px;
    display: block;
    width: 100%;
    min-height: 164px
}

.list-checkmark:before,
.list-checkmark:after {
    content: " ";
    display: table
}

.list-checkmark:after {
    clear: both
}

.list-checkmark li {
    display: inline-block;
    width: 48%;
    padding: 0 0 20px 55px;
    position: relative;
    font-size: 14px;
    vertical-align: top
}

.list-checkmark li:nth-of-type(even) {
    padding-right: 10px
}

.list-checkmark li:before {
    content: " ";
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 10px;
    width: 14px;
    height: 10px;
    position: absolute;
    top: 5px;
    left: 30px
}

.list-checkmark.list-checkmark-gray li:before {
    background-image: url(/img/icons/checkmark-gray.svg)
}

.list-checkmark.list-checkmark-green li:before {
    background-image: url(/img/icons/checkmark-green.svg)
}

.list-checkmark.full-width {
    padding: 0 0 0 20px
}

.list-checkmark.full-width li {
    display: block;
    width: 100%;
    padding: 0 0 10px 25px
}

.list-checkmark.full-width li:before {
    left: 0
}

@media (max-width:1190px) {
    .list-checkmark {
        min-height: 206px
    }
}

@media (max-width:990px) {
    .list-checkmark {
        padding: 20px 0 0;
        min-height: 226px
    }
    .list-checkmark li {
        display: block;
        width: 100%;
        padding-right: 20px
    }
}

@media (max-width:740px) {
    .list-checkmark {
        min-height: 1px
    }
    .list-checkmark li {
        padding-right: 0;
        padding-left: 25px
    }
    .list-checkmark li:before {
        left: 0
    }
}

.no-svg .list-checkmark.list-checkmark-gray li:before {
    background-image: url(/img/icons/checkmark-gray.png)
}

.no-svg .list-checkmark.list-checkmark-green li:before {
    background-image: url(/img/icons/checkmark-green.png)
}

.list-compare {
    margin: 0 0 30px
}

.list-compare.pro-table li:last-of-type {
    border-bottom: 1px solid #fff;
    padding: 0 0 15px;
    margin: 0 0 15px
}

.list-compare li {
    display: block;
    text-align: left;
    border-bottom: 1px solid #fff;
    padding: 0 0 15px;
    margin: 0 0 15px
}

.list-compare li:before,
.list-compare li:after {
    content: " ";
    display: table
}

.list-compare li:after {
    clear: both
}

.list-compare li:last-of-type {
    border: none;
    padding: 0;
    margin: 0
}

.list-compare h3 {
    color: #fff
}

.list-compare .content {
    width: 80%;
    display: inline-block;
    vertical-align: middle
}

.list-compare .icon-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2%;
    width: 15%;
    text-align: center
}

a {
    color: #64a1a9;
    text-decoration: none;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out
}

a:hover,
a:focus,
a.active {
    color: #90C564
}

a.footerh5 {
    color: #A5B2B2;
    font-size: 16px;
    font-weight: 700
}

.link-underline {
    color: #3A3E3E;
    text-decoration: underline
}

.link-underline:hover,
.link-underline:focus {
    color: #64a1a9
}

.home-bkgd .sub-cta {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-top: 12px
}

.home-bkgd .sub-cta:hover {
    opacity: .6
}

.link-green {
    color: #90C564
}

.link-green:hover,
.link-green:focus {
    color: #fff
}

.link-green.sub-cta {
    display: block
}

.green-btn {
    background-color: #76B83F;
    color: #f2f2f2;
    border-radius: 3px;
    -webkit-transition: background-color .5s;
    transition: background-color .5s
}

.green-btn:hover {
    background-color: #598A2F
}

.btn {
    display: inline-block;
    padding: 10px 32px 12px;
    text-align: center;
    text-decoration: none;
    outline: 0;
    border: 2px solid transparent;
    color: #fff;
    min-width: 200px;
    font-size: 16px;
    border-radius: 5px;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 700
}

.btn:hover,
.btn:focus {
    background: #7BAA55;
    border-color: #7BAA55;
    color: #fff
}

.btn span {
    display: block;
    font-size: 14px
}

.btn.btn--primary {
    font-size: 20px;
    padding: 13px 42px 12px
}

.btn.btn--secondary {
    font-size: 14px;
    padding: 8px 28px;
    min-width: 150px
}

.btn.btn--wide {
    min-width: 320px
}

.btn.btn--outline {
    background-color: transparent!important;
    color: #737373
}

.btn.btn--outline:hover,
.btn.btn--outline:focus {
    background-color: #7BAA55;
    color: #fff
}

.btn.btn--green {
    background: #90C564;
    border-color: #90C564
}

.btn.btn--green:hover,
.btn.btn--green:focus {
    background: #76b343;
    border-color: #76b343
}

.btn.btn--green--outline {
    background-color: transparent;
    border-color: #90C564;
    color: #737373
}

.btn.btn--green--outline:hover,
.btn.btn--green--outline:focus {
    background-color: #7BAA55;
    color: #fff
}

.btn.btn--blue {
    background: #00BFFF;
    border-color: #00BFFF;
    color: #fff
}

.btn.btn--blue:hover,
.btn.btn--blue:focus {
    background: #09c;
    border-color: #09c
}

@media (max-width:990px) {
    .btn.btn--wide {
        min-width: 250px
    }
}

@media (max-width:740px) {
    .btn {
        display: block;
        width: 100%;
        padding-right: 0;
        padding-left: 0
    }
    .btn.btn--wide {
        min-width: 1px
    }
}

.list-inline .btn {
    min-width: 263px
}

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

.icon-container:after {
    clear: both
}

@media (max-width:740px) {
    .icon-container i {
        float: left
    }
    .icon-container p {
        width: 80%;
        padding-left: 30px;
        float: right;
        text-align: left
    }
}

.arrow-left {
    display: inline-block;
    background-image: url(/img/icons/arrow-left.png);
    background-size: 16px 11px;
    width: 16px;
    height: 11px
}

.lt-ie9 .arrow-left {
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader( src='/img/icons/arrow-left.png', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/img/icons/arrow-left.png', sizingMethod='scale')"
}

.arrow-right {
    display: inline-block;
    background-image: url(/img/icons/arrow-right.png);
    background-size: 16px 11px;
    width: 16px;
    height: 11px
}

.lt-ie9 .arrow-right {
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader( src='/img/icons/arrow-right.png', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/img/icons/arrow-right.png', sizingMethod='scale')"
}

.icon {
    width: 85px;
    height: 85px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%
}

.icon-small {
    width: 60px;
    height: 60px
}

@media (max-width:740px) {
    .icon-small {
        width: 50px;
        height: 50px
    }
}

.icon-android {
    background-image: url(/img/icons/android.svg);
    width: 12px;
    height: 18px
}

.icon-menu-white {
    background-image: url(/img/icons/menu-white.svg);
    width: 25px;
    height: 18px
}

.icon-arrow-download {
    background-image: url(/img/icons/arrow-download.svg);
    width: 14px;
    height: 22px
}

.icon-checkmark {
    background-image: url(/img/icons/checkmark-white.svg);
    width: 29px;
    height: 20px
}

.icon-checkmark-gray-large {
    background-image: url(/img/icons/checkmark-gray-large.svg);
    width: 29px;
    height: 20px
}

.icon-browser-download {
    background-image: url(/img/icons/browser-download.svg);
    width: 122px;
    height: 92px
}

.icon-browser-download-files {
    background-image: url(/img/icons/browser-download-files.svg);
    width: 122px;
    height: 92px
}

.icon-browser-play {
    background-image: url(/img/icons/browser-play.svg);
    width: 122px;
    height: 92px
}

.icon-browser-search {
    background-image: url(/img/icons/browser-search.svg);
    width: 122px;
    height: 92px
}

.icon-bundle {
    background-image: url(/img/icons/bundle.svg)
}

.icon-bundle.icon-gray {
    background-image: url(/img/icons/bundle-gray.svg)
}

.icon-bundle.icon-white {
    background-image: url(/img/icons/bundle-white.svg)
}

.icon-clock {
    background-image: url(/img/icons/clock.svg)
}

.icon-clock.icon-gray {
    background-image: url(/img/icons/clock-gray.svg)
}

.icon-clock.icon-white {
    background-image: url(/img/icons/clock-white.svg)
}

.icon-clock-alarm {
    background-image: url(/img/icons/clock-alarm.svg)
}

.icon-clock-alarm.icon-gray {
    background-image: url(/img/icons/clock-alarm-gray.svg)
}

.icon-clock-alarm.icon-white {
    background-image: url(/img/icons/clock-alarm-white.svg)
}

.icon-devices {
    background-image: url(/img/icons/devices.svg)
}

.icon-devices.icon-gray {
    background-image: url(/img/icons/devices-gray.svg)
}

.icon-devices.icon-white {
    background-image: url(/img/icons/devices-white.svg)
}

.icon-download {
    background-image: url(/img/icons/download.svg)
}

.icon-download.icon-gray {
    background-image: url(/img/icons/download-gray.svg)
}

.icon-download.icon-white {
    background-image: url(/img/icons/download-white.svg)
}

.icon-features {
    background-image: url(/img/icons/features.svg)
}

.icon-features.icon-gray {
    background-image: url(/img/icons/features-gray.svg)
}

.icon-features.icon-white {
    background-image: url(/img/icons/features-white.svg)
}

.icon-feather {
    background-image: url(/img/icons/feather.svg)
}

.icon-feather.icon-gray {
    background-image: url(/img/icons/feather-gray.svg)
}

.icon-feather.icon-white {
    background-image: url(/img/icons/feather-white.svg)
}

.icon-file-check {
    background-image: url(/img/icons/file-check.svg)
}

.icon-file-check.icon-gray {
    background-image: url(/img/icons/file-check-gray.svg)
}

.icon-file-check.icon-white {
    background-image: url(/img/icons/file-check-white.svg)
}

.icon-key {
    background-image: url(/img/icons/key.svg)
}

.icon-key.icon-gray {
    background-image: url(/img/icons/key-gray.svg)
}

.icon-key.icon-white {
    background-image: url(/img/icons/key-white.svg)
}

.icon-light-bulb {
    background-image: url(/img/icons/light-bulb.svg)
}

.icon-light-bulb.icon-gray {
    background-image: url(/img/icons/light-bulb-gray.svg)
}

.icon-light-bulb.icon-white {
    background-image: url(/img/icons/light-bulb-white.svg)
}

.icon-lightning {
    background-image: url(/img/icons/lightning.svg)
}

.icon-lightning.icon-gray {
    background-image: url(/img/icons/lightning-gray.svg)
}

.icon-lightning.icon-white {
    background-image: url(/img/icons/lightning-white.svg)
}

.icon-media-player {
    background-image: url(/img/icons/media-player.svg)
}

.icon-media-player.icon-gray {
    background-image: url(/img/icons/media-player-gray.svg)
}

.icon-media-player.icon-white {
    background-image: url(/img/icons/media-player-white.svg)
}

.lt-ie9 .icon-media-player.icon-white.icon-small {
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader( src='/img/icons/media-player-white.png', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/img/icons/media-player-white.png', sizingMethod='scale')"
}

.icon-no-ads {
    background-image: url(/img/icons/no-ads.svg)
}

.icon-no-ads.icon-gray {
    background-image: url(/img/icons/no-ads-gray.svg)
}

.icon-no-ads.icon-white {
    background-image: url(/img/icons/no-ads-white.svg)
}

.icon-shield {
    background-image: url(/img/icons/shield.svg)
}

.icon-shield.icon-gray {
    background-image: url(/img/icons/shield-gray.svg)
}

.icon-shield.icon-white {
    background-image: url(/img/icons/shield-white.svg)
}

.icon-wifi {
    background-image: url(/img/icons/wifi.svg)
}

.icon-wifi.icon-gray {
    background-image: url(/img/icons/wifi-gray.svg)
}

.icon-wifi.icon-white {
    background-image: url(/img/icons/wifi-white.svg)
}

.no-svg .icon-android {
    background-image: url(/img/icons/android.png)
}

.no-svg .icon-menu-white {
    background-image: url(/img/icons/menu-white.png)
}

.no-svg .icon-arrow-download {
    background-image: url(/img/icons/arrow-download.png)
}

.no-svg .icon-checkmark {
    background-image: url(/img/icons/checkmark-white.png)
}

.no-svg .icon-checkmark-gray-large {
    background-image: url(/img/icons/checkmark-gray-large.png)
}

.no-svg .icon-browser-download {
    background-image: url(/img/icons/browser-download.png)
}

.no-svg .icon-browser-download-files {
    background-image: url(/img/icons/browser-download-files.png)
}

.no-svg .icon-browser-play {
    background-image: url(/img/icons/browser-play.png)
}

.no-svg .icon-browser-search {
    background-image: url(/img/icons/browser-search.png)
}

.no-svg .icon-bundle {
    background-image: url(/img/icons/bundle.png)
}

.no-svg .icon-bundle.icon-gray {
    background-image: url(/img/icons/bundle-gray.png)
}

.no-svg .icon-bundle.icon-white {
    background-image: url(/img/icons/bundle-white.png)
}

.no-svg .icon-clock {
    background-image: url(/img/icons/clock.png)
}

.no-svg .icon-clock.icon-gray {
    background-image: url(/img/icons/clock-gray.png)
}

.no-svg .icon-clock.icon-white {
    background-image: url(/img/icons/clock-white.png)
}

.no-svg .icon-clock-alarm {
    background-image: url(/img/icons/clock-alarm.png)
}

.no-svg .icon-clock-alarm.icon-gray {
    background-image: url(/img/icons/clock-alarm-gray.png)
}

.no-svg .icon-clock-alarm.icon-white {
    background-image: url(/img/icons/clock-alarm-white.png)
}

.no-svg .icon-devices {
    background-image: url(/img/icons/devices.png)
}

.no-svg .icon-devices.icon-gray {
    background-image: url(/img/icons/devices-gray.png)
}

.no-svg .icon-devices.icon-white {
    background-image: url(/img/icons/devices-white.png)
}

.no-svg .icon-download {
    background-image: url(/img/icons/download.png)
}

.no-svg .icon-download.icon-gray {
    background-image: url(/img/icons/download-gray.png)
}

.no-svg .icon-download.icon-white {
    background-image: url(/img/icons/download-white.png)
}

.no-svg .icon-features {
    background-image: url(/img/icons/features.png)
}

.no-svg .icon-features.icon-gray {
    background-image: url(/img/icons/features-gray.png)
}

.no-svg .icon-features.icon-white {
    background-image: url(/img/icons/features-white.png)
}

.no-svg .icon-feather {
    background-image: url(/img/icons/feather.png)
}

.no-svg .icon-feather.icon-gray {
    background-image: url(/img/icons/feather-gray.png)
}

.no-svg .icon-feather.icon-white {
    background-image: url(/img/icons/feather-white.png)
}

.no-svg .icon-file-check {
    background-image: url(/img/icons/file-check.png)
}

.no-svg .icon-file-check.icon-gray {
    background-image: url(/img/icons/file-check-gray.png)
}

.no-svg .icon-file-check.icon-white {
    background-image: url(/img/icons/file-check-white.png)
}

.no-svg .icon-key {
    background-image: url(/img/icons/key.png)
}

.no-svg .icon-key.icon-gray {
    background-image: url(/img/icons/key-gray.png)
}

.no-svg .icon-key.icon-white {
    background-image: url(/img/icons/key-white.png)
}

.no-svg .icon-light-bulb {
    background-image: url(/img/icons/light-bulb.png)
}

.no-svg .icon-light-bulb.icon-gray {
    background-image: url(/img/icons/light-bulb-gray.png)
}

.no-svg .icon-light-bulb.icon-white {
    background-image: url(/img/icons/light-bulb-white.png)
}

.no-svg .icon-lightning {
    background-image: url(/img/icons/lightning.png)
}

.no-svg .icon-lightning.icon-gray {
    background-image: url(/img/icons/lightning-gray.png)
}

.no-svg .icon-lightning.icon-white {
    background-image: url(/img/icons/lightning-white.png)
}

.no-svg .icon-media-player {
    background-image: url(/img/icons/media-player.png)
}

.no-svg .icon-media-player.icon-gray {
    background-image: url(/img/icons/media-player-gray.png)
}

.no-svg .icon-media-player.icon-white {
    background-image: url(/img/icons/media-player-white.png)
}

.no-svg .icon-no-ads {
    background-image: url(/img/icons/no-ads.png)
}

.no-svg .icon-no-ads.icon-gray {
    background-image: url(/img/icons/no-ads-gray.png)
}

.no-svg .icon-no-ads.icon-white {
    background-image: url(/img/icons/no-ads-white.png)
}

.no-svg .icon-shield {
    background-image: url(/img/icons/shield.png)
}

.no-svg .icon-shield.icon-gray {
    background-image: url(/img/icons/shield-gray.png)
}

.no-svg .icon-shield.icon-white {
    background-image: url(/img/icons/shield-white.png)
}

.no-svg .icon-streaming {
    background-image: url(/img/icons/streaming.png)
}

.no-svg .icon-wifi {
    background-image: url(/img/icons/wifi.png)
}

.no-svg .icon-wifi.icon-gray {
    background-image: url(/img/icons/wifi-gray.png)
}

.no-svg .icon-wifi.icon-white {
    background-image: url(/img/icons/wifi-white.png)
}

@font-face {
    font-family: 'FontAwesome';
    src: url("/fonts/fontawesome/fontawesome-webfont.eot?v=4.0.3");
    src: url("/fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.0.3") format("embedded-opentype"), url("/fonts/fontawesome/fontawesome-webfont.woff?v=4.0.3") format("woff"), url("/fonts/fontawesome/fontawesome-webfont.ttf?v=4.0.3") format("truetype"), url("/fonts/fontawesome/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format("svg");
    font-weight: 400;
    font-style: normal
}

.fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-asc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-desc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-reply-all:before,
.fa-mail-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.owl-wrapper:before,
.owl-wrapper:after {
    content: " ";
    display: table
}

.owl-wrapper:after {
    clear: both
}

.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out
}

.owl-carousel .owl-item {
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.owl-controls {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

.owl-pagination {
    padding: 30px 0 0;
    text-align: center
}

.owl-pagination:before,
.owl-pagination:after {
    content: " ";
    display: table
}

.owl-pagination:after {
    clear: both
}

.owl-pagination .owl-page {
    display: inline-block;
    margin: 0 3px;
    cursor: pointer
}

.owl-pagination .owl-page:hover span,
.owl-pagination .owl-page:focus span,
.owl-pagination .owl-page.active span {
    background: #90C564
}

.owl-pagination span {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #767F7F;
    display: block;
    -webkit-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out
}

.owl-buttons div {
    display: inline-block;
    cursor: pointer;
    margin: 0 5px 0 0
}

.owl-origin {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.owl-fade-out {
    z-index: 10;
    -webkit-animation: fadeOut .7s both ease;
    animation: fadeOut .7s both ease
}

.owl-fade-in {
    -webkit-animation: fadeIn .7s both ease;
    animation: fadeIn .7s both ease
}

.owl-backSlide-out {
    -webkit-animation: backSlideOut 1s both ease;
    animation: backSlideOut 1s both ease
}

.owl-backSlide-in {
    -webkit-animation: backSlideIn 1s both ease;
    animation: backSlideIn 1s both ease
}

.owl-goDown-out {
    -webkit-animation: scaleToFade .7s ease both;
    animation: scaleToFade .7s ease both
}

.owl-goDown-in {
    -webkit-animation: goDown .6s ease both;
    animation: goDown .6s ease both
}

.owl-fadeUp-in {
    -webkit-animation: scaleUpFrom .5s ease both;
    animation: scaleUpFrom .5s ease both
}

.owl-fadeUp-out {
    -webkit-animation: scaleUpTo .5s ease both;
    animation: scaleUpTo .5s ease both
}

.slide h3 {
    padding-top: 60px
}

@media (max-width:1190px) {
    .slide h3 {
        padding-top: 30px
    }
}

@media (max-width:990px) {
    .slide h3 {
        padding-top: 20px
    }
}

@media (max-width:740px) {
    .slide h3 {
        padding-top: 0
    }
}

.owl-buttons .owl-prev,
.owl-buttons .owl-next {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    margin: -11px 0 0;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out
}

.owl-buttons .owl-prev:before,
.owl-buttons .owl-next:before {
    color: #767F7F;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out
}

.owl-buttons .owl-prev:hover:before,
.owl-buttons .owl-prev:focus:before,
.owl-buttons .owl-next:hover:before,
.owl-buttons .owl-next:focus:before {
    color: #90C564
}

@media (max-width:990px) {
    .owl-buttons .owl-prev,
    .owl-buttons .owl-next {
        display: none
    }
}

.owl-prev {
    left: -45px
}

.owl-prev:before {
    content: "\f053"
}

.owl-prev:hover,
.owl-prev:focus {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px)
}

.owl-next {
    right: -45px
}

.owl-next:before {
    content: "\f054"
}

.owl-next:hover,
.owl-next:focus {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px)
}

#colorbox {
    position: absolute
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    outline: none
}

#cboxWrapper {
    position: absolute
}

.cboxElement {
    outline: none
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%
}

#cboxMiddleLeft,
#cboxBottomLeft {
    clear: left
}

#cboxContent {
    position: relative;
    overflow: hidden
}

#cboxLoadedContent {
    overflow: auto
}

#cboxLoadedContent iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0
}

#cboxTitle {
    margin: 0
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 5px
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
    cursor: pointer
}

#cboxOverlay {
    background: #000
}

#cboxTopLeft {
    width: 25px;
    height: 25px
}

#cboxTopCenter {
    height: 25px
}

#cboxTopRight,
#cboxBottomLeft {
    width: 25px;
    height: 25px
}

#cboxBottomCenter {
    height: 25px
}

#cboxBottomRight {
    width: 25px;
    height: 25px
}

#cboxMiddleLeft,
#cboxMiddleRight {
    width: 25px
}

#cboxContent {
    background: #fff;
    padding: 50px;
    border-radius: 5px
}

#cboxContent.photo {
    padding-bottom: 0;
    box-sizing: content-box
}

#cboxTitle {
    bottom: 39px;
    left: 200px;
    text-align: left;
    width: 100%
}

#cboxTitle,
#cboxCurrent {
    position: absolute;
    color: #545454;
    font-size: 13px
}

#cboxCurrent {
    bottom: 40px;
    left: 145px;
    font-weight: 700
}

#cboxPrevious {
    left: 50px
}

#cboxPrevious,
#cboxNext {
    position: absolute;
    bottom: 23px;
    color: #444
}

#cboxNext {
    left: 95px
}

#cboxLoadingOverlay {
    background: #fff
}

#cboxClose {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    height: 16px;
    line-height: 16px;
    padding: 0 20px 0 0;
    text-align: right;
    font-size: 13px;
    text-decoration: none;
    color: #7f7f7f;
    outline: none;
    border: 0 none;
    background-color: #fff
}

#cboxClose:hover,
#cboxClose:focus {
    color: #545454;
    background-position: 100% -20px
}

#cboxPrevious,
#cboxNext {
    display: block;
    float: left;
    width: 40px;
    height: 40px!important;
    outline: none;
    text-indent: -9999px
}

#cboxPrevious {
    background-position: 0 -40px
}

#cboxPrevious:hover,
#cboxPrevious:focus {
    background-position: 0 -80px
}

#cboxPrevious.inactive {
    background-position: 0 -120px;
    cursor: default
}

#cboxNext {
    background-position: 100% -160px
}

#cboxNext:hover,
#cboxNext:focus {
    background-position: 100% -200px
}

#cboxNext.inactive {
    background-position: 100% -240px;
    cursor: default
}

.locales {
    border: 2px solid #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    padding: 7px 30px 7px 15px;
    position: relative;
    border-radius: 5px;
    text-transform: none;
    -webkit-transition: opacity .2s ease-in-out, background-color .25s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .25s ease-in-out;
    cursor: pointer;
    min-width: 100px
}

.locales:hover:after,
.locales:focus:after {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px)
}

.locales.show {
    height: 365px
}

.locales.show ul {
    display: block
}

.locales:after {
    content: " ";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    height: 0;
    position: absolute;
    right: 10px;
    top: 15px;
    width: 0;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out
}

.locales i {
    color: #fff;
    margin-right: 5px
}

.locales i:before {
    font-size: 14px
}

.sticky-dark .locales,
footer .locales {
    background-color: #3A3E3E
}

footer .locales {
    height: auto;
    position: relative;
    width: 150px;
    margin: 0;
    padding: 5px 30px 8px 15px;
    float: left
}

footer .locales:after {
    border-bottom: 5px solid #fff;
    border-top: none;
    top: 18px
}

footer .locales:hover:after,
footer .locales:focus:after {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px)
}

footer .locales.show {
    height: auto
}

footer .locales span {
    font-size: 12px;
    color: #fff;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 600
}

@media (max-width:740px) {
    footer .locales {
        width: 100%;
        text-align: center
    }
    footer .locales:after {
        right: 25px;
        top: 14px
    }
}

.dropdown {
    position: absolute;
    top: 30px;
    left: 16px;
    display: none;
    text-align: left
}

.dropdown li {
    display: block;
    margin: 0 0 3px;
    padding-left: 5px
}

footer .dropdown {
    top: auto;
    bottom: -2px;
    left: -2px;
    border: 2px solid #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    background-color: #3A3E3E;
    margin-top: 0;
    position: absolute;
    width: 150px;
    border-radius: 5px;
    padding: 10px
}

footer .dropdown a {
    font-size: 12px
}

@media (max-width:740px) {
    footer .dropdown {
        width: auto;
        right: -2px
    }
}

.lt-ie9 footer .dropdown {
    width: 175px
}

.browser {
    background: url("/img/icons/browser.png") 0 0 no-repeat;
    background-size: 370px 204px;
    bottom: -460px;
    color: #fff;
    height: 204px;
    left: 50%;
    margin-left: -185px;
    padding-top: 33px;
    position: absolute;
    text-align: center;
    width: 370px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform .4s .4s ease-in-out;
    transition: transform .4s .4s ease-in-out
}

.browser.is-visible {
    -webkit-transform: translateY(-190px);
    -ms-transform: translateY(-190px);
    transform: translateY(-190px)
}

.browser ul {
    padding-top: 25px
}

.browser li {
    vertical-align: middle
}

@media (max-width:990px) {
    .browser {
        -webkit-transform: translateY(-190px);
        -ms-transform: translateY(-190px);
        transform: translateY(-190px)
    }
}

@media (max-width:740px) {
    .browser {
        -webkit-transform: translateY(-230px);
        -ms-transform: translateY(-230px);
        transform: translateY(-230px);
        width: 260px;
        background-size: 260px 143px;
        margin-left: -130px
    }
    .browser ul {
        padding-top: 0
    }
}

.lt-ie9 .browser {
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader( src='/img/icons/browser.png', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/img/icons/browser.png', sizingMethod='scale')";
    bottom: -300px
}

.browser-small {
    background: url("../img/icons/browser-sm.png") 0 0 no-repeat;
    background-size: 122px 92px;
    height: 92px;
    width: 122px;
    position: relative
}

.download-bundle {
    display: block
}

.download-bundle:hover .cta,
.download-bundle:focus .cta {
    width: 100%
}

.download-bundle .img-wrap {
    position: relative;
    overflow: hidden
}

.download-bundle .img-wrap img {
    min-width: 100%;
    height: auto
}

.download-bundle .cta {
    display: block;
    padding: 10px 0 10px 52px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0080FF;
    color: #fff;
    width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 600;
    -webkit-transition: width .15s ease-in-out;
    transition: width .15s ease-in-out
}

.download-bundle i {
    position: absolute;
    top: 50%;
    left: 0;
    margin: -11px 0 0 18px
}

.download-bundle h6 {
    color: #0080FF;
    text-transform: uppercase;
    padding: 15px 0 4px
}

.lt-ie9 .download-bundle:hover .cta,
.lt-ie9 .download-bundle:focus .cta {
    width: 100%
}

.lt-ie9 .download-bundle .cta {
    width: 0
}

@media (max-width:1190px) {
    .download-bundle .cta {
        font-size: 14px;
        width: 40px;
        padding: 8px 0 8px 42px
    }
    .download-bundle i {
        margin-left: 14px
    }
}

@media (max-width:990px) {
    .download-bundle .cta {
        width: 100%;
        padding: 8px 0 8px 26px;
        font-size: 11px
    }
    .download-bundle i {
        width: 10px;
        margin-left: 9px
    }
}

@media (max-width:740px) {
    .download-bundle {
        margin-bottom: 20px
    }
    .download-bundle .img-wrap img {
        width: 100%;
        height: auto
    }
}

.callout {
    position: fixed;
    right: 0;
    top: 53%;
    z-index: 100;
    width: 340px;
    background-color: #1a1a1a;
    background-size: cover;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    color: #fff;
    border-radius: 4px 0 0 4px
}

.callout.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.callout.sneaky-hide {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

@media (max-width:1190px) {
    .callout {
        width: 340px
    }
}

@media (max-width:990px) {
    .callout {
        display: none
    }
}

.callout.callout-home,
.callout.callout-pdp {
    background-color: #1a1a1a
}

.callout .callout-recall {
    background: #212121
}

.callout-pd {
    background: #3a8285 url("/img/bkgd/header.jpg") 50% 50% no-repeat
}

.callout-pd .callout-title {
    position: relative;
    top: -5px;
    left: 5px
}

.callout-pd .callout-inner {
    padding: 0
}

.callout-pd .callout-inner img {
    padding-bottom: 0
}

.callout-pd .callout-recall {
    background: #3a8285
}

.lt-ie9 .callout {
    right: -100%;
    background-image: none
}

.lt-ie9 .callout.show {
    right: 0
}

.lt-ie9 .callout.sneaky-hide {
    right: -290px
}

.callout-inner {
    padding: 20px;
    position: relative;
    z-index: 100;
    min-height: 290px;
    min-width: 340px
}

.callout-inner img {
    padding: 0 0 15px
}

.callout-inner h3 {
    font-size: 18px;
    margin: 0;
    padding: 0 0 15px;
    font-weight: 400;
    color: #fff
}

.callout-inner p {
    padding: 0 0 20px;
    font-style: normal
}

.callout-inner p,
.btn--now {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700
}

.btn--now {
    background-color: transparent;
    border: 2px solid #39f;
    border-radius: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #39f
}

.btn--now:hover,
.btn--now:active,
.btn--now:focus {
    border: 2px solid #06c;
    background-color: transparent!important;
    color: #06c;
    font-weight: 700
}

.lt-ie9 .sneaky-hide .callout-inner img,
.lt-ie9 .sneaky-hide .callout-inner p,
.lt-ie9 .sneaky-hide .callout-inner a {
    visibility: hidden
}

.callout-hide {
    position: absolute;
    top: 8px;
    right: 16px;
    width: 11px;
    z-index: 101;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out
}

.callout-hide:hover,
.callout-hide:focus {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px)
}

.callout-recall {
    background: #1a4065 url(../img/bkgd/callout.png) no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40px;
    text-align: center;
    padding: 8px 0 12px;
    cursor: pointer;
    opacity: 0;
    z-index: 99;
    border-radius: 4px 0 0 4px;
    -webkit-transition: opacity .15s ease-in-out, -webkit-transform .25s ease-in-out;
    transition: opacity .15s ease-in-out, transform .25s ease-in-out
}

.callout-recall i {
    position: absolute;
    top: 15px;
    left: 7px
}

.sneaky-hide .callout-recall {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 1
}

.sneaky-hide .callout-recall:hover,
.sneaky-hide .callout-recall:focus {
    -webkit-transform: translateX(-35px);
    -ms-transform: translateX(-35px);
    transform: translateX(-35px)
}

.callout-recall img {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.lt-ie9 .callout-recall {
    display: none;
    background-image: none
}

.lt-ie9 .sneaky-hide .callout-recall {
    display: block;
    z-index: 200
}

.promo-box {
    text-align: center;
    padding: 35px 20px;
    background: #f6f7f7
}

.bg-gray .promo-box {
    background: #fff
}

.promo-box h2 {
    padding: 0 0 10px
}

.promo-box h4 {
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 300;
    padding: 0 0 25px
}

@media (max-width:990px) {
    .promo-box {
        padding: 25px 20px
    }
    .promo-box h2 {
        font-size: 22px
    }
}

.modal {
    display: none;
    color: #333;
    width: 60%;
    margin: auto;
    position: fixed;
    z-index: 999999999;
    top: 50px;
    left: 20%;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 1px 30px rgba(0, 0, 0, .3);
    line-height: 36px;
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .004)
}

.modal a {
    color: #fff;
    text-decoration: none
}

.modal a:hover {
    color: #fff
}

.modal h2,
.modal h3,
.modal p {
    margin-bottom: 10px;
    line-height: 1.5
}

.modal p {
    font-size: 16px;
    font-weight: 400
}

.modal h2 {
    font-size: 20px
}

.modal h3 {
    font-size: 30px
}

.modal img.surf-pd {
    display: none
}

.modal.surf-modal {
    text-align: center;
    overflow: hidden;
    min-height: 460px;
    width: 90%;
    left: 5%
}

.modal.surf-modal p {
    padding: 15px 62px;
    margin-right: 0;
    margin-top: 0;
    text-align: center
}

.modal.surf-modal p a {
    color: #64a1a9
}

.modal.surf-modal img {
    left: 34px;
    top: 50px;
    text-align: left;
    width: 89%;
    position: absolute;
    z-index: -1
}

.modal.surf-modal h1 {
    margin-top: 70px
}

@media (max-width:990px) {
    .modal.surf-modal {
        display: none
    }
}

.modal.surf-modal .surf-pd .row {
    margin-right: 0
}

.modal.surf-modal .surf-pd h1 {
    margin-top: 20px;
    width: 100%;
    text-align: center
}

.modal.surf-modal .surf-pd img {
    top: 0;
    position: inherit
}

.modal.surf-modal .surf-pd i {
    color: #2b95ff;
    margin-right: 10px;
    margin-left: 25px
}

.modal.surf-modal .surf-pd ul {
    margin-top: 13%
}

.modal.surf-modal .surf-pd ul li {
    text-align: left;
    margin-bottom: 15px
}

.modal.surf-modal .surf-pd a {
    color: #64a1a9
}

@media (max-width:460px) {
    .modal.surf-modal {
        min-height: 610px!important
    }
    .modal.surf-modal h1 {
        margin-top: 75px
    }
    .modal.surf-modal p {
        margin-top: 15px
    }
    .modal.surf-modal .btn {
        font-size: 14px
    }
    .modal.surf-modal .surf-pd i {
        margin-left: 0
    }
    .modal.surf-modal .surf-pd ul li {
        margin-bottom: -11px
    }
}

@media (max-width:768px) {
    .modal.surf-modal {
        min-height: 500px;
        width: 100%;
        left: 0
    }
    .modal.surf-modal p {
        padding: 0;
        margin-top: 15px
    }
    .modal.surf-modal img {
        width: 100%;
        left: 0
    }
    .modal.surf-modal h1 {
        margin-top: 100px
    }
    .modal.surf-modal .surf-modal-btn {
        margin-top: 50px
    }
    .modal.surf-modal .surf-pd ul {
        margin-top: 0
    }
}

@media (min-width:1024px) {
    .modal.surf-modal {
        min-height: 560px;
        width: 50%;
        max-width: 1005px;
        left: 25%
    }
    .modal.surf-modal h1 {
        margin-top: 100px
    }
}

@media (min-width:1600px) {
    .modal.surf-modal img {
        left: 5%
    }
}

.modal_close {
    color: #999!important;
    margin-top: -20px;
    float: right;
    cursor: pointer;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 100;
    line-height: 100%;
    right: 20px;
    text-decoration: none!important;
    top: 75px
}

.modal_screen {
    position: fixed;
    z-index: 9999;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(/img/bkgd/ui_trans_50_black.png)
}

.modal .row h4,
.modalTitle p,
.modalContent p {
    color: #666
}

.modalContent {
    float: left;
    width: 50%;
    margin-top: 20px
}

.modalForm {
    float: right;
    width: 43%;
    margin-top: 20px
}

.mce-EMAIL-default {
    box-shadow: 0 4px 5px #B1B1B2 inset, 0 1px 2px rgba(255, 255, 255, .6)
}

.mce-EMAIL-error {
    box-shadow: 0 1px 5px #c00 inset, 0 1px 2px rgba(255, 255, 255, .6)
}

#form_modal .modal_close {
    top: 9px
}

#mce-EMAIL {
    background: 0 0 #FDFDFE;
    border: 1px solid #8D8D8D;
    border-radius: 3px;
    display: block;
    font-size: 15px;
    font-weight: 400;
    height: 40px;
    margin-bottom: 14px;
    padding: 5px;
    width: 209px
}

#mc-embedded-subscribe {
    margin-top: 18px;
    min-height: 55px;
    display: block;
    font-size: 18px;
    width: 220px;
    font-weight: 300;
    line-height: 26.4px;
    text-align: center;
    text-decoration: none;
    word-break: break-word;
    border-color: transparent
}

#mc-embedded-subscribe-form #message {
    margin-bottom: 10px;
    font-size: 12px;
    color: red;
    position: relative;
    margin-top: -9px
}

header {
    background-color: transparent;
    border: none;
    left: 0;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    -webkit-animation: fadeIn .13s .1s both;
    animation: fadeIn .13s .1s both
}

header.sticky-dark {
    background-color: #3A3E3E;
    border-bottom: none;
    margin-top: 0;
    height: 76px
}

header.downloadable .download {
    opacity: 1;
    z-index: 20;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto
}

header.downloadable .locales {
    opacity: 0
}

.bg-white header {
    background-color: #3A3E3E
}

.lt-ie9 header.sticky-dark {
    height: 36px
}

.lt-ie9 header.downloadable .download {
    display: inline-block
}

@media (max-width:990px) {
    header {
        position: relative;
        margin-bottom: -80px
    }
}

.logo {
    background: url("/img/logos/utorrent.png") no-repeat center center;
    background-size: 127px 32px;
    display: block;
    height: 32px;
    text-indent: -999em;
    direction: ltr;
    width: 127px;
    float: left
}

.logo.green,
.logo.is-visible {
    background-image: url("/img/logos/utorrent-green.png")
}

.lt-ie9 .logo {
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader( src='/img/logos/utorrent.png', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/img/logos/utorrent.png', sizingMethod='scale')"
}

.lt-ie9 .logo.green,
.lt-ie9 .logo.is-visible {
    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader( src='/img/logos/utorrent-green.png', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/img/logos/utorrent-green.png', sizingMethod='scale')"
}

.nav-main {
    text-align: right;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 700
}

.nav-main:before,
.nav-main:after {
    content: " ";
    display: table
}

.nav-main:after {
    clear: both
}

.nav-main>ul {
    display: block;
    margin: 0;
    padding: 0
}

.nav-main>ul>li {
    margin: 0 0 0 20px;
    position: relative;
    z-index: 10
}

.nav-main>ul>li.nav-dropdown-parent {
    cursor: pointer
}

.nav-main a {
    color: #fff;
    opacity: 1;
    text-decoration: none;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 700
}

.nav-main a:hover,
.nav-main a:focus {
    opacity: .6
}

.nav-main a.active {
    color: #90C564
}

.nav-main .download {
    font-size: 12px;
    width: 118px;
    min-width: 118px;
    padding-right: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: -2px;
    z-index: -1;
    text-transform: none;
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: -webkit-transform .3s ease-in-out, z-index .3s ease-in-out, opacity .3s ease-in-out, background .15s ease-in-out, border .15s ease-in-out;
    transition: transform .3s ease-in-out, z-index .3s ease-in-out, opacity .3s ease-in-out, background .15s ease-in-out, border .15s ease-in-out
}

.nav-main .download:hover,
.nav-main .download:focus {
    opacity: 1
}

.lt-ie9 .nav-main a:hover,
.lt-ie9 .nav-main a:focus {
    color: #90C564
}

.lt-ie9 .nav-main .download {
    display: none
}

@media (max-width:990px) {
    .nav-main {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background: #3A3E3E;
        padding: 40px 20px;
        height: 100%;
        text-align: left;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform .25s ease-in-out;
        transition: transform .25s ease-in-out
    }
    .show-nav .nav-main {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    .nav-main>ul>li {
        margin: 0 0 10px;
        display: block
    }
}

.nav-dropdown-parent:hover .nav-dropdown,
.nav-dropdown-parent:focus .nav-dropdown {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto
}

.no-cssanimations .nav-dropdown-parent:hover .nav-dropdown,
.no-cssanimations .nav-dropdown-parent:focus .nav-dropdown {
    display: block
}

@media (max-width:990px) {
    .nav-dropdown-parent:hover .nav-dropdown,
    .nav-dropdown-parent:focus .nav-dropdown {
        -webkit-animation: none;
        animation: none
    }
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 13px;
    left: 50%;
    margin-left: -45px;
    text-align: left;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    text-transform: none;
    padding: 14px 0 0;
    pointer-events: none;
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out
}

.nav-dropdown ul {
    background: #fff;
    border: 1px solid #efefef;
    padding: 10px 20px;
    border-radius: 3px;
    position: relative
}

.nav-dropdown ul:before {
    content: " ";
    display: block;
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #efefef;
    border-bottom: none;
    border-right: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.nav-dropdown li {
    display: block;
    margin: 0 0 5px
}

.nav-dropdown li:last-of-type {
    margin: 0
}

.nav-dropdown a {
    color: #767F7F
}

.no-cssanimations .nav-dropdown {
    display: none
}

.lt-ie9 .nav-dropdown ul:before {
    display: none
}

@media (max-width:990px) {
    .nav-dropdown {
        display: block;
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        position: relative;
        padding: 5px 0 10px 10px;
        top: auto;
        left: auto;
        margin-left: 0;
        pointer-events: auto
    }
    .nav-dropdown ul {
        background: 0 0;
        border: none;
        padding: 0
    }
    .nav-dropdown ul:before {
        display: none
    }
    .nav-dropdown a {
        color: #fff
    }
    .nav-dropdown a:hover,
    .nav-dropdown a:focus {
        color: #fff;
        opacity: .6
    }
}

.mobile-open {
    color: #fff;
    display: block;
    float: right;
    display: none;
    position: relative;
    bottom: -7px
}

.mobile-open:hover,
.mobile-open:focus {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

@media (max-width:990px) {
    .mobile-open {
        display: block
    }
}

.mobile-close {
    position: absolute;
    top: -5px;
    right: 10px;
    color: #fff;
    display: none;
    font-size: 32px
}

.mobile-close:hover,
.mobile-close:focus {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    color: #fff
}

@media (max-width:990px) {
    .mobile-close {
        display: block
    }
}

footer {
    background-color: #353c3c;
    padding: 28px 0;
    position: relative;
    z-index: 11;
    -webkit-animation: fadeIn .13s .5s both;
    animation: fadeIn .13s .5s both
}

footer ul {
    margin-top: 15px
}

footer ul.social {
    float: left;
    display: block;
    clear: both;
    margin-left: 18px
}

footer ul.social li {
    display: inline-block;
    margin: 0 23px 0 0
}

footer ul.social li:last-of-type {
    margin: 0
}

footer ul.social a {
    color: #A5B2B2;
    font-size: 22px
}

footer ul.social a:hover,
footer ul.social a:focus {
    color: #fff
}

footer .nav-footer ul {
    margin-top: 0
}

footer h5 {
    color: #A5B2B2
}

footer li {
    margin: 0 0 6px
}

footer a {
    color: #fff;
    font-size: 14px;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 600
}

footer a:hover,
footer a:focus {
    color: #A5B2B2
}

footer .copyright {
    font-size: 12px;
    padding-top: 50px;
    color: #fff
}

footer .copyright a {
    font-size: 12px;
    margin: 0 3px
}

@media (max-width:990px) {
    footer li {
        line-height: 1.3
    }
    footer a {
        font-size: 12px
    }
    footer ul.social {
        margin-left: 18px
    }
}

@media (max-width:740px) {
    footer .span3 {
        width: 100%;
        float: none;
        clear: both
    }
    footer .span2 {
        padding-top: 20px;
        padding-bottom: 40px
    }
    footer .nav-footer {
        display: block;
        width: 100%
    }
    footer .nav-footer:before,
    footer .nav-footer:after {
        content: " ";
        display: table
    }
    footer .nav-footer:after {
        clear: both
    }
    footer ul.social {
        display: block;
        float: none;
        text-align: center;
        margin: 0;
        padding-top: 20px
    }
    footer ul.social li {
        margin: 0 5px
    }
    footer ul.social a:before {
        font-size: 30px
    }
    footer .copyright {
        padding-top: 20px
    }
}

.intro {
    padding: 190px 0 250px;
    position: relative;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    overflow: hidden
}

.intro .row {
    -webkit-animation: fadeIn .35s .1s both;
    animation: fadeIn .35s .1s both
}

.intro .btn--outline {
    color: #fff
}

@media (max-width:990px) {
    .intro {
        padding: 150px 0 240px
    }
}

@media (max-width:740px) {
    .intro {
        padding: 110px 0
    }
    .intro .browser {
        bottom: -440px
    }
    .intro .browser li {
        display: inline-block;
        margin: 0 5px
    }
}

.intro-secondary {
    padding: 170px 0 110px
}

.intro-secondary h1 a.error-search {
    color: #90C564
}

@media (max-width:740px) {
    .intro-secondary {
        padding: 110px 0 40px
    }
}

.intro-tertiary {
    padding: 136px 0 42px
}

@media (max-width:740px) {
    .intro-tertiary {
        padding: 110px 0 40px
    }
}

section {
    background-color: #fff
}

section .row {
    -webkit-animation: fadeIn .35s both;
    animation: fadeIn .35s both
}

section .row:nth-of-type(1) {
    -webkit-animation-delay: .35s;
    animation-delay: .35s
}

section .row:nth-of-type(2) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

section .row:nth-of-type(3) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s
}

section .row:nth-of-type(4) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

section .row:nth-of-type(5) {
    -webkit-animation-delay: .95s;
    animation-delay: .95s
}

section .row:nth-of-type(6) {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s
}

section .row:nth-of-type(7) {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s
}

section .row:nth-of-type(8) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}

.pop-in {
    opacity: 0
}

.is-visible .pop-in {
    -webkit-animation: popIn .2s both;
    animation: popIn .2s both
}

@media (max-width:990px) {
    .pop-in {
        opacity: 1
    }
}

.home-bkgd {
    background: #3a8285 url("/img/bkgd/heroBkgd.jpg") 58% 78% no-repeat
}

.home-bkgd.intro {
    padding: 172px 0 142px
}

.home-bkgd h4 {
    line-height: 1.5
}

@media (min-width:998px) {
    .home-bkgd {
        background-size: 114%
    }
    .home-bkgd h1 {
        font-size: 60px
    }
}

a.hmpg-dl-pro {
    background-color: #ff8f26;
    border: none
}

.table-compare a.hmpg-dl-pro,
.list-compare a.hmpg-dl-pro {
    padding: 15px 0
}

a.hmpg-dl-pro:focus,
a.hmpg-dl-pro:hover {
    background-color: #f27500
}

.pro-index a.hmpg-dl-pro {
    padding: 22px 0
}

.width.is-visible {
    -webkit-animation: width .5s .3s both;
    animation: width .5s .3s both
}

@media (max-width:990px) {
    .width {
        width: 100%
    }
}

.is-visible .delay-1 {
    -webkit-animation-delay: .9s;
    animation-delay: .9s
}

.is-visible .delay-2 {
    -webkit-animation-delay: .95s;
    animation-delay: .95s
}

.is-visible .delay-3 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.is-visible .delay-4 {
    -webkit-animation-delay: 1.05s;
    animation-delay: 1.05s
}

section.bg-cloud.mp {
    padding: 190px 0 196px
}

section.pad-v .mobile-tablet {
    margin-top: -254px
}

@media (max-width:740px) {
    section.pad-v .mobile-tablet div img {
        position: relative;
        top: -30px
    }
    section.bg-cloud.mp {
        padding: 116px 0 196px
    }
    section.cta-target {
        padding-top: 80px
    }
}

.btn-pro {
    background: #ff8f26;
    border: none
}

.btn-pro:hover,
.btn-pro:focus {
    background: #f27500
}

.bg-gradient {
    background-color: #fff;
    background: linear-gradient(to bottom, #fff, #f2f2f2);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f2f2f2));
    background: -webkit-linear-gradient(top, #fff, #f2f2f2)
}

@media (max-width:1190px) {
    .pro-features .pad-b--2x,
    .pro-features .pad-b--3x {
        padding-bottom: 0
    }
}

@media (max-width:740px) {
    .pro-features .pad-b--2x {
        padding-bottom: 40px
    }
}

@media (max-width:740px) {
    .pro-features .pad-b--3x {
        padding-bottom: 60px
    }
}

@media (max-width:740px) {
    .pro-features .pad-t--2x {
        padding-top: 40px
    }
}

@media (max-width:740px) {
    .pro-features .pad-t--3x {
        padding-top: 60px
    }
}

.pro-carousel .carousel-nav .fa-mobile-phone {
    font-size: 23px
}

.pro-carousel .carousel-slide {
    overflow: hidden
}

@media (max-width:990px) {
    .pro-carousel .carousel-slide {
        height: 348px
    }
}

.pro-carousel .carousel-slide .slider-img img {
    top: 0;
    position: relative
}

.pro-carousel .carousel-slide .slider-img p {
    margin: 20px 100px 0
}

.pro-carousel ul li.active {
    background: url(/img/pro/grey-arrow.png) 0 0 no-repeat;
    opacity: 1
}

.pro-carousel ul li.active a {
    color: gray
}

@media (max-width:990px) {
    .pro-carousel ul li.active {
        background-size: 200px
    }
}

.pro-carousel ul a {
    color: #ccc;
    cursor: pointer;
    display: block;
    width: 211px;
    height: 54px;
    padding: 15px;
    position: relative
}

.pro-carousel ul a i {
    padding-right: 15px
}

.pro-carousel ul a.active {
    background-color: #f2f2f2
}

.pro-carousel ul a.active:after {
    content: '\A';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 30px solid #f2f2f2;
    right: -16px;
    z-index: 10;
    bottom: 1px
}

@media (max-width:990px) {
    .carousel-slide {
        padding: 0
    }
}

.carousel-slide .user {
    font-weight: 600
}

.carousel-copy {
    overflow: hidden;
    height: 150px
}

@media (max-width:990px) {
    .carousel-copy {
        padding-left: 70px
    }
}

@media (min-width:741px) {
    .btn-pro {
        width: 263px
    }
    .support {
        padding-bottom: 40px
    }
    .carousel-nav {
        margin-top: 46px
    }
    .pro-features .row {
        text-align: left
    }
}

@media (min-width:741px) and (max-width:1190px) {
    .pro-features .feat-1 {
        padding-top: 5%
    }
}

@media (min-width:741px) and (max-width:1190px) {
    .pro-features .feat-2 {
        padding-top: 11%
    }
}

@media (min-width:741px) and (max-width:1190px) {
    .pro-features .feat-3 {
        padding-top: 9%
    }
}

@media (min-width:991px) {
    .carousel-nav {
        margin-top: 110px
    }
}

@media (min-width:991px) and (max-width:1200px) {
    .carousel-slide {
        height: 459px
    }
}

@media (min-width:1200px) {
    .carousel-slide {
        height: 474px
    }
    .carousel-nav {
        padding-left: 98px
    }
    .play-back img {
        max-width: 690px;
        margin-left: -205px
    }
}

.pad {
    padding: 60px
}

.pad-v {
    padding-top: 60px;
    padding-bottom: 60px
}

@media (max-width:990px) {
    .pad-v {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

@media (max-width:740px) {
    .pad-v {
        padding-bottom: 20px
    }
}

.pad-v--30 {
    padding-top: 30px;
    padding-bottom: 30px
}

.pad-h {
    padding-right: 60px;
    padding-left: 60px
}

.pad-h--30 {
    padding-right: 30px;
    padding-left: 30px
}

@media (max-width:740px) {
    .pad-s-h-20 {
        padding-right: 20px;
        padding-left: 20px
    }
}

.pad-t {
    padding-top: 60px
}

@media (max-width:990px) {
    .pad-t {
        padding-top: 50px
    }
}

@media (max-width:740px) {
    .pad-t {
        padding-top: 20px
    }
}

.pad-t--2x {
    padding-top: 120px
}

@media (max-width:990px) {
    .pad-t--2x {
        padding-top: 100px
    }
}

@media (max-width:740px) {
    .pad-t--2x {
        padding-top: 40px
    }
}

.pad-t--3x {
    padding-top: 180px
}

@media (max-width:990px) {
    .pad-t--3x {
        padding-top: 150px
    }
}

@media (max-width:740px) {
    .pad-t--3x {
        padding-top: 60px
    }
}

.pad-t--40 {
    padding-top: 40px
}

.pad-t--30 {
    padding-top: 30px
}

.pad-t--20 {
    padding-top: 20px
}

.pad-t--10 {
    padding-top: 10px
}

.pad-t--0 {
    padding-top: 0
}

.pad-b {
    padding-bottom: 60px
}

@media (max-width:990px) {
    .pad-b {
        padding-bottom: 50px
    }
}

@media (max-width:740px) {
    .pad-b {
        padding-bottom: 20px
    }
}

.pad-b--2x {
    padding-bottom: 120px
}

@media (max-width:990px) {
    .pad-b--2x {
        padding-bottom: 100px
    }
}

@media (max-width:740px) {
    .pad-b--2x {
        padding-bottom: 40px
    }
}

.pad-b--3x {
    padding-bottom: 180px
}

@media (max-width:990px) {
    .pad-b--3x {
        padding-bottom: 160px
    }
}

@media (max-width:740px) {
    .pad-b--3x {
        padding-bottom: 60px
    }
}

.pad-b--40 {
    padding-bottom: 40px
}

.pad-b--30 {
    padding-bottom: 30px
}

.pad-b--20 {
    padding-bottom: 20px
}

.pad-b--10 {
    padding-bottom: 10px
}

.pad-b--0 {
    padding-bottom: 0
}

@media (max-width:740px) {
    .pad-s-b-0 {
        padding-bottom: 0
    }
}

.pad-r {
    padding-right: 60px
}

.pad-l {
    padding-left: 60px
}

.pad-l--20 {
    padding-left: 20px
}

.mar {
    margin: 30px
}

.mar-v {
    margin-top: 30px;
    margin-bottom: 30px
}

.mar-h {
    margin-right: 30px;
    margin-left: 30px
}

.mar-t {
    margin-top: 30px
}

.mar-t--2x {
    margin-top: 60px
}

.mar-t--20 {
    margin-top: 20px
}

.mar-t--10 {
    margin-top: 10px
}

.mar-t--0 {
    margin-top: 0
}

.no-cta-top {
    margin-top: 76px
}

.mar-b {
    margin-bottom: 30px
}

.mar-b--2x {
    margin-bottom: 60px
}

.mar-b--20 {
    margin-bottom: 20px
}

.mar-b--10 {
    margin-bottom: 10px
}

.mar-b--90 {
    margin-bottom: 90px
}

.mar-b--0 {
    margin-bottom: 0
}

h4.icon-desc-spacer {
    padding-top: 60px
}

@media (max-width:740px) {
    h4.icon-desc-spacer {
        padding-top: 20px
    }
    h4.icon-desc-spacer+p {
        padding-bottom: 40px
    }
}

.anchor--b-30 {
    visibility: hidden;
    position: relative;
    bottom: 30px
}

.left {
    float: left
}

.right {
    float: right
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-white {
    color: #fff
}

.text-green {
    color: #90C564
}

.text-blue {
    color: #0080FF
}

.text-gray-dark {
    color: #3A3E3E;
    font-weight: 400
}

.text-light {
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-style: normal;
    font-weight: 300
}

.fine-print {
    border-bottom: none!important;
    font-size: 12px
}

.bg-gray {
    background-color: #f6f7f7
}

.bg-cloud {
    background: #3a8285 url("/img/bkgd/header.jpg") 50% 50% no-repeat;
    background-size: cover;
    width:100%;
}

.bg-cloud,
.bg-cloud h2,
.bg-cloud .btn {
    color: #fff
}

.lt-ie9 .bg-cloud {
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader( src='/img/bkgd/header.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/img/bkgd/header.jpg', sizingMethod='scale')"
}

.bg-white {
    background-color: #fff
}

.bg-white .btn--outline {
    color: #767F7F
}

.bg-white h2 {
    color: #3A3E3E
}

.bg-grid {
    background: #d8d8d8;
    height: 20px
}

.languagelist {
    width: 180px;
    float: left;
    margin: 0
}

.languagelist li {
    color: #868686;
    list-style: none;
    margin-left: 0;
    font-size: 14px
}

.languagelist.last {
    padding-right: 0
}

.flex-v-align {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.flex-t-align {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.flex-b-align {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end
}

.flex-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.hide {
    display: none;
    visibility: hidden
}

@media (max-width:990px) {
    .tablet-hide {
        display: none;
        visibility: hidden
    }
}

@media (max-width:740px) {
    .mobile-hide {
        display: none;
        visibility: hidden
    }
}

.mobile-show {
    display: none
}

@media (max-width:740px) {
    .mobile-show {
        display: block
    }
}

.tablet-show {
    display: none
}

@media (max-width:990px) {
    .tablet-show {
        display: block
    }
}

.break {
    display: block
}

@media (max-width:1190px) {
    .break {
        display: inline
    }
}

@media (max-width:990px) {
    .break {
        display: inline
    }
}

@media (max-width:740px) {
    .break {
        display: inline
    }
}

.hr-dashed {
    border-top: 2px dashed #A5B2B2;
    background: 0 0;
    position: relative;
    top: -75px;
    z-index: 0;
    margin: 0
}

@media (max-width:740px) {
    .hr-dashed {
        display: none
    }
}

.on-top {
    position: relative;
    z-index: 10
}

.block {
    display: block
}

.pull-up {
    margin-top: -100px
}

@media (max-width:740px) {
    .pull-up {
        margin-top: -80px
    }
}

@media print {
    * {
        background: transparent!important;
        color: #000!important;
        box-shadow: none!important;
        text-shadow: none!important
    }
    a,
    a:visited {
        text-decoration: underline
    }
    a[href]:after {
        content: " (" attr(href)")"
    }
    abbr[title]:after {
        content: " (" attr(title)")"
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: ""
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }
    thead {
        display: table-header-group
    }
    tr,
    img {
        page-break-inside: avoid
    }
    img {
        max-width: 100%!important
    }
    @page {
        margin: .5cm
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }
    h2,
    h3 {
        page-break-after: avoid
    }
}
.pro-text-lg{
	font-size: 40px;
	font-weight:bold;
	line-height: 1;
	padding-top: 30px;
	padding-bottom: 30px;
}
.pro-price{
	font-weight:bold;
	font-size:22px;
	margin-left:20px;
}
.pro-table{
	text-align: left;
}
.pro-table th{
	color:#90C564;
	font-size:20px;
	padding:14px;
	padding-top:0;

}
.pro-table tr{
	border-bottom: solid;
	border-width: 1px;

}
.pro-table td{
	padding:14px;

}

@media (max-width:740px){
	.pro-text-lg{

		padding-top: 0px;
		padding-bottom: 0px;
	}
	.pro-price{
		margin-left:5px;
		margin-top: 20px;
		margin-bottom: 0px;
	}
	.pro-table{
		margin-top:20px;
	}
}





