/*
* Theme Name: BusinessPerfect
* Theme URI: milansavov.com/freebies/businessperfect
* Author: Milan Savov
* Author URI: milansavov.com
* Version: 1.0
* */

/* TABLE OF CONTENT 
*
* - CUSTOM RESETS
    - Buttons
    - Forms
* - ELEMENTS
    - Tabs
    - Accordion
    - Slick Slider
* - LAYOUT
* - HEADER 
    - Site Logo
    - Navigation
* - HERO (BANNER)
* - HOMEPAGE SECTIONS
    - Quote 
    - Featured Works
    - Service 
    - Counter 
    - Team 
    - Clients 
    - Social networks 
* - PAGES
    - ABOUT-US
    - PORTFOLIO
    - PORTFOLIO ITEM
    - BLOG
    - BLOG POST
    - CONTACT
* - FOOTER
*
*/

/* CUSTOM RESETS
================================================== */
.bgwhite
{
	background-color:#FFFFFF;
}

a { 
    color: #009B4E;
}

a:focus,
a:hover {
    color: #3B3A36;
    outline: 0 none;
    text-decoration: none;
}

a,
button {
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

/* 
 * Buttons 
 */
.btn {
    background-color: #fff;
    color: #292a2c;
    font-size: 16px;
    line-height: 45px;
    padding: 0 50px;
    border: 0;
    border-radius: 0;
}

.btn i {
  font-size: 20px;
}

/* btn sizes */
.btn-small {
    font-size: 12px;
    line-height: 24px;
    padding: 0 20px;
}

.btn-medium {
    font-size: 14px;
    line-height: 36px;
    padding: 0 30px;   
}

/* btn colors */
.btn-yellow {
    background-color: #009B4E; 
    color: #fff;
}

.btn-transparent {
    border:1px solid #e6e6e8;
    background: transparent;
}

.btn-yellow-transparent {
    color: #de614b;
    border: 1px solid #de614b;
}

.btn:hover,
.btn:focus {
    background-color: #d5d5d5;
    outline: none;
    box-shadow: none;
}

.btn-yellow-border {
    border: 1px solid #009B4E;
}

.btn.btn-yellow-border:hover,
.btn.btn-yellow-border:focus {
    background-color: #009B4E; 
    color: #fff; 
}

.btn-gray-border {
    border: 1px solid #d5d5d5;
}

.btn.btn-gray-border:hover,
.btn.btn-gray-border:focus {
    background-color: #d5d5d5;  
}


/* 
 * Forms 
 */

 /* Input fields */
.form-control {
    position: relative;
    height: 40px;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: none;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;
    outline: 0 none transparent;
    -webkit-appearance:none;
    transition: border-color 0.25s ease-in-out;
    -moz-transition: border-color 0.25s ease-in-out;
    -webkit-transition: border-color 0.25s ease-in-out;
    -o-transition: border-color 0.25s ease-in-out;
    -ms-transition: border-color 0.25s ease-in-out;
}

textarea {
    min-height: 160px;
    resize: none;
}

.form-control:focus {
    border-color: #009B4E;
    box-shadow: none;
}

.form-horizontal a {
    display: inline-block;
}

input[type=search] + button {
    border: 0;
    background: none;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

input[type=search] + button:hover,
input[type=search] + button:focus {
    color: #009B4E;
}

/* Checkbox fields */
input[type=checkbox],
input[type=radio] {
    position: absolute;
    visibility: hidden;
    height: auto;
    margin-top: 0;
}

.checkbox {
    margin: 0;
} 

.checkbox + .checkbox,
.radio-btn + .radio-btn {
    margin-top: 15px;
}

.checkbox [type="checkbox"]:not(:checked) + label,
.checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.checkbox [type="checkbox"]:not(:checked) + label:before,
.checkbox [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; 
    width: 20px; 
    height: 20px;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;
    box-shadow: none;
    transition: border-color .2s;
    -webkit-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    -ms-transition: border-color .2s;
}

.checkbox [type="checkbox"]:not(:checked) + label:after,
.checkbox [type="checkbox"]:checked + label:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 3px;
    font-size: 15px;
    color: #009B4E;;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
      transition: opacity .2s;
    -webkit-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
}

.checkbox [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

.checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
}

.checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.checkbox [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.checkbox [type="checkbox"]:disabled:checked + label:after {
    color: #999;
}
.checkbox [type="checkbox"]:disabled + label {
    color: #aaa;
}

.checkbox [type="checkbox"]:checked:focus + label:before,
.checkbox [type="checkbox"]:not(:checked):focus + label:before {
    border: 1px dotted #009B4E;
}

.checkbox [type="checkbox"]:not(:checked) + label:hover:before,
.checkbox [type="checkbox"]:checked + label:hover:before {
    border: 1px solid #009B4E;
}

/* Radiobutton fields */
.radio-btn label {
    font-weight: 400;
}

.radio-btn [type="radio"]:not(:checked) + label,
.radio-btn [type="radio"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-btn [type="radio"]:not(:checked) + label:before,
.radio-btn [type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; 
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;
    border-radius: 50px;
    box-shadow: none;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: border-color .2s;
    -webkit-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    -ms-transition: border-color .2s;
}

.radio-btn [type="radio"]:not(:checked) + label:after,
.radio-btn [type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 4px;
    background-color: #009B4E;
    border-radius: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: opacity .2s;
    -webkit-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
}

.radio-btn [type="radio"]:not(:checked) + label:after {
    opacity: 0;
}
.radio-btn [type="radio"]:checked + label:after {
    opacity: 1;
}

.radio-btn [type="radio"]:disabled:not(:checked) + label:before,
.radio-btn [type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.radio-btn [type="radio"]:disabled:checked + label:after {
    color: #999;
}

.radio-btn [type="radio"]:disabled + label {
    color: #aaa;
}

.radio-btn [type="radio"]:checked:focus + label:before,
.radio-btn [type="radio"]:not(:checked):focus + label:before {
    border: 1px dotted #009B4E;
}

.radio-btn [type="radio"]:checked + label:hover:before,
.radio-btn [type="radio"]:not(:checked) + label:hover:before {
    border: 1px solid #009B4E;
}

/* Selectpicker */
.selectpicker-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.selectpicker {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    width: 220px;
    height: 40px;
}

.selectpicker-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px 15px;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;    
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.selectpicker-styled:after {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.selectpicker-styled:hover,
.selectpicker-styled:active, 
.selectpicker-styled.active {
    border-color: #009B4E;
}

.selectpicker-styled:active:after,
.selectpicker-styled.active:after {
    content: "\f106";
}

.selectpicker-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #f9f8f8;
}

.selectpicker-options li {
    padding: 12px 15px;
    border: 1px solid #009B4E;
    border-top: 0; 
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.selectpicker-options li:hover {
    color: #009B4E;
    border-color: #009B4E;
}

/* ELEMENTS
================================================== */
/*  Tabs  */
.tab-style {
    border-bottom: none;
}

.tab-style + .tab-content {
    padding: 15px;
    background-color: #f9f8f8;
}

.nav-tabs.tab-style > li.active > a {
    background-color: #009B4E;
    border: 1px solid #009B4E;
}

.nav-tabs.tab-style > li > a {
    position: relative;
    color: #333333;
    margin-right: 0;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;
    border-radius: 0;
}

.nav-tabs.tab-style > li + li {
    margin-left: 10px;
}

.nav-tabs.tab-style > li > a:hover {
    border-color: #009B4E;
}

/* Accordion */
.accordion.panel-group {
    margin-bottom: 0;
}

.accordion.panel-group .panel + .panel {
    margin-top: 0;
}

.accordion .panel {
    border: 0;
    box-shadow: none;
}

.accordion .collapsed {
    height: auto;
}

.accordion .panel-heading {
    background-color: transparent;
    padding: 0;
}

.accordion .panel-heading a {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 40px 10px 15px;
    color: #333;
    background-color: #009B4E;
}

.accordion .panel-heading a.collapsed {
    background-color: #f9f8f8;
}

.accordion .panel-heading a.collapsed:hover,
.accordion.accordion-gray .panel-heading a.collapsed:hover{
    background-color: #009B4E;   
}

.accordion .panel-heading a.collapsed::after {
  content: "\f107";
}

.accordion .panel-heading a::after {
  font-family: "FontAwesome";
  content: "\f106";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.accordion .panel-group .panel-heading + .panel-collapse > .panel-body,
.accordion .panel-default > .panel-heading + .panel-collapse > .panel-body {
  background-color: #f9f8f8;
  border: none;
}

/* Accordion-gray */
.accordion.accordion-gray  .panel-heading a {
  color: #fff;
}

.accordion.accordion-gray .panel-heading a.collapsed {
  background-color: #3B3A36;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list  {
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide{
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

/* LAYOUT
================================================== */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

/* Background colors */
.gray-bg {
  background-color: #eee;
}

.yellow-bg {
  background-color: #009B4E;  
}

.black-bg {
  background-color: #000;
}

.light-gray-bg {
  background-color: #f9f8f8;
}

.transparent-bg {
  background: transparent;
}

/* Hover backgrounds socials */
a.twitter-bg:hover {
  background-color: #55acee;
  border-color: #55acee; 
}

a.facebook-bg:hover{
  background-color: #3b5998;
  border-color: #3b5998;
}

a.google-plus-bg:hover{
  background-color: #dd4b39;
  border-color: #dd4b39;
} 

a.message-bg:hover {
  background-color: #ff6600;
}

a.linkedin-bg:hover {
  background-color: #007bb5;
  border-color: #007bb5;
}

a.instagram-bg:hover {
  background-color: #125688;
  border-color: #125688;
}

a.white-text:hover {
  color: #333; 
} 

/* Text colors */
.white-text {
  color: #fff;
}

.gray-text {
  color: #333;
}

.yellow-text {
  color: #009B4E;  
}

.green-text {
  color: #009B4E;  
}

/* Text styles */
.italic-text {
  font-style: italic;
}

.serif-text {
  font-family: 'Times new roman', serif;
  font-size: 26px;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  border-radius: 0;
  background-color: transparent;
  padding-left: 0px;
}

.breadcrumb li a {
  color: #777e88;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb .active {
  color: #009B4E;
}

/* Counts
================================================== */
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #106eea;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #545454;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7a7a7a;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #a1a1a1;
}

.counts .abouts {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  background-color: #106eea;
}

.counts .abouts i {
  display: block;
  font-size: 30px;
  color: #fff;
  float: left;
  line-height: 0;
}

.counts .abouts span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #fff;
  margin-left: 50px;
}

.counts .abouts p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #fff;
}

.counts .abouts:hover {
  background: #fff;
}

.counts .abouts:hover i {
  color: #106eea;
}

.counts .abouts:hover span, .counts .abouts:hover p {
  color: #545454;
}

/* Services
================================================== */
.services a {
  color: #ffffff;
  text-decoration: none;
}

.services .icon-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  border-color: #106eea;
  padding: 40px 30px;
  transition: all ease-in-out 0.3s;
  background: #106eea;
  height:90%;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #106eea;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #0da6fe;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #ffffff;
  border: 1px solid #ededed;
}

.services .icon-box:hover .icon {
  background: #106eea;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

.services .icon-box:hover .icon::before {
  background: #ddfafb;
}

.services .icon-box:hover h4, .services .icon-box:hover p {
  color: #545454;
}

/* HERO
================================================== */
.hero {
  height: 100%;
  width: 100%;
  display: table;
  position: relative;
  background-size: cover;
}

.hero-max-720 {
  max-height: 720px;
}

.background-overlay:before {
  content: '';
  background-color: rgba(0,0,0,0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-text {
  color: #000;
  position: relative;
  margin-top:100px;
}

.hero-text h1 {
  max-width: 790px;
  width: 100%;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.hero-text h3 {
  max-width: 790px;
  width: 100%;
  padding: 0 15px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.hero-text span {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.hero-arrow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.hero-arrow a {
  color: #fff;
  font-size: 44px;
}

.hero-arrow a:hover {
  color: #009B4E; 
}

/* SITEMAIN
================================================== */
.site-main {
  position: relative;
}

/* site-section */
.site-section {
  padding: 150px 0;
}

.site-section-small {
  padding: 0px 0;
}

.section-title {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  padding: 0 0 30px 0;
  margin: 0;
}

.section-title-big {
  font-size: 64px;
  margin:0 0 60px 0;
  font-weight: 700;
}

.section-title-small {
  font-size: 26px;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.section-text {
  line-height: 25px;
  max-width: 550px;
  margin: 0 auto 60px;
}

/* PAGES
================================================== */

/*
 * HOMEPAGE
 */

/* Section: Quote */
.quote {
  font-size: 18px;
  margin: 0 auto;
  max-width: 750px;
}

.quote-owner {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 0;
}

/* Section: Works */
.section-works .col-md-12 {
	padding: 0 7.5px;
}

.section-works .row {
	margin: 0 -7.5px;
}

.section-works .col-xs-6 {
  padding-left: 7.5px;
  padding-right: 7.5px;
  height: 400px;
}

.section-works .container-fluid {
  padding: 0 7.5px;
}

.multi-item-controls {
  margin: 10px 0;
  height: 55px;
}

.multi-item-controls .carousel-control {
  background-image: none;
  position: relative;
  display: inline-block;
  width: 75px;
  height: 45px;
  padding: 0;
  opacity: 1;
}

.multi-item-controls .carousel-control i {
  line-height: 45px;
  font-size: 24px;
  color: #000;
  text-shadow: none;
}

.multi-item-carousel .cloneditem-1,
.multi-item-carousel .cloneditem-2,
.multi-item-carousel .cloneditem-3 {
display: none;
}

.img-carousel {
  display: block;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* Section: Service */
.service {
  position: relative;
}

.service-content {
  padding-left: 80px;
}

.service + .service {
  margin-top: 50px;
}

.service p:last-child {
  margin-bottom: 0;
}

.service-icon {
  position: absolute;
  height: 65px;
  width: 65px;
  text-align: center;
  background-color: #f9f8f8;
  border-radius: 50%;
}

.service-icon .fa {
  font-size: 30px;
  line-height: 65px;
  color: #009B4E;
}

.service-title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 16px;
}

/* Section: Counter */
.counter-line:after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #4a4a4a;
}

.counter-line:first-child:after {
  content: none;
}

.counter {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

/* Section: Team */
.four-slides-slider .col-md-3 {
  height: 240px;
}

.one-slide-slider {
  margin-bottom:  70px;
}

.team-member {
  width: 100%;
}

.team-member-img {
  height: 320px;
  float: left;
  max-width: 270px;
  width: 100%;
}

.team-member-img-1 {
  background: url(../img/employee-1.jpg) no-repeat;
}

.team-member-info {
  padding:20px 0 0 330px;
}

.team-member-name {
  font-weight: 700;
  font-size: 16px;
  margin-top: 0;
}

.team-member-position {
  color: #009B4E; 
  font-style: italic;
}

.team-member-text {
  margin: 40px 0;
  color: #777e88;
}

.social-links a {
  line-height: 30px;
  padding: 4px 7px;
  font-size: 14px;
  color: #333;
  border: 1px solid #eeeeee;
  border-radius: 50px;
}

.social-links a:hover {
  color: #fff;
}

.social-links a i {
  width: 14px;
  text-align: center;
}

.section-team .multi-item-controls {
  margin-bottom: 0;
}

/* Section: Clients */
.testimonials.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.testimonial {
  padding: 25px;
  background-color: #fff;
}

.testimonial-content {
  min-height: 134px;
  padding: 10px 0 25px 170px;
  position: relative;
}

.testimonial-1 {
  background: url(../img/testimonial-1.jpg) no-repeat;
}

.testimonial-2 {
  background: url(../img/testimonial-2.jpg) no-repeat;
}

.testimonial-owner {
  position: absolute;
  bottom: 10px;
}

.testimonial-owner p {
  margin: 0;
  display: inline-block;
}

.testimonial-owner p:last-child {
  margin-left: 5px;
}

.slick-dots {
  top: -80px;
  bottom: 0;
  height: 20px;
}

.slick-dots li button {
  border-radius: 50%;
  background-color: #fff;
  height: 6px;
  width: 6px;
  padding: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.light-gray-bg .slick-dots li button {
  background-color: #3B3A36;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active button,
.slick-dots li:not(.slick-active):hover button {
  padding: 5px;
  border: 1px solid #fff;
  background-color: transparent;
}

.light-gray-bg .slick-dots li.slick-active button,
.light-gray-bg .slick-dots li:not(.slick-active):hover button {
  border: 1px solid #3B3A36;
  background-color: transparent;
}

/* Section: Social networks  */ 
.social-networks a {
  line-height: 100px; 
  text-align: center;
  width: 25%;
  float: left;
  font-size: 26px;
}

.social-networks a:hover {
  color: #fff;
}

/*
 * ABOUT-US
 */

/* Section: We-are-creative */

.about {
	background:#eee;
	padding:50px;
}

.lates {
	padding:50px;
}

.text-center i {
	font-size:30px;
	margin-top:10px;
	margin-bottom:30px;
	color:#fff;
	padding:50px;
	background:#09a021;
	border-radius:50%;
}

.hi-icon-effect i.fa:hover {
	background:#fff;
	color: #09a021;
	-webkit-transition: color 300ms, background-color 300ms;
  -moz-transition: color 300ms, background-color 300ms;
  -o-transition:  color 300ms, background-color 300ms;
  transition:  color 300ms, background-color 300ms;
}
 
.section-we-are-creative .col-sm-6 {
  padding: 0;
  height: 720px;
}

.section-we-are-creative .img-carousel {
  height: 100%;
}

.project-content {
  padding:0 15px 0 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.project-content h2,
.project-content p {
  max-width: 500px;
  width: 100%;
}

/* Section: clients-2 */ 
.section-clients-2 .testimonial-content {
  margin: 0 auto;
  padding: 0;
  max-width: 750px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.section-clients-2 .testimonial-content > p {
  font-size: 24px;
}

.testimonial-content img {
  height: 100px;
  width: 100px;
  margin: 20px auto 0;
  border-radius: 50%;
}

.section-clients-2 .testimonial-owner {
  position: relative;
  bottom: 0;
  margin-top: 20px;
}

.section-clients-2 .slick-dots {
  top: auto;
  bottom: -35px;
}

/*
 * PORTFOLIO
 */

/* Section: Portfolio */
.col-lg-fifth {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.portfolio .col-sm-4,
.portfolio .col-xs-6 {
  height: 300px;
  padding: 0;
}

.portfolio-sorting  {
  margin-bottom: 60px;
}

.portfolio-sorting .btn {
  line-height: normal;
  width: auto;
  padding: 8px 12px;
  text-transform: uppercase;
  font-size: 10px;
}

.portfolio-sorting .btn + .btn {
  margin-left: 15px;
}

.portfolio-sorting .active,
.portfolio-sorting .btn:active {
  background-color: #009B4E; 
  border-color: #009B4E; 
  color: #fff;
  box-shadow: none;
}

.col-lg-fifth a {
  height: 300px;
  position: relative;
}

.portfolio-info::before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 100%;
  right: 100%;
  height: 2px;
  content: '';
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
}

.portfolio-link:hover .portfolio-info::before {
  background: #ffffff;
  left: 0;
  right: 0;
  opacity: 1;
}

.portfolio-info-top,
.portfolio-info-bottom {
  height: 50%;
  overflow: hidden;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.portfolio-info-bottom {
  bottom: 0;
  top: auto;
}

.portfolio-link h3,
.portfolio-link p {
  margin: 0;
  padding: 20px;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  -webkit-transition: opacity 0.45s, -webkit-transform 0.45s;
  transition: opacity 0.45s,-webkit-transform 0.45s, -moz-transform 0.45s, -o-transform 0.45s, transform 0.45s;
}

.portfolio-link h3 {
  text-align: center;
  display: inline-block;
  font-weight: 300;
  text-transform: uppercase;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transform: translate3d(50%, 0%, 0);
  -moz-transform: translate3d(50%, 0%, 0);
  -webkit-transform: translate3d(50%, 0%, 0);
  -o-transform: translate3d(50%, 0%, 0);
  -ms-transform: translate3d(50%, 0%, 0);

}

.portfolio-link p {
  display: block;
  bottom: 0;
  text-align: left;
  font-weight: 300;
  top: 0%;
  background: #ffffff;
  transform: translate3d(-50%, 0%, 0);
  -moz-transform: translate3d(-50%, 0%, 0);
  -webkit-transform: translate3d(-50%, 0%, 0);
  -o-transform: translate3d(-50%, 0%, 0);
  -ms-transform: translate3d(-50%, 0%, 0);
}

.portfolio-link img {
  opacity: 1;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.portfolio-link:hover img {
  opacity: 0.7;
}

.portfolio-link:hover h3,
.portfolio-link:hover p {
  transform: translate3d(0%, 0%, 0);
  -moz-transform: translate3d(0%, 0%, 0);
  -webkit-transform: translate3d(0%, 0%, 0);
  -o-transform: translate3d(0%, 0%, 0);
  -ms-transform: translate3d(0%, 0%, 0);
  opacity: 1;
}

/*
 * PORTFOLIO ITEM
 */

/* Section: Portfolio-item */
#PortfolioItemSlider {
 margin-bottom: 0;
}

.portfolio-date-cat-cl li {
  line-height: 20px;
}

#PortfolioItemSlider img.img-carousel {
  height: 640px;
}

#PortfolioItemSlider .slick-dots {
  top: auto;
  bottom: 20px;
}

.section-portfolio-item .small-title,
.social-links .small-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

/*
 * BLOG
 */

/* Section: Blog */
.post-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.post-img {
  max-height: 420px;
}

a.post-title:hover,
.blog-post > a:hover + .post-content .post-title {
  color: #009B4E;
}

.post-meta {
  margin-top: 15px;
}

.post-meta li {
  display: inline-block;
  position: relative;
}

.post-meta li + li {
  padding-left: 10px;
}

.post-meta li + li:before {
  content: '';
  padding: 2px;
  border-radius: 50px;
  background-color: #777e88;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.post-meta li a {
  color: #333;
}

.post-meta li a:hover {
  color: #009B4E;;
} 

.post-info {
  max-width: 40%;
  float: left;
  padding-right: 30px;
  display: inline-block;
}

.post-content .section-text {
  max-width: 100%;
  margin-bottom: 10px;
}

.post-img-slider .slick-dots{
  top: auto;
  bottom: 28px;
}

.post-content {
  margin: 25px 0 60px 0;
}

.col-md-12:last-child .post-content {
  margin-bottom: 0;
}

/* 
 * Sidebar
 */
.widget + .widget {
  margin-top: 40px;
}

.widget-title {
  font-weight: 700;
}

/* Search-form */
.search-form  {
  position: relative;
}

.search-form input {
  margin-bottom: 0;
}

/* Categories */
.widget-categories li {
  margin-top: 15px;
}

.widget-categories li a {
  color: #777e88;
}

.widget-categories li a:hover {
  padding-left: 10px;
  color: #009B4E;
}

/* Latest-posts */
.widget-latest-posts {
  position: relative;
}

.posts-list li {
  min-height: 70px;
}

.posts-list li + li {
  margin-top: 30px;
}

.widget-thumb {
  position: absolute;
  left: 0;
  height: 70px;
  width: 70px;
}

 .widget-post-info {
  padding-left: 90px;
}

.widget-post-title {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
}

.widget-post-date {
  font-size: 12px;
  color: #333;
  margin: 10px 0 0 0;
}

.posts-list li a:hover .widget-post-title {
  color: #009B4E;
}

/* Tags */ 
.widget-tags ul li {
  display: inline-block;
  margin-bottom: 5px
}

.widget-tags ul li a {
  display: block;
  background-color: #f9f8f8;
  color: #292a2c;
  padding: 10px;
  font-size: 12px;
}

.widget-tags ul li a:hover {
  background-color: #009B4E;
  color: #fff;
}

/*
 * BLOG POST
 */

/* Section: Blog post  */
.post-information {
  position: relative;
  padding: 20px;
  margin-top: 70px;
  border: 1px solid #eee;
}

.post-comment {
  position: relative;
  margin-top: 40px;
}

.post-information img,
.post-comment img{
  float: left;
  height: 70px;
  width: 70px;
  border-radius: 50px;
}

.post-information-content,
.post-comment-content {
  padding-left: 95px;
  padding-top: 5px;
}

.post-author-name,
.post-comment-author-name {
  color: #000;
  font-weight: 700;
  margin-bottom: 5px;
}

.post-comment-author-name {
  display: inline-block;
}

.post-author-position {
  color: #777e88;
  font-style: italic;
  margin-bottom: 20px;
}

.post-comments {
  margin-top: 70px;
}

.post-comments h3 {
  font-weight: 700;
  margin-bottom: 30px;
}

.post-comment-date {
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
}

.comment {
  margin: 15px 0;
}

.replied{
  margin-left: 30px;
}

/* Leave a comment */
.leave-comment {
  margin-top: 60px;
}

/*
 * CONTACT
 */

/* Section: contact-us */
.section-contact-us .site-section-small {
  position: relative;
  height: 600px;
}

.get-in-touch {
  position: absolute;
  left: 20%;
}

.get-in-touch p {
  max-width: 560px;
  width: 100%;
}

.get-in-touch a:hover {
  text-decoration: underline;
}

.get-in-touch li {
  line-height: 20px;
}

/* contact-form */ 
.contact-form {
  max-width: 770px;
  width: 100%;
  padding: 0 15px;
}

/* Section: map */
.section-map {
  height: 500px;
  width: 100%
}

/* FOOTER
================================================== */
.site-footer {
  padding-top: 0px;
  background: #fff;
  position: relative;
}

.site-footer .row {
  margin-top: 70px;
  margin-bottom: 150px;
}

.email {
  text-align: center;
}

.email a {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.email a:hover {
  text-decoration: underline;
}

.skill h2{
	margin-top:-10px;
	margin-bottom: 25px;
}

.progress-wrap{
  position: relative;
}

.progress .color1,
.progress .color1 .bar-width{
  background: #2d7da4;
}

.progress .color2,
.progress .color2 .bar-width{
  background: #6aa42f;
}

.progress .color3,
.progress .color3 .bar-width{
  background: #ffcc33;
}

.progress .color4,
.progress .color4 .bar-width{
  background: #db3615;
}

.progress, 
.progress-bar {
  height: 15px;
  line-height: 15px;
  background: #e6e6e6;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  text-align: right;
}

.progress{
  position: relative;
}

.progress .bar-width{
  position: absolute;
  width: 40px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  top: -30px;
  border-radius: 2px;
  margin-left: -30px;
}

.progress span{
  position: relative;
}

.progress span:before{
  content: " ";
  position: absolute;
  width: auto;
  height: auto;
  border-width: 8px 5px;
  border-style: solid;
  bottom: -15px;
  right: 8px;
}

.progress .color1 span:before{
  border-color: #2d7da4 transparent transparent transparent;
}

.progress .color2 span:before{
  border-color: #6aa42f transparent transparent transparent;
}

.progress .color3 span:before{
  border-color: #ffcc33 transparent transparent transparent;
}

.progress .color4 span:before{
  border-color: #db3615 transparent transparent transparent;
}

.site-footer li a:hover {
  text-decoration: underline;
}

.site-footer .site-title {
  position: relative;
  left: 0;
}

.site-footer .site-title span {
  color: #333;
}

.site-footer .small-title {
  font-weight: 700;
  line-height: 30px;
}

.site-footer .list-unstyled {
  margin-bottom: 0;
}

.site-footer .list-unstyled li a {
  color: #333;
}

.site-footer .list-unstyled li.active a {
  text-decoration: underline;
  pointer-events: none;
}

.site-footer li,
.site-footer p {
  line-height: 25px;
}

/* copyright */
.copyright {
  background: #09a021;
  border-top: 2px solid #09a021;
  padding: 0 15px;
  text-align: center;
}

.copyright p {
  padding: 25px 0;
  margin-bottom: 0;
}

.dhover
{
	color:#fff;
}

.dhover:hover
{
	color:#f4ffab;
}

/* --- Map --- */
.map{
	position:relative;
}

.map iframe{
	width:100%;
	height:450px;
	border:none;
}

.map-grid iframe{
	width:100%;
	height:350px;
	border:none;
	margin:0 0 -5px 0;
	padding:0;
}

.media-body p {
	margin-bottom:30px;
}

.media ul li {
	list-style:none;
}

.media i {
	color:#09a021;
	font-size:50px;
}

.media h4 {
	font-size:20px;
	font-weight:600;
	color:#09a021;
}

.scrollTop {
  position: fixed;
  width:50px;
  height:50px;
  bottom: 10px;
  right: 30px;
  background-color: #d9230b;
  padding: 5px 5px;
  text-align:center;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.scrollTop:hover {
  background-color: #555;
  padding: 2px 2px;
}

.scrollTop a {
  font-size: 24px;
}


.copyright .yellow-text:hover {
  color: #009B4E;
  text-decoration: underline;
}