@charset "utf-8";
/* CSS Document */

/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Express
Version:	1.0
Last change:	Initial RELEASED
Primary use:	Multiple Use
-------------------------------------------------------------------*/

/*------------------------------------------------------------------

[Table of contents]

    1- CSS RESET
    2- BASIC STYLES
    3- Button
    4- Headings
    5- HEADER
    6- Slider
    7- About Section
    8- Services
    9- Projects
    10- Quote
    11- Testimonial
    12- Tools
    13- News
    14- Partners
    15- Call To Action
    16- Intro
    17- Page Title
    18- Projects Detail
    19- Skills
    20- Features
    21- statistics
    22- Team
    23- Mobile App
    24- Blog
    25- Single
    26- Sidebar
    27- FAQ
    28- Error
    29- Contact
    30- Services Details
    31- Footer
    32- Isotops ON Portfolio Section

NOTE: Every section is commented before starting.

/*------------------------------------------------------------------
    1- CSS RESET
-------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address,
big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl,
dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*------------------------------------------------------------------
    2- BASIC STYLES
-------------------------------------------------------------------*/


body {
    background: #fff;
    color: #000;
    font: 14px 'Open Sans', Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: #666666;
    text-decoration: none;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

    a:hover {
        color: #4b45ad;
    }

    a:hover, a:active {
        outline: 0;
    }

hr {
    margin: 50px 0;
}

::-moz-selection {
    background: #fe57a1;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #fe57a1;
    color: #fff;
    text-shadow: none;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/*-- Heading --*/

h1, h2, h3, h4, h5, h6 {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    font-family: 'Open Sans', sans-serif;
    color: #222222;
}

h1 {
    font-size: 30px;
}

    h1 a {
        color: #222222;
    }

h2 {
    font-size: 58.33px;
    color: #333333;
}

    h2 a {
        color: #222222;
    }

h3 {
    font-size: 20.83px;
}

    h3 a {
        color: #222222;
    }

h4 {
    font-size: 14px;
}

    h4 a {
        color: #222222;
    }

h5 {
    font-size: 12px;
}

    h5 a {
        color: #222222;
    }

h6 {
    font-size: 10px;
}

    h6 a {
        color: #222222;
    }


/*-- Lists --*/
ul {
}

    ul li {
        font: 400 14px 'Open Sans', arial, sans-serif;
    }

        ul li a {
            font: 400 14px 'Open Sans', arial, sans-serif;
        }

ol {
}

    ol li {
        font: 400 14px 'Open Sans', arial, sans-serif;
    }

        ol li a {
            font: 400 14px 'Open Sans', arial, sans-serif;
        }

/*-- Paragraph --*/
p strong {
    font-weight: bold;
}

p em {
    font-style: italic;
}

p {
    font: 400 14px 'Open Sans', arial, sans-serif;
    line-height: 26px;
    color: #222222;
}

blockquote {
    font: italic 18px 'Merriweather', arial, sans-serif;
    margin-bottom: 45px;
    line-height: 32px;
    color: #666666;
    background: url("../images/quotes.png") no-repeat 10px 10px;
    padding: 0px 55px;
}

    blockquote p {
        font: italic 16px 'Merriweather', arial, sans-serif;
        line-height: 26px;
        color: #666666;
        margin: 0px;
    }


label {
    font: 400 14px 'Open Sans', arial, sans-serif;
    margin-bottom: 12px;
    color: #222222;
}

.cd-top {
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 10px;
    background: #4b45ad;
    position: fixed;
    bottom: 20px;
    right: 16px;
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    z-index: 10000;
}

    .cd-top.cd-is-visible {
        visibility: visible;
        opacity: 0.5;
    }

    .cd-top i {
        color: #fff;
        font-size: 30px;
        vertical-align: -4px;
    }

    .cd-top.cd-is-visible:hover {
        opacity: 1;
    }

.seaction_margin {
    margin-bottom: 98px;
}

.layer {
    background: rgba(0,0,0,.8);
}


/*------------------------------------------------------------------
    3- Button
-------------------------------------------------------------------*/
.button {
    background: #4b45ad;
    border: 3px solid rgba(0,0,0,.0) !important;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    display: inline-block;
    font: 700 14px 'Open Sans', sans-serif;
    color: #fff;
    padding: 14px 20px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    border-radius: 5px;
}

    .button:hover {
        background: #fff;
        color: #222222;
        border: 3px solid #cccccc !important;
    }

    .button.brdr {
        color: #222222;
        background: none;
        border: 3px solid #cccccc !important;
        padding: 12px 24px;
    }

        .button.brdr:hover {
            border-color: #7da500 !important;
            background: #4b45ad;
            color: #fff;
        }
/*------------------------------------------------------------------
    4- Headings
-------------------------------------------------------------------*/
.icon_bar {
    text-align: center;
    background: url("../images/icon.png") no-repeat center;
    margin-bottom: 30px;
    height: 25px;
}

    .icon_bar:after {
        margin: 0px 35px;
        vertical-align: -3px;
        content: '';
        background: url("../images/line.png") repeat-x center;
        width: 65px;
        height: 4px;
        display: inline-block
    }

    .icon_bar:before {
        margin: 0px 35px;
        vertical-align: -3px;
        content: '';
        background: url("../images/line.png") repeat-x center;
        width: 65px;
        height: 4px;
        display: inline-block
    }

.heading_a {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

    .heading_a span {
        color: #4b45ad;
    }

.heading_small {
    font: italic 14px 'Merriweather', sans-serif;
    color: #666666;
    line-height: 26px;
    margin-top: 30px;
    text-align: center;
}

.heading_wrap {
    margin-bottom: 68px
}


.heading_c {
    font-size: 20px;
    font-weight: 700;
    background: url("../images/line.png") no-repeat left bottom;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

    .heading_c span {
        color:#45ad57;
    }

/*------------------------------------------------------------------
    5- HEADER
-------------------------------------------------------------------*/

.top_bar {
    background: #4b45ad;
    height: 50px;
    line-height: 50px;
}

    .top_bar p {
        color: #fff;
        display: inline-block;
        margin-right: 20px;
    }

        .top_bar p i {
            margin-right: 6px;
        }

    .top_bar .top_btn {
        font: 700 16px 'Open Sans', arial, sans-serif;
        color: #fff;
        line-height: normal;
        background: #6e9100;
        border-bottom: 3px solid #222222;
        margin-right: 40px;
        padding: 14px 30px;
        display: inline-block;
        -ms-transition: all 0s;
        -o-transition: all 0s;
        transition: all 0s;
    }

    .top_bar .social_icons {
        display: inline-block;
    }

        .top_bar .social_icons a {
            width: 30px;
            height: 30px;
            display: inline-block;
            line-height: 26px;
            margin-right: 5px;
            border: 2px solid #fff;
            border-radius: 50%;
            text-align: center;
        }

            .top_bar .social_icons a i {
                color: #fff;
            }

            .top_bar .social_icons a:hover {
                background: #fff;
            }

                .top_bar .social_icons a:hover i {
                    color: #4b45ad;
                }

.header_bottom {
    height: 120px;
    margin-bottom: 3px;
}

    .header_bottom .logo {
        line-height: 120px;
    }

.logo img {
    width: 100%;
    vertical-align: middle;
}

nav ul li {
    display: inline-block;
    margin-left: 25px;
}

    nav ul li a {
        font: 700 14px 'Open Sans', arial, sans-serif;
        display: block;
        color: #222222;
        text-transform: uppercase;
        line-height: 120px;
    }

        nav ul li a.active {
            color: #4b45ad;
        }

.welcom_wrap nav ul li a {
    color: #fff;
}


.cart_info {
    display: inline-block;
    padding-top: 45px;
    margin-right: 40px;
}

    .cart_info a {
        position: relative;
        display: inline-block;
    }

        .cart_info a span {
            background: #eaeaea;
            color: #222222;
            padding: 3px 6px;
            border-radius: 5px;
            position: absolute;
            top: -10px;
            right: -18px;
            display: inline-block;
            line-height: normal;
            font: 600 10px 'Open Sans', arial, sans-serif;
        }



header form {
    position: relative;
    display: inline-block;
}

    header form input[type="text"] {
        outline: none !important;
        visibility: hidden;
        position: absolute;
        left: -200px;
        top: 0px;
        border: 2px solid#4b45ad;
        border-right: 0px;
        height: 38px;
        border-bottom-left-radius: 6px;
        border-top-left-radius: 6px;
        width: 200px;
        padding: 10px;
        font: 400 13px 'Montserrat', arial, sans-serif;
        text-transform: uppercase;
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

    header form input[type="submit"] {
        background: url("../images/search_top.png") no-repeat center 12px #222222;
        width: 38px;
        height: 38px;
        border: 0px;
        border-radius: 0px;
    }

    header form:hover input[type="text"] {
        visibility: visible;
    }

.welcom_wrap {
    position: relative;
}

    .welcom_wrap header {
        position: absolute;
        top: -50px;
        left: 0px;
        width: 100%;
        z-index: 999;
    }

    .welcom_wrap .cart_info {
        padding-top: 39px;
    }

        .welcom_wrap .cart_info a {
            background: #3b3b3b;
            width: 38px;
            height: 38px;
            text-align: center;
            line-height: 39px;
            border-radius: 50%;
        }

            .welcom_wrap .cart_info a img {
                vertical-align: middle;
                width: 20px;
            }

    .welcom_wrap .cart_info {
        padding-top: 39px;
    }

    .welcom_wrap header form {
        vertical-align: middle
    }

        .welcom_wrap header form input[type="submit"] {
            border-radius: 50%;
            background: url("../images/search_top.png") no-repeat center 12px #3b3b3b;
        }


nav ul li ul:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 13px;
    border-bottom: 10px solid #000;
    border-left: 10px solid rgba(255, 255, 255, 0);
    border-right: 10px solid rgba(255, 0, 0, 0.01);
}

nav ul li ul.dropdown-menu {
    z-index: 9999;
    position: absolute;
    width: 199px;
    text-align: left;
    background: #000;
    display: none;
    padding: 0px;
    top: 118px;
    left: 0px;
}

    nav ul li ul.dropdown-menu li:last-child a {
        border: 0px;
    }

    nav ul li ul.dropdown-menu li {
        margin: 0px;
        display: block;
    }

        nav ul li ul.dropdown-menu li a {
            color: #fff !important;
            font-size: 13px;
            text-transform: none;
            padding: 10px 10px;
            text-align: left;
            display: block;
            border-bottom: 1px solid rgba(255, 255, 255, 0.37);
        }

            nav ul li ul.dropdown-menu li a:hover {
                background: #4b45ad;
            }

nav ul li:hover ul.dropdown-menu {
    display: block;
}


.responsive_button {
    display: none;
    background: rgb(23 136 64);
    border-radius: 31px;
    padding: 12px 20px 12px 20px !important;
    width: 98%;
    overflow: hidden;
    margin: 0 auto 10px;
}

    .responsive_button p {
        color: #fff;
        font: 600 13px 'Montserrat', sans-serif;
        display: inline-block;
        float: left;
        line-height: normal;
    }

    .responsive_button button.navbar-toggle {
        margin: 0px;
        padding: 0px;
    }

    .responsive_button .icon-bar {
        background: #fff;
    }

.responsive_nav {
    width: 100%;
    visibility: hidden;
    position: absolute;
    z-index: 999;
    margin-top: -10px;
}

    .responsive_nav.navbar-collapse.collapse.in {
        visibility: visible;
        display: block !important;
    }

    .responsive_nav ul {
        text-align: left;
        margin: 0 auto;
        border-bottom-left-radius: 21px;
        border-bottom-right-radius: 21px;
        z-index: 9999999;
        width: 98%;
        float: none;
        overflow: hidden;
        background: rgb(0, 0, 0);
    }

        .responsive_nav ul li {
            float: none;
        }

            .responsive_nav ul li a {
                color: #fff;
                display: block;
                padding: 10px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.247059);
                font: 600 12px Montserrat, sans-serif;
            }

                .responsive_nav ul li a:hover {
                    background: rgb(75 69 173);
                }


/*------------------------------------------------------------------
    6- Slider
-------------------------------------------------------------------*/
.main_slider {
    margin-top: 4px;
    width: 100% !important;
}

.welcom_wrap .main_slider {
    margin-top: 50px;
}

.slide_content {
    position: absolute;
    top: 0px;
    left: 0px;
    text-align: center;
    width: 100%;
    padding-top: 175px;
    height: 100%;
}

    .slide_content h3 {
        display: inline-block;
        font: italic 18px 'Merriweather', sans-serif;
        color: #fff;
        margin-bottom: 10px;
    }

    .slide_content a.button {
        margin-right: 10px;
    }

    .slide_content h1 {
        margin-bottom: 50px;
        font-size: 48px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        line-height: 52px;
    }

    .slide_content p {
        font-size: 19px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 50px;
    }

    .slide_content.text_left {
        text-align: left;
        padding-top: 195px;
    }

.main_slider .owl-prev, .main_slider .owl-next {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    opacity: 0.7;
    position: absolute;
    font-size: 0px;
    top: 50%;
}

.main_slider .owl-prev {
    background: url(../images/left_arrow.png) no-repeat center center #222222;
    left: 65px !important;
}

.main_slider .owl-next {
    background: url(../images/right_arrow.png) no-repeat center center #222222;
    right: 65px !important;
}

    .main_slider .owl-prev:hover, .main_slider .owl-next:hover {
        opacity: 1;
    }

.owl-dots {
    display: none;
}

.welcom_wrap .main_slider .owl-prev {
    left: 25px !important;
}

.welcom_wrap .main_slider .owl-next {
    right: 25px !important;
}

.welcom_wrap .main_slider .slide_content h1 {
    margin-bottom: 5px;
}

.welcom_wrap .main_slider .slide_content p {
    margin-bottom: 45px;
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
}

/*------------------------------------------------------------------
    7- About Section
-------------------------------------------------------------------*/
.upper {
    position: relative;
    z-index: 999
}

.about {
    text-align: center;
}

.icon_box {
    background: #f8f8f8;
    padding: 25px;
    text-align: center;
    margin-bottom: 17px;
}

    .icon_box i {
        margin-bottom: 20px;
        height: 77px;
        width: 77px;
        background: #4b45ad;
        color: #fff;
        font-size: 42px;
        line-height: 77px;
        border-radius: 50%;
    }

    .icon_box h4 {
        font-size: 14px;
        font-weight: bold;
    }

.about_content {
    padding-top: 20px;
}

    .about_content p {
        margin-bottom: 37px;
    }

.about_two {
    text-align: left;
}

    .about_two figure {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .about_two img {
        width: 100%;
        height: 100%;
    }

    .about_two figure a {
        position: absolute;
        width: 40px;
        height: 40px;
        top: 50%;
        left: 50%;
        margin: -20px 0px 0px -20px;
        border: 1px solid #fff;
        text-align: center;
        display: block;
        line-height: 40px;
        border-radius: 50%;
    }

        .about_two figure a i {
            font-size: 15px;
            vertical-align: 1px;
            color: #fff;
        }

    .about_two h6 {
        font: italic 14px 'Merriweather', sans-serif;
        color: #666666;
        margin-bottom: 24px;
    }

    .about_two h3 {
        font-size: 24px;
        font-weight: bold;
        line-height: 34px;
        margin-bottom: 35px;
    }

    .about_two p {
        margin-bottom: 35px;
    }


/*------------------------------------------------------------------
    8- Services
-------------------------------------------------------------------*/

.services_wrap {
    background: url("../images/services_bg.png") repeat;
    padding: 98px 0 63px;
}

.service {
    position: relative;
    margin-bottom: 35px;
    cursor: pointer;
}

    .service > img {
        width: 100%;
        height: 233px;
    }

    .service .imgs {
        margin-bottom: 25px;
    }

        .service .imgs img {
            -ms-transition: all .8s;
            -o-transition: all .8s;
            transition: all .8s;
        }

    .service:hover .imgs img {
        transform: rotateY(180deg);
    }

.service_content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 99%;
    background: #fff;
    padding: 45px 0px;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.service .icon {
    transform-style: preserve-3d;
    transition: all 1.0s linear;
}

.service:hover .icon {
    transform: rotateY(180deg);
}

.service .icon .icon_one {
    position: absolute;
    backface-visibility: hidden;
}

    .service .icon .icon_one.icon_two {
        display: block;
        transform: rotateY(180deg);
        box-sizing: border-box;
    }


.service_content h3 {
    color: #222222;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service_content p {
    margin-bottom: 20px;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.service_content a {
    color: #4b45ad;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.service:hover .service_content {
    background: rgba(0,0,0,.7);
}

    .service:hover .service_content h3, .service:hover .service_content p {
        color: #fff;
    }

.services_two {
    text-align: center;
    background: #fff;
    padding: 25px 42px;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    border-bottom: 3px solid #fff;
}

    .services_two i {
        color: #222222;
        font-size: 65px;
        margin-bottom: 25px;
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

    .services_two h3 {
        color: #222222;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .services_two a {
        color: #4b45ad;
        font-weight: bold;
        font-size: 12px;
        text-transform: uppercase;
    }

    .services_two:hover {
        border-color: #1158b1;
        box-shadow: 0px 0px 13px -5px #000;
    }

.services_wrap_two {
    background: none;
    padding: 0px;
}

    .services_wrap_two .service {
        background: #f8f8f8;
        padding: 30px 40px;
    }

        .services_wrap_two .service p {
            margin-bottom: 30px;
        }

.services_news .news {
    margin-bottom: 55px;
}

    .services_news .news h3 {
        margin-bottom: 15px;
    }

    .services_news .news .content > a {
        color: #222;
    }

        .services_news .news .content > a:hover {
            color: #fff;
        }

/*------------------------------------------------------------------
    9- Projects
-------------------------------------------------------------------*/

.my-selector {
    text-align: center;
    margin-bottom: 60px;
}

    .my-selector a {
        font-size: 14px;
        font-weight: 600;
        color: #666666;
        display: inline-block;
        padding-bottom: 6px;
        margin: 0px 15px;
    }

        .my-selector a:hover, .my-selector a.selected {
            color: #222222;
            border-bottom: 3px solid#4b45ad;
        }

.item_inner.item_inner {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: solid;
    color: #4b45ad;
}

.item_inner img {
    width: 100%;
}

.item_inner .overlay {
    visibility: hidden;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    background: rgba(0,0,0,.7);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 99%;
    text-align: center;
    line-height: 400px;
}

.project_two .item_inner .overlay {
    line-height: 300px;
}

.item_inner .overlay > a {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -10px;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

    .item_inner .overlay > a i {
        color: #fff;
        font-size: 21px;
    }

.item_inner .overlay h5 a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.item_inner:hover .overlay {
    visibility: visible;
}

    .item_inner:hover .overlay > a {
        top: 40%;
    }


.project_two ul li.item {
    width: 20%;
    float: left;
}

    .project_two ul li.item .item_inner {
        margin-bottom: -4px;
    }

/*------------------------------------------------------------------
    10- Quote
-------------------------------------------------------------------*/

.qoute_wrap {
    background: fixed url(../images/qoute_bg.png) no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
}

    .qoute_wrap .layer {
        padding: 100px 0px;
    }

.qoute_wrap_two {
    background: url(../images/qoute_bg2.png) no-repeat right 123%;
    background-size: 293px;
    margin: 0px;
    padding-bottom: 98px;
}

    .qoute_wrap_two.bg_three {
        background: url(../images/qoute_bg3.png) no-repeat right 100%;
        background-size: 400px;
        margin: 0px;
        padding-bottom: 98px;
    }

.qoute {
    background: rgba(0, 0, 0, 0.6);
    padding: 55px;
}

    .qoute .heading_a {
        color: #fff;
    }


input.form-control {
    outline: none;
    box-shadow: none !important;
    border: 1px solid #cccccc;
    background: none;
    border-radius: 2px;
    font: 14px 'open sans', sans-serif;
    margin-bottom: 20px;
    color: #222;
}

textarea.form-control {
    outline: none;
    box-shadow: none !important;
    resize: none;
    border: 1px solid #cccccc;
    background: none;
    border-radius: 2px;
    font: 14px 'open sans', sans-serif;
    margin-bottom: 20px;
    color: #222;
}

select.form-control {
    background: url("../images/bottom_arrow.png") no-repeat 95% center;
    outline: none;
    box-shadow: none !important;
    -webkit-appearance: initial;
    border: 1px solid #cccccc;
    border-radius: 2px;
    font: 14px 'open sans', sans-serif;
    margin-bottom: 20px;
    color: #222;
}

input.button {
    border: 0px;
}

.qoute .form-control {
    color: #fff;
}


.qoute p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

    .qoute p strong {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin-top: 15px;
    }


.qoute_two {
    box-shadow: 0px 0px 16px -8px #000;
    padding: 40px;
    border-bottom: 3px solid#4b45ad;
    background: #fff;
}

.quote_content {
    background: url("../images/conten_bg.png") no-repeat;
}

    .quote_content .inner {
        background: rgba(77, 77, 77, 0.74);
        padding: 148px 40px 75px;
    }

    .quote_content .heading_a, .quote_content .heading_small {
        color: #fff;
    }

/*------------------------------------------------------------------
    11- Testimonial
-------------------------------------------------------------------*/

.testi_img {
    margin-top: 45px;
    margin-bottom: -4px;
}

.about_imge_t {
    margin-top: 45px;
    margin-bottom: -4px;
    background: url(../images/custom/about_img2.png) no-repeat;
    background-size: 132%;
    background-position: -100px bottom;
    width: 100%;
    height: 703px;
}

.testi_img img {
    width: 100%;
}


.testi_slider {
    min-height: 280px;
}

.testimonials_wrap a i {
    color: #cccccc;
    margin: 0px 20px 10px 0;
    font-size: 20px;
}

.testi_slider .slide .user_botom {
    background: url("../images/quote.png") no-repeat center left;
    padding-left: 50px;
    margin-top: 50px;
}

    .testi_slider .slide .user_botom img {
        vertical-align: middle;
        margin-right: 15px;
    }

    .testi_slider .slide .user_botom span {
        vertical-align: middle;
        font-size: 16px;
        font-weight: bold;
        color: #222;
        display: inline-block;
    }

        .testi_slider .slide .user_botom span cite {
            display: block;
            color: #666666;
            font-weight: 600;
            margin-top: 5px;
            font-size: 12px;
            text-transform: uppercase
        }

.testi_slider .slide p {
    font: italic 18px 'Merriweather', sans-serif;
    color: #666666;
    line-height: 32px;
}

.testimonial_two {
    background: url("../images/services_bg.png") repeat;
    padding: 95px 0px;
}

.testimonial_slide .dets {
    background: #fff;
    padding: 35px;
    position: relative;
    box-shadow: 0px 0px 9px -4px #000;
}

    .testimonial_slide .dets:after {
        content: '';
        border-right: 0px solid #000;
        border-top: 31px solid white;
        border-left: 22px solid rgba(0, 0, 255, 0);
        border-bottom: 27px solid rgba(204, 204, 204, 0);
        position: absolute;
        bottom: -58px;
        right: 24px;
    }

.testimonial_slide .usr_detail img {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    vertical-align: middle;
}

.testimonial_slide .usr_detail span {
    color: #4b45ad;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}

.testimonial_slide .usr_detail cite {
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial_slide .dets p {
    font: italic 16px 'Merriweather', sans-serif;
    line-height: 32px;
    margin-bottom: 34px;
}

.testimonial_slide {
    min-height: 365px !important;
}

.pagerss {
    text-align: center;
    z-index: 999;
}

    .pagerss a {
        font-size: 0px;
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 50%;
        display: inline-block;
        margin: 0px 2px;
    }

        .pagerss a.activeSlide {
            background: #4b45ad;
        }


.testim_slides .usr_detail {
    margin-bottom: 25px;
}

    .testim_slides .usr_detail img {
        width: 60px;
        height: 60px;
        display: inline-block;
        margin-right: 10px;
        border-radius: 50%;
        vertical-align: middle;
    }

    .testim_slides .usr_detail span {
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        display: inline-block;
        vertical-align: middle;
    }

    .testim_slides .usr_detail cite {
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

.testim_slides p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 34px;
    color: #fff;
}

.pagersss {
    text-align: center;
    z-index: 999;
}

    .pagersss a {
        font-size: 0px;
        width: 10px;
        height: 10px;
        border: 1px solid #fff;
        border-radius: 50%;
        display: inline-block;
        margin: 0px 2px;
    }

        .pagersss a.activeSlide {
            border: 1px solid #fff;
            background: #fff;
        }




/*------------------------------------------------------------------
    12- Tools
-------------------------------------------------------------------*/

.tools_wrap {
    background: url("../images/services_bg.png") repeat;
    padding: 98px 0 63px;
    text-align: center;
}

.tool figure {
    background: #fff;
    width: 100%;
    height: 255px;
    padding: 25px;
    margin-bottom: 40px;
}

    .tool figure img {
        width: 100%;
        height: 100%;
    }

.tool .detail h5 {
    margin-bottom: 15px;
}

    .tool .detail h5 a {
        color: #222;
        font-weight: bold;
        font-size: 18px;
    }

.tool .detail span {
    margin-bottom: 15px;
    display: block;
    color: #4b45ad;
    font-weight: 600;
    font-size: 18px;
}

.tool .detail > a {
    background: #4b45ad;
    padding: 10px 0px;
    display: block;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
}

.tools_wrap_two {
    padding: 0px;
    background: 0px;
}

    .tools_wrap_two .tool {
        margin-bottom: 40px;
    }

        .tools_wrap_two .tool figure {
            border: 2px solid #f9f9f9;
            border-radius: 5px;
        }



/*------------------------------------------------------------------
    13- News
-------------------------------------------------------------------*/

.news figure {
    width: 100%;
    position: relative;
    margin-bottom: 45px;
}

    .news figure img {
        width: 100%;
        height: 100%;
    }

    .news figure .date {
        font: 900 24px 'Open Sans', arial, sans-serif;
        width: 75px;
        height: 75px;
        border-radius: 50%;
        padding-top: 12px;
        position: absolute;
        top: 25px;
        left: 25px;
        background: #eeeeee;
        color: #222;
        text-align: center;
    }

        .news figure .date cite {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-top: -5px
        }

.news .content h3 {
    margin-bottom: 30px;
}

    .news .content h3 a {
        color: #222222;
        font-size: 18px;
        font-weight: bold;
        line-height: 26px;
    }

.news .content h5 {
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.news .content p {
    margin-bottom: 25px;
}

.news .content > a {
    color: #4b45ad;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.news_wrap_two {
    background: url("../images/services_bg.png") repeat;
    padding: 98px 0 63px;
}

.news_two figure {
    height: 260px;
}

    .news_two figure img {
        width: 100%;
        height: 100%;
    }

.news_two .content h3 {
    margin-bottom: 30px;
}

    .news_two .content h3 a {
        color: #222222;
        font-size: 18px;
        font-weight: bold;
        line-height: 26px;
    }

.news_two .content h5 {
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.news_two .content p {
    margin-bottom: 14px;
}

.news_two .content > a {
    color: #4b45ad;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}


/*------------------------------------------------------------------
    14- Partners
-------------------------------------------------------------------*/

.partners_wrap a {
    border: 1px solid #eeeeee;
    display: block;
    height: 182px;
    line-height: 182px;
    text-align: center;
}

    .partners_wrap a img {
        vertical-align: middle;
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

    .partners_wrap a:hover img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

/*------------------------------------------------------------------
    15- Call To Action
-------------------------------------------------------------------*/

.call_action {
    background: url("../images/action_bg.png") no-repeat;
    background-size: cover;
    text-align: center;
}

    .call_action .action_layer {
        padding: 63px 0;
        background: rgba(125, 165, 0, 0.9);
        )
    }

    .call_action h4 {
        font-size: 36px;
        font-weight: 900;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    .call_action p {
        color: #fff;
        line-height: 30px;
        font-size: 18px;
        margin-bottom: 30px;
    }

    .call_action .button {
        color: #fff !important;
        border: 2px solid #fff;
        padding: 10px 20px;
        margin-top: 8px;
        display: inline-block;
    }

.action_two h5 {
    font: italic bold 30px 'Merriweather', sans-serif;
    color: #fff;
    margin-bottom: 30px;
}

.action_two .num span {
    display: inline-block;
    background: #5c7900;
    padding: 10px 30px;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.action_two p {
    font-size: 14px;
}

/*------------------------------------------------------------------
    16- Intro
-------------------------------------------------------------------*/

.intro_detail {
    box-shadow: 0px 0px 16px -8px #000;
    padding: 60px 40px;
    border-bottom: 3px solid#4b45ad;
    background: #fff;
    margin-top: -114px;
    position: relative;
    z-index: 99999;
}

.intro h5 {
    font-size: 18px;
    text-transform: uppercase;
}

.intro h3 {
    font-size: 36px;
    font-weight: 800;
    color: #4b45ad;
    text-transform: uppercase;
    background: url("../images/line.png") left bottom no-repeat;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.intro h6 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 35px;
}

.intro_detail p {
    margin-bottom: 30px;
}

.intro_detail span {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase;
}

    .intro_detail span cite {
        display: block;
        font-size: 12px;
    }

.intro img {
    margin-bottom: 40px;
    width: 100%;
    height: 222px;
}

.intro_box figure {
    width: 100%;
    height: 205px;
    margin-bottom: 40px;
}

    .intro_box figure img {
        width: 100%;
        height: 100%;
    }

.intro_box h3 {
    background: url("../images/line.png") no-repeat left bottom;
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}


/*------------------------------------------------------------------
    17- Page Title
-------------------------------------------------------------------*/

.page_title {
    background: url(../images/title_bg.png) no-repeat;
    position: relative;
    background-size: 100% 100%;
    margin-bottom: 94px;
    text-align: center;
}

    .page_title .layer {
        position: static;
        padding: 96px 0px;
    }

    .page_title h1 {
        font-size: 48px;
        color: #fff;
        font-weight: 900;
        display: inline-block;
        margin-bottom: 13px;
        text-transform: uppercase;
    }

.beadcrumb {
    font: 14px 'Open Sans', sans-serif;
    color: #fff;
}

    .beadcrumb a {
        font-size: 14px;
        color: #fff;
    }


/*------------------------------------------------------------------
    18- Projects Detail
-------------------------------------------------------------------*/

.projct-img {
    margin-bottom: 28px;
}

    .projct-img img {
        width: 100%;
    }

.project_slider_wrp {
    height: 574px
}

    .project_slider_wrp div {
        width: 100%;
    }

    .project_slider_wrp img {
        width: 100%;
    }

.project_slider_wrp {
    position: relative;
}

    .project_slider_wrp a i {
        font-size: 25px;
    }

    .project_slider_wrp .lft, .project_slider_wrp .rht {
        background: #b7b7b7;
        width: 65px;
        height: 65px;
        line-height: 65px;
        text-align: center;
        position: absolute;
        top: 50%;
        margin-top: -33px;
        z-index: 9999;
        border-radius: 50%;
    }

    .project_slider_wrp .lft {
        left: 30px;
    }

    .project_slider_wrp .rht {
        right: 30px;
    }


.about_poject .right ul {
    background: url("../images/services_bg.png") repeat;
    padding: 50px;
}

    .about_poject .right ul li {
        font-weight: bold;
        margin-bottom: 20px;
        color: #222222;
    }

        .about_poject .right ul li span {
            font-weight: 600;
            margin-left: 20px;
            display: inline-block;
            color: #666666;
        }

/*------------------------------------------------------------------
    19- Skills
-------------------------------------------------------------------*/

.skill_wrap p {
    margin-bottom: 40px;
}


.progress {
    height: 5px;
    background: #f4f4f4;
    overflow: visible
}

    .progress .bar {
        background: #4b45ad;
        position: relative;
        height: 5px;
        transition-duration: 5s;
    }

.progress_bar_wrap label {
    font-weight: bold;
}

.skill_img figure {
    width: 100%;
    height: 335px;
}

    .skill_img figure img {
        width: 100%;
        height: 100%;
    }



/*------------------------------------------------------------------
    20- Features
-------------------------------------------------------------------*/

.features .heading_a {
    text-align: left;
}

.icon_box.box_two {
    background: none;
    padding: 0px;
    text-align: left;
    margin-bottom: 50px;
}

.icon_box i {
    background: #f8f8f8;
    color: #4b45ad;
    text-align: center;
}

.icon_box img {
    margin-bottom: 5px;
}

.icon_box h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 18px;
}


.features_two {
    text-align: center;
    background: fixed url(../images/features_bg.png) no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    width: 100%;
    position: relative;
}

.features_two_inner {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    padding: 60px 0;
}

.features_three .icon_box i {
    background: #4b45ad;
    color: #fff;
}

.features_three .heading_wrap {
    margin: 0px;
    padding-top: 80px;
}

.features_three .heading_a, .features_three .heading_small {
    color: #fff;
}

/*------------------------------------------------------------------
    21- statistics
-------------------------------------------------------------------*/

.statistics {
    text-align: center;
    background: fixed url(../images/counter_bg.png) no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    width: 100%;
    position: relative;
}

.statistics_inner {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    padding: 95px 0;
}

.statistics ul li {
    text-align: left;
}

    .statistics ul li i {
        width: 80px;
        height: 80px;
        text-align: center;
        line-height: 80px;
        color: #fff;
        font-size: 30px;
        border: 1px dotted#4b45ad;
    }

    .statistics ul li a {
        font: 700 48px 'Open Sans', arial, sans-serif;
        display: block;
        margin-bottom: 0px;
        color: #fff;
        margin-left: 5px;
        line-height: 50px;
    }

    .statistics ul li small {
        font: 16px 'open sans', arial, sans-serif;
        color: #fff;
        margin-left: 8px;
    }

.statistics2 .heading_d {
    margin-bottom: 30px;
}

.statistics2 p {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 35px;
}

.statistics2 span {
    font: 700 11px 'Montserrat', arial, sans-serif;
    color: #fff;
    display: block;
    text-transform: uppercase;
}


/*------------------------------------------------------------------
    22- Team
-------------------------------------------------------------------*/

.team_wrap {
    background: url("../images/services_bg.png") repeat;
    padding: 98px 0 63px;
}

.team figure {
    width: 100%;
    height: 300px;
}

    .team figure img {
        width: 100%;
        height: 100%;
    }

.team figure {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    cursor: pointer;
}

    .team figure .social_overlay {
        padding: 10px 0px;
        background: #222;
        position: absolute;
        top: -60px;
        text-align: center;
        left: 0px;
        width: 100%;
        margin-top: -28px;
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

        .team figure .social_overlay a {
            width: 35px;
            height: 35px;
            margin: 0px 3px;
            line-height: 35px;
            text-align: center;
            background: #fff;
            display: inline-block;
            color: #222;
            border-radius: 50%;
        }

            .team figure .social_overlay a:hover {
                background: #4b45ad;
                color: #fff;
            }

.team:hover figure .social_overlay {
    top: 50%;
}


.team h5 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: bold;
}

.team span {
    color: #666666;
    font-size: 12px;
    text-transform: uppercase;
}

.team_wrap_two {
    background: none;
    padding: 0px;
}


/*------------------------------------------------------------------
    23- Mobile App
-------------------------------------------------------------------*/

.mobile_app {
    background: url("../images/services_bg.png") repeat;
    padding: 77px 0 0px;
}

    .mobile_app h5 {
        font-size: 24px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

.app_detail p {
    margin-bottom: 43px;
}

.app_detail a {
    margin-right: 10px;
}

.app_detail {
    padding: 0px 60px 0px 30px;
}


/*------------------------------------------------------------------
    24- Blog
-------------------------------------------------------------------*/

article.news {
    margin-bottom: 50px;
}

    article.news .content {
        border: 1px solid #f1f1f1;
        border-top: 0px;
        padding: 50px;
    }

    article.news figure {
        width: 100%;
        height: 400px;
        margin: 0px;
    }

        article.news figure img {
            width: 100%;
            height: 100%;
        }

/*------------------------------------------------------------------
    25- Single
-------------------------------------------------------------------*/

article.single .cate div {
    font: 700 12px 'open sans', arial, sans-serif;
    line-height: 26px;
    color: #666666;
    text-transform: uppercase;
}

.comment_form input.form-control {
    height: 45px;
    margin-bottom: 0px
}

.comment_form textarea {
    height: 150px;
}

.comment_form .heading_c {
    text-transform: none;
}
/*------------------------------------------------------------------
    26- Sidebar
-------------------------------------------------------------------*/

.side_widget {
    margin-bottom: 55px;
}

    .side_widget .heading_c {
        text-transform: none;
    }

    .side_widget .widget_title {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .side_widget form {
        position: relative;
        border: 1px solid #dddddd;
    }

        .side_widget form input[type='text'] {
            color: #999999;
            text-transform: uppercase;
            width: 77%;
            height: 44px;
            padding: 0px 20px 0px 20px;
            border: 0px;
            font: 400 12px 'Montserrat', arial, sans-serif;
        }

        .side_widget form button {
            background: #4b45ad;
            border: 0px;
            height: 44px;
            width: 54.5px;
            color: #fff;
            font-size: 20px;
            margin: 0px;
            line-height: 0px;
            vertical-align: middle;
        }

    .side_widget ul li {
        margin-bottom: 15px;
    }

    .side_widget > ul > li a {
        color: #333333;
        display: block;
        background: url("../images/side_icon.png") no-repeat left center;
        padding-left: 20px;
        display: block;
    }

        .side_widget > ul > li a:hover i {
            color: #d99300;
        }

.recent_post ul li img {
    width: 100%;
    height: 80px;
}

.recent_post ul li p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 20px;
    color: #222
}

.recent_post ul li span {
    font: 700 12px 'Open Sans', arial, sans-serif;
    color: #1158b1;
    text-transform: uppercase;
}

    .recent_post ul li span i {
        color: #1158b1;
        margin-right: 5px;
    }

.insta img {
    width: 100%;
    height: 116px;
    margin-bottom: 30px;
}



.sidebar_widget {
    margin-bottom: 60px;
}

    .sidebar_widget h4 {
        font-size: 20px;
        font-weight: bold;
        background: url("../images/line.png") no-repeat left bottom;
        padding-bottom: 10px;
        margin-bottom: 25px;
    }


    .sidebar_widget ul li {
        background: url("../images/services_bg.png") repeat;
        margin-bottom: 10px;
    }

        .sidebar_widget ul li:hover {
            background: #4b45ad;
        }

        .sidebar_widget ul li a {
            display: block;
            padding: 10px 10px 10px 30px;
            background: url("../images/fot_icon.png") no-repeat 10px center;
        }

            .sidebar_widget ul li a:hover {
                background: url("../images/fot_icon_h.png") no-repeat 10px center;
            }

        .sidebar_widget ul li:hover a {
            color: #fff;
        }

    .sidebar_widget .downloads {
        background: #4b45ad;
        padding: 20px;
    }

        .sidebar_widget .downloads a {
            display: block;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 10px;
            margin-bottom: 10px;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
        }

            .sidebar_widget .downloads a:last-child {
                border: 0px;
                padding-bottom: 0px;
                margin-bottom: 0px;
            }

        .sidebar_widget .downloads i {
            margin-right: 10px;
        }

    .sidebar_widget blockquote {
        background: none;
        padding: 0px;
        font-size: 18px;
    }

    .sidebar_widget span {
        font-size: 18px;
        font-weight: bold;
        color: #222222;
        background: url("../images/quote.png") no-repeat left center;
        padding-left: 30px;
        background-size: 20px;
    }

        .sidebar_widget span cite {
            font-size: 12px;
            display: block;
            color: #666666;
            text-transform: uppercase;
            font-weight: normal;
            padding-left: 30px;
        }

    .sidebar_widget address {
        background: #222222;
        padding: 50px 30px;
        text-align: center;
    }

        .sidebar_widget address span {
            font-size: 18px;
            font-weight: 300;
            color: #cccccc;
            margin-bottom: 20px;
            display: inline-block;
        }

        .sidebar_widget address strong {
            font-size: 16px;
            font-weight: bold;
            display: block;
            color: #fff;
        }

/*------------------------------------------------------------------
    27- FAQ
-------------------------------------------------------------------*/

.accordion h3 {
    background: url("../images/plus.png") no-repeat 96% center #f8f8f8;
    color: #222222;
    font-size: 16px;
    font-weight: bold;
    padding: 18px 20px;
    margin-bottom: 15px;
    outline: 0px;
    cursor: pointer;
}

    .accordion h3 + div {
        padding: 15px 30px 30px;
    }

        .accordion h3 + div p {
            color: #222222;
        }

    .accordion h3.ui-state-active {
        background: url("../images/minus.png") no-repeat 96% center#4b45ad;
        color: #fff;
    }



/*------------------------------------------------------------------
    28- Error
-------------------------------------------------------------------*/

.error_page {
    text-align: center;
    margin-bottom: 100px;
}

    .error_page img {
        margin-bottom: 50px;
    }


/*------------------------------------------------------------------
    29- Contact
-------------------------------------------------------------------*/

.contact_detail h3 {
    margin-bottom: 30px;
}

.contact_form p#error {
    background: #ef0707;
    font-weight: bold;
    color: #fff;
    padding: 10px;
}

.contact_form p#success {
    background: #26790c;
    font-weight: bold;
    color: #fff;
    padding: 10px;
}

.contact_map {
    margin-bottom: 70px;
}

    .contact_map iframe {
        width: 100%;
        height: 360px;
        border: 0px;
    }

.contact_address address {
    padding: 40px;
    background: url("../images/services_bg.png") repeat;
    margin-bottom: 20px;
}

    .contact_address address p {
        color: #222222;
    }

        .contact_address address p.hed {
            color: #222222;
            font-weight: 700;
            text-transform: uppercase;
        }

.contact_address p i {
    color: #4b45ad;
    margin-right: 15px;
    font-size: 15px;
}

.contact_address > p {
    margin-bottom: 45px;
}


.contact_form p {
    margin-bottom: 35px;
}

.contact_form .form-control {
    height: 43px;
}

.contact_form select.form-control {
    background: url("../images/bottom_arrow2.png") no-repeat 97% center;
}

.contact_form textarea.form-control {
    height: 200px;
}

.contact_form input.button {
    border: 3px solid rgba(0,0,0,.0) !important;
}

.contact_form .button:hover {
    border: 3px solid #cccccc !important;
}

/*------------------------------------------------------------------
    30- Services Details
-------------------------------------------------------------------*/

.serv_slider {
    width: 100%;
    height: 420px;
    position: relative;
    margin-bottom: 50px;
}

    .serv_slider .serv_slide {
        width: 100%;
        height: 420px;
    }

        .serv_slider .serv_slide img {
            width: 100%;
            height: 100%;
        }

.pagers {
    position: absolute;
    width: 100%;
    bottom: 50px;
    left: 0px;
    text-align: center;
    z-index: 999;
}

    .pagers a {
        font-size: 0px;
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 50%;
        display: inline-block;
        margin: 0px 2px;
    }

        .pagers a.activeSlide {
            background: #4b45ad;
        }


.right_detail p {
    margin-bottom: 28px;
}

.right_detail h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 28px
}

    .right_detail h3 span {
        color: #4b45ad;
    }

.right_detail .icon_box {
    margin-bottom: 28px;
}

    .right_detail .icon_box h4 {
        font-size: 13px;
    }

.right_detail .heading_c {
    margin-bottom: 28px;
    text-transform: none;
}

.projects figure {
    width: 100%;
    height: 196px;
    margin-bottom: 24px;
}

    .projects figure img {
        width: 100%;
        height: 100%;
    }

.projects h6 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
}

.projects ul {
    margin-bottom: 25px;
}

.projects li {
    font-size: 14px;
    font-weight: normal;
    color: #666666;
    margin-bottom: 15px;
}

    .projects li i {
        margin-right: 10px;
    }

.projects > a {
    font-size: 16px;
    font-weight: bold;
    color: #4b45ad;
    text-transform: uppercase;
}

.services_details {
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 98px;
    margin-bottom: 98px;
}



/*------------------------------------------------------------------
    31- Footer
-------------------------------------------------------------------*/

.footer_bottom {
    background: url("../images/footer_bg.png") no-repeat;
    background-size: 100% 100%;
}

.footer_inner {
    background: rgba(0, 0, 0, 0.88);
    padding: 97px 0;
}

.footer_widget h5 {
    color: #fff;
    font-size: 18px;
    background: url("../images/fot_line.png") no-repeat left bottom;
    padding-bottom: 20px;
    font-weight: bold;
    margin-bottom: 37px;
    text-transform: uppercase;
}

.footer_widget a img {
    margin-bottom: 30px;
}

.footer_widget p {
    color: #cccccc;
}

.footer_widget hr {
    width: 100px;
    height: 5px;
    display: block;
    border: 0px;
    background: url("../images/fot_line.png") no-repeat;
}

.footer_widget p span {
    color: #cccccc;
    font-weight: bold;
    margin-bottom: 18px;
    display: block;
}

.footer_widget p i {
    color: #789f01;
    margin-right: 10px;
    font-size: 15px;
}

.news_letter {
    margin-top: 40px;
}

    .news_letter form {
        position: relative;
    }

    .news_letter input[type="text"] {
        padding: 10px;
        display: block;
        width: 100%;
        border: 1px solid #cccccc;
        background: none;
        border-radius: 2px;
        font: 14px 'open sans', sans-serif;
        margin-bottom: 20px;
        color: #fff;
    }

    .news_letter input[type="submit"] {
        width: 100%;
    }

.footer_widget address {
    margin-bottom: 30px;
}

.footer_widget ul li {
    margin-bottom: 10px;
}

    .footer_widget ul li a {
        color: #cccccc;
        padding-left: 25px;
        background: url("../images/fot_icon.png") no-repeat left center;
    }

        .footer_widget ul li a:hover {
            color: #4b45ad;
        }

footer {
    background: #000000;
    height: 80px;
    line-height: 80px;
}

    footer p {
        color: #cccccc;
        line-height: 80px;
    }

.social_icon a {
    color: #fff;
    background: #444444;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    margin-left: 5px;
}

    .social_icon a:hover {
        background: #4b45ad;
        color: #000;
    }



/****************************************************************************
    32- Isotops ON Portfolio Section
****************************************************************************/
/**** Isotope Filtering ****/

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

    .isotope .isotope-item {
        -webkit-transition-property: -webkit-transform, opacity;
        -moz-transition-property: -moz-transform, opacity;
        -ms-transition-property: -ms-transform, opacity;
        -o-transition-property: -o-transform, opacity;
        transition-property: transform, opacity;
    }

        /**** disabling Isotope CSS3 transitions ****/

        .isotope.no-transition,
        .isotope.no-transition .isotope-item,
        .isotope .isotope-item.no-transition {
            -webkit-transition-duration: 0s;
            -moz-transition-duration: 0s;
            -ms-transition-duration: 0s;
            -o-transition-duration: 0s;
            transition-duration: 0s;
        }


/*------------------------------------------------------------------
    33- Hover Effects
-------------------------------------------------------------------*/

.tool figure {
    overflow: hidden;
}

    .tool figure img {
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

.tool:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
}

.news figure {
    overflow: hidden;
}

    .news figure img {
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

.news:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
}

.news_two figure {
    overflow: hidden;
}

    .news_two figure img {
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

.news_two:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
}

.projects figure {
    overflow: hidden;
}

    .projects figure img {
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

.projects:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
}

.intro_box figure {
    overflow: hidden;
}

    .intro_box figure img {
        -ms-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }

.intro_box .animated:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
}

.icon_box img {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.icon_box:hover img {
    color: #fff;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
