/* 
* BASIC STYLE
  - General Style    
  - Headings Style    
  - Button Style    
  - Form Style    
  - Spacer Style
      
* HEADER 
  - Header Style
  - Navigation Menu Style
  - Megamenu Style

* CONTANT
  - Banner Style
  - About-part
  - Our Creative Work
  - Counter
  - Our Services
  - Testimonial 
  - Our Team
  - Pricing
  - Blog
  - Contact
  - News Letter
* FOOTER
*/

/*_______________________________________________________
// BASIC STYLE  //----------------------------
_______________________________________________________*/

/*Google Fonts*/
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,400i,500,500i,600,600i,700,700i,800');

/* - General Style //---------------- */

::-moz-selection {
    background-color: #f34d27;
    color: #FFF;
}

::selection {
    background-color: #f34d27;
    color: #FFF;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    line-height: 24px;
    color: #000000;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

    body.dark-header {
        padding-top: 82px;
    }

.container {
    padding-left: 0;
    padding-right: 0;
}

.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
}

.la-ball-clip-rotate-pulse {
    display: block;
    font-size: 0;
    margin: 0 auto;
    top: 50%;
    color: #fff;
}

    .la-ball-clip-rotate-pulse.la-dark {
        color: #f34d27;
    }

    .la-ball-clip-rotate-pulse,
    .la-ball-clip-rotate-pulse > div {
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .la-ball-clip-rotate-pulse > div {
            display: inline-block;
            float: none;
            background-color: currentColor;
            border: 0 solid currentColor;
        }

.la-ball-clip-rotate-pulse {
    width: 32px;
    height: 32px;
}

    .la-ball-clip-rotate-pulse > div {
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 100%;
    }

        .la-ball-clip-rotate-pulse > div:first-child {
            position: absolute;
            width: 32px;
            height: 32px;
            background: transparent;
            border-style: solid;
            border-width: 2px;
            border-right-color: transparent;
            border-left-color: transparent;
            -webkit-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
            -moz-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
            -o-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
            animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
        }

        .la-ball-clip-rotate-pulse > div:last-child {
            width: 16px;
            height: 16px;
            -webkit-animation: ball-clip-rotate-pulse-scale 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
            -moz-animation: ball-clip-rotate-pulse-scale 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
            -o-animation: ball-clip-rotate-pulse-scale 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
            animation: ball-clip-rotate-pulse-scale 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
        }

@-webkit-keyframes ball-clip-rotate-pulse-rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-moz-keyframes ball-clip-rotate-pulse-rotate {
    0% {
        -moz-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        -moz-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
        -moz-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-o-keyframes ball-clip-rotate-pulse-rotate {
    0% {
        -o-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        -o-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
        -o-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ball-clip-rotate-pulse-rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -moz-transform: translate(-50%, -50%) rotate(0deg);
        -o-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -moz-transform: translate(-50%, -50%) rotate(180deg);
        -o-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -moz-transform: translate(-50%, -50%) rotate(360deg);
        -o-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes ball-clip-rotate-pulse-scale {
    0%,100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    30% {
        opacity: .3;
        -webkit-transform: translate(-50%, -50%) scale(0.15);
        transform: translate(-50%, -50%) scale(0.15);
    }
}

@-moz-keyframes ball-clip-rotate-pulse-scale {
    0%,100% {
        opacity: 1;
        -moz-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    30% {
        opacity: .3;
        -moz-transform: translate(-50%, -50%) scale(0.15);
        transform: translate(-50%, -50%) scale(0.15);
    }
}

@-o-keyframes ball-clip-rotate-pulse-scale {
    0%,100% {
        opacity: 1;
        -o-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    30% {
        opacity: .3;
        -o-transform: translate(-50%, -50%) scale(0.15);
        transform: translate(-50%, -50%) scale(0.15);
    }
}

@keyframes ball-clip-rotate-pulse-scale {
    0%,100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -o-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    30% {
        opacity: .3;
        -webkit-transform: translate(-50%, -50%) scale(0.15);
        -moz-transform: translate(-50%, -50%) scale(0.15);
        -o-transform: translate(-50%, -50%) scale(0.15);
        transform: translate(-50%, -50%) scale(0.15);
    }
}

.main {
    position: relative;
    overflow: hidden;
}

img {
    height: auto;
    max-width: 100%;
    border: none;
    outline: none;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}

a, a:focus, a:active, a:link, img {
    outline: none;
    text-decoration: none;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #555555;
    transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
}

    a:hover {
        color: #b35c19;
        text-decoration: none;
        transition: all 0.25s ease 0s;
        -moz-transition: all 0.25s ease 0s;
        -webkit-transition: all 0.25s ease 0s;
        -o-transition: all 0.25s ease 0s;
    }

br {
    font-size: 0;
    line-height: 0;
}

hr {
    margin-bottom: 0px;
    margin-top: 0px;
    border-top: 1px solid #f1f1f1;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0;
}

.position-r {
    position: relative;
}

.position-s {
    position: static;
}

.position-initial {
    position: initial;
}

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

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg p {
    color: #fff;
}

.dark-bg {
    background: #141414;
    color: #fff;
}

.gray-bg {
    background: #f5f5f5;
}

.light-gray-bg {
    background: #fafafa none repeat scroll 0 0;
}

.middle-800 p {
    display: inline-block;
    max-width: 800px;
}

.middle-580 p {
    display: inline-block;
    max-width: 580px;
    margin-bottom: 0;
}

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

.border-top {
    border-top: 1px solid #e1e1e1;
}
/* - Headings Style   //---------------- */

h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #202833;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 10px;
}

h1 {
    font-size: 43px;
    letter-spacing: 1px;
    line-height: 40px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

    h2.heading {
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 1px;
        position: relative;
    }

h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}

    h3.sub_title {
        color: #0c0c0c;
        font-size: 20px;
        font-weight: 500;
    }

h4 {
    font-size: 17px;
    line-height: 28px;
}

h5 {
    font-size: 15px;
    line-height: 23px;
    font-weight: 500;
}

h6 {
    font-size: 13px;
    line-height: 17px;
    font-weight: 500;
}

.main_title {
    color: #202833;
    display: inline-block;
    margin-bottom: 0;
}

.heading-part p {
    color: #f34d27;
}

.contact-bg .main_title span {
    color: #fff;
}

.heading-variation h1, .heading-variation h2, .heading-variation h3,
.heading-variation h4, .heading-variation h5, .heading-variation h6 {
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0;
}

.heading-variation h6 {
    margin-bottom: 0;
}
/* - Button Style  //----------------*/
.btn, button {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
}

    .btn.focus, .btn:focus, button:focus {
        box-shadow: none;
        outline: 0 none;
    }

    .btn svg {
        width: 18px;
        height: 17px;
    }

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

    .btn.big-width {
        padding: 13px 30px;
    }

    .btn.big {
        padding: 25px;
    }

    .btn i.fa {
        font-size: 16px;
        margin: 0 5px;
    }

.btn-black {
    color: #fff;
    background: #222;
    border: none;
}

    .btn-black:hover {
        color: #fff;
        background: #222;
    }

.btn-color {
    color: #fff;
    background-color: #b35c19 !important;
    border-color: #b35c19 !important;
}

    .btn-color:hover {
        color: #fff !important;
        background: #f18321;
    }

.btn-white {
    color: #222;
    background: rgba(255,255,255,1);
    border: none;
}

    .btn-white:hover {
        color: #222;
        background: #f34d27;
    }

.btn-bg-none {
    color: #202833;
    background: transparent;
}

    .btn-bg-none:hover {
        color: #f34d27;
    }

.btn-sidebar-menu-dropdown {
    display: inline-block;
    color: #fff !important;
    background-color: #f34d27;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
    margin-top: 14px;
    font-size: 18px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
}

    .btn-sidebar-menu-dropdown:hover,
    .btn-sidebar-menu-dropdown:focus,
    .btn-sidebar-menu-dropdown:active {
        color: #fff !important;
    }

/* - Form Style */
* {
    outline: none !important;
}

select {
    background: url(images/select-icon.png) no-repeat scroll right 50% #fff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #e1e1e1;
    padding: 5px 24px 5px 5px;
    line-height: 18px;
}

.full select {
    width: 100%;
}

.main-form textarea {
    max-width: 100%;
}

.main-form input, .main-form textarea, .main-form select {
    background: #fff;
    padding: 8px 15px;
    width: 100%;
    border: 1px solid #b35c19;
    min-height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.main-form textarea {
    min-height: 90px;
}

.check-box label {
    color: #222;
    display: inline;
    font-size: 15px;
    font-weight: 400;
}

.check-box input, .radio input.radio-button {
    display: none;
}

.checkout-section .check-box input[type="checkbox"] {
    margin: 5px 0 0;
    min-height: 1px;
    display: none;
}

.category-dropdown {
    border: 1px solid #e1e1e1;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px 0 0 25px;
    -moz-border-radius: 25px 0 0 25px;
    -webkit-border-radius: 25px 0 0 25px;
    -o-border-radius: 25px 0 0 25px;
}

    .category-dropdown select {
        border: none;
        height: 45px;
        width: 250px;
        padding: 7px 24px 7px 15px;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        -o-border-radius: 0;
    }

.select-dropdown fieldset {
    padding: 0;
    line-height: 0;
}

/* - Spacer Style  //---------------- */
.right-side {
    float: right;
}

.left-side {
    float: left;
}

.plr-20 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.mlr_-20 {
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.p-0 {
    padding: 0px;
}

.mb-minus-30 {
    margin-bottom: -30px;
}

.mtb-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mtb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mtb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mtb-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

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

.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.m-0 {
    margin: 0px;
}

/*_______________________________________________________
// HEADER  //----------------------------
_______________________________________________________*/

/* - Header Style  //---------------- */
#header {
    background: #ffffff;
    top: 0;
    width: 100%;
    border: none;
    padding: 0;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.header-middle {
    background: #e4e4e4;
    display: inline-block;
    width: 100%;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
}

.one-page .header-fixed .header-middle {
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.navbar .container {
    display: block;
}

.navbar-header {
    float: left;
}

nav.navbar.bootsnav {
    border: none;
}

.header-fixed nav.navbar.bootsnav {
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
}

.navbar-header .navbar-brand {
    height: auto;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    padding: 10px 0 13px;
}

.navbar {
    margin-bottom: 0;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    padding: 0;
}

.navbar-collapse.collapse {
    display: block;
    padding-left: 0;
}

.nav.navbar-nav {
    display: block;
    float: right;
}

.navbar-collapse ul li {
    float: left;
}

.collapsing {
    display: inline-block;
}
/* Navigation Menu Style */
.navbar-collapse.show {
    left: 0;
}

nav.navbar.bootsnav .navbar-collapse.collapse.show {
    display: block !important;
    left: 0;
    width: 100%;
}

.navbar-nav > li > a {
    color: #202833;
    padding: 39px 15px;
    font-weight: 500 !important;
    font-size: 15px;
    position: relative;
    display: inline-block;
}

.navbar-nav > li:hover > a {
    color: #f34d27
}

.header-fixed .navbar-nav > li > a {
    padding: 28px 15px;
}

#menu-main li.active a,
#menu-main li:hover a {
    color: #b35c19;
}

#menu-main > li > a span {
    position: relative;
}

.navbar-nav li.level:last-child a {
    padding-right: 0;
}

nav.navbar.bootsnav .navbar-toggle, .attr-nav > ul > li > a {
    border: none;
    background: none;
    color: #6f6f6f;
    height: 35px;
    margin: 24px 0;
    padding: 7px 9px;
    width: 20px;
    display: block;
}

    #header button i.fa, .attr-nav > ul > li > a i.fa {
        font-size: 22px;
    }

    nav.navbar.bootsnav .navbar-toggle:hover, .attr-nav > ul > li > a:hover {
        color: #f34d27;
    }

button:focus {
    outline: none;
}

.side-toggle {
    display: none;
}

.side {
    background: #ffffff;
    border-left: 1px solid #dfdfdf;
}

    .side .widget .title {
        color: #202833;
        position: relative;
        font-weight: 500;
        font-size: 20px;
        padding-bottom: 5px;
    }

        .side .widget .title:after {
            background-color: #f34d27;
            bottom: 0;
            content: "";
            display: block;
            height: 2px;
            position: absolute;
            width: 50px;
        }

    .side .close-side {
        color: #202833;
    }

    .side .widget ul.link {
        margin-top: 30px;
    }

.widget ul.link li {
    margin: 15px 0;
}

.side .widget ul.link li a {
    color: #202833;
    font-size: 15px;
    font-weight: 500;
}

.close-side i.fa:hover {
    color: #f34d27;
}

.side .widget ul.link li a:focus, .side .widget ul.link li a:hover {
    color: #f34d27;
}
/*_______________________________________________________
// CONTANT  //----------------------------
_______________________________________________________*/

/* - Banner Style  //---------------- */
.banner {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}

#particles-js {
    background: rgba(0, 0, 0, 0) url("../MIS_Gujarat_files/images/banner.jpg") no-repeat fixed center center;
    height: 100%;
    width: 100%;
}

.banner-detail-inner > p {
    line-height: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
}
/* main-banner icon start */
.main-banner.owl-carousel .owl-stage-outer {
    display: inherit;
    margin-top: 0;
    padding-top: 0;
}
/* main-banner icon end */
.banner-detail {
    top: 50%;
    position: absolute;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .banner-detail .banner-detail-inner {
        color: #fff;
    }

        .banner-detail .banner-detail-inner .cd-intro {
            margin: 0 auto 30px;
        }

        .banner-detail .banner-detail-inner .banner-title, .cd-words-wrapper i, .cd-words-wrapper em {
            color: #ffffff;
            font-size: 60px;
            font-weight: 400;
            line-height: 60px;
        }

.cd-words-wrapper i, .cd-words-wrapper em {
    text-transform: none;
    font-weight: 600;
    color: #f34d27;
}

.banner-detail .banner-detail-inner span.slogan {
    display: inline-block;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 20px;
}

/*-- about-part Start --*/
.about-section {
    background: none;
    height: auto;
    text-align: left;
}

.about-img img {
    border-radius: 5px;
}

.about-section h2.main_title {
    padding-bottom: 0;
}

.about-part .sub-title {
    color: #f34d27;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-info p {
    letter-spacing: 1px;
    line-height: 22px;
}

.about-img {
    position: relative;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 5px;
}

    .video-bg a.popup-youtube {
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

.popup-youtube span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0px;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 13px solid transparent;
    margin-right: -6px;
}

.popup-youtube:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #f34d27;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.popup-youtube:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: rgba(241, 131, 33, 0.5);
    border-radius: 50%;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.popup-youtube:hover:after {
    background: #f34d27;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
/*--------- about-part End ---------*/

/*-----------------  Portfolio CSS Start  -----------------*/
.tab-bar ul {
    list-style: none;
    text-align: center;
    display: inline-block;
}

    .tab-bar ul li {
        display: inline-block;
    }

    .tab-bar ul [class*=fa] {
        margin-right: 5px;
    }

    .tab-bar ul [class*=fa-check] {
        position: relative;
        left: 1px;
    }

    .tab-bar ul li a {
        padding: 5px 20px;
        color: #202833;
        font-weight: 500;
        margin-right: 5px;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .tab-bar ul li:hover a {
        background: #f34d27;
        color: #fff;
    }

.portfolio-filter li a.active {
    background: #f34d27;
    color: #fff;
}

.isotope, .blog-content {
    display: block;
    width: 100%;
}

.grid {
    margin: -15px;
}

.Work-col .grid {
    margin: 0;
}

.isotope .grid-item {
    display: block;
    position: relative;
    padding: 15px;
}

.isotope.no-spacing .grid-item {
    padding: 0;
}

.three-col-work .grid-item {
    width: 33.33%;
    min-height: 1px;
}

.two-col-work .grid-item {
    width: 50%;
    min-height: 1px;
}

.four-col-work .grid-item {
    width: 25%;
}

.work-no-spacing .grid-item {
    padding: 0;
}

.isotope .grid-item a {
    background: #6b6b6b;
    overflow: hidden;
    display: block;
    position: relative;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
}

.isotope .grid-item.filtered {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
}

.grid-item a:hover img {
    opacity: 0.7;
    filter: alpha(opacity=20);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.grid-item .work-detail {
    position: absolute;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 50%;
    top: 50%;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.grid-item a:hover .work-detail {
    opacity: 1;
}

.work-detail-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: table;
}

.inner-detail {
    vertical-align: middle;
    display: table-cell;
}

.listing-effect .work-detail-inner:before {
    background: #ffffff;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);
    z-index: -1;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.listing-effect .work-detail-inner:before {
    background-color: rgba(0,0,0,0.6);
}

.listing-effect:hover .work-detail-inner:before {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
    transform: scale(1,1);
}

.listing-effect .listing-effect-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 45px;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
}

.listing-effect a:hover .listing-effect-title {
    margin-bottom: 5px;
}

.listing-effect .listing-meta {
    color: #bebebe;
}

#portfolio .isotope, #portfolio .masonry-brick, #portfolio .grid-item img, .team-item img {
    max-width: 100%;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
}

.work-zoom .mfp-content {
    margin: 40px;
}

.work-zoom img.mfp-img {
    background: #fff none repeat scroll 0 0;
    padding: 20px 20px 50px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
}

.work-zoom .mfp-bottom-bar {
    background: transparent;
    padding: 0 20px;
    top: 100%;
    bottom: auto;
    margin-top: -36px;
    position: absolute;
}

.work-zoom .mfp-title {
    color: #000;
}

.work-zoom .mfp-counter {
    padding-right: 20px;
    color: #000;
}

.work-zoom button.mfp-arrow {
    background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    opacity: 1;
}

    .work-zoom button.mfp-arrow:hover {
        background: #f34d27;
    }

.work-zoom .mfp-arrow::after {
    padding: 11px 15px;
    color: #000;
}

.work-zoom .mfp-arrow:hover:after {
    color: #ffffff;
}

.work-zoom button.mfp-arrow {
    margin: 0;
}

.work-zoom .mfp-arrow:active {
    margin: 0;
}

.work-zoom .mfp-arrow.mfp-arrow-left {
    margin-left: 10px;
}

.work-zoom .mfp-arrow.mfp-arrow-right {
    margin-right: 10px;
}
/*-----------------  Portfolio CSS End  -----------------*/

/*-----------------  counter CSS Start  -----------------*/
.counter-area {
    background: rgba(0, 0, 0, 0) url("../images/counter-bg.jpg") no-repeat fixed center center;
}

.counter-icon svg {
    width: 60px;
    height: 60px;
    fill: #fff !important;
}

    .counter-icon svg path {
        fill: #fff !important;
    }

.count-text {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-top: 30px;
}

.info-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}
/*--------------  counter CSS End  -------------*/

/*--------- Our Services Start ------*/
.service-part .owl-carousel .owl-stage-outer {
    padding: 15px 0 60px;
    margin: -15px 0;
}

.service-part .owl-carousel .owl-dots {
    bottom: 0;
}

.services-inner-box {
    position: relative;
    display: block;
    padding: 0 30px 30px;
    margin-top: 30px;
    border: 1px solid #ffffff;
    -webkit-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

    .services-inner-box .services-img {
        position: relative;
        display: block;
        margin-top: -30px;
    }

        .services-inner-box .services-img img {
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
        }

.services-box .services-icon {
    background: #ffffff;
    position: absolute;
    right: 20px;
    bottom: -70px;
    border-radius: 50%;
    color: #737373;
    display: inline-block;
    cursor: pointer;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    z-index: 0;
    -webkit-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
}

    .services-box .services-icon:before {
        background: #ffffff;
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        right: 0px;
        border-radius: 50%;
        transform: scale(0,0);
        z-index: -1;
        transition: all 500ms ease;
    }

    .services-box .services-icon:before {
        background-color: #f34d27;
    }

.services-box:hover .services-icon:before {
    transform: scale(1,1);
}

.services-box .services-icon svg {
    width: 45px;
    height: 45px;
    fill: #f34d27;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.services-box:hover .services-icon svg {
    fill: #ffffff;
}

.services-details .details {
    margin-bottom: 15px;
}

.services-details {
    margin-top: 60px;
}

.services-inner-box .services-details {
    margin-top: 25px;
}
/*--------- Our Services End ---------*/

/*-------- Testimonial CSS Start ---------*/
.client-bg {
    background: url(../images/testimonial-bg.jpg) no-repeat scroll 0 0;
    position: relative;
}

.client-main {
    position: relative;
}

    .client-main .item {
        display: inline-block;
        padding-left: 15px;
        padding-right: 15px;
    }

.client-detail {
    position: relative;
    border: 2px solid #cad2ff;
    padding: 50px 50px 50px 90px;
    margin-top: 30px;
    margin-bottom: 25px;
    margin-left: 60px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
}

.client-img {
    position: absolute;
    top: -30px;
    left: -60px;
}

    .client-img img {
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -o-border-radius: 5px;
        display: inline-block;
        overflow: hidden;
    }

.client-main .item .client-title {
    font-size: 18px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 0;
    text-transform: none;
}

.client-main .item p {
    line-height: 22px;
    margin: 0;
    color: #727272;
}

.designation {
    font-size: 14px;
    font-style: italic;
    color: #727272;
}

.quote {
    max-width: 670px;
    position: relative;
}

.quote-img {
    position: absolute;
    right: 40px;
    bottom: -30px;
}

    .quote-img svg {
        fill: #cad2ff;
        width: 64px;
        height: 64px;
    }
/*---------- Testimonial CSS End -------------*/

/*---------- Our Team CSS Start --------*/
#team-slider .owl-item .item {
    padding: 0 15px;
}

.team-slider .owl-carousel .owl-stage-outer {
    padding: 15px 0;
    margin: -15px 0;
}

.team-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

    .team-item .listing-effect:before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -3px;
        z-index: 1;
        height: 100%;
        width: 100%;
        background: url(../images/team-shape.png) bottom right/contain no-repeat;
    }

.team-slider .item {
    padding-left: 15px;
    padding-right: 15px;
}

.team-slider, .listing-effect {
    position: relative;
}

.team-item .listing-effect {
    overflow: hidden;
}

    .team-item .listing-effect img {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

.team-item:hover .listing-effect img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team-item-detail {
    padding: 0 30px 30px;
    margin-top: -15px;
    z-index: 1;
    position: relative;
}

.team-item .team-info {
    padding-bottom: 15px;
}

.team-info .team-title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    cursor: pointer;
}

.team-info:hover .team-title {
    color: #f34d27;
}

.social_icon ul li {
    display: inline-block;
    margin: 0;
}

    .social_icon ul li i.fa {
        font-size: 18px;
        margin-right: 10px;
    }

    .social_icon ul li:last-child i.fa {
        margin-right: 0;
    }

.listing-effect .social_icon ul li a i.fa:hover {
    color: #f34d27;
}
/*-------------- Our Team CSS End ------------*/

/*------------ Pricing CSS START ------------*/
.price-slider .owl-stage-outer {
    padding: 15px 0;
    margin: -15px 0;
}

.pricing-box {
    border: 1px solid #e8e8e8;
    text-align: center;
    margin-bottom: 1px;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

    .pricing-box:hover {
        -ms-transform: scale(1.03);
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
        -webkit-box-shadow: 0 0 15px -1px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 0 15px -1px rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 15px -1px rgba(0, 0, 0, 0.15);
    }

.pricing-opt-1 .item {
    padding-left: 15px;
    padding-right: 15px;
}

.pricing-box .box-head {
    padding: 25px 0;
    border-bottom: 1px solid #e8e8e8;
    background: #f7f7f7;
}

    .pricing-box .box-head .plan-price {
        margin-bottom: 0;
    }

.pricing-title {
    background: #f34d27 none repeat scroll 0 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    padding: 8px 0;
    text-transform: capitalize;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.plan-price sup {
    font-family: "Open+Sans",sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.plan-price .pricing-txt {
    font-size: 32px;
}

.pricing-box .plan-detail ul {
    margin: 0;
}

.pricing-box ul li span {
    border-bottom: 1px solid #e8e8e8;
    padding: 8px;
    display: inline-block;
    width: 100%;
}

.pricing-opt-1 .pricing-box ul li span {
    width: auto;
}

.pricing-box .plan-detail .price-btn {
    margin: 20px 0;
    display: inline-block;
}
/*------------ Pricing CSS End ---------*/

/*---------------- Blog CSS Start -----------*/
.blog .owl-stage-outer {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

#blog .item {
    padding-left: 15px;
    padding-right: 15px;
}

.blog-listing .blog-item {
    margin-bottom: 30px;
}

.blog-1col .blog-listing .blog-item {
    margin-bottom: 0;
}

.blog-media {
    overflow: hidden;
    background: #1b2839;
    position: relative;
    z-index: -1;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.blog-item .blog-media img {
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
}

.blog-item:hover .blog-media img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.blog-item a.read {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.blog-detail {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    padding: 30px 30px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

.blog-title {
    line-height: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}

    .blog-title > a {
        color: #1b2839;
        font-size: 18px;
        font-weight: 500;
    }

        .blog-title > a:hover {
            color: #f34d27;
        }

.blog-detail > span {
    color: #1b2839;
    font-style: italic;
    position: relative;
}

.homepage .blog-detail > span:after {
    background-color: #f34d27;
    bottom: -5px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 60px;
}

.blog-item:hover a.read {
    opacity: 1;
    filter: alpha(opacity=100);
}

.blog-item a.read:after {
    content: "";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    color: #ffffff;
    height: 45px;
    width: 45px;
    padding: 10px;
    text-align: center;
}

.blog-detail > h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.blog-detail p {
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 0;
}

.blog-detail .post-info ul li {
    display: inline-block;
    position: relative;
    color: #989898;
    margin-right: 15px;
    padding-right: 15px;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

    .blog-detail .post-info ul li:last-child {
        margin-right: 0;
        padding-right: 0;
    }

    .blog-detail .post-info ul li:after {
        content: "";
        position: absolute;
        width: 1px;
        height: 14px;
        background-color: #bbb;
        right: 0;
        top: 0;
    }

.post-date {
    line-height: 14px;
}

.blog-detail .post-info ul li:last-child:after {
    display: none;
}

.blog-detail .post-info ul li a {
    color: #989898;
}

.post-info ul li svg {
    width: 14px;
    height: 14px;
    fill: #989898;
}

.blog-detail .post-info ul li .post-user:hover a {
    color: #f34d27;
}

.blog-detail .post-info ul li .post-user:hover svg {
    fill: #f34d27;
}

.blog-btn {
    margin-top: 15px;
}

.blog-item img {
    width: 100%;
}

.blog-item .blog-effect:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
}

.blog-item .blog-effect:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
}

.blog-item:hover .blog-effect:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.blog-item:hover .blog-effect:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.blog-item .blog-effect:before, .blog-item .blog-effect:after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.you-tube-video {
    padding: 31%;
    position: relative;
}

    .you-tube-video iframe, .you-tube-video object {
        border: medium none;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }
/*----------- Blog CSS End ------------*/

/*----------- Slider icon Start -----------*/
.owl-nav button span {
    display: none;
}

.banner .owl-prev, .banner .owl-next,
.team-slider .owl-prev, .team-slider .owl-next,
.price-slider .owl-prev, .price-slider .owl-next,
.blog .owl-prev, .blog .owl-next,
.client-main .owl-prev, .client-main .owl-next,
.service-part .owl-prev, .service-part .owl-next {
    background: url("../images/sprite.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
    position: absolute;
    height: 30px;
    width: 20px;
    text-align: center;
    opacity: 1;
    top: 50%;
    padding: 4px 15px;
    font-size: 0;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.owl-nav .owl-prev {
    left: -50px;
}

.owl-nav .owl-next {
    right: -50px;
}

.banner .owl-next {
    right: 15px;
}

.banner .owl-prev {
    left: 15px;
}

.banner .owl-next,
.team-slider .owl-next,
.blog .owl-next,
.client-main .owl-next,
.price-slider .owl-next,
.service-part .owl-next {
    background-position: -113px -140px !important;
}

    .banner .owl-next:hover,
    .team-slider .owl-next:hover,
    .blog .owl-next:hover,
    .client-main .owl-next:hover,
    .price-slider .owl-next:hover,
    .service-part .owl-next:hover {
        background-position: -113px -206px !important;
    }

.banner .owl-prev,
.team-slider .owl-prev,
.blog .owl-prev,
.client-main .owl-prev,
.price-slider .owl-prev,
.service-part .owl-prev {
    background-position: -114px -12px !important;
}

    .banner .owl-prev:hover,
    .team-slider .owl-prev:hover,
    .blog .owl-prev:hover,
    .client-main .owl-prev:hover,
    .price-slider .owl-prev:hover,
    .service-part .owl-prev:hover {
        background-position: -114px -77px !important;
    }

.owl-prev.disabled, .owl-prev.disabled:hover {
    background-position: -114px -12px !important;
    opacity: 0..5;
    cursor: default;
}

.owl-next.disabled, .owl-next.disabled:hover {
    background-position: -113px -140px !important;
    opacity: 0..5;
    cursor: default;
}
/*----------- Slider icon End ----------*/

/*--------- pagination CSS Start ---------*/
.owl-dots {
    display: inline-block;
    margin-top: 20px;
}

.owl-carousel button.owl-dot {
    float: left;
    margin: 0 3px;
    border: 2px solid #f34d27;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
    height: 16px;
    width: 16px;
}

    .owl-carousel button.owl-dot > span {
        background: #fff;
        display: block;
    }

    .owl-carousel button.owl-dot.active > span, .owl-carousel button.owl-dot:hover > span {
        background: #f34d27 none repeat scroll 0 0;
        border: 2px solid #ffffff;
    }

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.owl-carousel button.owl-dot > span {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
}

#sidebar-product .owl-dots, #blog .owl-dots {
    top: -10px;
    right: 0;
    height: 20px;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
}
/*--------  pagination CSS End ------------*/

/*----------- Contact CSS Start ----------*/
.contact-bg {
    background: rgba(0, 0, 0, 0) url("../images/contact-bg.jpg") no-repeat scroll center center;
}

    .contact-bg h2.heading, .contact-bg .heading-part p {
        color: #ffffff;
    }

.contact-add-detail {
    color: #ffffff;
}

#contact-section .map {
    margin-bottom: -6px;
}

.contact-main iframe {
    min-height: 450px;
    width: 100%;
}

.main-form-detail {
    background: #fff;
    padding: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
}
/*----------- Contact CSS End -------*/

/*------  News Letter CSS Start ------------*/
.newsletter-title .sub-title {
    font-size: 18px;
}

.newsletter-inner span {
    display: inline-block;
    margin-bottom: 60px;
}

.newsletter-inner p {
    margin-bottom: 35px;
}

.newsletter-box {
    position: relative;
}

.newsletter {
    background: #060606;
    padding: 40px 0;
}

.newsletter-box {
    padding-right: 142px;
}

.newsletter .newsletter-inner form button {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    text-transform: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
}

.newsletter-inner input {
    color: #ffffff;
    background: none;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 7px 0 8px 10px;
    width: 100%;
}

    .newsletter-inner input::placeholder {
        color: #ffffff;
    }

.newsletter-title .main_title {
    color: #ffffff;
    font-size: 32px;
}
/*--------------  News Letter CSS End ---------*/

/*_______________________________________________________
// FOOTER  //----------------------------
_______________________________________________________*/
.footer {
    background: #f1f1f1;
}

.footer-bottom {
    background: #fff;
}

.footer a {
    color: #000000;
}

    .footer a:hover {
        color: #b35c19;
    }

.footer-middle {
    padding: 60px 0;
}

.footer-block-contant p {
    margin-bottom: 0;
    line-height: 26px;
}

.footer-bottom h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.footer-top p {
    color: #a4a4a4;
    line-height: 20px;
    margin-bottom: 0;
    margin-left: 240px;
}

.footer .social-icon {
    margin-top: 10px;
}

.footer-static-block ul.social-icon li {
    padding-top: 10px;
    padding-bottom: 0;
    display: inline-block;
}

ul.social-icon li {
    display: inline-block;
}

    ul.social-icon li i.fa {
        color: #f34d27;
        font-size: 18px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        border: 1px solid #e1e1e1;
        text-align: center;
        transition: all 0.4s ease 0s;
        -moz-transition: all 0.4s ease 0s;
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -o-border-radius: 5px;
    }

        ul.social-icon li i.fa:hover {
            background-color: #f34d27;
            border: 1px solid #f34d27;
            color: #ffffff;
        }

.footer-static-block .title {
    margin-bottom: 30px;
}

.footer-static-block ul.address-footer li {
    margin-bottom: 0;
}

.footer-static-block ul li {
    padding: 9px 0;
}

    .footer-static-block ul li:first-child {
        padding-top: 0;
    }

    .footer-static-block ul li:last-child {
        padding-bottom: 0;
    }

.footer hr {
    border-top: 1px solid #e1e1e1;
}

.location-box h4, .info-list h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer .btn-bg-none {
    color: #202833;
    padding: 0;
    margin-top: 40px;
}

.btn-bg-none svg {
    fill: #202833;
}

.btn-bg-none:hover svg {
    fill: #f34d27;
}

.location-box svg {
    width: 40px;
    fill: #b35c19;
    float: left;
    margin-right: 10px;
}

.footer-static-block .info-list li {
    padding: 7px 0;
}

.info-list h4 {
    margin-bottom: 5px;
}

.info-list p {
    margin-bottom: 5px;
}

.footer-static-block ul li:last-child p {
    margin-bottom: 0;
}

ul.tagcloud li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

    ul.tagcloud li a {
        border: 1px solid #444444;
        display: inline-block;
        padding: 5px 10px;
    }

.sidebar-block ul.tagcloud li a {
    border-color: #ebebeb;
}

ul.tagcloud li a:hover {
    border-color: #f34d27;
}

.footer-static-block li a:hover span {
    color: #f34d27;
}

.footer-static-block .field {
    margin-bottom: 5px;
}

.footer-static-block input, .footer-static-block textarea {
    background-color: transparent;
    border: 1px solid #444;
    width: 100% !important;
    padding: 5px;
}

.site-link li {
    display: inline-block;
}

    .site-link li a {
        padding: 0 10px;
    }

    .site-link li:first-child a {
        padding-left: 0;
    }

    .site-link li:last-child a {
        padding-right: 0;
    }

.copy-right-bg {
    padding: 10px 0;
}

.copy-right a:hover, .site-link li a:hover {
    color: #f34d27;
}
/* Scroll-top Arrow CSS Start */
.scroll-top {
    bottom: 10px;
    position: fixed;
    right: 10px;
    z-index: 2;
}

    .scroll-top .scrollup:before {
        color: #fff;
        content: "\f062";
        font-family: "FontAwesome";
        font-size: 18px;
    }

    .scroll-top .scrollup {
        background: #b35c19;
        border: 2px solid #fff;
        width: 40px;
        height: 40px;
        line-height: 34px;
        text-align: center;
        display: none;
        cursor: pointer;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -o-border-radius: 5px;
    }
/* Scroll-top Arrow CSS End */


.bg-grey {
    background: #faf9f9;
}


.sec_pad {
    padding: 70px 0px;
}


.btn-success {
    color: #fff;
    background-color: #b35c19 !important;
    border-color: #b35c19 !important;
}