/* CSS RESET * -------------------------- */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}
html{
    overflow-x: hidden;
}
body {
    margin: 0;
    font-weight: 300;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body a {
    /*transition: 0.5s all ease;
	-webkit-transition: 0.5s all ease;
	-moz-transition: 0.5s all ease;
	-o-transition: 0.5s all ease;
	-ms-transition: 0.5s all ease;*/
}

/* CSS TOP MARGINS * -------------------------- */
.top-marg-0 {
    margin-top: 0;
}

.top-marg-1 {
    margin-top: 8px;
}

.top-marg-2 {
    margin-top: 20px;
}

.top-marg-3 {
    margin-top: 30px;
}

.top-marg-4 {
    margin-top: 40px;
}

.top-marg-5 {
    margin-top: 50px;
}

.mmt-20 {
    margin-top: -20px;
}

.mmt-30 {
    margin-top: -30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    font-family: 'Saira Extra Condensed', sans-serif;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 15px;
}

p {
    margin: 15px 0 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #5c524b;
}

ul,
label {
    margin: 0;
    padding: 0;
}

.bullet-style-1 {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.bullet-style-1 li {
    position: relative;
    padding-left: 30px;
    color: #5c524b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 15px;
}

.bullet-style-1 li:before {
    content: "\f0a9";
    font-family: 'Line Awesome Free';
    color: #ef801b;
    position: absolute;
    left: 0;
    font-size: 20px;
    top: -5px;
}

body a:hover {
    text-decoration: none;
}

html input[type="text"],
input[type="email"],
input[type="tel"],
select {
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;
    color: #777;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
    background: #fff;
}

html select {
    padding: 0 11px;
    font-size: 15px;
}

html select option {
    font-size: 14px;
    font-weight: 300;
}

html textarea {
    padding: 0px 50px;
    box-sizing: border-box;
    width: 100%;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
    background: #fff;
}

html button,
html input[type="button"] {
    color: #fff;
    display: inline-block;
    padding: 7px 15px;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 2px;
    border: none;
    background: #01a0e3;
    font-weight: 600;
    height: 50px;
}

html input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

img {
    image-rendering: -moz-crisp-edges;
    /* Firefox */
    image-rendering: -o-crisp-edges;
    /* Opera */
    image-rendering: -webkit-optimize-contrast;
    /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    /* IE (non-standard property) */
}

.btn {
    font-size: 16px;
    padding: 13px 25px;
    font-weight: 500;
    border-radius: 5px;
}

.btn-round {
    border-radius: 30px;
}

.btn-primary {
    color: #fff;
    background-color: #00a0e3;
    border-color: #00a0e3;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-color: #00a0e3;
    border-color: #00a0e3;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    color: #fff;
    background-color: #00a0e3;
    border-color: #00a0e3;
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: #fff;
    background-color: #00a0e3;
    border-color: #00a0e3;
}

.text-uppercase {
    text-transform: uppercase;
}

/*--header--*/
.header {
    background: transparent;
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=0);
}

.header .navbar-brand {
    height: auto;
    width: 250px;
    /*padding:20px 0;*/
    color: #7fbf24;
    font-size: 36px;
    line-height: 50px;
    font-weight: bold;
}

.navbar-brand {
    padding: 10px 0;
}

.header .header-info {
    float: right;
    margin: 25px 0;
}

.header .hd-info-toggle {
    display: none;
}

.header .header-info .collapse {
    display: block;
}

.header .header-info .call,
.header .header-info .mail,
.header .header-info .add {
    display: inline-block;
    vertical-align: middle;
    margin-left: 50px;
    line-height: 20px;
    color: #fff;
}

.header .header-info .call {
    margin-left: 0;
}

.header .header-info .call span,
.header .header-info .mail span,
.header .header-info .add span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}

.header .header-info .call span.image,
.header .header-info .mail span.image {
    background: #00a0e3;
    border-radius: 50%;
    padding: 10px;
    margin-right: 5px;
    width: 45px;
}

.header .header-info strong {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Saira Extra Condensed', sans-serif;
    letter-spacing: .05rem;
}

/*--banner--*/
.main-container {
    margin: 0 0 0 0;
}

.main-container .headline {
    font-size: 65px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 0 0;
    line-height: 65px;
    color: #fff;
    position: relative;
    font-family: 'Saira Extra Condensed', sans-serif;
}

.main-container p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    line-height: 30px;
    color: #fff;
}

.carousel-indicators {
    bottom: 10px;
}

.carousel-control {
    top: 145px;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
    filter: none;
}

.carousel-caption {
    right: 15%;
    left: 15%;
    padding-bottom: 0px;
    text-align: center;
    text-shadow: none;
    bottom: 23%;
}

.carousel .item {
    height: 100%;
    width: 100%;
}

.carousel-caption a {
    margin: 25px 0 0 0;
}

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
}

@media all and (transform-3d),
(-webkit-transform-3d) {

    .carousel-fade .carousel-inner>.item.next,
    .carousel-fade .carousel-inner>.item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner>.item.prev,
    .carousel-fade .carousel-inner>.item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner>.item.next.left,
    .carousel-fade .carousel-inner>.item.prev.right,
    .carousel-fade .carousel-inner>.item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Animation delays */
.carousel-caption .headline {
    animation-delay: 1s;
}

.carousel-caption p {
    animation-delay: 1.5s;
}

.carousel-caption .more {
    animation-delay: 2s;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -15px;
    font-size: 20px;
    background: #00a0e3;
    padding: 14px;
    color: #fff;
    text-shadow: none;
    border-radius: 50%;
}

.carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 10px;
}

.carousel-indicators .active {
    width: 17px;
    height: 17px;
    border-radius: 10px;
    border: 1px solid #fff;
}

/*--General CSS--*/
.section {
    padding: 4em 0;
    overflow-x: hidden;
}

.map {
    padding: 0em 0;
}

.section2 {
    margin-top: 0;
}

.sub-title {
    font-size: 16px;
    color: #ef801b;
    font-weight: 600;
    margin-bottom: 10px;
}

.title {
    font-size: 54px;
    line-height: 1;
    margin-bottom: 20px;
    color: #5c524b;
}

.title2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #343434;
    letter-spacing: -1px;
    color: #222;
}

hr {
    margin: 20px auto;
    height: 1px;
    width: 75px;
    background: #7fbf24;
}

.white-bg {
    background: #fff;
}

/*--Call To Action CSS--*/
.cta-wrap {
    background: #7fbf24;
}

.cta-wrap.section {
    padding: 2.8em 0;
}

.cta-wrap .cta-title {
    color: #fff;
    font-size: 22px;
    margin-top: 20px;
}

.cta-wrap a {
    color: #fff;
    border: 2px solid #fff;
}

/*--About Section--*/
.about-wrap {
    overflow: hidden;
}

.about-wrap hr {
    margin-left: 0;
}

.about-wrap .image {
    position: relative;
    padding: 2.7rem 0 0 5rem;
}

.about-wrap .image .dot-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
}

.about-wrap .image .big-image {
    position: relative;
    z-index: 1;
}

.about-wrap .image .big-image img {
    border-radius: 5px;
}

.about-wrap .image .small-image {
    position: absolute;
    right: -3rem;
    bottom: -5rem;
    width: 250px;
    z-index: 2;
}

.about-wrap .image .small-image img {
    border-radius: 5px;
}

/*--Services Section--*/
.services-wrap {
    background: #f5f4f2;
}

.services-wrap .services-item {
    position: relative;
    text-align: center;
    -webkit-perspective: 600px;
    -ms-perspective: 600px;
    perspective: 600px;
    height: 300px;
    margin-top: 30px;
}

.services-wrap .services-item:before {
    content: ' ';
    width: 0;
    height: 0;
    padding-top: 98%;
}

.services-wrap .services-item .services-item-front,
.services-wrap .services-item .services-item-back {
    color: #fff;
    background-color: #333;
    background-position: center !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform .6s ease;
    -ms-transition: -ms-transform .6s ease;
    transition: transform .6s ease;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

.services-wrap .services-item .services-item-front:before,
.services-wrap .services-item .services-item-back:before {
    content: ' ';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: background-color .3s ease;
    -ms-transition: background-color .3s ease;
    transition: background-color .3s ease;
}

.services-wrap .services-item .services-item-front .services-item-front-inner,
.services-wrap .services-item .services-item-back .services-item-back-inner {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    padding: 2em;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}

.services-wrap .services-item .services-item-front {
    z-index: 2;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.services-wrap .services-item .services-item-front .services-item-front-inner {
    transform: none;
    top: auto;
    bottom: 0;
    padding: 1.8em 2em;
}

.services-wrap .services-item .service-title {
    font-size: 1.3em;
    font-weight: 600;
    font-style: normal;
    line-height: 1.21;
    text-decoration: none;
    text-transform: none;
    letter-spacing: -.9px;
}

.services-wrap .services-item .service-more {
    color: #ef801b;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.services-wrap .services-item .service-more i {
    position: relative;
    top: -2px;
}

.services-wrap .services-item a.service-link {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.services-wrap .services-item .services-item-back .services-item-back-inner p {
    color: #fff;
    margin-bottom: 15px;
}

.services-wrap .services-item .services-item-back {
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.services-wrap .services-item:hover .services-item-front {
    -webkit-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.services-wrap .services-item:hover .services-item-back {
    webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.services-wrap .services-item:hover .services-item-front:before,
.services-wrap .services-item:hover .services-item-back:before {
    background-color: rgba(0, 0, 0, .75);
}

.services-wrap .packing-bg {
    background: url(../images/packing-bg.jpg) center;
}

.services-wrap .loading-bg {
    background: url(../images/loading-bg.jpg) center;
}

.services-wrap .home-relocation-bg {
    background: url(../images/home-relocation-bg.jpg) center;
}

.services-wrap .office-relocation-bg {
    background: url(../images/office-relocation-bg.jpg) center;
}

.services-wrap .overlay {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4em 3em;
}

.services-wrap .overlay .icon-img {
    background: #7fbf24;
    width: 100px;
    border-radius: 50%;
    padding: 20px;
    margin-bottom: 20px;
}

.services-wrap .overlay .title2 {
    color: #fff;
}

.services-wrap .overlay hr {
    margin-left: 0;
    margin-bottom: 0;
}

.services-wrap .overlay p {
    color: #fff;
}

.services-wrap .overlay a {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
}

.services-wrap .overlay a i {
    color: #7fbf24;
    margin-left: 5px;
    transition: all 0.2s ease-in-out;
}

.services-wrap .overlay:hover i {
    margin-left: 10px;
}


/*--Why Section--*/
.why-wrap {
    overflow: hidden;
}

.why-wrap .why-box {
    background: #ef801b;
    padding: 30px;
    border-radius: 5px;
}

.why-wrap .image {
    position: relative;
}

.why-wrap .image img {
    margin: -4em 0 -4em -15px;
    width: 150%;
    position: absolute;
    left: 0;
}

.why-wrap .icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.why-wrap h4 {
    font-size: 3rem;
}

.why-wrap p {
    margin-top: 10px;
    color: #000;
}


/*--Testimonal Section--*/
.testimonal-wrap {
    background: #00a0e3;
    position: relative;
}

.testimonal-wrap .title {
    color: #fff;
}

.testimonal-wrap .item {
    background: rgba(0, 0, 0, .2);
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.testimonal-wrap .image-text {
    width: 100%;
    margin: 0 0 0 0;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.testimonal-wrap p {
    margin-top: 0;
    color: #fff;
}

.testimonal-wrap p a {
    color: #fff;
    font-weight: 500;
    display: inline-block;
    margin-left: 5px;
}

.testimonal-wrap .testimonials-info {
    color: #fff;
    margin-top: 15px;
}

.testimonal-wrap .testimonials-info .author {
    font-weight: 500;
}

.testimonal-wrap .testimonials-info .city {
    font-size: 12px;
}

.testimonal-wrap .item i {
    position: absolute;
    color: #fff;
    font-size: 50px;
    right: 30px;
    bottom: 30px;
}

/*--Clinets Section--*/
.clinets-wrap hr {
    margin-left: 0;
}

.clinets-wrap img {
    border: 2px solid #00a0e3;
    padding: 20px;
    border-radius: 5px;
    margin-right: 10px;
}



/*--Footer Top Section--*/
.footer-top-wrap {
    background: #ef801b;
    padding: 4rem 0;
}

.footer-top-wrap .ft-title {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 6px;
}

.footer-top-wrap .right {
    text-align: right;
}

.footer-top-wrap a {
    color: #000;
    border: 2px solid #000;
    vertical-align: middle;
    margin-left: 25px;
}

.footer-top-wrap a:hover {
    color: #000;
    border: 2px solid #fff;
    background: #fff;
}

/*--Footer Section--*/
.footer {
    background: #00a0e3;
    padding: 5rem 0 0 0;
}

.footer .ft-logo {
    margin-bottom: 20px;
}

.footer h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    margin-top: 15px;
}

.footer p {
    color: #fff;
    font-size: 14px;
    margin-top: 0;
}

.footer .icon,
.footer .icon-text {
    display: inline-block;
    vertical-align: middle;
}

.footer .icon-text {}

.footer .icon {
    margin: 0 5px 0 0;
    font-size: 20px;
    vertical-align: top;
    color: #bfbfbf;
    text-align: center;
    width: 40px;
    height: 40px;
    border: 2px solid #7fbf24;
    border-radius: 50%;
    line-height: 38px
}

.footer h4 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer ul li {
    margin-top: 10px;
}

.footer ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.footer ul li a:hover {
    color: #ef801b;
}

.footer ul li a i {
    font-size: 16px;
    margin: 0 3px 0 0;
}

.footer .social {
    margin: 25px 0 0 0;
}

.footer .social i {
    color: #bfbfbf;
    font-size: 20px;
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 56px;
    border-radius: 50%;
    border: 2px solid #333;
    background: #1b1f25;
}

.footer .social i:hover {
    color: #fff;
    border: 2px solid #7fbf24;
}

.facebook {
    background: #006699;
}

.twitter {
    background: #52a5e9;
}

.google {
    background: #d62221;
}

.linked {
    background: #006699;
}

.youtube {
    background: #ee1c1b;
}

.footer .bdr {
    margin-bottom: 15px;
}

#footer-copyright {
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    margin-top: 10px;
    background: #000;
    padding: 25px 0;
}

#footer-copyright .left {
    width: 48%;
    float: left;
    text-align: left;
}

#footer-copyright .right {
    width: 48%;
    float: right;
    text-align: right;
}

#footer-copyright a {
    color: #fff;
}


/* MENU STYLE
* -------------------------- */
.menu-inner {
    background: #fff;
    border-radius: 5px;
}

nav.bootsnav .dropdown.megamenu-fw {
    position: static;
}

nav.bootsnav .container {
    position: relative;
}

nav.bootsnav .megamenu-fw .dropdown-menu {
    left: auto;
}

nav.bootsnav .megamenu-content {
    padding: 15px;
    width: 100% !important;
}

nav.bootsnav .megamenu-content .title {
    margin-top: 0;
}

nav.bootsnav .dropdown.megamenu-fw .dropdown-menu {
    left: 0;
    right: 0;
}

nav.navbar.bootsnav {
    margin-bottom: 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    background-color: transparent;
    border: none;
    z-index: 0;
    float: none;
    top: 0;
}

.navbar-nav {
    float: none;
    margin: 0;
}

.navbar-nav>li {
    margin: 0 18px;
}

nav.navbar.bootsnav ul.nav>li>a {
    color: #000;
    background-color: transparent;
    outline: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .093rem;
}

nav.navbar.bootsnav ul.nav>li>a:hover {
    color: #ad9270;
}

nav.navbar.bootsnav ul.nav>li.focus {
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
}

nav.navbar.bootsnav ul.nav>li.focus:hover {
    background: #3256a4;
    border-radius: 40px;
}

nav.navbar.bootsnav ul.nav>li.focus:hover a {
    color: #f0e319;
}

nav.navbar.bootsnav ul.nav li.megamenu-fw>a:hover,
nav.navbar.bootsnav ul.nav li.megamenu-fw>a:focus,
nav.navbar.bootsnav ul.nav li.active>a:hover,
nav.navbar.bootsnav ul.nav li.active>a:focus,
nav.navbar.bootsnav ul.nav li.active>a {
    background-color: transparent;
}

nav.navbar.bootsnav .navbar-toggle {
    background-color: none;
    border: none;
    padding: 0;
    font-size: 18px;
    position: relative;
    top: 5px;
    color: #333;
}

nav.navbar.bootsnav .navbar-toggle i {
    margin-top: 2px;
    color: #0c64c7;
}

nav.navbar.bootsnav ul.nav .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
}

nav.navbar.bootsnav ul.nav ul.dropdown-menu>li>a {
    white-space: normal;
}

ul.menu-col {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.menu-col li a {
    color: #6f6f6f;
}

ul.menu-col li a:hover,
ul.menu-col li a:focus {
    text-decoration: none;
}

nav.bootsnav.navbar-full {
    padding-bottom: 10px;
    padding-top: 10px;
}

nav.bootsnav.navbar-full .navbar-header {
    display: block;
    width: 100%;
}

nav.bootsnav.navbar-full .navbar-toggle {
    display: inline-block;
    margin-right: 0;
    position: relative;
    top: 0;
    font-size: 30px;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

nav.bootsnav.navbar-full .navbar-collapse {
    position: fixed;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
    padding: 0;
    display: none !important;
    z-index: 9;
}

nav.bootsnav.navbar-full .navbar-collapse.in {
    display: block !important;
}

nav.bootsnav.navbar-full .navbar-collapse .nav-full {
    overflow: auto;
}

nav.bootsnav.navbar-full .navbar-collapse .wrap-full-menu {
    display: table-cell;
    vertical-align: middle;
    background-color: #fff;
    overflow: auto;
}

nav.bootsnav.navbar-full .navbar-collapse .nav-full::-webkit-scrollbar {
    width: 0;
}

nav.bootsnav.navbar-full .navbar-collapse .nav-full::-moz-scrollbar {
    width: 0;
}

nav.bootsnav.navbar-full .navbar-collapse .nav-full::-ms-scrollbar {
    width: 0;
}

nav.bootsnav.navbar-full .navbar-collapse .nav-full::-o-scrollbar {
    width: 0;
}


nav.bootsnav.navbar-full .navbar-collapse ul.nav {
    display: block;
    width: 100%;
    overflow: auto;
}

nav.bootsnav.navbar-full .navbar-collapse ul.nav a:hover,
nav.bootsnav.navbar-full .navbar-collapse ul.nav a:focus,
nav.bootsnav.navbar-full .navbar-collapse ul.nav a {
    background-color: transparent;
}

nav.bootsnav.navbar-full .navbar-collapse ul.nav>li {
    float: none;
    display: block;
    text-align: center;
}

nav.bootsnav.navbar-full .navbar-collapse ul.nav>li>a {
    display: table;
    margin: auto;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 24px;
    padding: 10px 15px;
}

li.close-full-menu>a {
    padding-top: 0px;
    padding-bottom: 0px;
}

li.close-full-menu {
    padding-top: 30px;
    padding-bottom: 30px;
}

.attr-nav {
    float: right;
    display: inline-block;
    margin-left: 13px;
    margin-right: -15px;
}

.attr-nav>ul {
    padding: 0;
    margin: 0 0 -7px 0;
    list-style: none;
    display: inline-block;
}

.attr-nav>ul>li {
    float: left;
    display: block;
}

.attr-nav>ul>li>a {
    color: #fff;
    display: block;
    padding: 34px 15px;
    position: relative;
    background: #f28f20;
    font-weight: 600;
    text-transform: uppercase;
}

.attr-nav>ul>li>a:hover {
    background: #0c64c7;
}

.attr-nav>ul>li>a span.badge {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 5px;
    font-size: 10px;
    padding: 0;
    width: 15px;
    height: 15px;
    padding-top: 2px;
    background: #f28f20;
}

.attr-nav>ul>li.dropdown ul.dropdown-menu {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -moz-box-shadow: 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 0px;
    -o-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
    border: solid 1px #e0e0e0;
    border-top: 5px solid #f28f20 !important;
}

ul.cart-list {
    padding: 0 !important;
    width: 400px !important;
}

ul.cart-list>li {
    position: relative;
    border-bottom: solid 1px #efefef;
    padding: 10px 15px !important;
    font-size: 14px;
    color: #000;
}

ul.cart-list>li strong {
    font-weight: 500;
}

ul.cart-list>li>a.photo {
    padding: 0 !important;
    margin-right: 15px;
    float: left;
    display: block;
    width: 50px;
    height: 50px;
    left: 15px;
    top: 15px;
}

ul.cart-list>li img {
    width: 50px;
    height: 50px;
    border: solid 1px #efefef;
}

ul.cart-list>li>h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

ul.cart-list>li>h6 a {
    color: #f28f20;
}

ul.cart-list>li>p {
    margin: 5px 0 0 0;
}

ul.cart-list>li>h6>a.photo {
    padding: 0 !important;
    display: block;
}

ul.cart-list>li>p {
    margin-bottom: 0;
}

ul.cart-list>li.total {
    background-color: #f5f5f5;
    padding-bottom: 15px !important;
}

ul.cart-list>li.total>.btn {
    display: inline-block;
    /*border-bottom: solid 1px #efefef;*/
    height: auto;
}

ul.cart-list>li .price {
    font-weight: bold;
}

ul.cart-list>li.total>span {
    padding-top: 8px;
}

.top-search {
    background-color: #333;
    padding: 10px 0;
    display: none;
}

.top-search input.form-control {
    background-color: transparent;
    border: none;
    -moz-box-shadow: 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 0px;
    -o-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
    color: #fff;
    height: 40px;
    padding: 0 15px;
}

.top-search .input-group-addon {
    background-color: transparent;
    border: none;
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}

.top-search .input-group-addon.close-search {
    cursor: pointer;
}

body {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body.on-side {
    margin-left: -280px;
}

.side {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: -280px;
    width: 280px;
    padding: 25px 30px;
    height: 100%;
    display: block;
    background-color: #333;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 9;
}

.side.on {
    right: 0;
}

.side .close-side {
    float: right;
    color: #fff;
    position: relative;
    z-index: 2;
    font-size: 16px;
}

.side .widget {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.side .widget .title {
    color: #fff;
    margin-bottom: 15px;
}

.side .widget ul.link {
    padding: 0;
    margin: 0;
    list-style: none;
}

.side .widget ul.link li a {
    color: #9f9f9f;
    letter-spacing: 1px;
}

.side .widget ul.link li a:focus,
.side .widget ul.link li a:hover {
    color: #fff;
    text-decoration: none;
}

nav.navbar.bootsnav .share {
    padding: 0 30px;
    margin-bottom: 30px;
}

nav.navbar.bootsnav .share ul {
    display: inline-block;
    padding: 0;
    margin: 0 0 -7px 0;
    list-style: none;
}

nav.navbar.bootsnav .share ul>li {
    float: left;
    display: block;
    margin-right: 5px;
}

nav.navbar.bootsnav .share ul>li>a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 35px;
    height: 35px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: #cfcfcf;
    color: #fff;
}

nav.navbar.bootsnav.navbar-fixed {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 999999;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

nav.navbar.bootsnav.no-background {
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.wrap-sticky {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.wrap-sticky nav.navbar.bootsnav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.wrap-sticky nav.navbar.bootsnav.sticked {
    position: fixed;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

body.on-side .wrap-sticky nav.navbar.bootsnav.sticked {
    left: -280px;
}

@media (min-width: 1024px) and (max-width:1400px) {
    body.wrap-nav-sidebar .wrapper .container {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width:1024px) {

    /*nav.navbar.bootsnav ul.nav>li.active,
    nav.navbar.bootsnav ul.nav>li.active a:hover,
    nav.navbar.bootsnav ul.nav>li>a:hover {
        background: #1874c1;
    }*/
    nav.navbar.bootsnav ul.nav .dropdown-menu .dropdown-menu {
        margin-top: -2px;
        border-left: 1px solid rgba(0, 0, 0, .1);
    }

    nav.navbar.bootsnav ul.nav.navbar-right .dropdown-menu .dropdown-menu {
        left: -200px;
    }

    nav.navbar.bootsnav ul.nav>li>a {
        padding: 15px 0;
        font-weight: 500;
    }

    nav.navbar.bootsnav ul.nav>li.active a {
        color: #fff;
    }

    nav.navbar.bootsnav ul.nav>li.dropdown>a.dropdown-toggle:after {
        font-family: 'Line Awesome Free';
        content: "\f107";
        margin-left: 1px;
        margin-top: 2px;
        font-weight: bold;
    }

    nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
        -moz-box-shadow: 0 0 0;
        -webkit-box-shadow: 0 0 0;
        -o-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        padding: 0;
        width: 230px;
        background: #00a0e3;
        border: 0;
        border-top: 0;
    }

    nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li>a {
        padding: 13px 15px;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }

    nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li a:hover {
        color: #fff;
        background: #9e886d;
    }

    nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li:last-child>a {
        border-bottom: none;
    }

    nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
        text-align: left;
    }

    nav.navbar.bootsnav li.dropdown ul.dropdown-menu li.dropdown>a.dropdown-toggle:before {
        font-family: FontAwesome;
        float: right;
        content: "\f105";
        margin-top: 0;
    }

    nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li.dropdown>a.dropdown-toggle:before {
        font-family: FontAwesome;
        float: left;
        content: "\f104";
        margin-top: 0;
    }

    nav.navbar.bootsnav li.dropdown ul.dropdown-menu ul.dropdown-menu {
        top: 2px;
    }

    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content {
        padding: 0 15px !important;
    }

    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content>li {
        padding: 25px 0 20px;
    }

    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content.tabbed,
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content.tabbed>li {
        padding: 0;
    }

    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu {
        padding: 0 30px;
        margin: 0 -.5px;
        border-left: solid 1px #f0f0f0;
        border-right: solid 1px #f0f0f0;
    }

    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu:first-child {
        border-left: none;
    }

    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu:last-child {
        border-right: none;
    }

    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content {
        display: none;
    }

    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a {
        text-align: left;
        padding: 5px 0;
        display: block;
        width: 100%;
        margin-bottom: 0;
        border-bottom: none;
        color: #6f6f6f;
    }

    nav.navbar.bootsnav.on ul.dropdown-menu.megamenu-content .content {
        display: block !important;
        height: auto !important;
    }

    nav.navbar.bootsnav.no-background {
        background-color: transparent;
        border: none;
    }

    nav.navbar.bootsnav.navbar-transparent .attr-nav {
        padding-left: 15px;
        margin-left: 30px;
    }

    nav.navbar.bootsnav.navbar-transparent.white {
        background-color: rgba(255, 255, 255, .3);
        border-bottom: solid 1px #bbb;
    }

    nav.navbar.bootsnav.navbar-transparent.dark,
    nav.navbar.navbar-inverse.bootsnav.navbar-transparent.dark {
        background-color: rgba(0, 0, 0, .3);
        border-bottom: solid 1px #555;
    }

    nav.navbar.bootsnav.navbar-transparent.white .attr-nav {
        border-left: solid 1px #bbb;
    }

    nav.navbar.bootsnav.navbar-transparent.dark .attr-nav,
    nav.navbar.navbar-inverse.bootsnav.navbar-transparent.dark .attr-nav {
        border-left: solid 1px #555;
    }

    nav.navbar.bootsnav.navbar-transparent.white .attr-nav>ul>li>a,
    nav.navbar.bootsnav.navbar-transparent.white ul.nav>li>a,
    nav.navbar.bootsnav.no-background.white .attr-nav>ul>li>a,
    nav.navbar.bootsnav.no-background.white ul.nav>li>a {
        color: #fff;
    }

    nav.navbar.bootsnav.navbar-transparent.dark .attr-nav>ul>li>a,
    nav.navbar.bootsnav.navbar-transparent.dark ul.nav>li>a {
        color: #eee;
    }

    nav.navbar.bootsnav.navbar-fixed.navbar-transparent .logo-scrolled,
    nav.navbar.bootsnav.navbar-fixed.no-background .logo-scrolled {
        display: none;
    }

    nav.navbar.bootsnav.navbar-fixed.navbar-transparent .logo-display,
    nav.navbar.bootsnav.navbar-fixed.no-background .logo-display {
        display: block;
    }

    nav.navbar.bootsnav.navbar-fixed .logo-display {
        display: none;
    }

    nav.navbar.bootsnav.navbar-fixed .logo-scrolled {
        display: block;
    }

    .attr-nav>ul>li.dropdown ul.dropdown-menu {
        margin-top: 0;
        /*margin-left: 55px;*/
        width: 500px;
        right: 0;
        right: 0;
        left: auto;
    }

    nav.navbar.bootsnav.menu-center .container {
        position: relative
    }

    nav.navbar.bootsnav.menu-center ul.nav.navbar-center {
        float: none;
        margin: 0 auto;
        display: table;
        table-layout: fixed;
    }

    nav.navbar.bootsnav.menu-center .attr-nav,
    nav.navbar.bootsnav.menu-center .navbar-header {
        position: absolute;
    }

    nav.navbar.bootsnav.menu-center .attr-nav {
        right: 15px;
    }

    nav.bootsnav.navbar-brand-top .navbar-header {
        display: block;
        width: 100%;
        text-align: center;
    }

    nav.bootsnav.navbar-brand-top ul.nav>li.dropdown>ul.dropdown-menu {
        margin-top: 2px;
    }

    nav.bootsnav.navbar-brand-top ul.nav>li.dropdown.megamenu-fw>ul.dropdown-menu {
        margin-top: 0;
    }

    nav.bootsnav.navbar-brand-top .navbar-header .navbar-brand {
        display: inline-block;
        float: none;
        margin: 0;
    }

    nav.bootsnav.navbar-brand-top .navbar-collapse {
        text-align: center
    }

    nav.bootsnav.navbar-brand-top ul.nav {
        display: inline-block;
        float: none;
        margin: 0 0 -5px;
    }

    nav.bootsnav.brand-center .navbar-header {
        display: block;
        width: 100%;
        position: absolute;
        text-align: center;
        top: 0;
        left: 0;
    }

    nav.bootsnav.brand-center .navbar-brand {
        display: inline-block;
        float: none;
    }

    nav.bootsnav.brand-center .navbar-collapse {
        text-align: center;
        display: inline-block;
        padding-left: 0;
        padding-right: 0;
    }

    nav.bootsnav.brand-center ul.nav>li.dropdown>ul.dropdown-menu {
        margin-top: 2px;
    }

    nav.bootsnav.brand-center ul.nav>li.dropdown.megamenu-fw>ul.dropdown-menu {
        margin-top: 0;
    }

    nav.bootsnav.brand-center .navbar-collapse .col-half {
        width: 50%;
        float: left;
        display: block;
    }

    nav.bootsnav.brand-center .navbar-collapse .col-half.left {
        text-align: right;
        padding-right: 100px
    }

    nav.bootsnav.brand-center .navbar-collapse .col-half.right {
        text-align: left;
        padding-left: 100px;
    }

    nav.bootsnav.brand-center ul.nav {
        float: none !important;
        margin-bottom: -5px !important;
        display: inline-block !important
    }

    nav.bootsnav.brand-center ul.nav.navbar-right {
        margin: 0;
    }

    nav.bootsnav.brand-center.center-side .navbar-collapse .col-half.left {
        text-align: left;
        padding-right: 100px;
    }

    nav.bootsnav.brand-center.center-side .navbar-collapse .col-half.right {
        text-align: right;
        padding-left: 100px;
    }

    body.wrap-nav-sidebar .wrapper {
        padding-left: 260px;
        overflow-x: hidden;
    }

    nav.bootsnav.navbar-sidebar {
        position: fixed;
        width: 260px;
        overflow: hidden;
        left: 0;
        padding: 0 !important;
        background: #fff;
        border-right: solid 1px #dfdfdf;
    }

    nav.bootsnav.navbar-sidebar .scroller {
        width: 280px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    nav.bootsnav.navbar-sidebar .container,
    nav.bootsnav.navbar-sidebar .container-fluid {
        padding: 0 !important;
    }

    nav.bootsnav.navbar-sidebar .navbar-header {
        float: none;
        display: block;
        width: 260px;
        padding: 10px 15px;
        margin: 10px 0 0 !important;
    }

    nav.bootsnav.navbar-sidebar .navbar-collapse {
        padding: 0 !important;
        width: 260px;
    }

    nav.bootsnav.navbar-sidebar ul.nav {
        float: none;
        display: block;
        width: 100%;
        padding: 0 15px !important;
        margin: 0 0 30px;
    }

    nav.bootsnav.navbar-sidebar ul.nav li {
        float: none !important;
    }

    nav.bootsnav.navbar-sidebar ul.nav>li>a {
        padding: 10px 15px;
        font-weight: 700;
    }

    nav.bootsnav.navbar-sidebar ul.nav>li.dropdown>a:after {
        float: right;
    }

    nav.bootsnav.navbar-sidebar ul.nav .megamenu-content .col-menu {
        border: none !important;
    }

    nav.bootsnav.navbar-sidebar ul.nav>li.dropdown>ul.dropdown-menu {
        margin-bottom: 15px;
    }

    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu {
        top: 0;
        position: relative !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        background-color: transparent;
        border: none !important;
        padding: 0;
        -moz-box-shadow: 0 0 0;
        -webkit-box-shadow: 0 0 0;
        -o-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
        float: none;
        margin-bottom: 0;
    }

    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu li a {
        padding: 5px 15px;
        color: #6f6f6f;
        border: none;
    }

    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu ul.dropdown-menu {
        padding-left: 15px;
        margin-top: 0;
    }

    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu li.dropdown>a:before {
        font-family: FontAwesome;
        content: "\f105";
        float: right;
    }

    nav.bootsnav.navbar-sidebar ul.nav li.dropdown.on ul.dropdown-menu li.dropdown.on>a:before {
        content: "\f107";
    }

    nav.bootsnav.navbar-sidebar ul.dropdown-menu.megamenu-content>li {
        padding: 0 !important;
    }

    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu {
        display: block;
        float: none !important;
        padding: 0;
        margin: 0;
        width: 100%;
        border: none;
    }

    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu .title {
        padding: 7px 0;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0;
        margin-bottom: 0;
        cursor: pointer;
        color: #6f6f6f;
    }

    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu .title:before {
        font-family: FontAwesome;
        content: "\f105";
        float: right;
    }

    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu.on .title:before {
        content: "\f107";
    }

    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu .content {
        padding: 0 0 0 15px;
    }

    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu ul.menu-col li a {
        padding: 3px 0 !important;
    }
}

@media (max-width:992px) {
    nav.navbar.bootsnav .navbar-brand {
        display: inline-block;
        float: left !important;
        margin: 0 !important;
    }

    nav.navbar.bootsnav .navbar-header {
        float: none;
        display: block;
        text-align: right;
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
        width: 100%;
        margin-right: 0;
    }

    nav.navbar.bootsnav ul.nav>li.focus:hover {
        background: #3256a4;
        border-radius: 0;
    }

    nav.navbar.bootsnav ul.nav>li.active {
        border-radius: 0;
    }

    nav.navbar.bootsnav ul.nav>li.active a {
        color: #000;
    }

    nav.navbar.bootsnav .navbar-toggle {
        display: block;
        float: right;
        margin-right: 0;
        margin-top: 15px;
        margin-bottom: 0px;
        padding: 6px 10px;
        text-align: left;
        border: 2px solid #0c64c7;
    }

    nav.navbar.bootsnav .navbar-toggle:hover {
        border: 2px solid #0c64c7;
        background: #0c64c7;
    }

    nav.navbar.bootsnav .navbar-toggle:hover i {
        color: #fff;
    }

    nav.navbar.bootsnav .navbar-collapse {
        border: none;
        margin-bottom: 0;
    }

    nav.navbar.bootsnav.no-full .navbar-collapse {
        height: auto;
        overflow-y: visible;
    }

    nav.navbar.bootsnav .navbar-collapse.collapse {
        display: none !important;
        transition: .5s all ease;
        height: 0;
        position: relative;
        max-height: 1px;
    }

    nav.navbar.bootsnav .navbar-collapse.collapse.in {
        display: block !important;
        margin-top: 0;
        height: auto;
    }

    nav.navbar.bootsnav .navbar-nav {
        float: none !important;
        padding-left: 0;
        padding-right: 0;
        margin: 0 0 0 0;
        background: #fff;
        position: absolute;
        width: 100%;
    }

    nav.navbar.bootsnav .navbar-nav>li {
        float: none;
    }

    nav.navbar.bootsnav li.dropdown a.dropdown-toggle:before {
        font-family: FontAwesome;
        content: "\f105";
        float: right;
        font-size: 16px;
        margin-left: 10px;
    }

    nav.navbar.bootsnav li.dropdown.on>a.dropdown-toggle:before {
        content: "\f107";
    }

    nav.navbar.bootsnav .navbar-nav>li>a {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 10px;
        border-top: solid 1px #e0e0e0;
        margin-bottom: -1px;
    }

    nav.navbar.bootsnav .navbar-nav>li:first-child>a {
        border-top: none;
    }

    nav.navbar.bootsnav ul.navbar-nav.navbar-left>li:last-child>ul.dropdown-menu {
        border-bottom: solid 1px #e0e0e0
    }

    nav.navbar.bootsnav ul.nav li.dropdown li a.dropdown-toggle {
        float: none !important;
        position: relative;
        display: block;
        width: 100%;
    }

    nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu {
        width: 100%;
        position: relative !important;
        float: none;
        border: none;
        padding: 0 0 0 15px !important;
        margin: 0 0 -1px !important;
        -moz-box-shadow: 0 0 0;
        -webkit-box-shadow: 0 0 0;
        -o-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        background: #fff;
    }

    nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu>li>a {
        display: block;
        width: 100%;
        border-bottom: solid 1px #e0e0e0;
        padding: 10px 10px 10px 0;
        color: #777;
        font-size: 14px;
    }

    nav.navbar.bootsnav ul.nav ul.dropdown-menu li a:focus,
    nav.navbar.bootsnav ul.nav ul.dropdown-menu li a:hover {
        background-color: transparent;
    }

    nav.navbar.bootsnav ul.nav ul.dropdown-menu ul.dropdown-menu {
        float: none !important;
        left: 0;
        padding: 0 0 0 15px;
        position: relative;
        background: 0 0;
        width: 100%;
    }

    nav.navbar.bootsnav ul.nav ul.dropdown-menu li.dropdown.on>ul.dropdown-menu {
        display: inline-block;
        margin-top: -10px;
    }

    nav.navbar.bootsnav li.dropdown ul.dropdown-menu li.dropdown>a.dropdown-toggle:after {
        display: none;
    }

    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu .title {
        padding: 10px 15px 10px 0;
        line-height: 24px;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0;
        margin-bottom: 0;
        cursor: pointer;
        border-bottom: solid 1px #e0e0e0;
        color: #6f6f6f;
    }

    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu ul>li>a {
        display: block;
        width: 100%;
        border-bottom: solid 1px #e0e0e0;
        padding: 8px 0;
    }

    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu .title:before {
        font-family: FontAwesome;
        content: "\f105";
        float: right;
        font-size: 16px;
        margin-left: 10px;
        position: relative;
        right: -15px;
    }

    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu:last-child .title {
        border-bottom: none;
    }

    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu.on:last-child .title {
        border-bottom: solid 1px #e0e0e0;
    }

    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu:last-child ul.menu-col li:last-child a {
        border-bottom: none;
    }

    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu.on .title:before {
        content: "\f107";
    }

    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu .content {
        padding: 0 0 0 15px;
    }

    nav.bootsnav.brand-center .navbar-collapse {
        display: block;
    }

    nav.bootsnav.brand-center ul.nav {
        margin-bottom: 0 !important;
    }

    nav.bootsnav.brand-center .navbar-collapse .col-half {
        width: 100%;
        float: none;
        display: block;
    }

    nav.bootsnav.brand-center .navbar-collapse .col-half.left {
        margin-bottom: 0;
    }

    nav.bootsnav .megamenu-content {
        padding: 0;
    }

    nav.bootsnav .megamenu-content .col-menu {
        padding-bottom: 0;
    }

    nav.bootsnav .megamenu-content .title {
        cursor: pointer;
        display: block;
        padding: 10px 15px;
        margin-bottom: 0;
        font-weight: 400;
    }

    .attr-nav>ul>li.dropdown>a.dropdown-toggle:before,
    nav.bootsnav .megamenu-content .content {
        display: none;
    }

    .attr-nav {
        position: absolute;
        right: 60px;
    }

    .attr-nav>ul {
        padding: 0;
        margin: 0 -15px -7px 0;
    }

    .attr-nav>ul>li>a {
        padding: 16px 15px 15px;
    }

    .attr-nav>ul>li.dropdown ul.dropdown-menu {
        margin-top: 2px;
        margin-left: 55px;
        width: 250px;
        left: -250px;
        border-top: solid 5px;
    }

    .top-search .container {
        padding: 0 45px;
    }

    nav.bootsnav.navbar-full ul.nav {
        margin-left: 0;
    }

    nav.bootsnav.navbar-full ul.nav>li>a {
        border: none;
    }

    nav.bootsnav.navbar-full .navbar-brand {
        float: left !important;
        padding-left: 0;
    }

    nav.bootsnav.navbar-full .navbar-toggle {
        display: inline-block;
        float: right;
        margin-right: 0;
        margin-top: 10px;
    }

    nav.bootsnav.navbar-full .navbar-header {
        padding-left: 15px;
        padding-right: 15px
    }

    nav.navbar.bootsnav.navbar-sidebar .share {
        padding: 30px 15px;
        margin-bottom: 0;
    }

    nav.navbar.bootsnav .tabbed>li {
        padding: 25px 0;
        margin-left: -15px !important;
    }

    body>.wrapper {
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    body.side-right>.wrapper {
        margin-left: 280px;
        margin-right: -280px !important;
    }

    nav.navbar.bootsnav.navbar-mobile .navbar-collapse {
        position: fixed;
        overflow-y: visible;
        overflow-x: hidden !important;
        display: block;
        background: #fff;
        z-index: 99;
        width: 280px;
        height: 100% !important;
        left: -280px;
        top: 0;
        padding: 0;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    nav.navbar.bootsnav.navbar-mobile .navbar-collapse.in {
        left: 0;
    }

    nav.navbar.bootsnav.navbar-mobile ul.nav {
        width: 293px;
        padding-right: 0;
        padding-left: 15px;
    }

    nav.navbar.bootsnav.navbar-mobile ul.nav>li>a {
        padding: 15px;
    }

    nav.navbar.bootsnav.navbar-mobile ul.nav ul.dropdown-menu>li>a {
        padding-right: 15px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    nav.navbar.bootsnav.navbar-mobile ul.nav ul.dropdown-menu .col-menu .title {
        padding-right: 30px !important;
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    nav.navbar.bootsnav.navbar-mobile ul.nav ul.dropdown-menu .col-menu ul.menu-col li a {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    nav.navbar.bootsnav.navbar-mobile .navbar-collapse [class*=' col-'] {
        width: 100%;
    }

    nav.navbar.bootsnav.navbar-fixed .logo-scrolled {
        display: block !important;
    }

    nav.navbar.bootsnav.navbar-fixed .logo-display {
        display: none !important;
    }

    nav.navbar.bootsnav.navbar-mobile .tab-content,
    nav.navbar.bootsnav.navbar-mobile .tab-menu {
        width: 100%;
        display: block;
    }
}

@media (max-width:767px) {

    nav.navbar.bootsnav .navbar-header,
    nav.navbar.bootsnav .navbar-nav {
        padding-left: 15px;
        padding-right: 15px;
    }

    .attr-nav {
        right: 30px;
    }

    .attr-nav>ul {
        margin-right: -10px;
    }

    .attr-nav>ul>li>a {
        padding: 13px 15px;
    }

    .attr-nav>ul>li.dropdown ul.dropdown-menu {
        left: -275px;
    }

    .top-search .container {
        padding: 0 15px;
    }

    nav.bootsnav.navbar-full .navbar-collapse {
        left: 15px;
    }

    nav.bootsnav.navbar-full .navbar-header {
        padding-right: 0;
    }

    nav.bootsnav.navbar-full .navbar-toggle {
        margin-right: -15px;
    }

    nav.bootsnav.navbar-full ul.nav>li>a {
        font-size: 18px !important;
        line-height: 24px !important;
        padding: 5px 10px !important;
    }

    nav.navbar.bootsnav.navbar-sidebar .share {
        padding: 30px 0 !important;
        margin-bottom: 0;
    }

    nav.navbar.bootsnav.navbar-mobile.navbar-sidebar .share {
        padding: 30px 15px !important;
        margin-bottom: 0;
    }

    body.side-right>.wrapper {
        margin-left: 280px;
        margin-right: -280px !important;
    }

    nav.navbar.bootsnav.navbar-mobile .navbar-collapse {
        margin-left: 0;
    }

    nav.navbar.bootsnav.navbar-mobile ul.nav {
        margin-left: -15px;
        border-top: solid 1px #fff;
    }

    li.close-full-menu {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

@media (min-width:480px) and (max-width:640px) {
    nav.navbar.bootsnav .navbar-header {
        margin-right: 0;
    }

    nav.bootsnav.navbar-full ul.nav {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /*nav.navbar.bootsnav .navbar-toggle {
        display: block;
        float: none;
        margin-right: 0;
        margin-top: 0;
    }*/
    nav.navbar.bootsnav .navbar-header,
    nav.navbar.bootsnav .navbar-nav {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width:360px) and (max-width:480px) {
    /*nav.navbar.bootsnav .navbar-toggle {
        display: block;
        float: none;
        margin-right: 0;
        margin-top: 0;
    }
    nav.navbar.bootsnav .navbar-header {
        padding-left: 0;
        padding-right: 0;
        margin-right: 0;
    }*/
}

@media(max-width:1024px) {
    nav.navbar.bootsnav {
        width: 100%;
    }

    nav.navbar.bootsnav ul.nav>li>a {
        font-size: 13px;
        padding: 15px 10px;
    }
}

@media(max-width:768px) {
    nav.navbar.bootsnav {
        width: 100%;
    }

    nav.navbar.bootsnav ul.nav>li {
        margin-right: 0;
        height: auto;
    }

    nav.navbar.bootsnav .navbar-nav>li:first-child>a {
        border-top: solid 1px #e0e0e0;
    }

    nav.navbar.bootsnav ul.nav>li>a {
        color: #000;
    }
}

@media(max-width:360px) {
    nav.navbar.bootsnav .navbar-nav {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
    }
}

@media(max-width:320px) {
    nav.navbar.bootsnav .navbar-header {
        padding-left: 0;
        padding-right: 0;
        margin-right: 0;
    }

    .pro-sec .image .capation h3 {
        font-size: 26px;
        margin: 15% 0 0;
    }
}


/* FONT AWESOME CSS
* -------------------------- */
.fa.fa-pull-left,
.fa.pull-left {
    margin-right: .3em
}

.fa,
.fa-stack {
    display: inline-block
}

.fa-fw,
.fa-li {
    text-align: center
}

@font-face {
    font-family: FontAwesome;
    src: url(../fonts/fontawesome-webfont3e6e.eot?v=4.7.0);
    src: url(../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(../fonts/fontawesome-webfont3e6e.html?v=4.7.0) format('woff2'), url(../fonts/fontawesome-webfont3e6e.woff?v=4.7.0) format('woff'), url(../fonts/fontawesome-webfont3e6e.ttf?v=4.7.0) format('truetype'), url(../fonts/fontawesome-webfont3e6e.svg?v=4.7.0#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal
}

.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa.fa-pull-right,
.fa.pull-right {
    margin-left: .3em
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right,
.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
    filter: none
}

.fa-stack {
    position: relative;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-cog:before,
.fa-gear:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-repeat:before,
.fa-rotate-right:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-exclamation-triangle:before,
.fa-warning:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-cogs:before,
.fa-gears:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-floppy-o:before,
.fa-save:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-sort:before,
.fa-unsorted:before {
    content: "\f0dc"
}

.fa-sort-desc:before,
.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-asc:before,
.fa-sort-up:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-gavel:before,
.fa-legal:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-bolt:before,
.fa-flash:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-clipboard:before,
.fa-paste:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-chain-broken:before,
.fa-unlink:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-caret-square-o-down:before,
.fa-toggle-down:before {
    content: "\f150"
}

.fa-caret-square-o-up:before,
.fa-toggle-up:before {
    content: "\f151"
}

.fa-caret-square-o-right:before,
.fa-toggle-right:before {
    content: "\f152"
}

.fa-eur:before,
.fa-euro:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-inr:before,
.fa-rupee:before {
    content: "\f156"
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
    content: "\f157"
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
    content: "\f158"
}

.fa-krw:before,
.fa-won:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-caret-square-o-left:before,
.fa-toggle-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-try:before,
.fa-turkish-lira:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-bank:before,
.fa-institution:before,
.fa-university:before {
    content: "\f19c"
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
    content: "\f1c5"
}

.fa-file-archive-o:before,
.fa-file-zip-o:before {
    content: "\f1c6"
}

.fa-file-audio-o:before,
.fa-file-sound-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-rebel:before,
.fa-resistance:before {
    content: "\f1d0"
}

.fa-empire:before,
.fa-ge:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before,
.fa-y-combinator-square:before,
.fa-yc-square:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-paper-plane:before,
.fa-send:before {
    content: "\f1d8"
}

.fa-paper-plane-o:before,
.fa-send-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-futbol-o:before,
.fa-soccer-ball-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-bed:before,
.fa-hotel:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-y-combinator:before,
.fa-yc:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery-full:before,
.fa-battery:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-television:before,
.fa-tv:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before {
    content: "\f2a3"
}

.fa-deaf:before,
.fa-deafness:before,
.fa-hard-of-hearing:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-sign-language:before,
.fa-signing:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-address-card:before,
.fa-vcard:before {
    content: "\f2bb"
}

.fa-address-card-o:before,
.fa-vcard-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before,
.fa-thermometer-full:before,
.fa-thermometer:before {
    content: "\f2c7"
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bath:before,
.fa-bathtub:before,
.fa-s15:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}


/* Owl Carousel v2.2.0
* -------------------------- */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 0px;
    padding: 0px 0px;
    background: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
    height: 17px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    /* position: absolute;
left: 50%;
transform: translate(-50%, 0);*/
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px 0 7px;
    background: transparent;
    border: 1px solid #FFF;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #FFF;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.html") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: -webkit-transform 100ms ease;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-carousel .owl-nav .owl-next {
    right: -29px;
    top: 43%;
    position: absolute;
}

.owl-carousel .owl-nav .owl-prev {
    left: -29px;
    top: 43%;
    position: absolute;
}


/*about us page css start*/
.page-header {
    background-position: center fixed;
    ;
    margin: 0px;
    padding: 181px 0 55px;
}

.breadcrumb-menu h2 {
    font-size: 65px;
    color: #fff;
    margin-bottom: 10px;
}

.breadcrumb-menu .inner-subtitle {
    font-size: 16px;
    color: #fff;
}

.breadcrumb-menu small {
    color: #fff;
    font-size: 16px;
}

.breadcrumb-menu small a {
    color: #fff;
}

.aboutus-sec hr {
    margin-left: 0px;
}

.aboutus-sec img.second-img {
    display: none;
}

.mision-sec {
    background: #f5f4f2;
    text-align: center;
    padding-bottom: 60px;
    padding-top: 60px;
}

.mision-sec .right {
    margin-top: 25px;
}

.mision-sec .right .mision-box {
    background: #fff;
    padding: 20px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: top;
    text-align: left;
    border-radius: 5px;
}

.mision-sec .right .mision-box.one,
.mision-sec .right .mision-box.three {
    margin-left: 0px;
}

.mision-sec .right .mision-box.two {
    margin-left: 0px;
}

.mision-sec .right .mision-box:last-child {
    margin-bottom: 0;
}

.mision-sec .right .mision-box .icon {
    font-size: 60px;
    background: #ef801b;
    width: 100px;
    height: 100px;
    text-align: center;
    position: relative;
    border-radius: 5px;
}

.mision-sec .right .mision-box .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mision-sec .right .mision-box .icon i.las {
    font-size: 70px;
}

.mision-sec .right .mision-box .icon-text {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.mision-sec .right .mision-box .icon-text h3 {
    font-size: 30px;
    color: #5c524b;
    margin-bottom: 10px;
}

.mision-sec .right .mision-box .icon-text p {
    margin-top: 5px;
}

/*end about us page css*/

/*contact page css*/
.contact-box {
    background: #00a0e3;
    padding: 19px;
    border-radius: 5px;
}

.contact-box .icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 40px;
    position: relative;
    color: #ab9478;
}

.contact-box .icon i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact-box p {
    color: #fff;
}

.contact-social a i {
    padding-left: 15px;
    color: #7fbf24;
}

.contact-social {
    margin-top: 15px;
}

.text-area {
    min-height: 100px;
}

.contact-form {
    margin-bottom: 4em;
}

/*end contact page*/
/*services page css start*/

.servicesbox1 img {
    margin-bottom: 15px;
}

.service-list {
    background: #eee;
    padding: 15px;
}

.service-list ul li {
    list-style: none;
    background: #fff;
    padding: 10px;
    margin-bottom: 15px;
}

.servicesbox1 hr {
    margin-left: 0px;
}

.service-list ul li:hover {
    background: #7fbf24;
}

.service-list ul li:hover a {
    color: #fff;
}

.form-list {
    margin-top: 20px;
}

.form-list ul li {
    background: inherit;
    margin-bottom: 0px;
    padding-left: 0px;
}

.form-list ul li:hover {
    background: none;
}

.form-list .input-text {
    background: #fff;
}

.services-facility {
    margin-top: 2em;
}

.services-facility p {
    margin-top: 4px;
}

.services-facility .icon-img {
    float: left;
    margin-right: 10px;
    height: 135px;
}

.testimonial-sec.section {
    padding-bottom: 0;
}

.testimonial-text {
    background: #89765f;
    padding: 30px;
    border-radius: 5px;
    position: relative;
    text-align: center;
}

.testimonial-text p {
    color: #fff;
    margin-top: 0px;
}

.testimonial-text .testimonials-info {
    color: #fff;
    margin-top: 15px;
}

.testimonial-text .testimonials-info .author {
    font-weight: 500;
}

.testimonial-text .testimonials-info .city {
    font-size: 12px;
}

.testimonial-text i {
    position: absolute;
    color: #fff;
    font-size: 50px;
    right: 30px;
    bottom: 30px;
}



.testimonial-text h5 {
    font-size: 25px;
    color: #7fbf24;
    font-style: italic;

}

.testimonial-text h6 {
    margin-bottom: 17px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    font-style: italic;
}

.testimonial-box {
    margin-top: 30px;
}

.client1-box img {
    border: 2px solid #eee;
    padding: 15px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.client2-box img {
    margin-bottom: 0px;
}

.our-network .address-box {
    background: #f5f4f2;
    padding: 30px;
    border-radius: 5px;
}

.our-network .address-box h3 {
    font-size: 24px;
}

.our-network .address-box h3 a {
    color: #5c524b;
}

.our-network .address-box p {
    margin-top: 10px;
}

.features-wrap {
    background: #f5f4f2;
}

.features-wrap .icon-img {
    font-size: 50px;
    color: #00a0e3;
    margin-bottom: 10px;
}

.features-wrap .iconimg-text h3 {
    font-size: 22px;
    color: #00a0e3;
}

.form-box {
    background: #00a0e3;
    position: relative;
    padding: 26px;
    border-radius: 10px;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="tel"],
.form-box select {
    background: rgba(0, 0, 0, .2);
    border: 0;
    border-radius: 5px;
    color: #fff;
}

.form-box textarea {
    background: rgba(0, 0, 0, .2);
    border: 0;
    border-radius: 5px;
    color: #fff;
}

.form-box input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.form-box input::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.form-box input:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.form-box input:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.form-box textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.form-box textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.form-box textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.form-box textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.form-box .btn-primary:hover {
    background-color: #00a0e3;
    border-color: #00a0e3;
}

/*-----------------------network.php----------------------------*/
.network-icons {
    margin: 0 5px 0 0;
    font-size: 20px;
    vertical-align: top;
    color: #bfbfbf;
    text-align: center;
    width: 40px;
    height: 40px;
    border: 2px solid #7fbf24;
    border-radius: 50%;
    line-height: 38px;
    margin-top: -5px;
}

span.address-2 {
    display: inline-block;
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
    width: calc(100% - 90px);
}

.network-address-1 {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 2px;
    margin-top: 10px;
    min-height: 259px;
}

.float_call {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999999;
    width: 50px;
}

.float_whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    width: 50px;
}

.our-network .network-heading {
    margin-bottom: 10px;
}

.our-network address {
    min-height: 70px;
}

.footer .ft-about {
    padding-right: 15%;
}

.navbar-toggle {
    top: 0;
    background: #00a0e3;
    color: #fff;
    border: 1px solid #00a0e3;
    height: 40px;
    margin: 25px 0px 25px 30px;
}

.navbar-toggle i {
    position: relative;
    top: -5px;
}

.mision-sec .right .mision-box {
    background: #fff;
    padding: 20px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: top;
    text-align: left;
    border-radius: 5px;

}




/*-- RESPONSIVE CSS --------------------*/

@media(max-width:1024px) {

    .owl-carousel .owl-nav .owl-next {
        right: 0px;
    }

    .owl-carousel .owl-nav .owl-prev {
        left: 0px;
    }

    .mision-sec .right .mision-box {
        background: #fff;
        margin-bottom: 20px;
        display: flex;
        align-items: top;
        text-align: left;
        border-radius: 5px;

    }
    .container {
        width: 100%;
    }

    .page-header {
        padding: 182px 0px 48px;
    }

    .header .header-info {
        float: right;
        margin: 23px 0;
    }

    .contact-box p {
        color: #fff;
        text-align: center;
    }

    .header .header-info strong {
        font-size: 18px;
    }

    .navbar-nav>li {
        margin: 0 0.28rem;
    }

    .carousel-inner>.item>img,
    .carousel-inner>.item>a>img {
        object-fit: cover;
        min-height: 570px;
    }

    .carousel-caption {
        bottom: 22%;
        padding-top: 0;
    }

    .btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    .main-container .headline {
        font-size: 60px;
        line-height: 60px;
    }

    .main-container p {
        font-size: 16px;
        margin-top: 15px;
        line-height: 26px;
        text-align: center;
    }

    .carousel-caption a {
        margin: 20px 0px 0 0;
    }

    .carousel-indicators {
        bottom: 0px;
    }

    .about-wrap .about-content {
        padding: 0 0 0 0;
    }

    hr {
        margin-bottom: 0px;
        margin-top: 10px;
    }

    .title {
        font-size: 38px;
    }



    .about-wrap .image .small-image {
        right: -15px;
        bottom: -6rem;
        width: 250px;
    }

    .title2 {
        font-size: 25px;
        line-height: 25px;
    }

    .services-wrap .overlay {
        padding: 2em 2em;
    }

    .services-wrap .services-item {
        height: 250px;
    }
    .services-wrap .services-item .services-item-front .services-item-front-inner, 
    .services-wrap .services-item .services-item-back .services-item-back-inner { 
        padding: 1.5em;
    }
    .services-wrap .services-item .service-title {
        font-size: 1.2em;
        font-weight: 600;
        font-style: normal;
        line-height: 1.20;
        letter-spacing: -.9px;
    }

    .why-wrap .icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .why-wrap h4 {
        font-size: 2.5rem;
    }

    .footer-top-wrap .ft-title {
        font-size: 33px;
    }

    .aboutus-sec .about-sec01 img {
        height: 452px;
    }

    .servicesbox1.service-list ul {
        margin-top: 10px;
    }

    .clinets-wrap hr {
        margin-bottom: 10px;
    }

    .enqiry-sec hr {
        margin-bottom: 15px;
    }

    .contact-sec hr {
        margin-bottom: 15px;
    }

    .contact01 hr {
        margin-bottom: 15px;
    }

}

@media(max-width:992px) {

    .navbar-toggle {
        display: block;
    }

    .carousel-caption a {
        margin: 20px 0px 0 0;
    }
    .testimonial-text p {
        font-size: 16px;
        
    }

    .carousel-caption {
        bottom: 30%;
        padding-top: 0;
        right: 10%;
        left: 10%;
    }


    .page-header {
        background-position: center;
        margin: 0px;
        padding: 112px 0 60px;
    }

    nav.navbar.bootsnav ul.nav>li>a {
        font-size: 13px;
        padding: 15px 10px;
        font-weight: 600;
    }

    .carousel-inner>.item>img,
    .carousel-inner>.item>a>img {
        object-fit: cover;
        min-height: 550px;
    }

    .carousel-control {
        top: 90px;
    }



    .why-wrap .why-box {
        padding: 25px;
    }

    body {
        margin: 0;
        font-weight: 300;
        overflow-x: hidden;
        font-family: 'Poppins', sans-serif;
        color: #000;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

}

@media(max-width:768px) {

    .header .navbar-brand {
        width: 200px;
    }
    .testimonial-box .col-sm-12 {
        padding-top: 22px;
    }

    .contact-box p {
        color: #fff;
        font-size: 14px;
    }
    .contact-box p br {
        display: none;
    }
    .col-md-4  animated fadeInDownShort, .address {
        margin-top: 22px;
    }
    .col-md-4  animated fadeInDownShort, .email {
        margin-top: 22px;
    }
    .footer p {
        color: #fff;
        font-size: 14px;
        margin-top: 0;
    }

    .footer h3 {
        font-size: 23px;
    }

    .section {
        padding: 3em 0;
    }

    .carousel-caption {
        bottom: 26%;
        padding-top: 0;
        right: 10%;
        left: 10%;
    }
    .services-wrap .services-item .service-title {
        font-size: 1.5em;
        font-weight: 600;
        font-style: normal;
        line-height: 1.20;
        letter-spacing: -.9px;
    }

    footer h3 {
        font-size: 23px;
    }

    .mision-sec .right .mision-box .icon {
        font-size: 60px;
        background: #ef801b;
        width: 95px;
        height: 95px;
        text-align: center;
        position: relative;
        border-radius: 5px;
    }


    body {
        margin: 0;
        font-weight: 300;
        overflow-x: hidden;
        font-family: 'Poppins', sans-serif;
        color: #000;
        font-size: 14px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .main-container .headline {
        font-size: 50px;
        line-height: 42px;
    }

    .main-container p {
        font-size: 16px;
    }

    .carousel-fade .carousel-inner .item img {
        height: 400px;
    }

    .about-content {
        margin-bottom: 30px;
    }

    .about-wrap .image img {
        height: auto;
    }

    .why-wrap .image img {
        position: relative;
    }

    h3.why-text {
        margin-top: 80px;
    }

    .footer-top-wrap.section {
        padding: 10em 0 1em 0;
    }

    .footer-top-wrap .right {
        text-align: center;
        margin-top: 15px;
    }

    .footer-top-wrap .ft-title {
        margin: 0;
        text-align: center;
    }

    .footer-services {
        margin-bottom: 50px;
    }
    .footer ul li {
        margin-top: 11px;
    }
    #footer-copyright .left {
        width: 56%;
        float: left;
        text-align: left;
    }

    #footer-copyright .right {
        width: 44%;
        float: right;
        text-align: right;
    }

    .page-header {
        padding: 110px 0px 60px;
    }

    .aboutus-sec.about-sec01 img {
        height: 580px;
        width: 100%;
    }

    .aboutus-sec.about-sec01 h3 {
        margin-top: 20px;
    }

    .mision-sec h3 {
        font-size: 19px;
    }

    .aboutus-sec.why-sec01 img {
        margin-top: 20px;
    }

    .service-list {
        margin-top: 2em;
    }

    .contact01 {
        margin-bottom: 2em;
    }

    .header .header-info .mail {
        margin-left: 10px;
    }

    .carousel-control {
        top: 70px;
    }

    .about-wrap .image {
        position: relative;
        padding: 2.7rem 5rem 0 5rem;
    }

    .about-wrap .image .small-image {
        right: 0;
        bottom: -4rem;
        width: 250px;
    }

    .breadcrumb-menu h2 {
        font-size: 50px;
        color: #fff;
        margin-top: 0;
        margin-bottom: 0;
    }

    .title {
        font-size: 37px;
    }

    .btn {
        font-size: 15px;
        padding: 8px 18px;
    }

}


@media(max-width:736px) {

    .navbar-toggle {
        margin: 25px 0px 25px 20px;
    }

    .footer h3 {
        font-size: 22px;
    }

    #footer-copyright .left {
        width: 100%;
        float: none;
        text-align: center;
    }

    .contact-box {
        background: #00a0e3;
        padding: 8px;
        border-radius: 5px;
    }

    .page-header {
        padding: 110px 0px 60px;
    }

    #footer-copyright .right {
        width: 100%;
        float: none;
        text-align: center;
        margin-top: 5px;
    }

    .main-container .headline {

        line-height: 40px;
    }

    .title {
        font-size: 35px;
    }


}

@media(max-width:667px) {

    .header .header-info .collapse {
        display: none;
    }
    
    .footer p {
        color: #fff;
        font-size: 13px;
        margin-top: 0;
    }
    .container .col-xs-4 {
        width: 100%;
        padding: 15px;
    }
    .testimonial-text p {
        font-size: 15px;
    }
    .breadcrumb-menu .inner-subtitle {
        font-size: 15px;
    }

    .main-container p {
        font-size: 14px;
    }

    .footer h3 {
        font-size: 21px;
    }

    #footer-copyright {
        font-size: 13px;
        color: #fff;
        line-height: 20px;
        margin-top: 50px;
        background: #1d1a10;
        padding: 25px 0;
    }

    .header .header-info .call,
    .header .header-info .mail,
    .header .header-info .add {
        margin-left: 20px;
        font-size: 14px;
    }

    .bullet-style-1 li {
        position: relative;
        padding-left: 30px;
        color: #5c524b;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        margin-top: 15px;
    }

    ul,
    label {
        margin: 6px;
        padding: 0;
    }

    .carousel-caption {
        bottom: 28%;
        padding-top: 0;
        right: 10%;
        left: 10%;
    }

    .contact-box p {
        color: #fff;
        font-size: 15px;
    }
    .contact-box {
        padding: 27px;
    }

    .mision-sec .right .mision-box .icon-text h3 {
        font-size: 29px;
        color: #5c524b;
    }



    .mision-sec .right .mision-box .icon {
        font-size: 60px;
        background: #ef801b;
        width: 90px;
        height: 90px;
        text-align: center;
        position: relative;
        border-radius: 5px;
    }

    .breadcrumb-menu h2 {
        font-size: 50px;
        color: #fff;
        margin-top: 0;
        margin-bottom: 0;
    }

    .page-header {
        padding: 100px 0px 70px;
    }

    .header .header-info strong {
        font-size: 14px;
    }

    .main-container .headline {
        font-size: 40px;
        line-height: 38px;
    }

    .main-container p {
        margin-top: 15px;
    }

    .btn {
        padding: 8px 18px;
    }

    .footer-top-wrap.section {
        padding: 9em 0 0em 0;
    }

    .footer-top-wrap .ft-title {
        font-size: 28px;
        margin-top: 8px;
    }

    .section {
        padding: 3em 0;
    }

    .enqiry-sec hr {
        margin-bottom: 15px;
    }

    .footer ul li {
        margin-top: 12px;
    }

    .title {
        font-size: 31px;
    }
    .footer ul li a {
        color: #fff;
        font-size: 13px;
        font-weight: 400;
    }

}

@media(max-width:640px) {

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        height: 40px;
        width: 40px;
        padding: 10px;
    }

    .main-container p {
        font-size: 16px;
        margin-top: 15px;
        line-height: 24px;
        text-align: center;
    }

    .contact-box p {
        color: #fff;
        font-size: 15px;
    }

    .title {
        font-size: 31px;
    }

    .breadcrumb-menu h2 {
        font-size: 46px;
        color: #fff;
        margin-top: 0;
        margin-bottom: 0;
    }

    p {
        font-size: 14px;
    }

    .carousel-inner>.item>img,
    .carousel-inner>.item>a>img {
        object-fit: cover;
        min-height: 500px;
    }

    .main-container p {
        font-size: 14px;
    }

    .carousel-caption {
        bottom: 28%;
        padding-top: 0;
    }

    .carousel-control {
        top: 20px;
    }

    .services-wrap .services-item .services-item-front .services-item-front-inner {
        transform: none;
        top: auto;
        bottom: 0;
        padding: 1.5em 1.5em;
    }

    .services-wrap .services-item .services-item-front .services-item-front-inner,
    .services-wrap .services-item .services-item-back .services-item-back-inner {
        padding: 1.5em 1.5em;
    }

    .page-header {
        padding: 100px 0px 60px;
    }

    .navbar-toggle {
        margin: 20px 0px 20px 29px;
    }
    .footer p {
        line-height: 23px;
    }

}


@media(max-width:568px) {

    .about-wrap .image {
        position: relative;
        padding: 2.7rem 4rem 0 5rem;
    }

    .testimonial-box .col-sm-12 {
        padding-left: 25px;
    }

    .header .header-info .add {
        display: none;
    }

    .contact-box p {
        color: #fff;
        font-size: 15px;
    }
    .services-wrap .services-item .services-item-back .services-item-back-inner p {
        margin-bottom: 5px;
        line-height: 22px;
        margin-top: 5px;
    }

    #footer-copyright {
        font-size: 13px;
        color: #fff;
        line-height: 20px;
        margin-top: 50px;
        background: #1d1a10;
        padding: 25px 0;
    }

    .sub-title {
        font-size: 15px;
        color: #ef801b;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .title {
        font-size: 28px;
    }
    .mision-sec .right .mision-box {
        background: #fff;
        padding: 20px 20px;
        margin-bottom: 20px;
        display: block;
        align-items: top;
        text-align: left;
        border-radius: 5px;

    }
    .bullet-style-1 li {
        position: relative;
        padding-left: 30px;
        color: #5c524b;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        margin-top: 15px;
        text-align: left;
    }

    .mision-sec .right .mision-box .icon-text {
        width: 100%;
        padding-left: 0px;
        text-align: left;
    }

    .mision-sec .right .mision-box .icon-text p {
        margin-top: 5px;
        text-align: center;
    }

    .text-left {
        text-align: left;
    }

    .carousel-caption {
        right: 10%;
        left: 10%;
        padding-bottom: 0px;
        text-align: center;
        text-shadow: none;
        bottom: 28%;
    }

    .mision-sec .right .mision-box .icon-text h3 {
        font-size: 27px;
        color: #5c524b;
        text-align: center;
        padding-top: 10px;
    }

    ul,
    label {
        margin: 7px;
        padding: 0;
    }

    .mision-sec .right .mision-box .icon {
        font-size: 60px;
        background: #ef801b;
        width: 87px;
        height: 86px;
        text-align: center;
        position: relative;
        border-radius: 5px;
        margin-left: auto;
        margin-right: auto;
    }

    body {
        margin: 0;
        font-weight: 300;
        overflow-x: hidden;
        font-family: 'Poppins', sans-serif;
        color: #000;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .contact-box {
        background: #00a0e3;
        padding: 13px;
        border-radius: 5px;
        padding-left: 6px;
    }

    .header .header-info .call,
    .header .header-info .mail,
    .header .header-info .add {
        margin-left: 30px;
    }

    .overlay p {
        font-size: 14px;
    }

    .testimonal-wrap .image {
        width: 110px;
        margin: 0 14px 0 0;
    }

    .testimonal-wrap .image-text {
        width: 100%;
    }

    .section {
        padding: 3em 0;
    }

    .testimonal-wrap .image-text {
        margin-top: 0px;
    }

    .footer-top-wrap.section {
        padding: 8em 0 0 0;
    }

    .footer-top-wrap .ft-title {
        font-size: 3rem;
        margin-top: 0;
        margin-bottom: 0px;
    }

    .footer .num {
        font-size: 22px;
    }

    .footer .social i {
        width: 50px;
        height: 50px;
        line-height: 46px;
    }

    .aboutus-sec .about-sec01 img {
        height: auto;
    }

    .iconimg-text h3 {
        font-size: 18px;
    }

    .servicesbox1.service-list h1 {
        font-size: 22px;
    }

    .carousel-inner>.item>img,
    .carousel-inner>.item>a>img {
        object-fit: cover;
        min-height: 450px;
    }

    .navbar-toggle {
        margin: 20px 5px 20px 20px;
    }

    .services-wrap .services-item .service-title {
        font-size: 1.1em;
        font-weight: 600;
        font-style: normal;
        line-height: 1.20;
        letter-spacing: -.9px;
    }

    .footer .ft-about {
        padding-right: 5%;
    }
    .breadcrumb-menu h2 {
        font-size: 40px;
        color: #fff;
        margin-top: 0;
        margin-bottom: 0;
    }

}


@media(max-width:480px) {

    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
        margin-left: -5px;
    }
    .contact-form .col-xs-6 {
        width: 100%;
    }
    .container .col-xs-4 {
        width: 50%;
        padding-top: 21px;
    }

    .carousel-caption {
        bottom: 22%;
    }
    .testimonial-text p {
        font-size: 14px;
    }
    .container .top-marg-3 {
    width: 100%;
    }
    .services-wrap .col-xs-6 {
        width: 100%;
    }
    .services-wrap .services-item .services-item-back .services-item-back-inner p {
        margin-bottom: 10px;
        line-height: 26px;
        margin-top: 10px;
    }
    .footer-top-wrap .ft-title {
        font-size: 2.5rem;
    }
    .footer h3 {
        font-size: 24px;
    }
    .footer p {
        color: #fff;
        font-size: 12px;
        margin-top: 0;
        line-height: 23px;
    }
    .page-header {
        padding: 100px 0px 60px;
    }
    .breadcrumb-menu h2 {
        font-size: 36px;
        color: #fff;
        margin-top: 0;
        margin-bottom: 0;
    }
    .breadcrumb-menu .inner-subtitle {
        font-size: 14px;
        color: #fff;
    }
    .features-wrap .col-xs-6 {
        width: 100%;
    }
        
}


@media(max-width:414px) {

    .main-container .headline {
        font-size: 34px;
        line-height: 38px;
    }
    .contact-box p {
        font-size: 14px;
    }
    html input[type="text"], input[type="email"], input[type="tel"], select {
        font-size: 13px;
    }
    html select {
        font-size: 14px;
    }
    .form-box input[type="text"], .form-box input[type="email"], .form-box input[type="tel"], .form-box select {
        font-size: 12px;
    }
    .form-box textarea {
        font-size: 12px;
    }
    .carousel-caption {
        bottom: 23%;
    }
    .about-wrap .image .small-image {
        display: none;
    }
    .about-wrap .image {
        padding: 2.7rem 0 0 2.4rem;
    }
    .footer-top-wrap .ft-title {
        font-size: 3rem;
    }
    .footer p {
        font-size: 13px;
    }
    .footer .col-xs-6 {
        width: 100%;
    }
    .footer ul li {
        margin-top: 10px;
    }
    ul, label {
        margin: 0;
        padding: 0;
    }


}

@media(max-width:375px) {

    .main-container .headline {
        font-size: 30px;
        line-height: 38px;
    }
    html textarea {
        font-size: 12px;
    }
    .carousel-caption {
        bottom: 23%;
        right: 11%;
        left: 11%;
    }
    html input[type="text"], input[type="email"], input[type="tel"], select {
        font-size: 12px;
    }
    html select {
        font-size: 12px;
    }
    .main-container p {
        font-size: 14px;
        margin-top: 5px;
    }
    .carousel-caption a {
        margin: 15px 0px 0 0;
    }
    .btn {
        font-size: 14px;
    }
    .about-wrap .image {
        padding: 2.7rem 0 0 2.7rem;
    }

}


@media(max-width:360px) {

    .main-container .headline {
        font-size: 29px;
        line-height: 38px;
    }
    .title {
        font-size: 23px;
    }
    .form-box input[type="text"], .form-box input[type="email"], .form-box input[type="tel"], .form-box select {
        font-size: 11px;
    }
    .testimonial-text {
        padding: 20px;
    }
    
    .testimonal-wrap .item {
        padding: 20px;
    }
    .footer-top-wrap .ft-title {
        font-size: 2.7rem;
        line-height: 34px;
    }

}


@media(max-width:320px) {

    .main-container .headline {
        font-size: 26px;
        line-height: 38px;
    }
    .form-box input[type="text"], .form-box input[type="email"], .form-box input[type="tel"], .form-box select {
        font-size: 11px;
    }
    .form-group .form-control{
        font-size: 12px;
    }
    
    .about-wrap .image {
        padding: 2rem 0 0 2rem;
    }
    .breadcrumb-menu h2 {
        font-size: 32px;
        color: #fff;
        margin-top: 0;
        margin-bottom: 0;
    }

}