/* 
    Document   : Synero
    Created on : Aug 23, 2014, 07:07:07 PM
    Author     : Harry
    Description: Synero - one page portfolio & Agency template
    Version    : V1.0
*/

/*-------------------------------------------------
 =  Table of Css

 1.Import Google Fonts
 2.Page-Loader
 3.GENERAL
 4.PARALLAX
 5.NAVBAR
 6.HOME/ SLIDER
 7.HERO-SECTION
 8.SERVICES
 9.PORTFOLIO / WORKS
 10.TESTIMONIALS
 11.ABOUT
 12.TWITTWER-TWEET
 13.PRICING
 14.NEWS-LETTER
 15.BLOG
 16.CONTACT
 17.FOOTER
 18.BACK-TO-TOP
 
-------------------------------------------------*/

/* ---------------------------------------------------------------------- */
/*  1.Import Google Fonts
/* ---------------------------------------------------------------------- */
@import url('http://fonts.googleapis.com/css?family=Roboto:300,400,400italic,500,700');
body {
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	cursor: default;
	color: #333333;
	font-size: 14px;
	line-height: 24px;
	background-color: #fff;
	font-weight: 400;
/*	overflow-y: hidden !important; */
	text-align: left;
}
/* ---------------------------------------------------------------------- */
/*  2.Page-Loader
/* ---------------------------------------------------------------------- */
.animationload {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* change if the mask should have another color then white */
    z-index:999999; /* makes sure it stays on top */
}
.loader {
    width:200px;
    height:200px;
    font-size:0;
    position:absolute;
    left:50%; /* centers the loading animation horizontally one the screen */
    top:50%; /* centers the loading animation vertically one the screen */
    background-image:url(../img/ajax-loader.gif); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:-100px 0 0 -100px; /* is width and height divided by two */
}
/* ---------------------------------------------------------------------- */
/*  3.GENERAL
/* ---------------------------------------------------------------------- */
::selection{
    background: rgba(33,194,131,0.5);
    color: #ffffff;
}
::-moz-selection {
    background: rgba(33,194,131,0.5);
    color: #ffffff;
}
.btn-custom{
     background-color: #73bf43;
    border: 2px solid #73bf43;
    color: #ffffff;
    border-radius: 3px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    letter-spacing: 1px;
    padding: 8px 20px;
}
.btn-custom:hover,.btn-custom:focus{
    background-color: transparent;
    border: 2px solid #73bf43;
    color: #73bf43;
    outline: none;
}
.title {
    position: relative;
    color: #666;
    font-weight: 500;
}
.min-h-40{
    min-height: 40px;
}
.margin-t-20{
    margin-top: 20px;
}
.margin-t-50{
    margin-top: 50px;
}
.margin-l-30{
    margin-left: 30px;
}
.margin-b-30{
    margin-bottom: 30px;
}
.owl-theme .owl-controls .owl-page span {
    background: #73bf43 !important;
}
/* ---------------------------------------------------------------------- */
/*  4.PARALLAX
/* ---------------------------------------------------------------------- */
.parallax {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}
/* ---------------------------------------------------------------------- */
/*  5.NAVBAR
/* ---------------------------------------------------------------------- */
.navbar-toggle .icon-bar{
    border: 2px solid #666666;
}
.navbar-custom{
    background-color: #fff;
    min-height: 75px;
    padding: 10px 0;
    -webkit-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    border-radius: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.navbar-custom .navbar-nav>li>a {
    color: #777;
    font-weight: 400;
    font-size: 15px;
    outline: none;
}
.nav>li>a {
    padding-left: 7px;
    padding-right: 7px;
}
.navbar-custom .navbar-nav>li>a:hover,.navbar-custom .navbar-nav>li>a:active,.navbar-custom .navbar-nav>li>a:focus {
    color: #73bf43;
    background: transparent;
}
.logo{
    margin-top: -6px;
}
/* Effect */
.menu-effect a::before,
.menu-effect a::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}
.menu-effect a::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}
.menu-effect a::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}
.menu-effect a:hover::before,
.menu-effect a:hover::after,
.menu-effect a:focus::before,
.menu-effect a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}
/*-------------------------------------------------------------------*/
/* 6.HOME/ SLIDER
/*-------------------------------------------------------------------*/
.carousel-section {
    background: url("../img/pattern.png"),url("../img/img.png");
    overflow: hidden;
    padding: 120px 0px;
}
.carousel-razon .carousel-caption {
    position: static;
    text-align: center;
}
.carousel-razon .carousel-indicators {
    bottom: -110px !important;
}
.carousel-razon .carousel-indicators li {
    margin: 0 2px;
}
.carousel-indicators li{
    border: 1px solid #73bf43;
    border-radius: 0px;
    height: 5px;
    width: 30px;
}
.carousel-indicators .active {
    height: 5px;
    width: 30px;
    background-color: #73bf43;
}
.carousel-text span{
    color: #73bf43;
    text-transform: uppercase;
}
.carousel-text p{
    padding-top: 30px;
}
.carousel-text a{
    margin-top: 30px;
}
@media (max-width: 1023px) {
    .navbar-custom .nav>li>a {
        padding: 20px 0px; 
    }
}
@media (max-width: 767px) {
    .navbar-custom .nav>li>a {
        padding: 10px 0px; 
    }
}
/*-------------------------------------------------------------------*/
/*  7.HERO-SECTION
/*-------------------------------------------------------------------*/
.hero-section {
    background-color: #73bf43;
    padding: 20px 0px;
    position: relative;
    z-index: 600;
    color: #fff;
    text-align: center;
}
.hero-section h3{
    margin-top: 10px;
}
/*-------------------------------------------------------------------*/
/*  8.SERVICES
/*-------------------------------------------------------------------*/
.services{
    margin-top: 1px;
    border-top: 2px solid #73bf43;
    padding: 100px 0px;
    background-color: #f2f5f7;
}
.title p{
    font-size: 14px;
    font-weight: 400;
}
.title-bg {
    font-size: 77px;
    color: rgba(33,194,131,0.12);
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    font-weight: 200;
    z-index: -1;
    text-align: center;
}
/*-------------------------------------------------------------------*/
/*  9.PORTFOLIO / WORKS
/*-------------------------------------------------------------------*/
.work{
    padding: 100px 0px;
    margin-bottom: 1px;
    border-bottom: 2px solid #73bf43;
}
.work h3{
    margin-top: 0px;
}
#grid .mix{
    display: none;
    opacity: 0;
}
/* Filter */
.portfolio-filters{
    list-style: none;
    padding: 0;
}
.portfolio-filters li{
    display: inline-block;
    border:1px solid #eeeeee;
    padding: 3px 10px;
    cursor: pointer;
    font-size: 12px ;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
    color:#999;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.portfolio-filters li:hover,.portfolio-filters li.active{
    background-color: #73bf43;
    color:#fff;
    border-color:#73bf43;
}
.portfolio-items figure {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    margin: -0.135em;
    text-align: center;
    cursor: pointer;
}
.portfolio-items figure img {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition:all 400ms linear; 
    -moz-transition:all 400ms linear; 
    -o-transition:all 400ms linear; 
    -ms-transition:all 400ms linear; 
    transition:all 400ms linear;
}
.portfolio-items figure figcaption {
    color: #fff;
    font-size: 14px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.portfolio-items figure figcaption{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.portfolio-items figure h4 {
    font-weight: 500;
    text-transform: uppercase;
    padding: 7px;
    font-size: 15px;
}
.portfolio-items figure figcaption h4 a{
    color: #fff;
}
figure.port-effect {
    background: #000;
}
figure.port-effect figcaption {
    top: auto;
    bottom: 0;
    height: auto;
    background: rgba(115,191,67,0.9);
    color: #fff;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}
figure.port-effect:hover img{
    opacity: 0.8;
    -webkit-transform: scale(1.3) rotate(4deg);
    -moz-transform: scale(1.3) rotate(4deg);
    -ms-transform: scale(1.3) rotate(4deg);
    -o-transform: scale(1.3) rotate(4deg);
    transform: scale(1.3) rotate(4deg);
}
figure.port-effect:hover figcaption{
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
/* image hover effect */
.work_item {
    display:inline-block;
    vertical-align:top;
    background:#f7f7f7;
    width:100%;
    position:relative;
    overflow:hidden;
    opacity:1;
    transition:all 0.3s ease-out;
}        
.work_item:hover .work_item_overlay {
    opacity:0.8;
}
.work_item:hover img {
    -moz-transform: scale(1.1); 
    -webkit-transform: scale(1.1); 
    -o-transform: scale(1.1); 
    transform: scale(1.1); 
}
.work_item:hover .work_item_button_holder {
    visibility:visible;
    opacity:1;
}
.work_item:hover .work_item_button_holder i {
    padding:10px;
}       
.work_item_overlay {
    background:rgba(0,0,0,0.8);
    width:100%;
    height:100%;
    opacity:0;
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    transition:opacity 0.2s ease-out;
}
.work_item img {
    width:100%;
    z-index:7;
    transition:all 0.2s ease-out;
}
.work_item_button_holder {
    visibility:hidden;
    width:100%;
    height:100%;
    margin-top:-28px;
    text-align:center;
    opacity:0;
    position:absolute;
    top:53%;
    left:0;
    z-index:9;
    transition:opacity 0.2s ease-out;
}
.work_item_button_holder i {
    display:inline-block;
    color:#76719a;
    cursor:pointer;
    border-radius: 100%;
    background: rgba(255,255,255,0.5);
    text-align: center;
    padding: 11px 0 0;
    margin: 5px;
    font-size: 20px;
    transition:padding 0.2s ease-out;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.work_item_button_holder i:hover {
    font-weight: 900;
    background: #ffffff;
}
.work_item_button_holder i:active {
    color:#76719a;
}
@media (max-width: 1024px) {
    .portfolio-items figure h4 {
        font-size: 14px;
        padding: 5px;
    }
}
@media (max-width: 640px) {
    .portfolio-items figure h4 {
        font-size: 12px;
        padding: 4px;
    }
}
/*-------------------------------------------------------------------*/
/*  10.TESTIMONIALS
/*-------------------------------------------------------------------*/
.testimonials{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0;
}
.testimonials h5{
    color:#fff;
    font-weight: 300;
    line-height: 20px;
    color: rgba(255,255,255,0.77);
}
.testimonials i{
    color:#73bf43;
    font-size: 30px;
}
.testimonials p{
    color:#73bf43;
}
/*-------------------------------------------------------------------*/
/*  11.ABOUT
/*-------------------------------------------------------------------*/
.about{
    position: relative;
    padding: 100px 0px;
    margin: 1px 0px;
    border-top: 2px solid #73bf43;
    border-bottom: 2px solid #73bf43;
}
.about-page{
    padding-top: 80px;
}
#project-carosel {
    margin-right: 20px;
}
.about .panel-title{
    font-size: 15px;
}
.about .panel-title a{
    display: block;
    width: 100%;
}
.about .panel-title a:hover{
    text-decoration: none;
}
.about .panel-title i{
    font-size: 20px;
    color: rgba(0,0,0,0.5);
}
.about .panel-heading{
    padding: 15px;
    border-radius: 3px;
}
.about .panel-default>.panel-heading {
    color: #fff;
    background-color: rgba(33,194,131,0.7);
    border-color: #bbb;
}
.about .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #ffffff;
}
.about .panel-group .panel {
   margin-bottom: 0;
   border-radius: 0px;
}
.about .panel-group .panel .panel-body{
    background: #ffffff !important;
    box-shadow: none;
    padding: 10px 0px;
    color: #555;
}
.about .panel-default{
    border: none;
}
@media (max-width: 767px) {
    .margin-l-30{
        margin-left: 0px; 
    }
}
/* TEAM */
.team{
    text-align: center;
}

.team img{
    width: 180px;
    height: 180px;
}
.team-member:hover h4{
    color: #73bf43;
}
.team p{
    padding: 10px;
}
.team h6{
    color: #bbb;
}
.member {
    padding: 5px;
    width: 190px;
    height: 190px;
    border-bottom: 1px solid #bbb;
    background: #eee;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    overflow: hidden;
    display: inline-block;
}
.circle-img {
    border-radius: 100%;
    -moz-border-radius: 100%;
}
/*-------------------------------------------------------------------*/
/*  12.TWITTWER-TWEET
/*-------------------------------------------------------------------*/
.twitter-tweet{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0;
}
.twitter-tweet h5{
    color:#fff;
    font-weight: 300;
    line-height: 20px;
    color: rgba(255,255,255,0.77);
}
.twitter-tweet h6{
    color: #777;
    text-transform: uppercase;
}
.twitter-tweet i{
    color:#73bf43;
    font-size: 30px;
}
.twitter-tweet p{
    color:#73bf43;
}
/*-------------------------------------------------------------------*/
/*  13.PRICING
/*-------------------------------------------------------------------*/
.pricing{
    padding: 100px 0px;
    text-align: center;
    margin: 1px 0px;
    border-top: 2px solid #73bf43;
}
.pricing-features {
    background-color: #f2f5f7;
    padding: 0px 0px 40px 0px;
    margin-top: 30px;
}
.pricing-features ul{
    padding: 30px 0px;
}
.pricing-features li{
    padding: 10px 50px;
}
.pricing-features li i {
    margin-right: 15px;
    color: #999;
}
.pricing-features a{
    background-color: #333b4d;
    padding: 10px 50px;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
}
.pricing-features a:hover{
    background-color: #73bf43;
    text-decoration: none;
}
.pricing_head{
    background-color: #333b4d;
    padding: 20px 0px;
    color: #fff;
}
.pricing_head .pricing_currency{
    position: relative;
    top: -25px;
    font-size: 20px;
    font-weight: 400;
}
.pricing_head .pricing_amount-2{
    font-size: 60px;
    line-height: 60px;
    padding-left: 5px;
}
.pricing-features:hover .pricing_head,.pricing-features:hover a{
    background-color: rgba(33,194,131,0.8);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
/*-------------------------------------------------------------------*/
/*  14.NEWS-LETTER
/*-------------------------------------------------------------------*/
.catalogs{
    background-color: #73bf43;
    padding: 40px 0px;
}
.catalogs i{
    padding-right: 15px;
}
.catalogs h3{
    color: #ffffff;
    margin: 0px;
    padding-top: 5px;
}

/*-------------------------------------------------------------------*/
/*  15.BLOG
/*-------------------------------------------------------------------*/
.blog{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0;
}
.blog h3,.blog p{
    color: #ffffff;
}
.blog-box{
    background-color: #ffffff;
    padding: 10px; 
    text-align: center;
    margin-top: 30px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}
.blog-box img{
    width: 100%;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}
.blog-box h4 a{
    color: #666;
}
.blog-box h6{
    color: #bbb;
    font-weight: 300;
}
.blog-box p{
    color: #777;
    margin-top: 20px;
}
/* BLOG-POST */
.blog-post{
    padding: 100px 0px;
    margin: 1px 0px;
    border-top: 2px solid #73bf43;
    border-bottom: 2px solid #73bf43;
}
.blog-post img{
    margin: 15px 0px;
}
.blog-header{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0px;
}
.blog-header h2{
    margin-top: 0px;
    color: #ffffff; 
}
.blog-header h5{
    color: #ffffff;
    margin-top: 30px;
    font-weight: 100;
}
.blog-detail{
    padding-top: 0px;
    color: #ffffff;
    font-size: 14px;
}
.blog-detail span{
    margin-right: 20px;
}
.blog-detail span:last-of-type{
    margin-right: 0px;
}
.blog-a{
    color: #73bf43;
}
.blog-post-p{
    color: #bbb;
    font-size: 12px;
    padding: 0px 20px;
    line-height: 15px;
    text-align: center;
}
.blog-a:hover{
    color: rgba(33,194,131,0.7);
    text-decoration: none;
}
.blog-detail span i{
    padding-right: 5px;
}
.blog-post .tags a {
    height: 35px;
    font-size: 11px;
    line-height: 35px;
    color: #90979f;
    background: #f2f5f7;
    padding: 6px 12px;
    margin-right: 5px;
}
.blog-post .tags a:hover{
    color: #73bf43;
    text-decoration: none;
}
/*-------------------------------------------------------------------*/
/*  16.CONTACT
/*-------------------------------------------------------------------*/
.contact{
    text-align: center;
    padding: 100px 0px;
    margin: 1px 0px;
    border-top: 2px solid #73bf43;
    border-bottom: 2px solid #73bf43;
}
.contact h4{
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
    color: #73bf43;
}
.contact i{
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 36px;
    color: #73bf43;
}
.contact ul {
    margin: 0;
    padding: 0;
}
.contact li a{
    text-decoration: none;
    color: #7a869e;
}
a.support {
    font-size: 28px;
    line-height: 30px;
    display: block;
    color: #7a869e;
    text-decoration: none;
}
.contact input {
    width: 100%;
    height: 43px;
    margin-bottom: 20px;
    line-height: 20px;
    padding-left: 15px;
    font-size: 15px;
    color: #000000;
}
.contact .validation {
    border: 1px solid #ff0000;
}
.contact textarea {
     width: 100%;
    height: 170px;
    margin-bottom: 15px;
    padding: 15px 55px 15px 15px;
    font-size: 15px;
    color: #000000;
    line-height: 28px;
}
textarea {
    resize: none;
}
.contact input:focus,.contact textarea:focus,.contact input:active,.contact textarea:active{
    border: 1px solid #73bf43;
    outline: none;
}
.contact p {
    float: none;
    color: #ffffff;
    display: inline-block;
}
#successmsg1 {
    margin-top: 20px;
    font-size: 18px;
    color: #73bf43;
    padding: 10px 0 10px;
    text-transform: uppercase;
    display: none;
    text-align: center;
}
/*-------------------------------------------------------------------*/
/*  17.FOOTER
/*-------------------------------------------------------------------*/
.footer{
    background-color: #000;
    padding: 50px 0px;
}
.footer ul{
    margin-bottom: 0px;
    margin-top: 8px;
}
.social li{
    padding-right: 0px;
}
.social li a {
    font-size: 16px;
    padding: 8px 10px;
    border-radius: 3px;
    color: rgba(255,255,255,0.5);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.social li a:hover {
    text-decoration: none;
    color: #73bf43;
}
.footer p{
    color: #666;
    font-size: 12px;
    padding-top: 10px;
    margin-bottom: 0px;
}
/*-------------------------------------------------------------------*/
/*  18.BACK-TO-TOP
/*-------------------------------------------------------------------*/
.back-to-top {
    width: 40px;
    height: 50px;
    position: fixed;
    bottom: 0px;
    right: 20px;
    display: none;
    background: rgba(115,191,67,0.7);
    text-align: center;
    z-index: 10000;
}
.back-to-top i {
    color: #fff;
    font-size: 15px;
    display: block;
    line-height: 33px;
}
.back-to-top:hover {
	background-color: #73bf43;
}
