@font-face {
    font-family: 'proxima_nova_softbold';
    src: url('../fonts/proxima/proximanovasoft-bold-webfont.eot');
    src: url('../fonts/proxima/proximanovasoft-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/proxima/proximanovasoft-bold-webfont.woff2') format('woff2'), url('../fonts/proxima/proximanovasoft-bold-webfont.woff') format('woff'), url('../fonts/proxima/proximanovasoft-bold-webfont.ttf') format('truetype'), url('../fonts/proxima/proximanovasoft-bold-webfont.svg#proxima_nova_softbold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova_softregular';
    src: url('../fonts/proxima/proximanovasoft-regular-webfont.eot');
    src: url('../fonts/proxima/proximanovasoft-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/proxima/proximanovasoft-regular-webfont.woff2') format('woff2'), url('../fonts/proxima/proximanovasoft-regular-webfont.woff') format('woff'), url('../fonts/proxima/proximanovasoft-regular-webfont.ttf') format('truetype'), url('../fonts/proxima/proximanovasoft-regular-webfont.svg#proxima_nova_softregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'brandon_grotesquebold';
    src: url('../fonts/brandon/brandon_bld.1-webfont.eot');
    src: url('../fonts/brandon/brandon_bld.1-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/brandon/brandon_bld.1-webfont.woff2') format('woff2'), url('../fonts/brandon/brandon_bld.1-webfont.woff') format('woff'), url('../fonts/brandon/brandon_bld.1-webfont.ttf') format('truetype'), url('../fonts/brandon/brandon_bld.1-webfont.svg#brandon_grotesquebold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'brandon_grotesquemedium';
    src: url('../fonts/brandon/brandon_med-webfont.eot');
    src: url('../fonts/brandon/brandon_med-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/brandon/brandon_med-webfont.woff2') format('woff2'), url('../fonts/brandon/brandon_med-webfont.woff') format('woff'), url('../fonts/brandon/brandon_med-webfont.ttf') format('truetype'), url('../fonts/brandon/brandon_med-webfont.svg#brandon_grotesquemedium') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'brandon_grotesque_regularRg';
    src: url('../fonts/brandon/brandon_reg.1-webfont.eot');
    src: url('../fonts/brandon/brandon_reg.1-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/brandon/brandon_reg.1-webfont.woff2') format('woff2'), url('../fonts/brandon/brandon_reg.1-webfont.woff') format('woff'), url('../fonts/brandon/brandon_reg.1-webfont.ttf') format('truetype'), url('../fonts/brandon/brandon_reg.1-webfont.svg#brandon_grotesque_regularRg') format('svg');
    font-weight: normal;
    font-style: normal;
}
/********************* Common css **************************/

body {
    font-family: 'proxima_nova_softregular';
}
h2,
h3,
h4,
h5,
h6 {
    font-family: 'brandon_grotesquemedium';
    text-transform: uppercase;
}
h2 {
    font-size: 28px;
    position: relative;
    color: #172061;
    margin-bottom: 25px;
    padding-bottom: 10px;
    margin-top: 0;
}
h2:before {
    position: absolute;
    content: "";
    width: 176px;
    height: 3px;
    bottom: 0;
    left: 50%;
    margin-left: -88px;
    background: #f6b922;
}
.btn {
    border: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.btn-warning {
    background: #f6b922;
    color: #fff;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background: #f1b113;
}
.btn-primary {
    background: #171f61;
}
.btn-primary:hover {
    background: #2c357f;
}
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"] + label span {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 1px 8px 0 0;
    vertical-align: middle;
    background: url(../image/check.png) left -50px no-repeat;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
}
input[type="checkbox"]:checked + label span {
    background: url(../image/check.png) left top no-repeat;
}
.form-group .checkbox label,
.inner-page-content .common-form .form-group .checkbox label {
    padding-left: 30px;
    position: relative;
}
.form-submit .btn-warning {
    border-radius: 0;
    font-family: "brandon_grotesque_regularRg";
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-right: 10px;
    text-transform: uppercase;
    min-width: 125px;
}
/********************* header css **************************/

header {
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 9999999;
}
.search-hidden {
    position: fixed;
    top: -65px;
    width: 100%;
    left: 0;
    z-index: 999999999;
    background: #fff;
    border-bottom: 1px solid #efefef;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.search-hidden.open {
    top: 0;
}
.search-container {
    position: relative;
}
.search-container .search-close {
    position: absolute;
    font-size: 24px;
    right: 25px;
    top: 15px;
}
.search-container .form-control {
    background: #f7f7f7;
}
.header-top {
    padding: 5px 0;
}
.header-top ul li a {
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 600;
}
.header-top ul li a:hover,
.header-top ul li a:focus {
    text-decoration: none;
}
.top-links li {
    padding-left: 28px;
    margin-right: 5px;
    margin-bottom: 8px;
    padding-top: 2px;
}
.top-links li a span {
    display: none;
}
.top-links .tel {
    background: url(../image/icon/phone.png) no-repeat left center;
}
.top-links .live-chat {
    background: url(../image/icon/chat.png) no-repeat left center;
    display: none;
}
.top-links .search {
    background: url(../image/icon/search.png) no-repeat left center;
}
.top-links .login {
    background: url(../image/icon/user.png) no-repeat left center;
}
.header-text {
    padding-left: 0;
}
.header-text h1 {
    font-size: 20px;
    color: #5d5d5d;
    margin: 0;
    display: none;
}
.header-text h1 strong {
    color: #f6b922;
}
.header-text .btn-warning {
    text-transform: uppercase;
    padding: 13px;
    font-size: 18px;
    font-family: 'proxima_nova_softbold';
    margin-top: 13px;
}
/* navigation*/

.elite-menu {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    background: #fff;
}
.elite-menu .navbar-brand {
    padding-top: 0;
    height: auto;
}
.elite-menu .navbar-toggle {
    border: none;
    outline: none;
    margin-top: 15px;
}
.elite-menu .navbar-toggle:focus,
.elite-menu .navbar-toggle:hover {
    background: transparent;
}
.elite-menu .navbar-collapse {
    background: #212121;
    border: none;
}
.elite-menu .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
}
.elite-menu .navbar-nav > li:hover > a,
.elite-menu .navbar-nav > li > a:hover,
.elite-menu .navbar-nav > li > a:focus,
.elite-menu .navbar-nav > li > a:active .elite-menu .navbar-nav > .active > a,
.elite-menu .navbar-nav > .active > a:focus,
.elite-menu .navbar-nav > .active > a:hover,
.elite-menu .navbar-nav > .active:hover > a,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    background: #333;
    color: #fff;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    background: #333;
    color: #fff;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #e5e5e5;
}
.elite-menu .navbar-nav > li > a {
    color: #fff;
    text-transform: uppercase;
}
.elite-menu .navbar-nav > li > .btn-primary,
.elite-menu .navbar-nav > li > .btn-warning {
    border-radius: 0;
    margin-bottom: 10px;
    font-family: "proxima_nova_softregular";
}
.elite-menu .open .dropdown-menu,
.elite-menu .dropdown-menu {
    background: #333;
    color: #fff;
    border-radius: 0;
    box-shadow: none;
}
/* temp-link */

.temp-container {
    position: relative;
}
.temp-link {
    background: rgba(218, 7, 7, 0.7);
    padding: 15px 0;
    color: #fff;
    text-align: center;
}
.temp-link p {
    font-size: 18px;
    margin: 0;
    background: url(../image/truck1.gif) no-repeat center 0;
    background-size: 90px auto;
    padding-top: 35px;
}
.temp-link p a {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 2px 8px;
    margin-top: 10px;
}
.temp-link p a:hover {
    background: #fff;
    color: rgba(218, 7, 7, 1);
    text-decoration: none;
}
/* slider */

.elite-slider h2 {
    color: #fff;
    text-transform: none;
    padding-top: 15px !important;
    padding-bottom: 0;
    font-size: 18px !important;
    padding-left: 25px;
    line-height: 1.427 !important;
}
.elite-slider h2:before {
    top: 0;
    left: 0;
    margin-left: 0;
    bottom: inherit;
}
.elite-slider h2 small {
    color: #fff;
    font-size: 78%;
}
.elite-slider p {
    padding-left: 25px;
    color: #fff;
    font-size: 14px !important;
    line-height: 1.2 !important;
}
/* We provide */

.we-provide {
    padding: 30px 0;
}
.we-provide h3 {
    font-size: 22px;
    margin: 0;
    margin-top: 12px;
}
.we-provide p {
    font-size: 18px;
    margin-top: 18px;
    color: #666;
}
.we-provide ul li {
    padding: 0;
    margin-right: 10px;
}
.we-provide ul li a {
    color: #323232;
    text-decoration: none;
    padding: 10px;
    display: block;
    padding-bottom: 25px;
    border-bottom: 1px solid #e7e7e7;
}
.we-provide ul li a:hover {
    background: #f0eeee;
}
/*********** Services **************/

.service {
    padding: 30px 0;
    background: #d7d8de;
}
.service h3 {
    margin-top: 0;
    padding-left: 65px;
    padding-bottom: 10px;
    border-bottom: 1px solid #323232;
    font-size: 22px;
}
.service-box {
    margin-bottom: 30px;
}
.service-box:last-child {
    margin-bottom: 0;
}
.service .list-dot {
    margin-bottom: 15px;
}
.service ul li {
    position: relative;
    padding-left: 16px;
    font-size: 18px;
    margin-bottom: 8px;
    color: #181818;
}
.service ul li:before {
    position: absolute;
    content: "";
    height: 9px;
    width: 9px;
    background: #828282;
    border-radius: 100%;
    left: 0;
    top: 7px;
}
.service-box-content {
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    position: relative;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(105, 105, 113, 0.23);
    -moz-box-shadow: 0px 0px 12px 0px rgba(105, 105, 113, 0.23);
    box-shadow: 0px 0px 12px 0px rgba(105, 105, 113, 0.23);
}
.service-box-content.svc h3 {
    background: url(../image/icon/service-1.png) no-repeat 5px -2px;
}
.service-box-content.temp-svc h3 {
    background: url(../image/icon/service-2.png) no-repeat 5px -2px;
}
.service-box-content.star h3 {
    background: url(../image/icon/service-3.png) no-repeat 0 -2px;
}
.service .btn-primary {
    width: 222px;
    font-size: 18px;
    margin: 0 auto;
    display: block;
    font-family: 'proxima_nova_softbold';
}
.service .employee-of-the-month {
    text-align: center;
    margin-top: 10px;
}
.service .employee-of-the-month p {
    font-size: 17px;
    color: #323232;
    line-height: 1.2;
    font-weight: 700;
}
.service .employee-of-the-month p span {
    display: block;
    color: #9e9e9e;
    font-size: 13px;
    font-weight: 400;
}
/******** two-links *****************/

.two-links a {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 22px;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    font-family: 'brandon_grotesquemedium';
    padding-left: 100px;
    line-height: 1.2;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-weight: 700;
    -webkit-text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
    -moz-text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
    -o-text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
    text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
}
.two-links a:hover {
    padding-left: 90px;
}
.two-links a i {
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -30px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.two-links a:hover i {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
.two-links .left-link {
    background: url(../image/left-link-bg.jpg) no-repeat left center / cover;
}
.two-links .right-link {
    background: url(../image/right-link-bg.jpg) no-repeat left center / cover;
}
.two-links span {
    display: block;
}
/* footer */

footer {
    padding-top: 35px;
    background: #1c2936;
    color: #fff;
}
footer h2 {
    color: #fff;
    font-size: 25px;
}
footer h2:before {
    left: 0;
    margin-left: 0;
}
.footer-about p {
    margin-top: 20px;
    font-size: 15px;
    margin-bottom: 0;
}
footer ul {
    margin-bottom: 0;
}
footer ul li a {
    color: #fff;
    font-size: 18px;
}
footer ul li a:hover {
    color: #f9e6bb;
    text-decoration: none;
}
.footer-contact p span {
    display: block;
}
.carrers {
    margin-top: 30px;
}
.carrers p {
    margin-bottom: 0;
    font-size: 18px;
    color: #fff;
}
.carrers p a {
    color: #f9e6bb;
    text-decoration: underline;
    display: inline-block;
}
.carrers p a:hover {
    text-decoration: underline;
}
.copyright {
    margin-top: 20px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright p {
    margin-bottom: 0;
    font-size: 14px;
}
.copyright ul li a {
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
}
.copyright ul {
    margin-bottom: 10px;
}
.copyright ul li a:hover,
.copyright ul li a:focus,
.copyright ul li a:active {
    color: rgba(255,255,255,0.8);
}
.social-links {
    margin-top: 10px;
}
.social-links li {
    padding: 0;
    margin-right: 8px;
}
.social-links li a {
    display: block;
    width: 32px;
    height: 26px;
    background: url(../image/icon/sprite-social.png) no-repeat left top;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.social-links .fb a {
    width: 25px;
    background-position: 4px top;
}
.social-links .twitter a {
    background-position: -37px -2px;
}
.social-links .linkedin a {
    background-position: -78px top;
}
.social-links .gplus a {
    background-position: -121px top;
}
.social-links .youtube a {
    background-position: -160px top;
}
.social-links .fb:hover a {
    width: 25px;
    background-position: 4px bottom;
}
.social-links .twitter:hover a {
    background-position: -37px -45px;
}
.social-links .linkedin:hover a {
    background-position: -78px bottom;
}
.social-links .gplus:hover a {
    background-position: -121px bottom;
}
.social-links .youtube:hover a {
    background-position: -160px bottom;
}
/******* Inner page ******/

.breadcrumb {
    padding: 10px 0;
    margin: 0;
    float: left;
    background: transparent;
}
.breadcrumb li a {
    color: #305c98;
}
.inner-page-beadcrumb .print {
    float: right;
    padding: 10px 20px;
    display: block;
    background: #ebebeb;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    padding-bottom: 5px;
}
.inner-page-beadcrumb .print:hover {
    text-decoration: none;
}
.inner-page-beadcrumb .print img {
    max-width: 35px;
    margin-bottom: 5px;
}
.inner-page-beadcrumb .print span {
    display: block;
    color: #919090;
    font-size: 16px;
}
.inner-page-content {
    padding: 15px 0;
}
.inner-page-content h2 {
    text-transform: none;
}
.inner-page-content p {
    font-size: 18px;
    margin-bottom: 30px;
}
.inner-page-content h2:before {
    left: 0;
    margin-left: 0;
}
.common-form {
    padding: 10px;
    background: #ebebeb;
    margin-bottom: 30px;
}
.form-control {
    border-radius: 0;
    border: none;
    box-shadow: none;
    font-size: 18px;
    height: auto;
    padding: 8px 15px;
}
.form-group label {
    color: #305c98;
    text-transform: uppercase;
    font-family: 'brandon_grotesque_regularRg';
    font-size: 18px;
    display: block;
}
.input-group-addon {
    border: none;
    background: #fff;
    border-radius: 0;
}
.want-him .checkbox {
    margin: 0;
}
.want-him .checkbox label {
    padding-left: 30px;
    color: #305c98;
    text-transform: uppercase;
    font-family: 'brandon_grotesque_regularRg';
    font-size: 18px;
    font-weight: 700;
}
.user-content {
    margin-top: 20px;
    padding-bottom: 10px;
}
.user-content figure {
    float: left;
    max-width: 100px;
    margin-right: 15px;
}
.user-content h3 {
    text-transform: none;
    color: #4d4d4d;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
}
.user-content p {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.2;
}
.common-form .form-group .checkbox label {
    padding-left: 0;
    font-weight: 700;
}
.if-yes .form-control {
    max-width: 325px;
}
.heading-label.form-group {
    margin-bottom: 7px;
}
.other-transcation h2 {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 0;
}
.other-transcation h2:before {
    background: transparent;
}
.other-transcation ul li a {
    margin-bottom: 10px;
    border-radius: 0;
    margin-right: 10px;
    font-family: 'brandon_grotesque_regularRg';
    font-weight: 700;
    text-transform: uppercase;
    width: 125px;
    font-size: 16px;
}
.want-him .common-form {
    padding-bottom: 10px;
}
.common-form .form-group:last-child {
    margin-bottom: 0;
}
.rate-quote-checkbox .form-group .checkbox label {
    color: #666;
    text-transform: none;
    font-weight: 400;
    font-family: 'proxima_nova_softregular';
}
.form-table {
    background: #fff;
}
.form-table thead tr {
    color: #305c98;
}
.form-table .btn-warning {
    text-transform: uppercase;
    padding: 6px 20px 4px;
    line-height: 1.2;
}
.white-box {
    background: #fff;
    padding: 0 15px;
}
.common-form-info {
    padding: 10px 15px 6px;
}
.common-form-info.alt,
.gray-bg {
    background: #f9f9f9;
}
.common-form-info label span {
    color: #666;
    font-weight: 400;
}
.shipment-datafetch-table {
    margin-top: 30px;
}
.pickupdate label {
    margin-bottom: 10px;
}
.quote-entry-shipping {
    padding: 30px 0;
}
.quote-entry-shipping .white-box {
    padding: 15px;
    padding-top: 0;
}
.inner-page-content h3 {
    font-size: 18px;
    background: #ccc;
    margin: 0;
    margin-bottom: 0;
    color: #305c98;
    margin-left: -15px;
    margin-right: -15px;
    padding: 12px 15px 10px;
}
.inner-page-content .want-him h3 {
    background: transparent;
}
.quote-entry-shipping .white-box .form-control {
    border: 1px solid #e7e7e7;
}
.quote-entry-shippinglast {
    margin-top: 30px;
}
.postal-code {
    position: relative;
}
.postal-code a {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 18px;
}
.service-option .form-group .checkbox {
    margin: 0;
}
.inner-page-content .container .service-option p {
    margin-bottom: 15px;
}
.inner-page-content ul li {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}
.add-box {
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.add-box .form-control,
.white-box .form-control {
    border: 1px solid #e7e7e7;
}
.add-another-btn {
    margin-top: 15px;
}
.notes span {
    margin-top: 5px;
    color: #666;
    display: block;
}
.special-customer .add-another-btn a {
    margin-bottom: 15px;
}
.btn-apply {
    font-size: 18px;
    text-transform: uppercase;
    min-width: 200px;
    margin: 15px auto 0;
    padding: 12px 20px 8px;
    font-weight: 700;
}
.benefits-info .white-box {
    margin-bottom: 20px;
}
.benefits-info .white-box.map-box .common-form-info {
    padding-top: 25px;
    padding-bottom: 25px;
}
.list-checked li {
    font-size: 16px;
    padding-left: 30px;
    background: url(../image/check.png) no-repeat left 2px;
    margin-bottom: 10px;
}
.inner-page-content .list-checked li {
    margin-bottom: 10px;
}
.inner-page-content .important-info p {
    margin-bottom: 15px;
}
.pad-l {
    padding-left: 0 !important;
}
.inner-page-banner {
    height: 250px;
    padding-top: 20px;
    background: url(../image/inner-page-banner.jpg) no-repeat left top / cover;
}
.inner-page-banner h2,
.inner-page-banner p {
    padding-left: 0;
    margin-bottom: 15px;
}
.inner-page-banner .inner-page-beadcrumb .breadcrumb {
    padding-top: 0;
    padding-bottom: 25px;
}
.inner-page-banner .inner-page-beadcrumb .breadcrumb li {
    color: #fff;
}
.inner-page-banner .inner-page-beadcrumb .breadcrumb li a {
    color: #f6b922;
}
.inner-page-image-content {
    padding: 30px 0;
}
.inner-page-image-content h3 {
    margin: 0;
    margin-bottom: 25px;
    color: #172061;
    font-weight: 700;
}
.inner-page-image-content h4 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}
.inner-page-image-content p {
    font-size: 18px;
    margin-bottom: 25px;
}
.inner-page-image-content .panel-default {
    border: none;
    box-shadow: none;
}
.inner-page-image-content h4.panel-title {
    padding: 15px 0;
    margin: 0;
    margin-bottom: 20px;
    border-top: 1px solid #f6b311;
    border-bottom: 1px solid #f6b311;
    background: transparent;
    margin-bottom: 0;
}
.inner-page-image-content h4.panel-title.open {
    border-bottom: none;
    margin-bottom: 0;
}
.inner-page-image-content h4.panel-title a {
    padding-left: 25px;
    background: transparent url(../image/icon/plus-icon.png) no-repeat left 3px;
    background-size: 18px;
    text-decoration: none;
}
.inner-page-image-content .panel-default > .panel-heading {
    padding: 0;
    border: none;
    background: transparent;
}
.inner-page-image-content .panel-default > .panel-heading:hover {
    background: #f9f9f9;
}
.inner-page-image-content .panel-default > .panel-heading:hover a {
    text-decoration: none;
}
.inner-page-image-content .panel-group .panel-heading + .panel-collapse > .list-group,
.inner-page-image-content .panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
    border-bottom: 1px solid #f6b311;
}
.inner-page-image-content .img-responsive {
    display: inline-block;
    margin: 15px 0;
}
.inner-page-image-content .divider {
    height: 1px;
    background: #f6b311;
    margin: 20px 0;
    display: block;
}
.threestep-box {
    padding: 15px;
    border-bottom: 1px dotted #666;
}
.threestep {
    margin-top: 20px;
    margin-bottom: 20px;
}
.inner-page-image-content ol li,
.inner-page-image-content ul li {
    font-size: 18px;
    margin-bottom: 8px;
}
.inner-page-image-content ol li ul {
    padding-top: 10px;
}
.inner-page-tabbing {
    background: #004c89;
}
.inner-page-tabbing .tabbing-content p {
    margin-bottom: 0;
}
.inner-page-tabbing .tabbing-content {
    display: block;
    text-decoration: none;
    font-size: 22px;
    padding: 15px;
    color: #fff;
    padding-left: 80px;
}
.inner-page-tabbing .tabbing-content:hover {
    background-color: #0062b1 !important;
}
.inner-page-tabbing .tabbing-content:first-child {
    background: url(../image/icon/tab-icon-1.png) no-repeat 15px center;
    background-size: 50px;
}
.inner-page-tabbing .tabbing-content:nth-child(2) {
    background: url(../image/icon/tab-icon-2.png) no-repeat 15px center;
    background-size: 40px;
}
.inner-page-tabbing .tabbing-content:nth-child(3) {
    background: url(../image/icon/tab-icon-3.png) no-repeat 15px center;
    background-size: 40px;
}
.inner-page-tabbing .tabbing-content:last-child {
    background: url(../image/icon/tab-icon-4.png) no-repeat 15px center;
    background-size: 40px;
}
/* track shipment form */

.track-shipment-form .form-control {
    border-radius: 0;
    border: 1px solid #d5d5d5;
    box-shadow: none;
    font-size: 14px;
    height: auto;
    line-height: 1.2;
    padding: 9px 12px;
}
.track-shipment-form label {
    color: #000;
    text-transform: none;
}
.track-shipment-form .btn-primary {
    min-width: 120px;
    text-transform: uppercase;
}
.about-image {
    margin-bottom: 20px;
}
.about-text h3 {
    font-weight: 700;
    background: transparent;
    padding: 0 15px;
    color: #333;
    margin-bottom: 20px;
}
.about-image h3 {
    margin: 20px 0;
    padding: 0;
    font-weight: 700;
    background: transparent;
    color: #333;
}
.about-image h3 span,
.about-image h3 i {
    display: block;
    font-family: 'proxima_nova_softregular';
    color: #555;
    text-transform: none;
    font-style: normal;
    font-size: 15px;
    margin: 5px 0;
}
.our-leaders {
    position: relative;
}
.b-member-descr-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    overflow: hidden;
    background: transparent;
    -webkit-transition: height 0.3s ease;
    -webkit-transition-delay: 0s;
    -moz-transition: height 0.3s ease 0s;
    -o-transition: height 0.3s ease 0s;
    transition: height 0.3s ease 0s;
}
.b-about-comp {
    padding: 25px 0;
}
.b-about-comp h4 {
    margin: 0 0 15px;
    color: #333;
}
.b-about-comp h5 {
    font-size: 14px;
    color: #333;
}
.b-about-comp p {
    font-size: 13px;
    color: #666;
    line-height: 1.427;
    margin-bottom: 10px;
}
.b-about-comp p strong {
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-right: 5px;
    color: #333;
}
.b-about-comp p a {
    color: #172061;
}
.b-team-member-layout {
    display: inline-block;
    vertical-align: top;
    height: 320px;
    width: 100%;
    -webkit-transition: height 0.3s ease;
    -webkit-transition-delay: 0s;
    -moz-transition: height 0.3s ease 0s;
    -o-transition: height 0.3s ease 0s;
    transition: height 0.3s ease 0s
}
.b-team-member-layout.no-tr {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none
}
.b-team-member {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    margin-left: -1px
}
.b-team-member.active {
    z-index: 20
}
.b-team-member.active .l-member div img {
    opacity: 1
}
.b-member-descr-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    overflow: hidden;
    background: #fff;
    -webkit-transition: height 0.3s ease;
    -webkit-transition-delay: 0s;
    -moz-transition: height 0.3s ease 0s;
    -o-transition: height 0.3s ease 0s;
    transition: height 0.3s ease 0s
}
.l-member {
    display: block;
    z-index: 0
}
.l-member div {} .l-member div img {
    width: 100%;
    opacity: 0.5;
    -webkit-transition: opacity 0.6s ease;
    -webkit-transition-delay: 0s;
    -moz-transition: opacity 0.6s ease 0s;
    -o-transition: opacity 0.6s ease 0s;
    transition: opacity 0.6s ease 0s
}
.b-team-member h4 {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.b-team-member.active h4 {
    opacity: 0;
}
.b-team-member h4 span {
    display: block;
    font-size: 60%;
    opacity: 0.8;
}
.captcha {
    margin-top: 10px;
}
.remain-character {
    margin-top: 8px;
    display: block;
    font-size: 12px;
    color: #999;
}
.about-text textarea.form-control {
    min-height: 140px;
}
.about-text .star-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 22px;
    color: #081155;
}
.about-text .star-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../image/icon/star.png) no-repeat left top;
    width: 18px;
    height: 18px;
}
.search-hidden .gsc-search-box {
    margin-bottom: 0;
}
.search-hidden .gsc-search-button {
    display: none;
}
.search-hidden .gsc-search-box-tools .gsc-search-box .gsc-input {
    padding-right: 0;
}
.search-hidden input.gsc-input,.search-hidden .gsc-input-box,.search-hidden .gsc-input-box-hover,.search-hidden .gsc-input-box-focus {
    height: auto;
    border: none;
}
.search-hidden .gsib_a {
    padding: 5px;
}
/*******************************************
        Responsive media start
 *******************************************/

@media(min-width: 320px) and (max-width: 767px) {
    .elite-slider h2.extra {
        top: 0 !important;
    }
    .select-rate-table thead,
    .shipment-datafetch-table thead {
        display: none;
    }
    .select-rate-table table tr td,
    .select-rate-table table tr th,
    .shipment-datafetch-table .table tr td {
        display: block;
        width: 100%;
        padding: 8px;
        padding-left: 47%;
        position: relative;
    }
    td:before,
    tr th:before,
    .shipment-datafetch-table td:before {
        left: 6px;
        padding-right: 10px;
        position: absolute;
        top: 8px;
        width: 45%;
        color: #305c98;
        font-weight: 700;
    }
    .select-rate-table .table tr td .btn-warning {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 15px;
    }
    .select-rate-table .table tr th:before {
        content: "Service";
    }
    .select-rate-table .table tr td:nth-child(2):before {
        content: "Delivery Date";
    }
    .select-rate-table .table tr td:nth-child(3):before {
        content: "Price";
    }
    .select-rate-table .table tr td:nth-child(4):before {
        content: "Select to continue";
    }
    .shipment-datafetch-table .table tr td:first-child:before {
        content: "Length (in)";
    }
    .shipment-datafetch-table .table tr td:nth-child(2):before {
        content: "Width (in)";
    }
    .shipment-datafetch-table .table tr td:nth-child(3):before {
        content: "Height (in)";
    }
    .shipment-datafetch-table .table tr td:nth-child(4):before {
        content: "Handling Units";
    }
    .shipment-datafetch-table .table tr td:nth-child(5):before {
        content: "Length (in)";
    }
}
@media(min-width: 768px) {
    h2 {
        font-size: 30px;
        font-weight: 700;
    }
    .threestep-box {
        padding: 0 25px 0 15px;
        border-bottom: none;
        border-right: 1px dotted #666;
    }
    .threestep-box p {
        margin-bottom: 0;
    }
    .threestep-box:last-child {
        border: none;
    }
    /********************* header css **************************/
    
    #header {
        background: #fff;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    #header.fixed {
        position: fixed;
        top: 0;
        width: 100%;
        left: 0;
        padding-top: 10px;
    }
    #header .header-top {
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    #header.fixed .header-top {
        display: none;
    }
    .header-top {
        margin-bottom: 13px;
    }
    .top-links {
        margin-bottom: 0;
    }
    .top-links li {
        margin-bottom: 0;
        margin-right: 15px;
    }
    .top-links li a span {
        display: inline;
    }
    .top-links .live-chat {
        display: inline-block;
    }
    .top-links .login {
        float: right;
        margin: 0;
    }
    .header-text h1 {
        display: block;
        float: left;
        width: calc(100% - 145px);
        margin-top: 6px;
        line-height: 1.2;
    }
    /* temp-link */
    
    .temp-link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        padding: 10px 0;
    }
    .temp-link p {
        padding-left: 120px;
        padding-top: 0;
        background-position: left top;
        text-align: left;
    }
    /* navigation*/
    .elite-menu .navbar-brand > img {
        max-width: 137px;
    }
    .elite-menu .navbar-collapse {
        float: right;
        background: transparent;
        padding-right: 0;
    }
    .elite-menu .navbar-nav > li {
        margin-right: 10px;
    }
    .elite-menu .navbar-nav > li:last-child {
        margin-right: 0;
    }
    .elite-menu .navbar-nav > li > a {
        color: #666;
        padding: 26px 7px 38px;
        font-size: 13px;
        font-family: 'brandon_grotesquebold';
    }
    .elite-menu .navbar-nav > li:hover > a,
    .elite-menu .navbar-nav > li > a:hover,
    .elite-menu .navbar-nav > li > a:focus,
    .elite-menu .navbar-nav > li > a:active .elite-menu .navbar-nav > .active > a,
    .elite-menu .navbar-nav > .active > a:focus,
    .elite-menu .navbar-nav > .active > a:hover,
    .elite-menu .navbar-nav > .active:hover > a,
    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:focus,
    .navbar-default .navbar-nav > .active > a:hover {
        background: transparent;
        color: #f6b922;
    }
    .elite-menu .navbar-nav > li > .btn-primary,
    .elite-menu .navbar-nav > li > .btn-warning {
        padding: 12px 7px;
        color: #fff;
        border-radius: 4px;
        font-family: 'brandon_grotesquebold';
        margin: 0;
        margin-top: 12px;
    }
    .elite-menu .navbar-nav > li > .btn-primary:hover,
    .elite-menu .navbar-nav > li > .btn-primary:focus,
    .elite-menu .navbar-nav > li > .btn-primary:active {
        color: #fff;
        background: #081155;
    }
    .elite-menu .navbar-nav > li > .btn-warning:hover,
    .elite-menu .navbar-nav > li > .btn-warning:focus,
    .elite-menu .navbar-nav > li > .btn-warning:active {
        color: #fff;
        background: #efac08;
    }
    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:focus,
    .navbar-default .navbar-nav > .open > a:hover {
        background: transparent;
        color: #f6b922;
    }
    .elite-menu .open .dropdown-menu,
    .elite-menu .dropdown-menu {
        padding: 0;
        border: none;
    }
    .elite-menu .nav li.dropdown:hover .dropdown-menu {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    .elite-menu .nav li.dropdown .dropdown-menu,
    .primary-nav .nav li.open .dropdown-menu {
        display: block;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -webkit-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a,
    .dropdown-menu > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-family: 'proxima_nova_softbold';
        text-transform: uppercase;
        font-size: 13px;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
    .dropdown-menu > li > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .dropdown-menu > li > a:hover {
        color: #fff;
        background: #efac08;
    }
    /*********************** service *******************/
    
    .service h3 {
        min-height: 58px;
    }
    .service-box-content {
        min-height: 345px;
        padding: 15px;
        padding-bottom: 25px;
    }
    .service .btn-primary {
        position: absolute;
        bottom: 15px;
        left: 50%;
        margin-left: -111px;
    }
    .service ul li {
        font-size: 18px;
    }
    .service ul li span {
        display: block;
    }
    /* slider */
    
    .elite-slider h2 {
        font-size: 36px !important;
        padding-left: 0;
        margin-left: 10% !important;
    }
    .elite-slider p {
        top: 200px !important;
        font-size: 18px !important;
        margin-left: 10% !important;
        padding-left: 0;
    }
    /* two links */
    
    .two-links .two-link-box {
        float: left;
        width: 50%;
    }
    .two-links a {
        font-size: 28px;
    }
    .two-links .left-link {
        background: #fff;
        padding-right: 3px;
    }
    .two-links .left-link a {
        text-align: right;
        background: url(../image/left-link-bg.jpg) no-repeat right center / cover;
        padding-right: 100px;
        padding-left: 15px;
    }
    .two-links .left-link a:hover {
        padding-right: 90px;
    }
    .two-links .left-link a:hover i {
        -webkit-transform: rotate(20deg);
        -moz-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    .two-links .left-link a i {
        right: 15px;
        left: inherit;
    }
    .two-links .right-link {
        background: #fff;
        padding-left: 3px;
    }
    .two-links .right-link a {
        background: url(../image/right-link-bg.jpg) no-repeat left center / cover;
        text-align: left;
    }
    /*footer */
    
    .carrers {
        margin-top: 0;
    }
    .footer-contact {
        margin-top: 25px;
    }
    /******* INNER PAGE *******/
    
    .temp-link.inner-page-link {
        position: relative;
    }
    .breadcrumb {
        padding: 26px 0 0;
    }
    .breadcrumb li {
        font-size: 16px;
    }
    .common-form {
        padding: 15px 20px 0;
    }
    .user-content {
        padding-bottom: 20px;
    }
    .user-content figure {
        max-width: 160px;
    }
    .if-yes {
        padding-bottom: 18px;
    }
    .want-him .common-form {
        padding-bottom: 20px;
    }
    .pickupdate label {
        float: left;
        padding-top: 9px;
    }
    .pickupdate .input-group {
        float: left;
        width: 325px;
        margin-left: 15px;
    }
    .quote-entry-shippinglast {
        margin-top: 0;
    }
    .same-as {
        margin-top: 40px;
    }
    .benefits-info .white-box {
        min-height: 360px;
    }
    .inner-page-content {
        padding-bottom: 40px;
        min-height: 320px;
    }
    .inner-page-banner {
        padding-top: 100px;
        height: 320px;
    }
    .inner-page-banner h2,
    .inner-page-banner p {
        margin-left: 0 !important;
    }
    /* track shipment form */
    
    .track-shipment-form .form-control {
        float: left;
        max-width: 320px;
        margin-right: 25px;
    }
    .track-shipment-form label {
        float: left;
        margin-right: 25px;
        padding-top: 6px;
    }
    .track-shipment-form .btn-primary {
        margin-top: 3px;
    }
    .b-team-member-layout:nth-child(2n + 1) {
        clear: both;
    }
    .b-team-member,
    .b-about-comp_team {
        position: relative;
    }
    .b-about-comp {
        position: relative;
        padding: 50px 0;
        font-size: 15px;
        text-align: left;
    }
    .b-about-comp h4 {
        margin: 0 0 20px;
        font-weight: 700;
        font-size: 22px;
    }
    .b-about-comp h5 {
        font-size: 16px;
        font-weight: 700;
    }
    .b-about-comp P {
        font-size: 14px;
    }
    .b-team-member-layout {
        float: left;
        vertical-align: top;
        height: 360px;
        width: 50%;
        -webkit-transition: height 0.3s ease;
        -webkit-transition-delay: 0s;
        -moz-transition: height 0.3s ease 0s;
        -o-transition: height 0.3s ease 0s;
        transition: height 0.3s ease 0s;
    }
    .b-team-member {
        position: relative;
        z-index: 10;
        display: inline-block;
        vertical-align: top;
        height: 360px;
        width: 100%;
        margin-left: -1px;
        z-index: 2;
    }
    .b-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        padding: 0 10px;
    }
    .l-member {
        padding: 0 15px 15px 0;
    }
    .b-team-member h4 {
        bottom: 15px;
    }
    .about-text .star-list li {
        float: left;
        width: 50%;
        padding-right: 35px;
        font-size: 22px;
    }
    .about-text .star-list li:before {
        top: 5px;
    }
}
@media(min-width: 992px) {
    .b-team-member {
        height: 470px;
    }
    h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    footer h2 {
        margin-bottom: 20px;
    }
    /********************* header css **************************/
    
    .header-text h1 {
        font-size: 18px;
        margin-top: 17px;
    }
    .elite-menu .navbar-brand > img {
        max-width: none;
    }
    .elite-menu .navbar-nav > li > a,
    .elite-menu .navbar-nav > li > .btn-primary,
    .elite-menu .navbar-nav > li > .btn-warning {
        padding: 30px 7px 45px;
        font-size: 14px;
    }
    .elite-menu .navbar-nav > li > .btn-primary, 
    .elite-menu .navbar-nav > li > .btn-warning {
        margin-top: 17px;
        padding: 12px 15px;
    }
    /*********************** service *******************/
    
    .service-box {
        margin-bottom: 0;
    }
    .service-box-content {
        min-height: 375px;
    }
    .service .btn-primary {
        width: 180px;
        margin-left: -90px;
    }
    /* slider */
    
    .elite-slider h2 {
        font-size: 40px !important;
        -webkit-text-shadow: 4px 4px 6px #000;
        -moz-text-shadow: 4px 4px 6px #000;
        -o-text-shadow: 4px 4px 6px #000;
        text-shadow: 4px 4px 6px #000;
    }
    .elite-slider p {
        top: 250px !important;
        font-size: 24px !important;
    }
    .temp-link p {
        max-width: 780px;
        margin: 0 auto;
    }
    .temp-link p a {
        margin-top: 0;
    }
    .user-content figure {
        max-width: 108px;
    }
    .if-yes {
        padding-bottom: 8px;
    }
    .footer-contact {
        margin-top: 0;
    }
    .inner-page-banner {
        padding-top: 70px;
        height: 375px;
    }
    .inner-page-banner h2 {
        margin-top: 50px;
    }
    .inner-page-tabbing .row {
        display: table;
    }
    .inner-page-tabbing .tabbing-content {
        display: table-cell;
        vertical-align: middle;
        float: none;
    }
    .about-text .star-list {
        max-width: 900px;
        margin: 25px auto;
    }
    .about-text .star-list li {
        padding-right: 50px;
    }
}
@media(min-width: 1200px) {
    .b-team-member-layout {
        width: 33.33%;
    }
    .b-team-member {
        height: 380px;
    }
    .b-team-member-layout:nth-child(2n + 1) {
        clear: none;
    }
    .b-team-member-layout:nth-child(3n + 1) {
        clear: both;
    }
    .b-about-comp h4 {
        font-size: 28px;
    }
    .b-about-comp P {
        font-size: 16px;
    }
    html {
        min-height: 100%;
        position: relative;
    }
    body {
        min-height: 100%;
        margin-bottom: 335px;
        height: 100%;
    }
    footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 335px;
    }
    h2 {
        font-size: 35px;
    }
    /********************* header css **************************/
    
    .header-text {
        padding-left: 0;
        max-width: 678px;
    }
    .header-text h1 {
        font-size: 20px;
        max-width: 525px;
        width: calc(100% - 137px);
    }
    .header-text h1 span {
        display: block;
    }
    .elite-menu .navbar-nav > li > a {
        padding-left: 20px;
        padding-right: 20px;
    }
    .elite-menu .navbar-nav > li > .btn-primary,
    .elite-menu .navbar-nav > li > .btn-warning {
        margin-left: 20px;
    }
    /* banner css */
    .elite-slider h2 small {
    	display: block;
    }
    /* We provide */
    
    .we-provide ul li {
        float: left;
        width: 20%;
        margin: 0;
    }
    .we-provide ul li a {
        border-bottom: none;
        padding: 5px 10px;
    }
    .we-provide p {
        padding: 0 25px;
        font-size: 20px;
    }
    /* Footer css */
    .copyright {
        padding: 17px 0 10px;
    }
    /*********************** service *******************/
    
    .service-box-content {
        padding: 15px 10px;
        min-height: 350px;
    }
    .service ul li {
        font-size: 20px;
        margin-bottom: 3px;
    }
    .service .btn-primary {
        width: 222px;
        margin-left: -111px;
    }
    .footer-about p span {
        display: block;
    }
    /* slider */
    
    .elite-slider h2 {
        font-size: 46px !important;
        margin-left: 0 !important;
    }
    .elite-slider h2 span {
        display: block;
    }
    .elite-slider p {
        margin-left: 0 !important;
        top: 265px !important;
    }
    .common-form {
        padding: 15px 30px;
    }
    .user-content {
        padding-bottom: 16px;
    }
    .want-him .common-form {
        min-height: 238px;
    }
    .want-him.first .common-form {
        min-height: inherit;
    }
    .inner-page-banner {
        height: 420px;
    }
    .track-page p span {
        display: block;
    }
    .inner-page-content {
        min-height: 600px;
    }
}