/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*NORMALIZE.CSS*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  -ms-text-size-adjust: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 1 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"], input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*NORMALIZE.CSS END*/
/*RESET*/
*,
:focus {
  outline: none; }

body {
  -webkit-fontype-smalloothing: antialiased; }

body,
html {
  height: 100%;
  width: 100%; }

a,
input[type=radio],
input[type=checkbox],
select {
  cursor: pointer; }

select[disabled] {
  cursor: default; }

/*normalization mozila*/
input:-webkit-autofill {
  background-color: transparent; }

/*normalization ie7*/
* + html input[type=checkbox],
* + html input[type=radio] {
  width: 13px;
  height: 13px; }

textarea {
  resize: none;
  vertical-align: top; }

em,
i {
  font-style: italic; }

img {
  vertical-align: top; }

input {
  vertical-align: middle; }

dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

menu,
ol,
ul {
  padding: 0 0 0 40px; }

nav ul,
nav ol {
  list-style: none outside none; }

blockquote,
q {
  quotes: none; }

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

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

:focus {
  -moz-outline: 3px solid #fff !important; }

input[type="radio"]:focus {
  -moz-outline-radius: 12px !important;
  -moz-outline-offset: 0 !important; }

input[type="checkbox"]:focus {
  -moz-outline-offset: -1px !important;
  -moz-outline: 1px solid #000 !important; }

/*fix button click opera old version*/
button:after {
  content: ""; }

del {
  text-decoration: line-through; }

table {
  width: 100%; }

form {
  margin: 0;
  padding: 0; }

input::-ms-clear {
  display: none; }

:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1; }

::-webkit-input-placeholder {
  /* chrome */
  opacity: 1;
  color: inherit; }

::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1; }

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0 none;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: outside none none; }

blockquote, q {
  quotes: none; }

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

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

@font-face {
  font-family: 'Gotham Pro';
  src: url("../fonts/../fonts/GothamPro-Light.eot");
  src: url("../fonts/GothamPro-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Light.woff2") format("woff2"), url("../fonts/GothamPro-Light.woff") format("woff"), url("../fonts/GothamPro-Light.ttf") format("truetype"), url("../fonts/GothamPro-Light.svg#GothamPro-Light") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Gotham Pro';
  src: url("../fonts/GothamPro-LightItalic.eot");
  src: url("../fonts/GothamPro-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-LightItalic.woff2") format("woff2"), url("../fonts/GothamPro-LightItalic.woff") format("woff"), url("../fonts/GothamPro-LightItalic.ttf") format("truetype"), url("../fonts/GothamPro-LightItalic.svg#GothamPro-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'Gotham Pro';
  src: url("../fonts/GothamPro.eot");
  src: url("../fonts/GothamPro.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro.woff2") format("woff2"), url("../fonts/GothamPro.woff") format("woff"), url("../fonts/GothamPro.ttf") format("truetype"), url("../fonts/GothamPro.svg#GothamPro") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Gotham Pro';
  src: url("../fonts/GothamPro-Medium.eot");
  src: url("../fonts/GothamPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Medium.woff2") format("woff2"), url("../fonts/GothamPro-Medium.woff") format("woff"), url("../fonts/GothamPro-Medium.ttf") format("truetype"), url("../fonts/GothamPro-Medium.svg#GothamPro-Medium") format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Gotham Pro';
  src: url("../fonts/GothamPro-Bold.eot");
  src: url("../fonts/GothamPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Bold.woff2") format("woff2"), url("../fonts/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro-Bold.ttf") format("truetype"), url("../fonts/GothamPro-Bold.svg#GothamPro-Bold") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Gotham Pro';
  src: url("../fonts/GothamPro-Black.eot");
  src: url("../fonts/GothamPro-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Black.woff2") format("woff2"), url("../fonts/GothamPro-Black.woff") format("woff"), url("../fonts/GothamPro-Black.ttf") format("truetype"), url("../fonts/GothamPro-Black.svg#GothamPro-Black") format("svg");
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: 'Bandera Pro';
  src: url("../fonts/BanderaProHeavy.eot");
  src: url("../fonts/BanderaProHeavy.eot?#iefix") format("embedded-opentype"), url("../fonts/BanderaProHeavy.woff2") format("woff2"), url("../fonts/BanderaProHeavy.woff") format("woff"), url("../fonts/BanderaProHeavy.ttf") format("truetype"), url("../fonts/BanderaProHeavy.svg#BanderaProHeavy") format("svg");
  font-weight: 800;
  font-style: normal; }

body {
  background: #fff;
  color: #090909;
  font-family: "Gotham Pro", Sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px; }

h1, h2, h3, h4, h5, h6 {
  color: #5d5046;
  font-family: "Gotham Pro", Sans-serif;
  margin: 0;
  padding: 0 0 12px; }

h1 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  text-align:center;
  text-transform: uppercase; }

h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700; }

h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 0 14px; }

h4 {
  font-size: 16px;
  line-height: 1.25; }

h5 {
  font-size: 14px;
  line-height: 1.3; }

h6 {
  font-size: 12px;
  line-height: 1.4; }

p {
  padding: 0 0 12px;
  margin: 0; }

hr {
  overflow: hidden;
  height: 1px;
  background: #e9e9e9;
  border: 0;
  margin: 32px 0; }

q,
blockquote {
  font: italic normal 24px/30px "PF HandBook Pro", Sans-serif;
  color: #5d5046;
  text-align: center;
  display: block;
  margin: 13px 18px 51px 0;
  padding: 51px 40px 39px;
  letter-spacing: .025em; }

strong,
b {
  font-weight: 600; }

a {
  color: #235395;
  transition: all 0.3s ease-in-out;
  text-decoration: none; }
  a.button {
    text-decoration: none; }
    a.button:hover {
      text-decoration: none; }

a:hover {
  text-decoration: none;
  color: #5e81b1; }

.content a {
  border-bottom: 1px solid #d6dce7;
  font-weight: 700; }
  .content a:hover {
    border: 0; }

img {
  position: relative;
  top: 4px; }

img[style*="float: left"],
img[style*="float:left"],
img[align="left"] {
  margin: 0 20px 5px 0; }

img[style*="float: right"],
img[style*="float:right"],
img[align="right"] {
  margin: 0 0 5px 20px; }

ol,
ul {
  font-size: 12px;
  line-height: 26px;
  font-size: 12px;
  font-weight: 300; }
  ol li,
  ul li {
    padding: 0 0 10px 25px; }

ol {
  list-style-type: decimal;
  list-style-position: inside;
  counter-reset: item; }
  ol li {
    color: #090909;
    display: block;
    position: relative; }
    ol li:before {
      content: counter(item) ". ";
      counter-increment: item;
      color: #5e81b1;
      position: absolute;
      left: 1px;
      font-weight: 700; }

.hidetext {
  overflow: hidden;
  text-indent: -9999px; }

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

* {
  box-sizing: border-box; }

.container {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto; }

.header {
  background: #4B0082;
  border-bottom: 1px solid #113666; }
  .header .topbar {
    padding: 20px 0 9px; }
    .header .topbar .logo-wrap {
      float: left; }
      .header .topbar .logo-wrap .logo-icon {
        display: block;
        background-image: url(../img/sprite.png);
        background-position: -232px -130px;
        width: 50px;
        height: 51px;
        margin: -2px 9px 0 0;
        float: left; }
      .header .topbar .logo-wrap .logo {
        font: 800 26px/26px "Bandera Pro", Sans-serif;
        color: #FFFFFF;
        overflow: hidden;
        display: inline-block;
        text-decoration: none;
        padding: 0;
        position: relative; }
        .header .topbar .logo-wrap .logo:hover {
          text-decoration: none; }
        .header .topbar .logo-wrap .logo .white {
          color: #FF8C00; }
      .header .topbar .logo-wrap .slogan {
        font: 400 14px/14px "Gotham Pro", Sans-serif;
        color: #c3dbf7;
        letter-spacing: .057em;
        overflow: hidden;
        display: block;
        padding: 5px 0 0; }
    .header .topbar .differences {
      float: right;
      color: #c3dbf7;
      padding: 4px 0 0 0; }
      .header .topbar .differences li {
        display: inline-block;
        vertical-align: top;
        position: relative;
        font: 800 14px/18px "Gotham Pro", Sans-serif;
        text-transform: uppercase;
        text-shadow: 1px 1px 1px #102e55; }
        .header .topbar .differences li:after {
          position: absolute;
          content: '';
          left: 0;
          top: 0; }
        .header .topbar .differences li.sec {
          padding: 0 0 0 41px; }
          .header .topbar .differences li.sec:after {
            top: -3px;
            background-image: url(../img/sprite.png);
            background-position: -286px -89px;
            width: 32px;
            height: 42px; }
        .header .topbar .differences li.priv {
          padding: 0 0 0 45px;
          margin: 0 0 0 45px; }
          .header .topbar .differences li.priv:after {
            top: -3px;
            background-image: url(../img/sprite.png);
            background-position: -286px -45px;
            width: 37px;
            height: 44px; }
        .header .topbar .differences li.open {
          margin: 0 0 0 34px;
          padding: 0 0 0 49px; }
          .header .topbar .differences li.open:after {
            background-image: url(../img/sprite.png);
            background-position: -232px -187px;
            width: 43px;
            height: 46px;
            top: -5px; }

.footer {
  background: #4B0082;
  padding: 28px 0 32px; }
  .footer .menu-icon {
    display: none; }
  .footer .bottom-nav {
    float: left;
    color: #fff; }
    .footer .bottom-nav li {
      display: inline-block;
      vertical-align: top;
      position: relative;
      padding: 1px 11px 0; }
      .footer .bottom-nav li:first-child {
        padding-left: 0; }
      .footer .bottom-nav li a {
        color: #fff;
        text-decoration: none; }
      .footer .bottom-nav li:hover {
        text-decoration: underline; }
      .footer .bottom-nav li.active a {
        color: #ffcd21; }
  .footer .cpr {
    float: right;
    color: #fff;
    position: relative;
    top: 2px;
    font-size: 12px; }

@media screen and (max-width: 1000px) and (max-width: 400px) {
  .container {
    padding: 0 8px !important; } }

@media screen and (max-width: 1000px) and (max-width: 835px) and (max-width: 775px) {
  .header .topbar {
    padding: 25px 0; } }

@media screen and (max-width: 1000px) and (max-width: 835px) and (max-width: 775px) {
  .header .topbar .logo-wrap {
    margin: 0 auto;
    float: none;
    text-align: center; } }
  @media screen and (max-width: 1000px) and (max-width: 835px) and (max-width: 775px) and (max-width: 400px) {
    .header .topbar .logo-wrap {
      padding: 0 0 12px;
      max-width: 305px; } }

@media screen and (max-width: 1000px) and (max-width: 835px) {
  .header .topbar .logo-wrap .logo {
    font-size: 22px;
    width: 310px; } }
  @media screen and (max-width: 1000px) and (max-width: 835px) and (max-width: 400px) {
    .header .topbar .logo-wrap .logo {
      width: 100%;
      text-align: center; }
      .header .topbar .logo-wrap .logo .logo-icon {
        background-image: url(../img/sprite.png);
        background-position: -286px 0px;
        width: 43px;
        height: 45px;
        margin: -1px 1px 0 1px; } }

@media screen and (max-width: 1000px) and (max-width: 835px) {
  .header .topbar .logo-wrap .slogan {
    font-size: 12px; } }
  @media screen and (max-width: 1000px) and (max-width: 835px) and (max-width: 400px) {
    .header .topbar .logo-wrap .slogan {
      padding: 1px 0 0 0; } }

@media screen and (max-width: 1000px) and (max-width: 775px) {
  .header .topbar .differences {
    float: none;
    text-align: center;
    width: 100%; }
    .header .topbar .differences li {
      text-align: left; } }
    @media screen and (max-width: 1000px) and (max-width: 775px) and (max-width: 500px) {
      .header .topbar .differences li {
        font-size: 9px;
        line-height: 12px; } }
    @media screen and (max-width: 1000px) and (max-width: 775px) and (max-width: 400px) {
      .header .topbar .differences li.sec {
        padding: 0 0 0 26px; }
        .header .topbar .differences li.sec:after {
          background-image: url(../img/sprite.png);
          background-position: -286px -190px;
          width: 22px;
          height: 29px; }
      .header .topbar .differences li.priv {
        margin: 0 0 0 24px;
        padding: 0 0 0 30px; }
        .header .topbar .differences li.priv:after {
          background-image: url(../img/sprite.png);
          background-position: -286px -160px;
          width: 26px;
          height: 30px; }
      .header .topbar .differences li.open {
        margin: 0 0 0 24px;
        padding: 0 0 0 30px; }
        .header .topbar .differences li.open:after {
          background-image: url(../img/sprite.png);
          background-position: -286px -131px;
          width: 30px;
          height: 29px; } }

@media screen and (max-width: 1000px) and (max-width: 680px) {
  .footer.active {
    position: relative; }
    .footer.active .bottom-nav {
      display: block;
      padding: 40px 0 0; }
    .footer.active .cpr {
      position: absolute;
      right: 8px;
      bottom: 33px;
      top: auto;
      height: 20px; }
  .footer .menu-icon {
    display: block;
    background-image: url(../img/sprite.png);
    background-position: 0px -244px;
    width: 45px;
    height: 25px;
    position: absolute;
    cursor: pointer;
    z-index: 10; }
  .footer .bottom-nav {
    display: none;
    transition: height 0.3s ease-in-out; }
    .footer .bottom-nav li {
      margin: 0 0 20px;
      display: block;
      margin: 0 0 10px; }
      .footer .bottom-nav li:first-child {
        padding-left: 11px; }
      .footer .bottom-nav li:after,
      .footer .bottom-nav li:before {
        display: none; }
  .footer .cpr {
    font-size: 12px; } }

fieldset {
  display: block;
  text-align: center; }

label {
  font-weight: 600;
  line-height: 18px;
  font-size: 14px;
  margin: 0 0 10px;
  display: block; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="phone"],
select {
  height: 41px;
  border: 0;
  font-size: 14px;
  line-height: 14px;
  padding: 13px 9px 14px 10px;
  font-weight: 400;
  color: #454545;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  background: #daeeff; }

select {
  padding-top: 0;
  padding-bottom: 0; }

.ui-selectmenu-button {
  background: #daeeff;
  color: #454545;
  border: 0;
  border-radius: 0; }
  .ui-selectmenu-button[aria-expanded="true"] {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
    .ui-selectmenu-button[aria-expanded="true"] span.ui-icon-triangle-1-s {
      background: url("../img/icons/select-drpu.png") center center no-repeat; }
  .ui-selectmenu-button span.ui-selectmenu-text {
    height: 41px;
    padding: 13px 9px 14px 10px;
    font: 400 14px/14px "Gotham Pro", Arial; }
  .ui-selectmenu-button span.ui-icon-triangle-1-s {
    right: 8px;
    top: -1px;
    bottom: 0;
    height: auto;
    width: 20px;
    margin: 0;
    background: url("../img/icons/select-drpd.png") center center no-repeat; }

.ui-selectmenu-menu .ui-widget-content {
  background: #fff;
  border: 2px solid #9ebfcd;
  border-radius: 0; }
  .ui-selectmenu-menu .ui-widget-content .ui-menu-item {
    padding: 4px 10px;
    font: 400 14px/14px "Gotham Pro", Arial; }
    .ui-selectmenu-menu .ui-widget-content .ui-menu-item.ui-state-focus {
      border: 0;
      margin: 0;
      font-weight: inherit; }

.button {
  width: 232px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  border-radius: 3px;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  padding: 16px 36px 17px 0;
  background: url("../img/icons/but_0.png") center top no-repeat;
  color: #235395;
  border: 0;
  height: 57px;
  text-shadow: 1px 1px 1px #ffec92;
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.23); }
  .button:hover {
    background: url("../img/icons/but_1.png") center top no-repeat;
    color: #235395 !important; }
  .button:focus {
    position: relative;
    top: 1px; }

.features {
  height: 398px;
  background: #214f8f url("../img/features-bg.jpg") center top no-repeat;
  background-size: cover; }
  .features .left {
    padding: 65px 0 0;
    float: left; }
    .features .left ul {
      padding: 0 0 49px; }
      .features .left ul li {
        font-size: 18px;
        line-height: 30px;
        color: #fff;
        padding: 10px 0 9px 41px;
        position: relative; }
        .features .left ul li:first-child {
          padding-top: 0; }
          .features .left ul li:first-child:before {
            top: 5px; }
        .features .left ul li:last-child {
          padding-bottom: 0; }
        .features .left ul li:before {
          position: absolute;
          content: '';
          left: 0px;
          top: 15px;
          background-image: url(../img/sprite.png);
          background-position: -286px -219px;
          width: 23px;
          height: 24px; }
    .features .left .button {
      margin: 0 0 0 -1px; }
  .features .right {
    float: right;
    margin: 0 0 0 20px;
    max-width: 310px;
    padding: 51px 0 0; }
    .features .right form {
      background: #dae6f2;
      /* Old browsers */
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RhZTZmMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjIxJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc5JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkYWU2ZjIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
      background: -moz-linear-gradient(top, #dae6f2 0%, white 21%, white 79%, #dae6f2 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dae6f2), color-stop(21%, white), color-stop(79%, white), color-stop(100%, #dae6f2));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, #dae6f2 0%, white 21%, white 79%, #dae6f2 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, #dae6f2 0%, white 21%, white 79%, #dae6f2 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(top, #dae6f2 0%, white 21%, white 79%, #dae6f2 100%);
      /* IE10+ */
      background: linear-gradient(to bottom, #dae6f2 0%, white 21%, white 79%, #dae6f2 100%);
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dae6f2', endColorstr='#dae6f2',GradientType=0 );
      /* IE6-8 */
      padding: 15px 6px 13px 10px;
      border-radius: 10px;
      border: 4px solid #fff; }
      .features .right form .title {
        font: 700 24px/24px "Gotham Pro", Sans-serif;
        color: #454545;
        padding: 0 0 19px;
        display: block;
        text-align: center; }
      .features .right form select,
      .features .right form .fn,
      .features .right form #count-button {
        margin: 0 5px 0 0; }
      .features .right form select,
      .features .right form input[type="text"] {
        width: 138px;
        margin-bottom: 9px; }
      .features .right form input[type="text"].email {
        width: 100%;
        margin: 0 0 14px; }
      .features .right form .button {
        margin: 0 0 12px;
        background: url("../img/icons/e-mail-but_0.png") center top no-repeat;
        width: 286px;
        height: 65px;
        padding: 10px 0 0; }
        .features .right form .button span {
          display: block;
          color: #235395;
          font-weight: 600;
          font-size: 16px;
          margin: -1px 0 0; }
        .features .right form .button:hover {
          background: url("../img/icons/e-mail-but_1.png") center top no-repeat; }
      .features .right form p {
        padding: 0;
        font-size: 10px;
        line-height: 14px;
        font-weight: 300;
        color: #103466;
        text-align: center;
        margin: 0; }

.steps {
  background-color: #4B0082;
  padding: 28px 0 33px; }
  .steps .list li {
    display: inline-block;
    vertical-align: top;
    max-width: 320px;
    margin: 0 5px 0 0;
    padding: 0; }
    .steps .list li:first-child .img {
      padding-left: 0; }
    .steps .list li:last-child {
      margin-right: 0; }
      .steps .list li:last-child .img {
        padding: 0 17px 0 46px; }
    .steps .list li:nth-child(2) .img {
      padding: 0 16px 0 38px; }
    .steps .list li .img {
      float: left;
      padding: 0 30px 0 24px; }
    .steps .list li .title,
    .steps .list li p {
      overflow: hidden; }
    .steps .list li .title {
      color: #c5dcf7;
      font-size: 14px;
      line-height: 18px;
      font-weight: 800;
      display: block;
      text-transform: uppercase;
      padding: 0 0 7px; }
    .steps .list li p {
      color: #fff;
      padding: 0;
      font-size: 12px;
      font-weight: 300;
      line-height: 18px;
      margin: 0; }

.content {
  padding: 27px 0 57px; }
  .content .post h2 {
    padding: 0 0 14px; }
  .content ul li {
    position: relative; }
    .content ul li:after {
      position: absolute;
      content: '';
      left: 0px;
      top: 8px;
      width: 8px;
      height: 8px;
      background: #5e81b1; }
  .content .button {
    margin: 10px 0 0; }

@media screen and (max-width: 1000px) and (max-width: 640px) {
  .features {
    height: auto;
    padding: 0 0 40px; } }

@media screen and (max-width: 1000px) and (max-width: 400px) {
  .features {
    padding: 0 0 16px;
    background: #214f8f url("../img/features-bg-mob.jpg") center top no-repeat; } }

@media screen and (max-width: 1000px) {
  .features .container {
    max-width: 640px; } }
  @media screen and (max-width: 1000px) and (max-width: 639px) {
    .features .container {
      max-width: 320px; } }

@media screen and (max-width: 1000px) and (max-width: 640px) {
  .features .right {
    float: none;
    margin: 0 auto;
    position: static; } }
  @media screen and (max-width: 1000px) and (max-width: 640px) and (max-width: 400px) {
    .features .right {
      padding: 29px 0 0; } }

@media screen and (max-width: 1000px) and (max-width: 640px) {
    .features .right .email {
      max-width: 267px; } }
    @media screen and (max-width: 1000px) and (max-width: 640px) and (max-width: 400px) {
      .features .right .email {
        max-width: 99%; } }

@media screen and (max-width: 1000px) and (max-width: 640px) {
    .features .right .button {
      width: 267px !important; } }
    @media screen and (max-width: 1000px) and (max-width: 640px) and (max-width: 400px) {
      .features .right .button {
        width: 100% !important; } }

@media screen and (max-width: 1000px) and (max-width: 640px) {
    .features .right .select,
    .features .right .fn,
    .features .right .ln,
    .features .right .zip,
    .features .right #count-button {
      width: 129px !important; } }
  @media screen and (max-width: 1000px) and (max-width: 640px) and (max-width: 400px) {
    .features .right .select,
    .features .right .fn,
    .features .right #count-button {
      margin-right: 15px !important; } }

@media screen and (max-width: 1000px) and (max-width: 640px) {
  .features .left {
    text-align: center;
    float: none;
    padding: 20px 0 0; }
    .features .left ul {
      padding: 0 0 30px; } }
    @media screen and (max-width: 1000px) and (max-width: 640px) and (max-width: 400px) {
      .features .left ul {
        text-align: left; } }

@media screen and (max-width: 1000px) and (max-width: 640px) {
      .features .left ul li {
        display: inline-block;
        vertical-align: top;
        padding: 10px 0 10px 52px; } }
      @media screen and (max-width: 1000px) and (max-width: 640px) and (min-width: 401px) and (max-width: 640px) {
        .features .left ul li {
          text-shadow: 1px 1px 1px #333; } }
      @media screen and (max-width: 1000px) and (max-width: 640px) and (max-width: 400px) {
        .features .left ul li {
          font-size: 14px;
          padding: 10px 0 9px 33px;
          display: block; }
          .features .left ul li:before {
            top: 12px; } }

@media screen and (max-width: 1000px) and (max-width: 640px) {
    .features .left .button {
      display: none; } }

@media screen and (max-width: 1000px) and (max-width: 640px) {
  .steps {
    padding: 28px 0 10px; }
    .steps .container {
      max-width: 320px; } }

@media screen and (max-width: 1000px) {
  .steps .list li {
    width: 30%;
    margin: 0 10px; } }
  @media screen and (max-width: 1000px) and (max-width: 640px) {
    .steps .list li {
      width: 100%;
      margin: 0 0 30px !important;
      position: relative;
      padding: 0 0 0 88px; }
      .steps .list li:first-child .img {
        top: 0; }
      .steps .list li .img {
        padding: 0 !important;
        padding: 0;
        position: absolute;
        left: 0;
        top: 10px;
        width: 57px;
        text-align: center; } }

@media screen and (max-width: 1000px) and (max-width: 475px) {
  .content {
    padding-top: 12px; }
    .content img {
      width: 100%;
      height: auto;
      display: block;
      padding: 0 0 20px; }
    .content .button {
      display: block;
      margin-left: auto;
      margin-right: auto; } }
	  
.button:focus {
    position: relative;
    top: 0px !important;
}

.features .right form .button{
  padding: 3px 0px 0px;
} 