/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
    overflow-x: hidden;
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * 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,
menu,
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/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
    outline: 0;
}

/* 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 variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * 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 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    -webkit-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"] {
    -webkit-box-sizing: border-box;
    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.
 */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 2 */
}

/**
 * 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;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input,
select,
textarea,
button {
    font: 18px/1.4 "Proxima Nova Light", sans-serif;
}

input:hover,
input:focus,
input:active,
select:hover,
select:focus,
select:active,
textarea:hover,
textarea:focus,
textarea:active,
button:hover,
button:focus,
button:active {
    outline: 0;
}

body {
    font: 18px/1.4 "Proxima Nova Light", sans-serif;
    color: #333;
    background-color: #fff;
}

hr {
    height: 0;
    margin: 15px 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ddd;
}

hr:before {
    display: table;
    content: "";
}

hr:after {
    display: table;
    clear: both;
    content: "";
}

.browserupgrade {
    background: #f00;
    color: #fff;
    margin: 0;
    text-align: center;
    padding: 0.8em;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.browserupgrade a {
    font-weight: bold;
    color: #ff0;
}

.cf:before {
    display: table;
    content: "";
}

.cf:after {
    display: table;
    clear: both;
    content: "";
}

iframe[name='google_conversion_frame'] {
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin-top: -13px;
    float: left;
}

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

figure {
    margin: 0;
    padding: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0 0 0.7em;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 30px;
}

h2,
.h2 {
    font-size: 21px;
}

h3,
.h3 {
    font-size: 16px;
}

h4,
.h4 {
    font-size: 14px;
}

h5,
.h5 {
    font-size: 12px;
}

h6,
.h6 {
    font-size: 11px;
}

a {
    color: #FE360B;
}

a:hover,
a:focus,
a:active {
    outline: 0;
}

a:focus {
    text-decoration: none;
}

a[href^=tel] {
    cursor: default;
}

p {
    margin: 0 0 0.7em;
}

small {
    font-size: 90%;
}

blockquote {
    margin: 0;
}

ul,
ol {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

ol ol,
ul ol {
    list-style-type: lower-roman;
}

ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
    list-style-type: lower-alpha;
}

dd {
    margin-left: 0;
}

tt,
code {
    font-family: "Proxima Nova Light", sans-serif;
    font-size: 12px;
}

pre {
    margin-top: 0;
    margin-bottom: 0;
    font: 12px "Proxima Nova Light", sans-serif;
}

/*==== Web Font ===*/
@font-face {
    font-family: 'Proxima Nova Black';
    src: url("../font/ProximaNova-Black.eot");
    src: url("../font/ProximaNova-Black.eot?#iefix") format("embedded-opentype"), url("../font/ProximaNova-Black.woff2") format("woff2"), url("../font/ProximaNova-Black.woff") format("woff"), url("../font/ProximaNova-Black.ttf") format("truetype"), url("../font/ProximaNova-Black.svg#ProximaNova-Black") format("svg");
    font-weight: 900;
    font-style: normal;
}

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

@font-face {
    font-family: 'Proxima Nova Regular';
    src: url("../font/Proxima Nova Alt Regular-webfont.eot");
    src: url("../font/Proxima Nova Alt Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../font/Proxima Nova Alt Regular-webfont.woff") format("woff"), url("../font/Proxima Nova Alt Regular-webfont.ttf") format("truetype"), url("../font/Proxima Nova Alt Regular-webfont.svg#ProximaNova-Light") format("svg");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova Semibold';
    src: url("../font/Proxima Nova Semibold-webfont.eot");
    src: url("../font/Proxima Nova Semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../font/Proxima Nova Semibold-webfont.woff2") format("woff2"), url("../font/Proxima Nova Semibold-webfont.woff") format("woff"), url("../font/Proxima Nova Semibold-webfont.ttf") format("truetype"), url("../font/Proxima Nova Semibold-webfont.svg#ProximaNova-Light") format("svg");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova Alt Bold';
    src: url("../font/Proxima Nova Alt Bold-webfont.eot");
    src: url("../font/Proxima Nova Alt Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../font/Proxima Nova Alt Bold-webfont.woff2") format("woff2"), url("../font/Proxima Nova Alt Bold-webfont.woff") format("woff"), url("../font/Proxima Nova Alt Bold-webfont.ttf") format("truetype"), url("../font/Proxima Nova Alt Bold-webfont.svg#ProximaNova-Light") format("svg");
    font-weight: 300;
    font-style: normal;
}

/*==== Web Font End ====*/
fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

label {
    outline: none;
}

label:focus {
    outline: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    resize: none;
    height: auto;
}

.form-group {
    margin-bottom: 15px;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin-right: 0.35em;
}

input.input-contrast,
.input-contrast {
    background-color: #fafafa;
}

input.input-contrast:focus,
.input-contrast:focus {
    background-color: #fff;
}

::-webkit-input-placeholder {
    color: #aaa;
}

:-ms-input-placeholder {
    color: #aaa;
}

::-ms-input-placeholder {
    color: #aaa;
}

::placeholder {
    color: #aaa;
}

button:focus,
button.focus,
input[type="submit"]:focus,
input[type="submit"].focus {
    outline: 0;
}

.form-wrap input:-moz-placeholder {
    opacity: 1;
    /* Firefox 18- */
    color: #404040 !important;
}

.form-wrap input::-moz-placeholder {
    opacity: 1;
    /* Firefox 19+ */
    color: #404040 !important;
}

.form-wrap ::-webkit-input-placeholder {
    color: #404040 !important;
    opacity: 1 !important;
    /* for chrome */
}

.form-wrap textarea:-moz-placeholder {
    opacity: 1;
    /* Firefox 18- */
    color: #404040 !important;
}

.form-wrap textarea::-moz-placeholder {
    opacity: 1;
    /* Firefox 19+ */
    color: #404040 !important;
}

.form-wrap ::-webkit-input-placeholder {
    opacity: 1 !important;
    /* for chrome */
    color: #404040 !important;
}

.form-wrap input[type="text"],
.form-wrap input[type="password"],
.form-wrap input[type="email"],
.form-wrap input[type="number"],
.form-wrap input[type="tel"],
.form-wrap input[type="url"],
.form-wrap textarea {
    height: 50px;
    padding: 15px;
    font: 1em "Proxima Nova Light", sans-serif;
    color: #404040;
    vertical-align: middle;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right center;
    border: 1px solid #fff;
    border-radius: 0;
    outline: none;
    display: block;
    width: 100%;
    -webkit-transition: all ease .1s;
    -o-transition: all ease .1s;
    transition: all ease .1s;
    margin-bottom: 15px;
}

.form-wrap input[type="text"].focus,
.form-wrap input[type="text"]:focus,
.form-wrap input[type="password"].focus,
.form-wrap input[type="password"]:focus,
.form-wrap input[type="email"].focus,
.form-wrap input[type="email"]:focus,
.form-wrap input[type="number"].focus,
.form-wrap input[type="number"]:focus,
.form-wrap input[type="tel"].focus,
.form-wrap input[type="tel"]:focus,
.form-wrap input[type="url"].focus,
.form-wrap input[type="url"]:focus,
.form-wrap textarea.focus,
.form-wrap textarea:focus {
    border-color: #FE360B;
    -webkit-box-shadow: 0 0 5px rgba(81, 167, 232, 0.5);
    box-shadow: 0 0 5px rgba(81, 167, 232, 0.5);
}

.form-wrap textarea {
    height: 155px;
}

table {
    border-collapse: collapse;
    margin: 0.7em 0;
    table-layout: fixed;
    width: 100%;
}

th {
    border-bottom: 2px solid #ddd;
    font-weight: 600;
    padding: 0.7em 0;
    text-align: left;
}

td {
    border-bottom: 1px solid #ddd;
    padding: 0.7em 0;
}

tr,
td,
th {
    vertical-align: middle;
}

.btn {
    background: #f4a42f;
    padding: 12px 40px;
    color: #fff;
    font: bold 1em "Proxima Nova Light", sans-serif;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    cursor: pointer;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: 0;
    border-bottom: 7px solid #c07631;
}

.btn:hover,
.btn:focus {
    background: #c07631;
    border-bottom: 7px solid #f4a42f;
}

.btn-primary {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
    background: #FE360B;
}

.btn-primary:hover {
    color: #fff;
    background: #ef2b01;
}

.btn-primary:active {
    background: #d52601;
}

.btn-primary:disabled,
.btn-primary:disabled:hover,
.btn-primary.disabled,
.btn-primary.disabled:hover {
    color: #fefefe;
    background: #add39f;
}

.btn-outline {
    color: #FE360B;
    background-color: #fff;
    background-image: none;
    border: 1px solid #e5e5e5;
}

.btn-outline:focus {
    border: 1px solid #e5e5e5;
}

.btn-outline:hover,
.btn-outline:active {
    color: #fff;
    background-color: #FE360B;
    background-image: none;
    border-color: #FE360B;
}

.btn-outline:disabled,
.btn-outline:disabled:hover,
.btn-outline.disabled,
.btn-outline.disabled:hover {
    color: #404040;
    background-color: #fff;
    background-image: none;
    border-color: #e5e5e5;
}

.btn-sm {
    padding: 2px 10px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

html {
    overflow-x: hidden;
}

.header {
    background: #fff;
    padding-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
    z-index: 999;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.header nav {
    float: left;
    padding-top: 10px;
}

.logo {
    float: left;
}

.logo img {
    display: block;
    width: 130px;
}

.hd-right {
    float: right;
    padding-top: 20px;
}

.number {
    float: right;
    padding-left: 15px;
}

.number i {
    display: inline-block;
    padding-right: 15px;
    float: left;
}

.number img {
    width: 33px;
    height: 33px;
    display: block;
}

.number a {
    color: #5cbfba;
    font: 1.667em "Proxima Nova Semibold", sans-serif;
    display: inline-block;
    float: left;
}

.banner {
    background: #005A8B;
    background-size: cover;
    margin-top: 98px;
    padding: 60px 0;

}

.banner-content {
    position: relative;
    height: 645px;
}

@media screen and (max-width: 1600px) {
    .banner-content {
        height: 575px;
    }
}

@media screen and (max-width: 1400px) {
    .banner-content {
        height: 498px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content {
        height: 320px;
    }
}

.banner-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FE360B;
    z-index: 10;
    padding: 40px 200px 40px 0;
}

.banner-txt::before {
    content: "";
    position: absolute;
    top: 0;
    width: 9600px;
    right: 100%;
    height: 100%;
    background: #FE360B;
    display: block;
}

.banner-txt p {
    font: 1.15em/1.556em "Proxima Nova Light", sans-serif;
    color: #fff;
}

.offer {
    background: #005A8B;
    padding: 50px 0 65px 0;
    text-align: center;
}

.offer * {
    color: #fff;
}

.offer p {
    font: 1.167em "Proxima Nova Light", sans-serif;
    max-width: 880px;
    margin: 0 auto;
}

.offer h1 {
    font: 1.5em "Proxima Nova Black", sans-serif;
    margin: 24px 0;
}

.offer ul {
    padding-top: 20px;
}

.offer ul li {
    display: inline-block;
    width: 235px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    vertical-align: middle;
    margin: 0 15px;
    position: relative;
}

.offer ul li img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
}

.offer ul li a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.offer ul li a:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(254, 54, 11, 0);
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 10px;
}

.offer ul li a:hover:after {
    background: rgba(254, 54, 11, 0.4);
}

.form-wrap {
    background: #FE360B;
    padding: 30px 0;
}

.capt-box {
    text-align: center;
    height: 100px;
}

.footer {
    text-align: center;
    padding: 40px 15px;
    background: #eaeaea;
}

.footer p {
    font: 1em "Proxima Nova Regular", sans-serif;
}

.footer ul {
    list-style: none;
    padding-right: 15px;
    padding-bottom: 5px;
}

.footer ul li {
    display: inline-block;
    margin: 0 10px;
    position: relative;
}

.footer ul li:last-child::after {
    display: none !important;
}

.footer ul li::after {
    content: "";
    width: 1px;
    height: 15px;
    background: #333;
    top: 5px;
    right: -15px;
    display: block;
    position: absolute;
}

.footer ul li a {
    color: #FE360B;
}

.footer ul li a:hover {
    color: #333;
}

.hd h2 {
    font: 1.5em "Proxima Nova Alt Bold", sans-serif;
    color: white;
    margin: 0px;
}

.inner-page h1 {
    color: white;
    font-family: "Proxima Nova Alt Bold", sans-serif;
    font-size: 3.15em;
    margin: 0.42em;
}

.contact {
    padding: 65px 0;
    text-align: center;
}

.contact h2 {
    font: 3.125em "Proxima Nova Alt Bold", sans-serif;
    color: #FE360B;
    margin-bottom: 10px;
}

.contact p {
    font-size: 1.125em;
}

.contact .hd {
    font: 1.875em "Proxima Nova Semibold", sans-serif;
    color: #404040;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.contact .hd:hover {
    color: #333;
}

.contact .hd[href^="tel"]:hover {
    color: #404040;
}

.contact i {
    padding-right: 18px;
    position: relative;
    top: -3px;
}

.contact i img {
    width: 33px;
}

.contact li {
    list-style: none;
    float: left;
    padding-right: 60px;
}

.contact address {
    font: 1.063em "Proxima Nova Light", sans-serif;
}

.contact h3 {
    font: 1.875em "Proxima Nova Semibold", sans-serif;
    margin-bottom: 10px;
}

.agent .contact a {
    color: #fff;
}

.agent .contact a:hover {
    color: #fff !important;
}

.agent .contact span {
    color: #fff;
}

.thank-you {
    text-align: center;
    margin-top: 110px;
    padding: 80px 15px;
}

.thank-you p {
    font: 1.313em "Proxima Nova Regular", sans-serif;
    padding: 20px;
}

.thank-you p span {
    font-style: "Proxima Nova Semibold", sans-serif;
    color: #FE360B;
    display: block;
}

.thank-you img {
    display: block;
    margin: 0 auto;
}

.input-holder span.error,
.input-holder span.errors {
    background: #ff0000 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    display: none;
    font: 400 12px "Proxima Nova", sans-serif;
    padding: 2px 5px;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: inherit;
    top: -31px;
    z-index: 9;
}

.input-holder span.error::after,
.input-holder span.errors::after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #ff0000;
    bottom: -7px;
    content: "";
    height: 0;
    position: absolute;
    right: 10px;
    width: 0;
}

.input-holder.error input[type="text"],
.input-holder.error input[type="search"],
.input-holder.error input[type="password"],
.input-holder.error input[type="email"],
.input-holder.error input[type="number"],
.input-holder.error input[type="tel"],
.input-holder.error input[type="url"],
.input-holder.error textarea {
    border: 1px solid #ff0000;
}

.cap-wdt {
    max-width: 690px;
    margin: 0 auto;
}

@media screen and (max-width: 479px) {

    .capt-box .input-holder span.error,
    .capt-box .input-holder span.errors {
        top: -41px;
        right: 0;
    }
}

.cont-cap p {
    display: block;
    margin: 0;
}

.cont-cap b {
    text-transform: uppercase;
    font-weight: "Proxima Nova Alt Bold", sans-serif;
}

.capch {
    display: inline-block;
    position: relative;
    top: 5px;
}

.ic-name {
    text-transform: uppercase;
    font-weight: "Proxima Nova Alt Bold", sans-serif;
}

@media screen and (max-width: 767px) {
    .cont-cap p {
        display: block;
    }

    .capch {
        margin-bottom: 20px;
    }
}

.anchor {
    display: block;
    height: 130px;
    margin-top: -130px;
    visibility: hidden;
}

@media (max-width: 767px) {
    .anchor {
        height: 10px;
        margin-top: -10px;
        visibility: hidden;
    }
}

.tv-pack {
    border: 1px solid #D6D6D6;
    margin: 10px 0;
    border-radius: 8px;
}

.tv-pack .hd {
    background: #FE360B;
    padding: 14px 0;
    text-align: center;
}

.tv-pack h3 {
    font: 20px "Proxima Nova Black", sans-serif;
    color: #00558a;
    margin-bottom: 5px;
}

.tv-pack .tag {
    font: bold 16px/18px "Proxima Nova Light", sans-serif;
    color: #00558a;
    line-height: 1.11em;
    display: inline-block;
}

.tv-pack ul {
    padding: 10px 0 5px 20px;
}

.tv-pack li {
    list-style: none;
    position: relative;
    top: 0;
    left: 0;
    font: 0.944em "Proxima Nova Light", sans-serif;
    color: #464646;
    margin-bottom: 6px;
}

.tv-pack li::before {
    position: absolute;
    top: 3px;
    left: -18px;
    content: "";
    width: 7px;
    height: 7px;
    background: #1F95CD;
    border-radius: 50%;
}

.tv-pack .btn {
    margin: 12px 0 0 0;
    padding: 8px 0;
    width: 100%;
    text-align: center;
    border-bottom: 3px solid #C37729;
    font-size: 1em;
    border-radius: 5px;
}

.tv-pack .btn:hover,
.tv-pack .btn:focus {
    border-bottom: 3px solid #023352;
}

.price-bx {
    /* background: #00558a */
    ;
    padding: 13px 15px;
}

.tv-prd {
    height: 230px;
    padding: 15px 30px;
}

.tv-prd-ld {
    height: 130px;
    padding: 15px 30px;
}

.pr-lft {
    position: relative;
    padding: 8px 0 0 30px;
}

.pr-lft .rate {
    font: 2.22em/1.44em "ProximaNova-Black", sans-serif;
    color: #2193cb;
}

.pr-lft::before {
    height: 0;
    width: 0;
    border-bottom: 12px solid transparent;
    border-left: 11px solid #f7a51c;
    border-top: 12px solid transparent;
    position: absolute;
    top: 23px;
    left: 0;
    content: "";
}

.botm-bx {
    padding: 20px;
    text-align: right;
}

.botm-bx a {
    color: #00558a;
    font: bold 1em "Proxima Nova Light", sans-serif;
}

.botm-bx a:hover {
    color: #FE360B;
}

.tv-section {
    padding: 40px 0;
}

.tv-btns {
    padding-bottom: 20px;
}

.tv-btns li {
    float: left;
    margin-right: 15px;
    list-style: none;
    padding: 8px 19px;
    color: #FE360B;
    display: block;
    border: 2px solid #FE360B;
    border-radius: 5px;
    font: 1.5em "Proxima Nova Alt Bold", sans-serif;
    cursor: pointer;
}

.tv-btns li.active,
.tv-btns li:hover,
.tv-btns li.active-2 {
    background: #FE360B;
    color: #fff;
}

.chn-bx {
    display: none;
}

.chn-bx.active {
    display: block;
}

.anchore {
    display: block;
    height: 96px;
    /*same height as header*/
    margin-top: -96px;
    /*same height as header*/
    visibility: hidden;
}

.agent {
    background: #FE360B;
    padding: 0 0 40px 0;
}

.agent h1 {
    color: #fff;
    font: 2.9em "Proxima Nova Alt Bold", sans-serif;
    text-align: center;
}

.agent h4 {
    font: 1.6em/1.4em "Proxima Nova Regular", sans-serif;
    color: #fff;
    text-align: center;
}

.agent h5 {
    font: 1.6em "Proxima Nova Regular", sans-serif;
    color: #fff;
}

.agent .form-wrap {
    padding: 0;
}

.agent input[type="radio"] {
    display: none;
}

.agent input[type="radio"] + label {
    color: #fff;
    font: 1.11em "Proxima Nova Regular", sans-serif;
}

.agent input[type="radio"] + label span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: -4px 4px 0 0;
    vertical-align: middle;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
}

.agent input[type="radio"]:checked + label span::after {
    content: "";
    width: 6px;
    height: 6px;
    top: 3px;
    left: 3px;
    background-color: #F4A42F;
    position: absolute;
    display: block;
    border-radius: 50%;
}

.agent input[type="radio"] + label span,
.agent input[type="radio"]:checked + label span {
    -webkit-transition: background-color 0.4s linear;
    -o-transition: background-color 0.4s linear;
    -moz-transition: background-color 0.4s linear;
    transition: background-color 0.4s linear;
}

.agent textarea {
    height: 108px;
}

.sl-bx {
    width: 100%;
    position: relative;
}

.sl-bx select {
    width: 100%;
    height: 50px;
    border: 1px solid #fff;
    padding: 0 30px 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background: #fff;
    border-radius: 0;
}

.sl-bx::after {
    position: absolute;
    content: "";
    bottom: 35%;
    right: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #A2A2A2;
    pointer-events: none;
}

.sl-bx::before {
    position: absolute;
    content: "";
    top: 35%;
    right: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #A2A2A2;
    pointer-events: none;
}

/*===== IE Hack ======*/
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

    /* ie10, ie11+ */
    .sl-bx::after,
    .sl-bx::before {
        display: none;
    }

    .sl-bx select {
        padding: 0 10px;
    }

    .offer ul li img {
        max-width: 200px;
    }
}

/* IE8/9 */
@media screen\0 {

    .sl-bx::after,
    .sl-bx::before {
        display: none;
    }

    .sl-bx select {
        padding: 0 10px;
    }

    .offer ul li img {
        max-width: 200px;
    }
}

/*===== IE Hack End ======*/
/*===== Mozila outline remove =====*/
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

/*===== Mozila outline remove End =====*/
.bx-sb {
    text-align: center;
}

.become-th {
    margin-top: 98px;
    background: #FE360B;
    padding: 140px 0;
    text-align: center;
}

.become-th p {
    color: #fff;
    font: 1.3em/1.4em "Proxima Nova Regular", sans-serif;
    margin-bottom: 30px;
}

.input-holder {
    position: relative;
}

.plz {
    width: 150px;
    color: #fff;
    margin: 0 auto;
}

.plz .pls-wait-text-contact {
    padding-top: 2px;
}

.agent h5 br {
    display: none;
}

.inner-page {
    margin-top: 98px;
}

.signin {
    text-align: center;
    background: #00558a;
    padding: 30px 0;
}

.cont-bx {
    max-width: 300px;
    margin: 0 auto;
}

.language {
    position: relative;
    float: right;
    background: #fff;
    margin-top: 17px;
}

.language a {
    font: bold 1em "Proxima Nova Regular", sans-serif;
    color: #333;
    padding: 5px 8px;
    border-radius: 5px;
    border: 2px solid #FE360B;
    width: 50px;
    background: #fff;
    text-align: center;
    overflow: hidden;
    display: block;
}

.language a:hover {
    background: #FE360B;
    color: #fff;
}

.language ul {
    display: none;
    position: absolute;
    top: 29px;
    z-index: 5;
    left: 0;
}

.language li {
    list-style: none;
}

.language li a {
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.language:hover ul {
    display: block;
}

.thank-cont {
    text-align: left;
}

.thank-you p span {
    text-transform: uppercase;
}

.thank-you p a:hover {
    color: #333;
}

@media (min-width: 1200px) {
    .slim-header {
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    }
}

@media screen and (max-width: 1400px) {
    body {
        font-size: 15px;
    }

    .cap-wdt {
        max-width: 620px;
    }

    .become-th {
        padding: 100px 0;
    }

    .plz {
        width: 130px;
    }

    .capt-box {
        height: 105px;
    }

    header nav > ul > li.submenu::after {
        top: 18px !important;
    }
}

@media screen and (max-width: 1199px) {
    .offer h1 {
        font-size: 1.7em;
    }

    .thank-you .btn {
        display: none;
    }

    .agent h5 {
        font-size: 1.5em;
    }

    .capt-box {
        height: 100px;
    }

    .hd-right {
        padding-top: 30px;
    }

    .banner-txt {
        padding: 15px;
        text-align: center;
    }

    .banner-txt p {
        font-size: 1.12em;
        line-height: 1.2em;
    }

    .banner-txt::before {
        display: none;
    }

    .number img {
        width: 26px;
        height: 26px;
    }

    .banner {
        margin-top: 80px;
    }

    .offer ul li {
        width: 235px;
        height: 75px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 1.2em;
        border-bottom: 4px solid #c07631;
    }

    .btn:hover,
    .btn:focus {
        border-bottom: 4px solid #f4a42f;
    }

    .anchore {
        height: 80px;
        /*same height as header*/
        margin-top: -80px;
        /*same height as header*/
    }

    .header {
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    }

    .tv-pack h3 {
        font-size: 2em;
    }

    .tv-pack .tag {
        font-size: 1.1em;
    }

    .tv-pack li {
        font-size: 1.2em;
    }

    .tv-pack li::before {
        top: 5px;
    }

    .tv-prd {
        height: 190px;
    }

    .tv-pack .btn {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .pr-lft .rate {
        line-height: 1.8em;
    }

    .botm-bx a {
        font-size: 1.2em;
    }

    .offer ul li {
        margin: 0 10px;
        width: 190px;
        height: 65px;
    }

    .offer ul li img {
        max-height: 45px;
    }

    .offer {
        padding: 40px 0;
    }

    .become-th {
        padding: 40px 0;
        margin-top: 68px;
    }

    .agent textarea {
        height: 95px;
    }

    .inner-page {
        margin-top: 78px;
    }

    .footer ul li:after {
        height: 12px;
    }

    .form-wrap {
        padding: 30px 0;
    }

    .language {
        margin: -4px 30px 0 0;
    }
}

@media screen and (max-width: 991px) {
    .cont-bx {
        height: 140px;
    }

    .contact {
        text-align: center;
    }

    .contact h3 {
        margin-top: 30px;
    }

    .contact li {
        float: none;
        display: inline-block;
    }

    .tv-prd {
        height: 250px;
    }

    .agent h5 br {
        display: block;
    }

    .agent input[type="radio"] + label {
        margin-left: -8px;
    }

    .agent textarea {
        height: 188px;
    }

    .language {
        margin: -4px 45px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .header {
        position: static;
    }

    .banner-txt p {
        font-size: 1em;
    }

    .inner-page {
        margin-top: 0;
    }

    .agent textarea {
        height: 95px;
    }

    .hd-right {
        float: none;
    }

    .number {
        float: none;
        display: inline-block;
        margin-top: 20px;
    }

    .banner,
    .thank-you {
        margin-top: 0;
    }

    .offer {
        padding-bottom: 40px;
    }

    .offer ul li {
        margin-bottom: 20px;
    }

    .banner-content {
        height: 435px;
    }

    .form-wrap {
        padding: 20px 0;
    }

    .thank-you {
        padding: 40px 15px;
        border-top: 1px solid #ddd;
    }

    .thank-you img {
        display: block;
    }

    .tv-prd {
        height: auto;
    }

    .hd-right {
        padding: 0;
    }

    .become-th {
        margin-top: 0;
        padding: 30px 0;
    }

    .capt-box {
        height: 145px;
    }

    .cap-wdt {
        max-width: 430px;
    }

    .anchore {
        height: 0;
        margin: 0;
    }

    .agent h1 {
        font-size: 1.8em;
    }

    .agent h4 {
        font-size: 1.3em;
        line-height: 1.2em;
    }

    .agent {
        margin-top: 0;
    }

    .sl-bx {
        margin-bottom: 15px;
    }

    .banner-txt {
        max-height: 160px;
    }

    .contact a {
        font-size: 1.5em;
    }

    .agent .contact span {
        padding-bottom: 20px;
    }

    .cont-bx {
        height: auto;
        padding-bottom: 20px;
        max-width: 100%;
    }

    .language {
        margin: 10px 53px 0 0;
    }

    .tv-pack h3 {
        font-size: 1.8em;
    }

    .banner {
        background-position: -1000px 0px !important;
    }

}

@media screen and (max-width: 479px) {
    .banner {
        background-position: -1650px 0px !important;
    }

    .cap-wdt {
        max-width: 100%;
    }

    .capt-box {
        height: 165px;
    }

    .banner-txt {
        max-height: 280px;
    }

    .banner-txt p {
        font-size: 1em;
    }

    .contact li {
        padding: 5px 0 0 0;
    }
}

@media only screen and (min-width: 1200px) {

    /*==== Menu ====*/
    header nav > ul {
        margin: 0;
        padding: 0;
    }

    header nav > ul > li {
        display: inline-block;
        position: relative;
    }

    header nav > ul > li:last-child {
        margin: 0;
    }

    header nav > ul > li.submenu:after {
        content: "";
        position: absolute;
        height: 0;
        width: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid #FE360B;
        right: 3px;
        top: 20px;
        pointer-events: none;
    }

    header nav > ul > li > a {
        color: #fff;
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        font: 1.167em "Proxima Nova Alt Bold", sans-serif;
        color: #404040;
    }

    header nav > ul > li > a:hover {
        color: #FE360B;
    }

    header nav > ul > li:hover > ul {
        visibility: visible;
        opacity: 1;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    }

    header nav > ul > li ul {
        position: absolute;
        margin: 0;
        padding: 0;
        background: #FE360B;
        width: 150px;
        visibility: hidden;
        opacity: 0;
        border-radius: 5px;
        overflow: hidden;
        display: block !important;
    }

    header nav > ul > li ul li {
        display: block;
        border-bottom: 1px solid #535353;
        position: relative;
    }

    header nav > ul > li ul li:last-child {
        border: 0;
    }

    header nav > ul > li ul li a {
        padding: 8px 20px;
        display: block;
        text-decoration: none;
        font: 1em "Proxima Nova Alt Bold", sans-serif;
        color: #fff;
    }

    header nav > ul > li ul li:hover > ul {
        visibility: visible;
        opacity: 1;
        left: 250px;
        top: 0;
    }

    header nav > ul > li ul li:hover > a {
        background: #272727;
    }

    header nav > ul > li ul li.submenu::after {
        content: "";
        position: absolute;
        height: 0;
        width: 0;
        border-bottom: 3px solid transparent;
        border-left: 6px solid #fff;
        border-top: 3px solid transparent;
        right: 5px;
        top: 13px;
        pointer-events: none;
    }

    .mob-btn {
        display: none;
    }

    /*==== Menu End ====*/
}

@media only screen and (max-width: 1199px) {

    /*==== Menu ====*/
    header nav {
        position: fixed;
        width: 280px;
        top: 0;
        right: -280px;
        background: #185389;
        height: 100%;
        -webkit-transition: all ease 0.2s;
        -o-transition: all ease 0.2s;
        transition: all ease 0.2s;
        z-index: 1005;
        -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.7);
        box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.7);
        overflow-y: auto;
    }

    header nav ul {
        margin: 0;
        padding: 0;
        display: block;
        margin-top: 0px;
    }

    header nav ul.mnav {
        margin-bottom: 30px;
    }

    header nav ul li {
        display: block;
        border-bottom: 1px solid #2a96cf;
        position: relative;
        text-transform: capitalize;
        font-size: 13px;
    }

    header nav ul li span {
        display: none;
    }

    header nav ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 1.2em;
        display: block;
        padding: 10px;
        padding-right: 40px;
        font-weight: bold;
    }

    header nav ul li a:hover {
        background: #FE360B;
    }

    header nav ul li.submenu i {
        position: absolute;
        width: 43px;
        height: 39px;
        top: 0;
        right: 0;
        cursor: pointer;
        -webkit-transition: all ease 0.5s;
        -moz-transition: all ease 0.5s;
        -o-transition: all ease 0.5s;
        transition: all ease 0.5s;
    }

    header nav ul li.submenu i:after {
        content: "";
        height: 0;
        width: 0;
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-top: 6px solid #b3b3b3;
        position: absolute;
        right: 17px;
        top: 18px;
        z-index: 10;
    }

    header nav ul ul {
        margin: 0;
        display: none;
    }

    header nav ul ul li:last-child {
        border-bottom: 0;
    }

    header nav ul ul li:first-child {
        border-top: 1px solid #399792;
    }

    header nav ul ul li a {
        padding-left: 20px;
    }

    header nav ul ul li ul a {
        padding-left: 30px;
    }

    .show-menu header nav {
        right: 0;
    }

    .show-menu .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1001;
    }

    .mob-btn {
        position: absolute;
        float: right;
        padding: 5px 7px;
        margin: 0px;
        background-color: transparent;
        cursor: pointer;
        right: 15px;
        top: 26px;
    }

    .mob-btn span {
        display: block;
        width: 40px;
        height: 3px;
        border-radius: 1px;
        background: #FE360B;
    }

    .mob-btn span + span {
        margin-top: 5px;
    }

    /*==== Menu End ====*/
}

.banner.hmar {
    margin-top: 88px;
}

.inner-page.hmar {
    margin-top: 158px;
}

@media screen and (max-width: 767px) {
    .mob-btn {
        top: 10px;
    }

    .banner.hmar {
        margin-top: 0;
    }

    .inner-page.hmar {
        margin-top: 0;
    }

}

.bnr-txt {

    padding: 10px;
    width: 50%;
    float: left;
}

.bnr-txt p {
    color: white;
    font: 20px/27px "Proxima Nova Light", sans-serif;
}

.bnr-txt h2 {
    font: 58px/56px "Proxima Nova Black", sans-serif;
    margin-bottom: 5px;
    font-size: 49px;
    color: white;
}

.banner-pic {
    text-align: center;
    padding: 10px 0;
    width: 50%;
    float: left;
}


@media screen and (max-width: 991px) {
    .bnr-txt {
        width: 100%;
        position: relative;
        z-index: 11;
    }

    .banner-pic {
        top: 100px;
        position: inherit;
        right: 0;

    }

    .banner-pic img {
        width: 250px;
    }

    .bnr-txt p {
        font: 19px/27px "Proxima Nova Light", sans-serif;
    }

    .banner-pic {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .bnr-txt {
        padding: 30px 20px;
    }

    .banner-pic {
        top: 100px;
    }

    .banner-pic img {
        width: 160px;
    }

    .inner-page h1 {
        font-size: 1.15em;
    }
}


.modal-open {
    overflow: visible !important;
    padding-right: 0 !important
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 20%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: scale(.1);
    -ms-transform: scale(.1);
    transform: scale(.1);
    top: 300px;
    opacity: 0;
    -webkit-transition: all .6s;
    transition: all .6s
}

.modal.fade.in .modal-dialog {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: translate3d(0, -300px, 0);
    transform: translate3d(0, -300px, 0);
    opacity: 1
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    z-index: 2000
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .5 !important;
    filter: alpha(opacity=50)
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.43px;
}

.modal-header h4 {
    font-size: 20px;
    color: #fff;
    line-height: 20px;
}

.modal-header .close {
    margin-top: -2px;
    width: 40px;
    height: 50px;
    position: absolute;
    top: 2px;
    right: 0;
    background: #f4a42f;
    border: 0;
    font: 700 24px/50px Arial, Helvetica, sans-serif;
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.modal-header .close:hover {
    color: #005A8B;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
    text-align: center;

}

.modal-body {
    position: relative;
    padding: 18px 15px;
}

.modal-body h6 {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 400
}

.modal-footer {
    padding: 0 15px 15px;
    text-align: right
}

.modal-content .modal-footer .captcha-wrap p {
    margin-bottom: 0
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }

}

@media (min-width:992px) {
    .modal-lg {
        width: 900px
    }
}

.header-top {
    position: relative;
    top: 0;
    z-index: 111;
    color: #fff;
    background: #005A8B;
    padding: 10px 40px;
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.header-top a {
    font-family: Proxima Nova Black;
    color: #fff;
    text-decoration: underline;
}


.header-top a:hover {
    color: #f4a42f;
}

.header-top .close {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    font-size: 25px;
    position: absolute;
    right: 21px;
    top: 12px;
    text-decoration: none;
    cursor: pointer;

}

.header-top .close span {
    position: relative;
    top: -7px;
    left: -1px;
}

.header-top .close:hover {
    border: 2px solid #f7a51c;
    color: #f7a51c;
}

.details-pop .modal-title {
    color: #005A8B;
    font-family: Proxima Nova Black;
    font-size: 20px;
}

.modal-content ul {
    margin-left: 30px;
}

.modal-content ul li {
    color: #000;
    /* font-size: 20px; */
}

@media only screen and (max-width: 1199px) {
    .hd-right {
        position: relative;
    }

    .language {
        margin: -4px 80px 0 0;
    }

    .header-top .close {
        position: inherit;
        margin-bottom: 20px;
        top: 0;
        left: 0;
        border: 0;
    }

}

@media only screen and (max-width: 991px) {
    .language {
        margin: -5px 80px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .language {
        margin: 9px 80px 0 0;
    }

    .banner.hmar {
        margin-top: 0px;
    }
}

.crtc .form-sec input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #929292;
    margin-bottom: 15px;
}

.crtc .form-sec {
    padding: 30px 0;
}

.input-holder {
    position: relative;
}

.input-holder span.error,
.input-holder span.errors {
    background: #ff0000 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    display: none;
    font: 400 12px "Proxima Nova", sans-serif;
    padding: 2px 5px;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: inherit;
    top: -31px;
    z-index: 9;
}

.input-holder span.error::after,
.input-holder span.errors::after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #ff0000;
    bottom: -7px;
    content: "";
    height: 0;
    position: absolute;
    right: 10px;
    width: 0;
}

.input-holder.error input[type="text"],
.input-holder.error input[type="search"],
.input-holder.error input[type="password"],
.input-holder.error input[type="email"],
.input-holder.error input[type="number"],
.input-holder.error input[type="tel"],
.input-holder.error input[type="url"],
.input-holder.error textarea {
    border: 1px solid #ff0000;
}

.cap-wdt {
    max-width: 690px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .cap-wdt {
        max-width: 460px;
    }

    .header .ph-number a {
        margin-right: 0;
    }
}

.cont-cap p {
    color: #f4f4f4;
}

.cont-cap p b {
    text-transform: uppercase;
}

.plz {
    width: 130px;
    margin: 0 auto;
    color: #fff;
    font-size: 15px;
}

.frm-btn {
    height: 70px;
}

@media screen and (max-width: 479px) {

    .input-holder span.error,
    .input-holder span.errors {
        top: -41px;
    }
}


.cn-btn {
    position: relative;
    display: inline-block;
    padding: 9px 18px;
    font-weight: 100 !important;
    line-height: 20px;
    color: #333;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    font: 18px "Proxima Nova bold", sans-serif !important;
    -webkit-appearance: none;
    border: 1px solid #00a080;
    border-radius: 5px;
    margin-right: 0 !important;
    top: -6px;
    font-weight: bold !important;
}

.cn-btn:hover {

    background: #00957A;
    color: #fff !important;
    transition: all ease .5s !important;
}

@media (max-width: 767px) {
    .cn-btn {
        padding: 9px 32px;
        position: inherit;
        text-align: center;
        margin-top: 10px;
    }
}

.crtc h3 {
    font: 1.3em "Proxima Nova Alt Bold", sans-serif;
    color: #FE360B;
    margin: 16px 0;
}

.crtc p {
    font: 20px/35px "Proxima Nova Light", sans-serif;
    color: #333;
}

.crtc ul {
    margin-left: 30px;
}

.crtc ul li {
    font: 20px/35px "Proxima Nova Light", sans-serif;
    color: #333;
}


.hdr-srch input {
    outline: none;
}

.hdr-srch input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}

.hdr-srch input::-webkit-search-decoration,
.hdr-srch input::-webkit-search-cancel-button {
    display: none;
}

.hdr-srch input[type=search] {

    width: 0;
    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    background: transparent;
    border: 0;
    padding: 5px 15px;
    margin-left: 9px;

}

.hdr-srch input[type=search]:focus {
    width: 130px;
    background-color: #fff;
    border-color: #66CC75;

    -webkit-box-shadow: 0 0 5px rgba(109, 207, 246, .5);
    -moz-box-shadow: 0 0 5px rgba(109, 207, 246, .5);
    box-shadow: 0 0 5px rgba(109, 207, 246, .5);
}

.searchbox-input.search_null {
    width: 130px !important;
    background: #fff !important;
    border: 1px solid #ccc;
}

.hdr-srch button {
    top: 14px !important;
    background: url(../images/search.png)no-repeat;
    width: 32px;
    height: 35px;
    border: 0;
    background-size: 100%;
    position: relative;
    top: 9px;
    right: 35px;

}

.hdr-srch button:hover {
    opacity: 0.8;
}

form#searchform {
    position: relative;
    top: -13px;
}

.hdr-srch button::after {
    font-size: 24px;
    color: #f7a51c !important;
}

@media screen and (max-width:1119px) {
    .hdr-srch button {
        position: relative;
        height: 31px;
        right: 41px;
        top: 10px;
    }

    form#searchform {
        float: none;
    }

    .hdr-srch input[type=search] {
        margin-right: 5px;
        border: 0;
    }

    .hdr-srch {
        float: right;
    }
}

@media screen and (max-width:991px) {
    .hdr-srch {
        float: none;
        margin: 20px auto 0;
    }

}
}

.ccts-img {
    width: 200px;
    margin: 20px 0;
}

.search-page {
    padding: 180px 0;
}

.search-page a {
    text-decoration: none;
}

.search-page h3 {
    font-size: 24px;
}

.search-page a:hover {
    color: #404040;
}

a {
    text-decoration: none !important;
}

@media screen and (max-width:1119px) {
    .search-page {
        padding: 50px 0;
    }

    .search-page h3 {
        line-height: 34px;
    }

}

.crtc .btn {
    margin-top: 13px !important;
    padding: 12px 85px !important;
}

.crtc .capch-sec {
    text-align: center;
}

.crtc .main-contents {
    border-top: 1px solid #ccc;
    padding: 30px 0;
}

.cont-bx {
    max-width: inherit;
}

.cont-bx .hd {
    font-size: 1.2em;
}

.cont-bx p {
    margin-bottom: 0.2em;
}

.bor {
    border-right: 1px solid #000;
}

.contact h2 {
    margin-bottom: 1.32em;
}

.contact span {
    display: block;
    font-size: medium;
}

@media screen and (max-width: 980px) {
    .bor {
        border-right: 0px;
    }

    .cont-bx .hd {
        font-size: 1.8em;
    }

    .contact span {
        display: block;
        font-size: x-large;
    }
}

.search-page p {
    font: 20px/32px "Proxima Nova Light", sans-serif;
    color: #333;
}

.container.terms {
    padding: 50px 0;
}

@media screen and (max-width:1119px) {
    .container.terms {
        padding: 20px;
    }
}


.cntr-bx h4 {
    background: #FE360B;
    padding: 10px 15px;
    font: bold 16px "Proxima Nova Light", sans-serif;
    color: #fff;
    text-align: left;
    margin: 0;
    line-height: 21px;
}

.country_data .dhp_rate_table th {
    background: #FE360B none repeat scroll 0 0;
    color: #fff;
    font: bold 15px "Proxima Nova Light", sans-serif;
    margin: 0;
    padding: 10px 15px;
    text-align: left;
    border-bottom: none;
    line-height: 21px;
}

.l-gut {
    padding-left: 0;
}

.r-gut {
    padding-right: 0;
}

@media only screen and (max-width: 1199px) {

    .r-gut,
    .l-gut {
        padding: 0 20px;
    }
}


.dhp_rate_table {
    margin-top: 0px;
}

.cntr-bx {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    padding: 0;
    background-color: #FAFAFA;
    border: 1px solid #ccc;
}

.cntr-bx .bxx {
    height: 50px;
    padding: 8px 30px;
}

.first-bx {
    max-width: 500px;
}

.select-bx select {
    width: 100%;
    height: 32px;
    border: 1px solid #ddd;
    padding: 0 5px;
    appearance: none;
    outline: none;
}

[data-toggle] {
    cursor: pointer;
}

.back-tn {
    float: right;
    padding: 1rem;
}

.heading {
    font-family: "Proxima Nova Black", sans-serif;
    color: #FE360B;
    margin-bottom: 5px;
}

.tiny {
    font-size: small;
    text-align: center;
}

.col-md-12 ol{

}
