
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400;
    color: #333;
    line-height: 28px !important;
    letter-spacing: 1px !important;
}


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

p {
    line-height: -webkit-calc(22/13);
    line-height: -moz-calc(22/13);
    line-height: calc(21/13);
    margin-bottom: 0;
    letter-spacing: 1px;
    padding-top: 15px;
    padding-bottom: 10px !important;
}

a {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    font-size: 14px;
}

a:link,
a:visited {
    text-decoration: none;
    color: #fff;
}

a:hover,
a:active {
    text-decoration: none;
    color: #ebcd1e;
}

ul {
    margin-bottom: 0;
}

.ul--inline>li {
    display: inline-block;
}

.ul--no-style>li {
    list-style: none;
}


.visible {
    display: block;
}

/*Button*/

.au-btn {
    display: inline-block;
    text-align: center;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
    white-space: nowrap;
}

.au-btn--small {
    line-height: 27px;
    padding: 0 20px;
}

.au-btn--yellow {
    color: #fff;
   /* background-color: #333;*/
    background: #001494;
    border-bottom: 2px solid #000;
    box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.15);
}

.au-btn--yellow:hover {
    color: #fff;
    background-color: #333;
    border-bottom: 2px solid #af8923;
}

.au-btn--border {
    border: 1px solid transparent;
}

.au-btn--border:hover {
    color: #fff;
    background-color: #ebcd1e;
    border-color: #ebcd1e;
}

.au-btn--gray {
    color: #999999;
    border-color: #999999;
}

.au-btn--gray-1 {
    background: #c8c8c8;
    color: #333;
}

a.au-btn--dark {
    background-color: #333;
    color: #fff;
}

a.au-btn--dark:hover {
    background-color: #ebcd1e;
    color: #fff;
}

a.au-btn--white {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
}

.tp-caption.au-btn--pill.au-btn.au-btn--slide {
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;
    padding: 0 40px;
    text-transform: capitalize;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.tp-caption.au-btn--gray-1.au-btn--slide {
    color: #333!important;
}

.tp-caption.au-btn--gray-1.au-btn--slide:hover {
    background: #ebcd1e;
}

.au-btn--big {
    padding: 8px 23px;
}

.au-btn--medium {
    padding: 0 40px;
}

.tp-caption.au-btn--slide:hover {
    color: #fff;
    background-color: #333;
}

#btn-to-top {
    display: none;
    width: 40px;
    height: 40px;
    background-color: #001494;
    position: fixed;
    bottom: 25px;
    right: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 40px;
    text-align: center;
    z-index: 1000;
}

#btn-to-top:hover {
    background-color: #000;
}

#btn-to-top .fa.fa-chevron-up {
    font-weight: 400;
    color: #fff;
}

#btn-to-top i {
    margin-right: 0;
}

.overlay {
    background-color: #fbfbfb;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

.overlay--p-15 {
    padding: 15px;
}

.overlay--invisible {
    opacity: 0;
}

.overlay--dark {
    background: rgba(0, 0, 0, 0.8);
}

.overlay--border {
    height: 100%;
    width: 100%;
    border: 2px dashed #ebcd1e;
}

.overlay--yellow {
    background: rgba(235, 205, 30, 0.63);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.overlay--yellow>i {
    color: #fff;
    font-size: 72px;
}

.parallax {
    background-repeat: no-repeat;
    background-position: center left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.parallax--footer {
    background-image: url('../img/bg-footer.jpg');
    padding: 40px 0;
}


/*Form*/

.form {
    position: relative;
}

.form-header {
    margin: -5px 15px 26px 0;
}

.form__input {
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    line-height: 30px;
    outline: none;
    padding: 0 20px;
    font-size: 13px;
    color: #999999;
    width: 500px;
}

.form__input--show {
    display: block;
}

.form__input--hidden {
    display: none;
}


/* Header Stick */

.header-stick {
    position: fixed;
    top: -91px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
    width: 100%;
    left: 0;
    z-index: 88888;
    -webkit-box-shadow: 1px 0px 3px #ccc;
    -moz-box-shadow: 1px 0px 3px #ccc;
    box-shadow: 1px 0px 3px #ccc;
    background-color: rgba(255, 255, 255, 0.96);
}

.header-stick nav>ul>li {
    padding: 20px 20px;
}

.header-stick .logo {
    margin-top: -1px;
}

.header-stick nav .sub-menu {
    top: 59px;
}

.header-stick--show {
    top: 0;
}

.header-stick--dark {
    -webkit-box-shadow: 1px 0px 3px #222;
    -moz-box-shadow: 1px 0px 3px #222;
    box-shadow: 1px 0px 3px #222;
}

.header-stick--dark nav>ul>li>a {
    color: #182431;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.header-stick nav.menu-desktop {
    margin-right: 0;
}


/*Header 1*/

header h1 {
    margin-top: 2px;
}

.logo {
    text-align: center;
}


nav>ul>li {
    padding: 30px 18px;
}

nav>ul>li>a {
    font-size: 15px;
}

.menu-desktop--hidden {
    display: none;
}

.menu-desktop--show {
    display: block;
}

.li-has-sub {
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.sub-menu {
    position: absolute;
    left: 0;
    top: 79px;
    z-index: 1000;
    max-height: 0;
    border-top: 3px solid #000;
    overflow: hidden;
    transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 50% 0;
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform-origin: 50% 0;
    -o-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform-origin: 50% 0;
    transition: 350ms;
    -webkit-transition: 350ms;
    -moz-transition: 350ms;
    -o-transition: 350ms;
}

.li-has-sub:hover .sub-menu {
    max-height: 10000px;
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    -o-transform: rotate3d(0, 0, 0, 0);
    transform: rotate3d(0, 0, 0, 0);
}

.sub-menu>li {
    min-width: 224px;
}

.sub-menu>li>a {
    display: block;
    line-height: 40px;
    padding: 0 8px;
    text-transform: uppercase;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    font-size: 13px;
    color: #000;
}

.sub-menu>li>a:hover {
    background-color: #da1a1a;
    color: #fff;
}

.mini-cart {
    position: relative;
}

.header-button {
    margin-top: 32px;
}

.header-button>.pull-right {
    margin-left: 30px;
}

.header-button>.pull-right:last-child {
    margin-left: 0;
}

.header-button>div>a>i {
    font-size: 18px;
    font-weight: 600;
}

.mini-cart-counter {
    display: block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 11px;
    color: #333333;
    background-color: #ebcd1e;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    bottom: -6px;
    right: -8px;
}

.mini-cart-counter--gray {
    background-color: #e6e6e6;
    top: -7px;
    right: -8px;
}

.cart-dropdown {
    position: absolute;
    z-index: 1000;
    top: 47px;
    right: -3px;
    min-width: 241px;
    border-top: 3px solid #ebcd1e;
    background: #fff;
    -webkit-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
    transition: 0.6s ease;
}

.cart-dropdown--hidden {
    display: none;
    height: 0;
}

.cart-dropdown--show {
    height: auto;
    display: block;
}

.cart-list>li {
    padding: 15px 10px 15px 17px;
    border-bottom: 1px solid #f3f3f3;
}

.cart__item>.img-thumb {
    position: relative;
    display: inline-block;
    float: left;
    width: 50px;
    border: 1px solid #e6e6e6;
}

.pro-detail {
    padding: 8px 0 11px 65px;
}

.pro-detail>h6 {
    margin-bottom: 2px;
}

.pro-detail>h6>a {
    font-weight: 400;
    text-transform: capitalize;
    color: #555;
    font-size: 13px;
}

.pro-detail>h6>a:hover {
    color: #ebcd1e;
}

.pro-detail>p {
    line-height: 1;
    margin-bottom: 0;
}

.pro-detail>p>em {
    font-size: 11px;
    color: #999;
}

.total-checkout {
    padding: 18px 25px;
}

.total {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.checkout {
    margin-bottom: 5px;
}

.checkout>a.au-btn {
    font-size: 11px;
}

.sum {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}


/*Header 2*/

.header2 {
    /*position: absolute;*/
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    border-bottom: 3px solid #a63f0c;
   box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.36);
}

.header2 .form-header>.form__input {
    background: transparent;
}

.header2 nav>ul>li>a {
    color: #182431;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}

.header2 nav>ul>li>a:hover {
    color: #da1a1a;
}

.header2 .header-button>div>a>i {
    color: #eeeeee;
}


/*Menu Canvas*/

#menu-canvas {
    background-image: url('../img/bg-menu-canvas.jpg');
    background-color: #333;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    width: 360px;
    position: fixed;
    z-index: 10000;
    top: 0;
    -webkit-transition: right 0.5s;
    -o-transition: right 0.5s;
    -moz-transition: right 0.5s;
    transition: right 0.5s;
    padding: 0 30px;
}

.close-menu-canvas i {
    color: #ebcd1e;
    font-size: 22px;
    line-height: 22px;
    cursor: pointer;
}

.canvas-menu-button i {
    -webkit-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

.menu-canvas--hidden {
    right: -361px;
}

.menu-canvas--show {
    right: 0;
}

.menu-canvas__inner {
    height: 100%;
    margin-top: 30%;
}

.menu-canvas-slide {
    margin-top: 74px;
}

.menu-canvas__image {
    padding: 10px;
    border: 2px dashed #ebcd1e;
}

.menu-canvas__detail {
    color: #c2c2c2;
    padding: 0 45px;
    text-align: center;
    margin-top: 79px;
}

.social {
    text-align: center;
    margin-top: 55px;
}

.social__item {
    display: inline-block;
    line-height: 30px;
    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
    transition: 0.6s ease;
    text-align: center;
    width: 30px;
    background: #484848;
    margin-right: 7px;
}

.social .social__item:last-child {
    margin-right: 0;
}

.social__item:hover {
    background: #ebcd1e;
}

.social__item:hover>i {
    color: #333333;
}

.social__item>i {
    color: #dedede;
}

#sync2 .owl-dots {
    position: absolute;
    top: 20px;
    left: 126px;
}


/*Menu Mobile*/

header.header-mobile {
    display: none;
}

.menu-mobile__button {
    display: inline-block;
    float: right;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #c6c6c6;
    cursor: pointer;
    margin: 20px 0;
}

.menu-mobile__button:hover {
    background: #da1a1a;
}

.menu-mobile__button:hover i {
    color: #333;
}

.menu-mobile__button i {
    font-size: 18px;
}

.hidden {
    display: none;
}

.menu-mobile__more {
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 40px;
    padding: 0 20px;
    cursor: pointer;
    color: #444444;
}

nav.menu-mobile {
    position: absolute;
    top: 230px;
    left: 0;
    float: left;
    z-index: 50000;
    background: #fff;
    width: 100%;
    margin-right: 0;
}

nav.menu-mobile>ul {
    border-top: 3px solid #000;
}

nav.menu-mobile>ul>li {
    position: relative;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.menu-mobile li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.menu-mobile>ul>li a {
    padding: 0 20px;
    line-height: 40px;
    display: block;
    color: #000;
}

nav.menu-mobile>ul>li a:hover {
    background-color: #da1a1a;
    color: #fff;
}

nav.menu-mobile>ul>li>ul {
    background: rgba(0, 0, 0, 0.03);
}

.click {
    background: #000;
}

.click>i {
    color: #da1a1a;
}

/*Header*/

.header4 {
    position: absolute;
    z-index: 100;
    width: 100%;
}

.header4 nav.menu-desktop {
    margin-right: 0;
}

.header4 nav>ul>li {
    padding: 46px 24px;
}

.header4 nav li a {
    color: #eeeeee;
    text-transform: uppercase;
/*    font-family: "Montserrat";
*/    font-weight: 400;
    font-size: 14px;
}

.header4 nav li a:hover {
    color: #ebcd1e;
}

.logo--center {
    line-height: 111px;
    padding: 0 30px;
    background: #171717;
    margin-top: 0;
    -webkit-box-shadow: 3px 5.196px 16.74px 1.26px rgba(0, 0, 0, 0.094);
    -moz-box-shadow: 3px 5.196px 16.74px 1.26px rgba(0, 0, 0, 0.094);
    box-shadow: 3px 5.196px 16.74px 1.26px rgba(0, 0, 0, 0.094);
}

.logo--center>a {
    display: block;
}

.header4 .header-button {
    margin-top: 43px;
}

.header4 .header-button .mini-cart i {
    color: #eeeeee;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header4 .header-button .mini-cart>a:hover i {
    color: #ebcd1e;
}

.header4 .header-button .mini-cart .cart-dropdown {
    top: 65px;
}

.header4 .header-button .search-button i {
    color: #eeeeee;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header4 .header-button .search-button>a:hover i {
    color: #ebcd1e;
}

.header4 .header-button .search-button .form__input {
    width: 300px;
    background: transparent;
}

.header4 nav>ul>li>.sub-menu {
    top: 108px;
}

.header4 nav>ul>li>.sub-menu>li>a {
    color: #333;
    text-transform: capitalize;
}

/*Box*/

html.homepage-box {
    background: url(../img/icon/bg-box.png) repeat;
}

body.box {
    max-width: 1200px;
    margin: auto;
    -webkit-box-shadow: 1px 1.732px 14.56px 1.44px rgba(0, 0, 0, 0.063);
    -moz-box-shadow: 1px 1.732px 14.56px 1.44px rgba(0, 0, 0, 0.063);
    box-shadow: 1px 1.732px 14.56px 1.44px rgba(0, 0, 0, 0.063);
    position: relative;
    background-color: #fff;
    overflow-x: hidden;
}


/*Top contact 1*/

.top-contact1-wrap {
    padding: 18px 0;
    border-bottom: 1px solid #ededed;
}

.top-contact1-wrap span {
    font-size: 11px;
    color: #969696;
}

.top-contact1-wrap span>a {
    font-size: 11px;
    color: #969696;
}

.top-contact1-wrap span>a:hover {
    color: #ebcd1e;
}


/*Header Stick 6*/

.header-stick6 nav>ul>li a {
    text-transform: uppercase;
    font-size: 13px;
}

.header6.header-stick .logo {
    margin-top: 0;
}


/*Header 6*/

.header6 h1 {
    margin-top: 8px;
}

.header6 .header-button>.pull-right {
    margin-left: 20px;
}

.header6 nav>ul>li a {
    text-transform: uppercase;
    font-size: 13px;
}

.header6 .sub-menu {
    top: 77px;
}

.header6 .header-button {
    margin-top: 28px;
}

.header6 .search-button {
    position: relative;
}

.header6 .search-button .form-header {
    margin-right: 0;
}

.header6 .search-button .form-header button {
    position: absolute;
    top: 1px;
    right: 0px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    border: none;
    background: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.header6 .search-button .form-header button i {
    font-size: 18px;
    color: #444444;
}

.header6 .search-button .form__input {
    display: block;
    width: 150px;
    border: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding-left: 0;
}

.header6 .search-button .form__input:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #ebcd1e!important;
}

.header6 nav.menu-desktop {
    margin-right: 40px;
}


/* Footer Style */
i.red{
    color:#BC0213;
}
.gal-container{
    padding-top :55px;
    padding-bottom:35px;
}

/*About Us*/

.parallax--nav-1 {
    padding: 125px 0;
    background-image: url('../img/bg-head-03.jpg');
}


/*404 Page*/

.navigation--bgf8 {
    background-color: #f8f8f8;
    padding: 125px 0;
}

.navigation--bgf8 h2 {
    color: #333;
}

.navigation--bgf8 .breadcrumbs span {
    color: #333;
}

.navigation--bgf8 .breadcrumbs .active {
    color: #333;
}

.page-404 {
    padding-top: 80px;
    padding-bottom: 90px;
    text-align: center;
}

.page-404 .big-info {
    font-size: 18px;
    font-weight: 700;
    color: #999;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.page-404 .big-info>span {
    display: block;
    font-size: 85px;
    font-weight: 700;
    color: #999;
    margin-bottom: 5px;
}

.page-404 .see-more {
    margin-top: 40px;
}

/*Service v2*/

.service-img-wrap {
    margin-right: -30px;
    margin-top: 30px;
}

.service-img {
    display: block;
    float: left;
    width: 25%;
    padding-right: 30px;
}

/*Contact*/

.parallax--nav-2 {
    padding: 125px 0;
    background-image: url('../img/bg-head-05.jpg');
}

.contact-content {
    padding: 70px 0;
    padding-top: 30px;
}

.contact-info {
    padding: 40px 0;
    background: #f8f8f8;
    padding-top: 10px;
}

.contact-info .col-md-3>div {
    text-align: center;
}

.contact-info .col-md-3>div>i {
    color: #666;
    font-size: 18px;
    margin-right: 10px;
}

.form-contact-wrap {
    padding-left: 40px;
}

.form-contact-wrap h4 {
    margin-bottom: 30px;
}

.form-contact input,
textarea {
    width: 100%;
    color: #999;
    outline: none;
    padding: 10px;
    border: 1px solid #cecece;
}

.form-contact input {
    margin-bottom: 10px;
}

.form-contact textarea {
    min-height: 190px;
}

.form-contact-wrap div>button {
    border: none;
    cursor: pointer;
    margin-top: 30px;
}

textarea,
input {
    -o-transition: border-color 0.5s ease;
    transition: border-color 0.5s ease;
    -moz-transition: border-color 0.5s ease;
    -webkit-transition: border-color 0.5s ease;
}

textarea:focus,
input:focus {
    border-color: #da1a1a !important;
}

.form-sub {
    padding: 30px 70px;
    background: #f8f8f8;
}



.top-header {
    background-color: #001494;
    height: 40px;
}

.top-detail {
    padding-top: 8px;
}

.top-detail ul, .top-detail1 ul {
    margin-bottom: 0px;
}

.top-detail ul li {
    float: left;
    padding: 0 13px;
    color: #fff;
    
    font-size: 15px;
    list-style: none;
}

.top-detail1 i, .top-detail i {
    color: #fff;
    font-size: 21px;
}

.top-detail1 {
    float: right;
    padding: 10px 14px;

}

.top-detail1 ul li {
    float: left;
    padding: 0 7px;
    color: #fff;
    padding: 0 7px;
    font-size: 18px;
    list-style: none;
}


.we-are__right strong::after {
   position: absolute;
    content: '';
    left: 0px;
    bottom: -9px;
    width: 70px;
    border-bottom: 5px solid #f67532;
}

.we-are__right strong::before {
   position: absolute;
    content: '';
    left: 0px;
    bottom: -8px;
    width: 270px;
    border-bottom: 2px solid #e4e4e4;
}

.we-are__right strong {
    position: relative;
    color: #1d1d1de0;
    font-size: 36px;
    /*font-weight: 700;*/
    line-height: 1.2em;
    margin-bottom: 25px;
    display: block;
}

.we-are__right h3{
    color: #a63f0c;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

/* Slider */

.client{
    padding:77px 0 120px 0;
   background-color: #fbfbfb7d;
}



.client h2{
    text-transform: uppercase;
font-weight: 700;
color: #333333;
font-size: 30px;
margin-bottom: 25px;
line-height: 24px;
    
}

.client p{
    margin-bottom: 50px;
}

.client1 img{
    border:1px solid #ccc;
}

.section-heading {
    text-transform: uppercase;
    font-weight: 700;
    color: #333333;
    font-size: 28px;
    margin-bottom: 25px;
    line-height: 24px;
}

/****footer*****/


.footer{
    background-color:#373737;
    padding: 41px 0 0 0;
    background-size: cover;
}

.footer-1{
    text-align: center;
}

.footer-1 p{
    color: #aaa;
    font-size: 15px;
}

.social-detail{
    text-align:center;
    margin-top:20px;
}

.social-detail h5{
    float:left;
    text-align:center;
}

.social-detail ul li{
    float: none;
    display: inline-block;
    border:1px solid #fff;
    border-radius: 3em;
width: 2.6em;
height: 2.6em;
line-height: 2.6em;
margin: 0 6px;
}

.social-detail ul li i{
    color:#ebcd1e;
    font-size:16px;
}

.social-detail ul li:hover{
    border:1px solid #ebcd1e;
}

.social-detail ul li:hover i{
    color:#ebcd1e;
}

li.social-text{
    border:none !important;
    color:#fff;
    width:auto !important;
    height:auto !important;
font-size: 17px;
font-weight: 600;
text-transform: uppercase;
}


.footer1 h4{
    color: #fff;
    text-transform: none;
    /*border-left: 1px solid #ebcd1e;*/
    padding-left: 0px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer1 p, .footer1 p a{
    color: #ddd;
    font-size: 16px;
    margin-bottom: 5px;
    padding: 0px !important;

}

.footer1 a{
    color: #001494;
}
.footer1 ul li{
        padding: 4px 0;
            list-style: none;
            line-height: 24px;
}
.footer1 ul li a{
    color: #ddd;
    font-size: 17px;
}
.footer1 ul li i, .footer1 p i{
    color: #001494;
    margin-right: 5px;
}


.footer1 p span{
    color: #ebcd1e;
}
.footer1 ul li a:hover{
    color: #f2d046;
}
.copyright{
    background-color: #151515;
    margin-top: 30px;
    padding: 10px 0;
    /*text-align: center;*/
    
}
.copyright1 p{
    color: #aaa;
    font-size: 16px;
    margin: 0 !important;
}

.copyright1 p a{
    color: #001494;
}

.copyright1 p a:hover{
    color: #fff;
}


.footer-top img{
  width: 190px;
}

.foottop i{
    color: #182431;
    font-size: 34px;
    float: left;
    padding-right: 11px;
    padding-top: 10px;
}

.foottop1 b{
     color: #182431;
    font-size:14px;


}

.foottop1 p{
     color: #fff;
    font-size:14px;

}

.foottop p{
    color: #182431;
    font-size:14px;
    font-weight: bold;
}

.foottop1 ul li{
    float: left;
    list-style: none;
    padding-right: 10px;
    font-size: 15px;
    color: #fff;
}

.foottop1 ul li a{
    color: #fff;
}

.top2{
    margin-left: 45px;
}


.top1{
    margin-left: 45px;
}


.about-banner {
    background: url(../images/about.jpg) no-repeat;
    background-size: cover;
    padding: 100px 0;
}



.about-text h2 {
    color: #fff;
    font-size: 42px;
    letter-spacing: 3px;
    /*padding-top: 60px;*/
    font-weight: bold;

}

.logo img{
width: 583px;
margin-top: 4px;
}

.fact{
    padding: 80px 0;
}


.sin{
    padding-top: 35px;
}

.services-area {
    padding-top:40px;
    padding-bottom: 38px;
}

.sec-title {
    margin-top: -6px;
    padding-bottom: 43px;
    position: relative;
    padding-left: 24px;
}

.sec-title::before {
    position: absolute;
    top: 0px;
    left: 0;
    width: 3px;
    height: 52px;
    background: #01305e;
    content: "";
}

.sec-title p {
    color: #0e5295;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 12px;
    text-transform: capitalize;
    font-weight: 600;
}

.sec-title h1 {
    color: #292929;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase;
    margin-top: -7px;
    font-family: 'Roboto', sans-serif;
}

.services-area .single-service-item {
    padding-bottom: 5px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 35px;
    border: 1px solid #cccccca1;
}

.services-area .single-service-item .img-holder {
    display: block;
    position: relative;
    overflow: hidden;
}

.services-area .single-service-item .img-holder img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.overlay {
    background-color: transparent;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.4s ease 0s;
    transition: background-color 0.4s ease 0s;
}

.overlay .box {
    border: 5px solid transparent;
    display: table;
    height: 100%;
    -webkit-transition: border-color 0.4s ease 0s;
    transition: border-color 0.4s ease 0s;
    width: 100%;
}

.overlay .box .content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.overlay .box .content a {
    padding: 9.5px 24px;
    -webkit-transform: translate3d(0px, -75px, 0px);
    transform: translate3d(0px, -75px, 0px);
    -webkit-transition: all 0.4s ease 0s !important;
    transition: all 0.4s ease 0s !important;
    opacity: 0;
}

.yellow-bg {
    background:#001494;
}

.thm-btn {
    border: 2px solid #001494;
    color: #ffffff;
    display: inline-block;
    /*font-family: 'Montserrat', sans-serif;*/
    font-size: 14px;
    font-weight: 600;
    outline: medium none;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.services-area .single-service-item .text-holder {
    padding-left: 0px;
    position: relative;
    padding-top: 22px;
}

.services-area .single-service-item .text-holder .icon {
    background: #f7f7f7 none repeat scroll 0 0;
    color: #292929;
    left: 0;
    position: absolute;
    top: 30px;
    width: 60px;
    height: 60px;
    display: block;
    text-align: center;
    padding: 18px 0;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}


.services-area .single-service-item .text-holder .icon {
    color: #292929;
    text-align: center;
}

.services-area .single-service-item .text-holder .icon span::before {
    font-size: 30px;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}

.services-area .single-service-item .text-holder .icon {
    color: #292929;
    text-align: center;
}

.services-area .single-service-item .text-holder .text {
    padding-left: 20px;
}

.services-area .single-service-item .text-holder .text h3 {
    margin: 0px 0 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #0e5295;
    text-align: center;
    font-weight: 600;
}

.services-area .single-service-item:hover .img-holder .overlay {
    background-color: #a63f0c75;
}

.services-area .single-service-item:hover .img-holder .overlay .box {
    border-color:#001494;
}

.thm-btn:hover {
    background: #292929;
    color: #fff;
    border: 2px solid #a63f0c;
}

.overlay .box .content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.services-area .single-service-item:hover .img-holder .overlay .box .content a {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.services-area .single-service-item:hover .img-holder img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}



.our-features {
    background: url(..//images/feature-bg.jpg) center center no-repeat;
    position: relative;
}

.our-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #03030dc4;
}

.our-features .single-our-feature {
    text-align: center;
    color: #fff;
    padding: 45px 0;
    position: relative;
    transition: all 0.5s ease;
}


.our-features .single-our-feature {
    text-align: center;
    color: #fff;
}


.our-features .single-our-feature h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 14px;
}

.our-features .single-our-feature h3, .our-features .single-our-feature p {
    margin: 0;
        margin-bottom: 0px;
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: all 0.5s ease;
}

.our-features .single-our-feature p, .about-section .right-textbox p {
    font-weight: 300;
}

.our-features .single-our-feature p {
    font-size: 16px;
    color: #f67532;
    font-weight: 500;
    line-height: 26px;
}

.icon-box i{
    font-size: 44px;
border: 1px dashed #ffffff8c;
padding: 15px;
margin-bottom: 24px;
}

.cont {
    padding: 45px 0 40px 0;
}

.contact-one-form {
    padding-top: 50px;
}

.contact-one-form1 {
    padding-top: 0px;
}

.contact-one-form label {
    font-size: 15px;
    color: #000;
}

.form-group input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
   /* border-color: #006EA673;
    border-image: none;
    border-width: 0 0 1px;*/
    font-size: 13px;
    /*height: 45px;*/
    margin-bottom: 20px;
    /*width: 100%;*/
    color: #000 !important;
    text-transform: uppercase;
}

.form-quote .form-control {
    height: 50px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e9e9e9;
    background-color: #f8f8f8;
}

.form-quote .form-control.area-from {
    height: 100px;
}
.contact-one-form input {
    width: 100%;
    height: 48px;
   /* border: none;*/
    border: 1px solid #ACAEAE73 !important;
    padding: 10px;
    background: #f9f9f9;
border-radius: 5px;
}

.contact-one-form textarea {
    width: 100%;
    height: 100px;
    border: none;
    border: 1px solid #ACAEAE73 !important;
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.group input{
width: 49%;
color: #fff !important;
font-size: 14px;
font-weight: bold;
line-height: 38px;
text-transform: uppercase;
padding: 0px 15px !important;
background:#001494 !important;
border-bottom: 2px solid #000 !important;
}

.g-recaptcha{
    margin-left: 19px;
    margin-bottom: 17px;
}

.messages1{
    color:#f67532;
}

.error {
    color:#f67532;
}

.conta {
    padding-left: 100px !important;
    padding-top: 50px;
}

.cont2 strong {
    font-size: 15px;
    color: #000;
}

.cont2 strong i {
    font-size: 18px;
    color:#001494;
    padding-right: 8px;
}

.btn.solid-btn, .btn.btn-solid {
    background: #0e0f4f;
    color: #fff;
    font-weight: 600;
    border: 1px solid #0e0f4f;
    padding: 11px 15px;
    margin-top: 15px;
}

.cont2 li, .cont2 li a {
    font-size: 16px;
    color: #000;
    list-style: none;
    padding-bottom: 2px;
}

/*Product page*/

.Products{
    padding: 45px 0 80px 0;
}

.Products h2{
    color: #0e0f4f;
    font-size: 28px;
    font-weight: bold;
    display: block;
    padding-bottom:14px;
}


.pro1{
    padding-bottom: 35px;
}

.pro2 dl dd{
    padding-bottom: 15px;
}



.pro3 strong{
    color: #f67532;
    font-size: 20px;
    padding-bottom: 10px;
    display: block;
}

table {
    border: 1px solid rgba(0,0,0,0.13);
    width: 100%;
    background-color: #f8f8f8;
    display: table;
}

td {
    background-color: #f8f8f8;
    border: 1px solid rgba(0,0,0,0.13);
    padding: 6px 15px;
}

.w30 {
    width:35%; 
}

.pro3{
    padding-bottom: 45px;
}

.abo{
    padding: 50px 0;
}


.abo1 h2{
color: #0e0f4f;
margin-bottom: 10px;
font-size: 30px;
font-weight: bold;
}

#callme {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    z-index: 99999;
}

#callme a i{
    position: absolute;
    padding-left: 18px;
    font-size: 45px;
    padding-top: 10px;
    color:#fff;
}

#callme #callmeMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgb(78, 217, 130);
    width: 70px;
    height: 70px;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}
#callme #callmeMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
    background-repeat: no-repeat;*/
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}
@-webkit-keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-webkit-keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@media only screen and (max-width: 600px) {
#callme {
    position: fixed;
    right: 30px;
    bottom: 70px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 1;
    z-index: 99990;
}
#callme #callmeMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color:rgb(78, 217, 130);
    width: 50px;
    height: 50px;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}
} 
