/*  ====================================================
CSS Style for HTML Template
Author: Wpsenior 
Envato Profile: https://themeforest.net/user/wpsenior
======================================================== */
/*  Table of Contents
========================================================
1. GOOGLE FONTS
2. GENERAL
3. BUTTONS
4. HEADERS
5. HOME INTRO
6. SECTION TITLES
7. ICON BOXES
8. SKILLS
9. COUNTER
10.PROJECTS SECTION (PORTFOLIO)
11.TEAM
12.PRICES
13.BLOG
14.TESTIMONIALS CLIENTS SAY
15.CONTACT US
16.FOOTER
/*  ----------------------------------------------------
1. IMPORT GOOGLE FONTS
-------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Raleway:100,200,400,500,600|Roboto+Condensed:400,300);
/*  ----------------------------------------------------
2. GENERAL
-------------------------------------------------------- */

body {
    color: #777;
    height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Raleway", sans-serif;
    background-color: #FFFFFF;
    min-height: 2000px;
}
::-moz-selection {
    background: #0195ec;
    color: #FFF;
    text-shadow: none;
}
::selection {
    background: #0195ec;
    color: #FFF;
    text-shadow: none;
}
li {
    list-style: none;
}
a {
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
a:hover {
    color: #0195ec;
    text-decoration: none !important;
    outline: none !important;
}
a:active,
a:focus {
    outline: none !important;
    text-decoration: none !important;
    color: #0174ba;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 25px;
    color: #3c3c3c;
    font-family: "Raleway", sans-serif;
    margin-bottom: 24px;
    margin-top: 0;
    padding: 0;
}
.bg_gray {
    background-color: #f8f8f8;
}
.bg_light {
    background-color: #FFFFFF;
}
h1 {
    font-size: 42px;
    font-weight: 300;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 18px;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 13px;
    font-weight: 400;
}
h6 {
    font-size: 12px;
    font-weight: 700;
}
p {
    font-size: 14px;
    margin: 0 0 25px 0;
    color: #161615;
    line-height: 25px;
    font-family: 'Roboto', sans-serif;
}
@media all and (max-width: 767px) {
    h1 {
        font-size: 28px;
        font-weight: 300;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 16px;
    }
    h4 {
        font-size: 14px;
    }
    h5 {
        font-size: 12px;
        font-weight: 400;
    }
    h6 {
        font-size: 11px;
        font-weight: 700;
    }
    p {
        font-size: 14px;
    }
}
/* 2.1  GO TO TOP BUTTON */

.go-to-top {
    background-color: #81b43f;
    color: #e6e6e6;
    position: fixed;
    bottom: 10px;
    right: 10px;
    text-align: center;
    padding: 4px;
    display: block;
    width: 30px;
    height: 30px;
    z-index: 99999;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-radius: 2px;
    font-size: 14px;
}
.go-to-top:hover {
    background-color: #f1c40f;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
/* 2.2 PRELOADER  */

#loading {
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    margin-top: 0;
    top: 0;
}
#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
}
.object {
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    position: absolute;
    border-left: 5px solid #f1c40f;
    border-right: 5px solid #82b540;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    -webkit-animation: animate 2s infinite;
    animation: animate 2s infinite;
}
#object_one {
    left: 75px;
    top: 75px;
    width: 50px;
    height: 50px;
}
#object_two {
    left: 65px;
    top: 65px;
    width: 70px;
    height: 70px;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
#object_three {
    left: 55px;
    top: 55px;
    width: 90px;
    height: 90px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
#object_four {
    left: 45px;
    top: 45px;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
@-webkit-keyframes animate {
    50% {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes animate {
    50% {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
/*2.3 padding*/

.p-tb10 {
    padding: 10px 0;
}
.p-tb20 {
    padding: 20px 0;
}
.p-tb30 {
    padding: 30px 0;
}
.p-tb40 {
    padding: 40px 0;
}
.p-tb50 {
    padding: 50px 0;
}
.p-tb60 {
    padding: 60px 0;
}
.p-tb70 {
    padding: 70px 0;
}
.p-tb80 {
    padding: 80px 0;
}
.p-tb90 {
    padding: 90px 0;
}
.p-tb100 {
    padding: 100px 0;
}
.p-b70 {
    padding-bottom: 70px;
}
.p-t70 {
    padding-top: 70px;
}
.m-b60 {
    margin-bottom: 60px;
}
.m-b40 {
    margin-bottom: 40px;
}
/*  ----------------------------------------------------
3. BUTTONS
-------------------------------------------------------- */

.button {
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    text-shadow: none;
    font-weight: 400 !important;
    letter-spacing: 0;
    min-width: 130px;
    margin: 5px;
}
.btn_blue_white {
    background-color: #f1c40f !important;
    color: #fff !important;
}
.btn_blue_white:hover {
    background-color: #FFFFFF !important;
    color: #f1c40f !important;
    box-shadow: 0 0 1px rgba(133, 133, 133, 0.44);
}
.btn_green_white {
    background-color: #82b540 !important;
    color: #fff !important;
}
.btn_green_white:hover {
    background-color: #FFFFFF !important;
    color: #82b540 !important;
    box-shadow: 0 0 1px rgba(133, 133, 133, 0.44);
}
/*  ----------------------------------------------------
4. HEADERS
-------------------------------------------------------- */

.header-one {
    padding: 25px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.header-one .logo {
    color: #81b43f;
    font-size: 26px;
    text-transform: capitalize;
}
.header-one ul.navbar-nav li a {
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    background-color: transparent !important;
    padding: 20px 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    max-width: 100%;
    white-space: normal;
}
.header-one.sticky_header {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    padding: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -o-transition: all .2s ease 0s;
    background-color: #fff;
}
.header-one.sticky_header .logo {
    padding: 15px;
}
.header-one ul.navbar-nav li {
    background: transparent !important;
}
.header-one.sticky_header ul.navbar-nav li a {
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    background-color: transparent !important;
    padding: 20px 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #161615;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    max-width: 100%;
    white-space: normal;
}
.header-one ul.navbar-nav li.active a,
.header-one ul.navbar-nav li a:hover {
    color: #f1c40f;
}

.mobile_menu_btn {
    border: solid 1px #777;
}
.mobile_menu_btn span {
    background-color: #555;
}
@media (max-width: 992px) {
    .header-one ul.navbar-nav li a {
        padding: 15px 7px;
        font-size: 10px;
    }
    .header-one.sticky_header ul.navbar-nav li a {
        padding: 20px 7px;
        height: 100%;
        display: block;
        font-size: 10px;
    }
}
@media (max-width: 768px) {
    .header-one,
    .header-one.sticky_header {
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        -o-transition: all .2s ease 0s;
        background-color: #fff;
        height: auto;
        padding: 0;
    }
    .header-one .logo,
    .header-one.sticky_header .logo {
        padding: 10px;
    }
    .navbar-fixed-top .navbar-collapse {
        max-height: 100vh;
    }
    .header-one.sticky_header ul.navbar-nav li a,
    .header-one ul.navbar-nav li a {
        padding: 15px;
        display: block;
        width: 100%;
        color: #161615;
    }
	 .header_menu {
        float: none !important;
    }
    .header-one ul.navbar-nav li.active a,
    .header-one ul.navbar-nav li a:hover,
    .header-one.sticky_header ul.navbar-nav li.active a,
    .header-one.sticky_header ul.navbar-nav li a:hover {
        color: #f1c40f;
    }
}
/*  ----------------------------------------------------
5. HOME INTRO
-------------------------------------------------------- */
/*home intro one parallax background */

.home_intro_one {
    min-height: 500px;
    height: 100vh;
    display: table;
    width: 100%;
    vertical-align: middle;
}
.home_intro_inner {
    height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: rgba(0, 0, 0, 0.75);
}
.home_intro_inner h1 {
    line-height: 40px;
    color: #ffffff;
    font-weight: 200;
    letter-spacing: 2px;
    font-size: 42px;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 15px;
}
.home_intro_inner p {
    font-family: "Raleway", sans-serif;
    color: #fff;
    font-weight: 300;
    margin: 25px 0;
    letter-spacing: 1px;
    font-weight: 400;
}
@media (max-width: 992px) {
    .home_intro_one {
        height: 600px;
        display: table;
        width: 100%;
        vertical-align: middle;
    }
}
@media (max-width: 768px) {
    .home_intro_inner h1 {
        line-height: 44px;
        color: #ffffff;
        font-weight: 200;
        letter-spacing: 2px;
        font-size: 42px;
        -webkit-font-smoothing: antialiased;
        text-transform: capitalize;
        margin-bottom: 15px;
    }
    .home_intro_inner p {
        font-family: "Raleway", sans-serif;
        font-size: 14px;
        color: #fff;
        font-weight: 300;
        margin: 20px 0;
        letter-spacing: 1px;
    }
}
/*home hero form*/

.home_intro_inner .y-middle {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: row;
    -webkit-flex-direction: row;
}
.home_intro_inner h4 {
    font-weight: 900;
    font-size: 36px;
    line-height: 30px;
    color: #fff;
}
.home_intro_inner .form-horizontal.form-2col {
    padding: 40px 40px 20px;
}
.home_intro_inner .form-horizontal {
    padding: 30px 40px 10px;
    border-radius: 5px;
    box-shadow: -2px -2px 6px 0 rgba(0, 0, 0, .1);
    background-color: #525e6c;
    background-color: rgba(0, 0, 0, 0.4);
}
.home_intro_inner .form-group {
    margin-bottom: 5px;
}
.home_intro_inner .form-group.w-50 input {
    display: inline-block;
    width: 49.5%;
}
.home_intro_inner .form-group.w-50 input {
    display: inline-block;
    width: 49.5%;
}
.home_intro_inner .form-control {
    background: #e8ebed;
    color: #657380;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 2px solid #e8ebed;
    box-shadow: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.home_intro_inner .form-white .form-control {
    background: #ffffff;
    border-color: #ffffff;
    color: #657380;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.home_intro_inner .success {
    background-color: #56B68B;
}
.home_intro_inner .success,
.failed {
    display: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 17px;
    line-height: 20px;
    color: #fff;
}
.home_intro_inner .success i,
.failed i {
    margin-right: 5px;
}
.home_intro_inner .btn.btn-yellow {
    border: 3px solid #f1c40f;
    padding: 11px 18px;
    background-color: #f1c40f;
    color: #ffffff;
}
.home_intro_inner .form-group button {
    width: 100%;
}
@media (max-width: 991px) {
    .home_intro_inner .y-middle {
        display: block!important;
    }
    .home_intro_inner .c2 div[class^="col-md"]:nth-child(1),
    .c3 div[class^="col-md"]:nth-child(1),
    .c3 div[class^="col-md"]:nth-child(2),
    .c4 div[class^="col-md"]:nth-child(1),
    .c4 div[class^="col-md"]:nth-child(2),
    .c4 div[class^="col-md"]:nth-child(3) {
        margin-bottom: 30px;
    }
    .home_intro_inner .center-md {
        text-align: center;
    }
}
@media only screen and (max-width: 479px) {
    .home_intro_inner .form-group.w-50 input:first-child {
        margin-bottom: 5px;
    }
    .home_intro_inner .form-group.w-50 input {
        display: block;
        width: 100%;
    }
}
/*home intro two Carousel animated */

.home_intro_two .carousel {
    height: 700px;
    width: 100%;
    display: block;
    background-color: rgba(186, 186, 186, 0.35);
}
.home_intro_two .carousel-inner,
.carousel-inner .item {
    width: 100%;
    height: 100%;
}
.carousel-inner .item {
    opacity: 0;
}
.carousel-inner .item.active {
    opacity: 1;
}
.carousel-control {
    z-index: 2;
}
.carousel-control {
    width: 40px;
    height: 100px;
    text-align: center;
    padding: 40px 0;
    top: 45%;
    background-color: rgba(255, 255, 255, 0.73);
    color: #f1c40f !important;
    background-image: none !important;
}
.intro_carousel-overlay {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background-color: rgba(29, 29, 29, 0.59);
}
.intro_carousel-content {
    text-align: center;
    position: relative;
    top: 40%;
}
.intro_carousel-content h1 {
    line-height: 40px;
    color: #ffffff;
    font-weight: 200;
    letter-spacing: 2px;
    font-size: 42px;
    -webkit-font-smoothing: antialiased;
    text-transform: capitalize;
    margin: 0;
}
.intro_carousel-content p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    max-width: 600px;
    color: #fafafa;
    font-weight: 200;
    margin: 25px auto;
    letter-spacing: 1px;
}
/*  ----------------------------------------------------
6.SECTION TITLES
-------------------------------------------------------- */

.section_title {
    text-align: center;
    display: block;
}
.section_title h2 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: #f1c40f;
    text-transform: capitalize;
}
.section_title h5 {
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    margin: 15px auto 5px;
    color: #555;
}
/*  ----------------------------------------------------
7. ICON BOXES
-------------------------------------------------------- */

.icon_box_one {
    position: relative;
    padding-left: 60px;
    cursor: pointer;
}
.icon_box_one .icon_div {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    text-align: center;
}
.icon_box_one .icon_div i {
    font-size: 30px;
    color: #f1c40f;
    padding: 0 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_one h4 {
    margin-top: 0;
    color: #f1c40f;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.icon_box_one:hover .icon_div i,
.icon_box_one:hover h4 {
    color: #81b43f;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two {
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 0;
    margin-top: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two:hover {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    cursor: pointer;
}
.icon_box_two .icon_div {
    font-size: 35px;
    padding: 21px 0;
    border: solid 2px #eee;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    color: #f1c40f;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two:hover .icon_div {
    background-color: #82b540;
    color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two h4 {
    color: #f1c40f;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two:hover h4 {
    color: #82b540;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
/*  ----------------------------------------------------
8.SKILLS
-------------------------------------------------------- */

.pad-bottom {
    padding-bottom: 40px;
}
/* PIE CHART STYLES */

.chart {
    position: relative;
    display: inline-block;
    width: 200px;
    /* SHOUL BE EQUAL - Like 200px */
    
    height: 200px;
    /* SHOUL BE EQUAL - Like 200px */
    
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}
.chart canvas {
    position: absolute;
    top: 0;
    left: 0;
}
.percent {
    display: inline-block;
    line-height: 200px;
    z-index: 2;
    font-size: 2em;
    color: #fff;
}
.percent:after {
    content: '%';
    margin-left: 0.1em;
    font-size: 1em;
}
/*  ----------------------------------------------------
9.COUNTER
-------------------------------------------------------- */

.counter_section {
    min-height: 350px;
    width: 100%;
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
    display: table;
    vertical-align: middle;
}
.counter_parallax_inner {
    display: table-cell;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 70px 0;
}
.counter_box {
    margin: 25px 0;
    text-align: center;
}
.counter_icon span {
    font-size: 60px;
    color: #f5f5f5;
}
.counter_number {
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: 65px;
    font-weight: 100;
    color: #f1c40f;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    font-weight: 300;
}
.counter_name {
    font-size: 14px;
    display: block;
    font-family: "Raleway", sans-serif;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 200;
    margin: 0;
    font-weight: 400;
	padding: 0 10px;
}
/*  ----------------------------------------------------
10. PROJECTS SECTION (PORTFOLIO)
-------------------------------------------------------- */

.portfolio-categories {
    float: none;
    text-align: center;
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding: 0;
}
.portfolio-categories li {
    float: none;
    text-align: center;
    display: inline-block;
    color: #9d9d9d;
    padding: 10px;
    cursor: pointer;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-categories li:hover,
.portfolio-categories li.active {
    color: #000;
    background-color: transparent;
    webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.row.filtr-container {
    margin: 0;
}
.filtr-container .filtr-item {
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
}
.project_box {
    background-color: #fafafa;
    border: solid 1px #eee;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.project_box img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.6s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}
.product_info {
    position: absolute;
    opacity: 0;
    top: 0;
    padding: 15px;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.89);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    text-align: center;
}
.product_info_text {
    margin-top: 60%;
    -webkit-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}
.product_info h4 {
    font-size: 18px;
    padding: 0;
    line-height: 0;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.product_info p {
    margin: 0 0 25px 0;
    font-size: 13px;
    line-height: 24px;
    color: #f1c40f;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.project_box:hover .product_info {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.project_box:hover .product_info_text {
    -webkit-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -webkit-transform: translateY(-99px);
    -moz-transform: translateY(-99px);
    transform: translateY(-99px);
}
/*  ----------------------------------------------------
11. TEAM
-------------------------------------------------------- */

.team_img {
    overflow: hidden;
    border-radius: 5px;
}
.team_img img {
    width: 100%;
    height: auto;
}
.team_box {
    text-align: center;
    box-shadow: 0 0 3px #ddd9d9;
    padding: 0px 0px 15px 0px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team_box h3 {
    text-transform: capitalize;
    font-weight: 500;
    padding: 5px;
    margin: 15px 0 0;
    font-size: 20px;
}
.team_box h5 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-size: 14px;
    color: #f1c40f;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team_box:hover {
    box-shadow: 0 0 10px 1px rgba(76, 76, 76, 0.41);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team_box:hover h5 {
    color: #1da864;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team_social {
    padding: 0;
    position: relative;
    float: none;
    margin: 15px 0 10px;
}
.team_social li {
    float: none;
    margin-left: 5px;
    display: inline-block;
}
.team_social li a {
    border: solid 1px #e7e7e7;
    border-radius: 3px;
    color: #333;
    font-size: 15px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: block;
    padding: 7px 0;
}
.team_social li a:hover {
    border: solid 1px #e7e7e7;
    border-radius: 3px;
    background-color: #0195ec;
    color: #fafafa;
    font-size: 15px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: block;
    padding: 7px 0;
}
@media (max-width: 992px) {
    .team_box {
        text-align: center;
        box-shadow: 0 0 3px #ddd9d9;
        padding: 15px;
        -webkit-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
        margin: 15px 5px;
    }
}
/*  ----------------------------------------------------
12. PRICES
-------------------------------------------------------- */

.price_box {
    background-color: #FFFFFF;
    -moz-box-shadow: 0 1px 5px #eee;
    max-width: 350px;
    min-height: 400px;
    margin: 15px auto;
    padding: 20px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.price_box_active,
.price_box:hover {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 25px 2px #eee;
    -moz-box-shadow: 0 0 25px 2px #eee;
    max-width: 350px;
    min-height: 400px;
    border: 0;
    box-shadow: 0 0 25px 2px #eee;
    margin: 15px auto;
    padding: 20px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.price_budged {
    color: #f1c40f;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    text-transform: capitalize;
}
.price_box_active .price_budged {
    color: #82b540;
}
.price_num {
    display: block;
    font-size: 60px;
    font-family: "Raleway", sans-serif;
    font-weight: 200 !important;
    color: #333;
    margin: 0;
    text-align: center;
    padding: 15px 0 30px;
}
.price_num sup {
    font-size: 24px;
    font-weight: 400;
    color: #79a93c;
    margin: 0;
    padding: 0;
    left: 10px;
    top: -20px;
}
.price_body ul li {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 7px 0;
    color: #161615;
}
.price_footer {
    padding: 20px 0 10px 0;
}
.btn_price {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
/*  ----------------------------------------------------
13. BLOG
-------------------------------------------------------- */

.blog_item {
    padding: 15px;
}
.blog_box {
    background-color: #f8f8f8;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.blog_box:hover {
    box-shadow: 0 0 10px 1px rgba(76, 76, 76, 0.41);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.blog_img {
    overflow: hidden;
}
.blog_img img {
    webkit-transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -moz-transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    width: 100%;
}
.blog_box:hover .blog_img img {
    transform: scale(1.1);
}
.blog_info {
    padding: 10px;
    text-align: center;
}
.blog_info h5 {
    font-size: 16px;
    color: #f1c40f;
    font-weight: 600;
    margin: 0;
    padding: 9px 0;
    margin-top: 10px;
}
.blog_info p {
    margin: 0 0 10px;
    color: #161615;
}
.blog_info a {
    text-transform: capitalize;
    color: #82b540 !important;
    margin-bottom: 10px;
    display: block;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 450px) {
    .blog_item {
        padding: 5px;
    }
}
/*  ----------------------------------------------------
14. TESTIMONIALS CLIENTS SAY
-------------------------------------------------------- */

.our_clients {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}
.client_say {
    padding: 0 15px;
}
.client_say h4 {
    line-height: 24px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
    padding: 10px 0;
    margin-bottom: 10px;
}
.client_say img {
    max-width: 70px;
    border-radius: 10px;
    border: solid 1px #e7e7e7;
}
.client_say h6 {
    font-size: 18px;
    margin: 10px 0;
    padding: 0;
    text-transform: capitalize;
}
.client_say span {
    color: #f1c40f;
}
.client_section .our_clients .owl-controls .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 15px 7px 0;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 50px;
    background: #81b43f;
}
/*  ----------------------------------------------------
15. CONTACT US
-------------------------------------------------------- */

.contact_us #map {
    min-height: 350px;
}
.contact_info h3 {
    text-align: center;
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}
.contact_info h6 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
    font-weight: 500;
}
.contact_info label {
    color: #333;
    font-weight: 400;
}
.contact_info .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #eee;
    color: #333;
    border-radius: 0;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}
.contact_info .contact_btn {
    text-align: center;
    margin: 25px auto 0;
    max-width: 150px;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff;
    border: solid 1px #f1c40f;
    font-weight: 400;
    background-color: #f1c40f;
    font-family: "Raleway", sans-serif;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    padding: 7px 25px;
}
.contact_info .contact_btn:hover,
.contact_info .contact_btn:focus {
    color: #f1c40f;
    border: solid 1px #f1c40f;
    background-color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.contact_info textarea.form-control {
    min-height: 125px;
    resize: vertical;
}
/*  ----------------------------------------------------
16. FOOTER
-------------------------------------------------------- */

.footer {
    background-color: #313131;
}
.footer .footer_brand {
    text-align: center;
    margin: 0 auto;
}
.footer p {
    text-align: center;
    clear: both;
    margin-bottom: 0;
    margin-top: 22px;
    color: #ccc;
    font-size: 15px;
}
.footer .social_nav {
    float: none;
    position: relative;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 11px;
    padding: 0;
}
.footer .social_nav li {
    float: none;
    display: inline-block;
    text-align: center;
    list-style: none;
}
.footer .social_nav li a {
    color: #4e4e4e !important;
    background-color: transparent;
    font-size: 20px;
    padding: 7px 10px;
}
.footer .social_nav li a:hover,
.footer .social_nav li a:focus {
    color: #f1c40f !important;
    background-color: transparent;
    font-size: 20px;
    padding: 7px 10px;
}
.footer_author {
    background-color: #2d2d2d;
    min-height: 50px;
}
.copyright_footer {
    text-align: center;
    margin-top: 15px;
    color: #999;
    font-size: 11px;
    margin-bottom: 0;
}