@import 'framework.css';
@import 'stylesheet.css';


/*-------------------------------*/
/* GENERAL STYLE		   		                												  
/*-------------------------------*/
body {
  font: 16px/26px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  color: #5c5c5c;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
}
p {
  font: normal 16px/26px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  color: #5c5c5c;
  margin-bottom: 0;
}
a {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
a:hover {
  color: #1bbc9b;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: #2a333b;
}
h1 {
  font-size: 42px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 23px;
}
h4 {
  font-size: 23px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
button {
  color: #ffffff;
  background-color: #1bbc9b;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  padding: 15px 20px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  border: none;
}
button:hover {
  background-color: #19af90;
}
.btn a {
  color: #ffffff;
  background-color: #1bbc9b;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  padding: 15px 20px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.btn a:hover {
  background-color: #19af90;
}



/*-------------------------------*/
/* HEADER STYLE		   		                												  
/*-------------------------------*/
.header-wrapper {
  background-color: #2a333b;
  height: auto;
}
.logo {
  padding: 50px 50px 50px 0;
  float: left;
  display: inline-block;
}

.logo h1 {
  color:#fff;
  font-family: 'Courgette', cursive;
  font-size:50px;
}
.logo .logo-img {
  width: 100%;
  height: 100%;
}
.logo .site-description {
  color: #a5b3bf;
  display: inline-block;
  border-left: 1px solid #3f4d59;
  margin-left: 30px;
  padding-left: 30px;
}
.social-icons {
  float: right;
  margin: 52px 0;
}
.social-icons ul {
  padding: 0;
  margin: 0;
}
.social-icons li {
  margin: 0 0 1px 1px;
  display: inline-block;
  float: left;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  background-color: #394550;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.social-icons li a {
  display: block;
  text-align: center;
  line-height: 40px;
  color: #a5b3bf;
  font-size: 16px;
}
.social-icons li:hover {
  background-color: #3f4d59;
}
.social-icons li:hover a {
  color: #ffffff;
}


/* MENU NAV */
.navigation-wrapper {
  background-color: #f0f2f4;
}
.tinynav {
  display: none;
}
.menu {
  float: left;
  padding: 30px 0;
}
.menu > ul {
  padding: 0;
  margin: 0;
}
.menu > ul li {
  position: relative;
}
.menu > ul > li {
  display: inline;
  float: left;
  margin-right: 15px;
}
.menu > ul > li a { 
  padding: 33px 0;
}
.menu > ul > li:not(:last-child):after {
  content: '/';
  margin-left: 15px;
  color: #a5b3bf;
}
.menu > ul > li a {
  color: #2a333b;
  font-weight: bold;
}
.menu > ul > li a:hover {
  color: #1bbc9b;
}
.menu > ul > li .active {
  color: #1bbc9b;
}
.menu > ul > li ul {
  background-color: #2a333b;
  visibility: hidden;
  z-index: 9999;
  position: absolute;
  padding: 0;
  margin: 0;
  min-width: 160px;
  list-style-type: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.menu > ul > li ul li {
  padding: 0 20px;
  white-space: nowrap;
  line-height: 30px;
}
.menu > ul > li ul li a {
  color: #a5b3bf;
  padding: 8px 0 8px 0;
  display: block;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #3f4d59;
}
.menu > ul > li ul li a:hover {
  color: #ffffff;
}
.menu > ul > li:hover > ul {
  visibility: visible;
  left: 0;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.menu > ul > li > ul {
  top: 56px;
  left: 10%;
}
.menu > ul > li > ul > li ul {
  top: 0;
  left: 110%;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.menu > ul > li > ul > li:hover ul {
  visibility: visible;
  left: 100%;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#searchform {
  float: right;
  padding: 0;
  margin: 0;
}
#searchform fieldset {
  margin: 0;
  border: none;
  padding: 0;
}
#searchform input {
  height: 35px;
  display: inline;
  font-size: 14px;
  margin: 0;
  float: left;
  margin-top: 20px;
  width: 230px;
  border: 1px solid #c3c5c7;
  color: #5c5c5c;
  padding-left: 10px;
  -webkit-border-radius: 1px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 1px;
  -moz-background-clip: padding;
  border-radius: 1px;
  background-clip: padding-box;
  background-image: url(../images/icons/forms.png);
  background-position: 100% 4px;
  background-repeat: no-repeat;
}
#searchform input[type="submit"] {
  display: none;
}



/* WELCOME TEXT STYLE */
.welcome-text {
  margin-top: 60px;
}
.welcome-text h1 {
  font-weight: bold;
}
.welcome-text .site-description {
  margin-top: 15px;
  width: 75%;
}



/* PORTFOLIO STYLE */
.page-header {
  margin-top: 60px;
  margin-bottom: 40px;
}
.page-header .page-title {
  float: left;
}
.page-header .page-title h2 {
  font-weight: bold;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: translate3d(0,0,0) scale(2);
  -moz-transform: translate3d(0,0,0) scale(2);
  -o-transform: translate3d(0,0,0) scale(2);
  -ms-transform: translate3d(0,0,0) scale(2);
  transform: translate3d(0,0,0) scale(2);
}
.page-header .page-title h2.on {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.page-header .page-title span {
  text-transform: uppercase;
  font-size: 12px;
  color: #7f8185;
}
.page-header .btn {
  float: right;
  line-height: 56px;
}
h2.page-title {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: translate3d(0,0,0) scale(2);
  -moz-transform: translate3d(0,0,0) scale(2);
  -o-transform: translate3d(0,0,0) scale(2);
  -ms-transform: translate3d(0,0,0) scale(2);
  transform: translate3d(0,0,0) scale(2);
}
h2.page-title.on {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#portfolio.isotope .portfolio-item {
  margin-left: 3.2%;
  left: 4px;
}
#portfolio .portfolio-item {
  margin-bottom: 35px;
  position: relative;
  height: 240px;
  background-color: #f0f2f4;
  overflow: hidden;
  display: inline-block;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
#portfolio .portfolio-item.on {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#portfolio .portfolio-item img {
  width: 100%;
  display: block;
}
#portfolio .portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background: rgba(42, 51, 59, 0.9);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
#portfolio .portfolio-item .overlay h3 {
  padding: 30px;
  font-size: 24px;
  line-height: 1.5em;
}
#portfolio .portfolio-item .overlay h3 a:hover {
  color: #ffffff;
}
#portfolio .portfolio-item .overlay .icon-portfolio {
  width: 50px;
  height: 40px;
  background-color: #1bbc9b;
  display: block;
  position: absolute;
  bottom: 30px;
  right: 30px;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
#portfolio .portfolio-item .overlay .icon-portfolio i {
  display: block;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
}
#portfolio .portfolio-item .overlay .icon-portfolio:hover {
  color: #ffffff;
}
#portfolio .portfolio-item:hover .overlay {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#portfolio .pagination {
  margin-bottom: 60px;
  padding-bottom: 60px;
}
#portfolio .filter {
  position: relative;
  z-index: 20;
}
#portfolio .filter ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#portfolio .filter ul li {
  width: 100%;
  background-color: #2a333b;
}
#portfolio .filter ul li a {
  background-color: #2a333b;
  color: #a5b3bf;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  display: block;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  margin: 0 20px;
  border-bottom: 1px solid #3f4d59;
}
#portfolio .filter ul li a:hover {
  color: #ffffff;
}
#portfolio .filter:hover ul {
  display: block;
}
#portfolio > .pages .row {
  display: none;
}
.portfolio-project {
  margin: 60px 0;
}
.portfolio-project .preview-project {
  width: 100%;
  height: 610px;
  overflow: hidden;
}
.portfolio-project .preview-project img {
  width: 100%;
  height: auto;
}
#slides {
  position: relative;
}
.slidesjs-navigation {
  position: absolute;
  z-index: 9999;
  width: 50px;
  height: 50px;
  float: left;
  margin-left: 1px;
  background-color: rgba(0,0,0,.6);
  bottom: 30px;
  right: 30px;
}
.slidesjs-navigation i {
  text-align: center;
  line-height: 50px;
  display: block;
}
.slidesjs-previous {
  right: 81px;
}
.portfolio-project .project-details {
  margin-top: 40px;
}
.portfolio-project .project-description .date-release {
  color: #7f8185;
  font-size: 14px;
}
.portfolio-project .project-description .project-title {
  margin-bottom: 10px;
}
.portfolio-project .project-description,
.portfolio-project .project-infos {
  border-top: 4px solid #f0f2f4;
  padding-top: 40px;
}
.portfolio-project .project-infos ul {
  padding: 0;
  margin: 0;
}
.portfolio-project .project-infos ul li {
  list-style: none;
  margin-bottom: 15px;
  color: #7f8185;
  font-size: 14px;
}
.portfolio-project .project-infos ul li span {
  color: #5c5c5c;
  font-weight: bold;
  display: block;
}
.portfolio-project .project-infos ul li span:after {
  content: ':';
}
.portfolio-project .project-infos ul li a {
  color: #7f8185;
}
.portfolio-project .project-infos ul li a:hover {
  color: #1bbc9b;
}




/* SERVICE STYLE */
#services {
  background-color: #fff;
  margin-top: 45px;
  margin-bottom: 80px;
}
#services .service {
  padding-top: 40px;
  overflow: hidden;
}
#services .service .icon {
  position: relative;
  left: 20px;
  width: 40px;
  height: 40px;
  display: inline-block;
  float: left;
  font-size: 38px;
  color: #5c5c5c;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -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;
}
#services .service .icon.show {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  left: 0;
}
#services .service .service-cnt {
  padding-left: 70px;
}
#services .service .service-cnt .service-description {
  margin-top: 10px;
}
#services .service-border .service {
  border-top: 4px solid #f0f2f4;
}




/* TESTIMONIALS STYLE */
#testimonials {
  background: #f0f2f4;
  padding: 60px 0;
}
#testimonials .inner {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}
#testimonials .icon {
  display: block;
  border: 1px solid #5c5c5c;
  font-size: 16px;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  text-align: center;
  line-height: 35px;
  margin: 0 auto;
  margin-bottom: 30px;
}
#testimonials .testimonial-item {
  width: 100%;
  display: block;
  margin: 0;
  text-align: center;
}
#testimonials .testimonials-user {
  color: #7f8185;
}
#testimonials .testimonials-user a {
  color: #2a333b;
  font-weight: bold;
}
#testimonials .testimonials-user a:hover {
  color: #1bbc9b;
}




/* FOOTER STYLE */
.footer-wrapper {
  background-color: #2a333b;
  padding: 60px 0;
  color: #a5b3bf;
}
.footer-wrapper .widget-title {
  color: #ffffff;
  margin-bottom: 35px;
}
.footer-wrapper p {
  color: #a5b3bf;
}
.footer-wrapper .recent-posts {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-wrapper .recent-posts h2 {
  font-weight: 100;
}
.footer-wrapper .recent-posts li {
  margin-bottom: 30px;
}
.footer-wrapper .recent-posts span {
  font-size: 12px;
  text-transform: uppercase;
}
.footer-wrapper .recent-posts figure {
  float: left;
  width: 60px;
  height: 60px;
  background-color: #7f8185;
  display: block;
  overflow: hidden;
}
.footer-wrapper .recent-posts figure img {
  display: block;
  width: 100%;
}
.footer-wrapper .recent-posts .post-detail {
  padding-left: 75px;
}
.footer-wrapper .instagram-placeholder {
  display: inline-block;
  margin: 0 0 3% 3%;
  vertical-align: top;
  width: 30%;
  max-width: 75px;
  margin-right: -0.25em;
  margin-top: -0.25em;
}
.footer-wrapper .instagram-placeholder img {
  width: 100%;
}
.footer-bottom {
  padding: 20px 0;
  background-color: #242b32;
}
.footer-bottom a.icon {
  cursor: pointer;
  float: right;
  width: 45px;
  height: 45px;
  background-color: #1bbc9b;
  display: block;
  text-align: center;
  line-height: 45px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.footer-bottom a.icon:hover {
  color: #ffffff;
  background-color: #19af90;
}
.footer-bottom .copyright {
  margin-top: 10px;
  color: #a5b3bf;
}



/*-------------------------------*/
/* CONTACT STYLE		   		                												  
/*-------------------------------*/
.contact-form .page-title {
  font-weight: bold;
}
#contactForm {
  margin-top: 40px;
}
#contactForm .contactform {
  padding: 0;
  margin: 0;
}
#contactForm .contactform li {
  list-style: none;
  display: block;
  margin-bottom: 20px;
}
#contactForm label,
#contactForm input {
  margin: 5px 0;
  display: block;
}
#contactForm input,
#contactForm textarea {
  border: none;
  background-color: #f0f2f4;
  padding: 15px;
  outline: none;
}
#contactForm textarea {
  width: 75%;
}
#contactForm #contactName,
#contactForm #email {
  width: 50%;
}
/*-------------------------------*/
/* SIDEBAR STYLE		   		                												  
/*-------------------------------*/
#sidebar .sidebar-widget {
  display: block;
  overflow: hidden;
  margin-bottom: 60px;
}
#sidebar .widget-title {
  font-weight: bold;
  color: #2a333b;
  margin-bottom: 25px;
}
#sidebar .recent-posts ul {
  padding: 0;
  margin: 0 0 0 2px;
  list-style: none;
}
#sidebar .recent-posts a {
  color: #2a333b;
}
#sidebar .recent-posts a:hover {
  color: #1bbc9b;
}
#sidebar .recent-posts li {
  margin-bottom: 30px;
}
#sidebar .recent-posts span {
  font-size: 12px;
  text-transform: uppercase;
}
#sidebar .recent-posts figure {
  border: 3px solid #f0f2f4;
  float: left;
  width: 60px;
  height: 60px;
  background-color: #7f8185;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#sidebar .recent-posts figure img {
  display: block;
  width: 100%;
}
#sidebar .recent-posts figure:hover {
  border: 3px solid #1bbc9b;
}
#sidebar .recent-posts .post-detail {
  padding-left: 75px;
}
.simpler-social ul {
  padding: 0;
  margin: 0;
}
.simpler-social ul li {
  list-style: none;
  display: inline;
}
.simpler-social ul li a {
  position: relative;
  font-size: 18px;
  margin: 0px 0px 1px 1px;
  width: 50px;
  height: 50px;
  background-color: #b3b4b7;
  float: left;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  z-index: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.simpler-social ul li a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 1;
}
.simpler-social ul li .icon-facebook {
  background-color: #3b5998;
}
.simpler-social ul li .icon-twitter {
  background-color: #019ad2;
}
.simpler-social ul li .icon-linkedin {
  background-color: #39C;
}
.simpler-social ul li .icon-deviantart {
  background-color: #506256;
}
.simpler-social ul li .icon-dribbble {
  background-color: #ea4c89;
}
.simpler-social ul li .icon-google-plus {
  background-color: #ba3526;
}
.simpler-social ul li .icon-feed {
  background-color: #ff9900;
}
.simpler-social ul li .icon-picassa {
  background-color: #1a254a;
}
.simpler-social ul li .icon-github {
  background-color: #60b044;
}
.categories ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.categories ul li {
  margin-left: 3px;
  padding: 7px 0;
  width: 90%;
  border-bottom: 1px solid #eee;
}
.categories ul li a {
  color: #2a333b;
}
.categories ul li a:hover {
  color: #1bbc9b;
}
.dribbble-images figure {
  margin: 0 10px 10px 0;
  width: 154px;
  height: 140px;
  display: inline-block;
  float: left;
  border: 5px solid #f0f2f4;
  overflow: hidden;
}
.dribbble-images figure img {
  width: 100%;
  display: block;
}




/*-------------------------------*/
/* BLOG POSTS STYLE		   		                												  
/*-------------------------------*/
.blog-post {
  border-bottom: 4px solid #f0f2f4;
  padding-bottom: 50px;
  margin-bottom: 50px;
  overflow: hidden;
}
.blog-post .blog-thumbnail {
  height: 418px;
  width: 100%;
  overflow: hidden;
}
.blog-post .blog-thumbnail img {
  width: 100%;
}
.blog-post a {
  color: #2a333b;
}
.blog-post a:hover {
  color: #1bbc9b;
}
.blog-post .post-title {
}

.blog-post h3 {margin-top:30px;}
.blog-post .meta-info {
  margin-bottom: 20px;
  font-size: 14px;
  color: #7f8185;
}
.blog-post .post-description {
  margin-bottom: 20px;
}
.blog-post .read-more {
  font-weight: bold;
}
.comment-title {
  font-weight: bold;
}
.comment-list {
  margin-top: 40px;
}
.comment-list a {
  color: #2a333b;
}
.comment-list a:hover {
  color: #1bbc9b;
}
.comment-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.comment-list .parent-comment,
.comment-list .children-comment {
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f2f4;
  padding-bottom: 30px;
}
.comment-list .children-comment {
  margin-left: 110px;
}
.comment-list .comment-avatar {
  width: 80px;
  height: 80px;
  overflow: hidden;
  float: left;
  margin-right: 20px;
}
.comment-list .comment-avatar img {
  display: block;
  width: 100%;
}
.comment-list .comment-details {
  padding-left: 110px;
}
.comment-list .comment-details p {
  margin-top: 10px;
}
.comment-list .comment-details .comment-meta {
  margin-top: 10px;
}
.comment-list .comment-details .comment-meta .meta-sep {
  margin: 0 10px;
}
.comment-list .comment-details .comment-meta a {
  color: #7f8185;
}
.comment-list .comment-details .comment-meta a:hover {
  color: #1bbc9b;
}
.comment-form {
  padding-top: 30px;
}
.comment-form #commentform {
  margin-top: 40px;
}
.comment-form #commentform input {
  width: 30%;
  padding: 10px 15px;
}
.comment-form #commentform input,
.comment-form #commentform textarea {
  background-color: #f0f2f4;
  border: none;
  outline: none;
}
.comment-form #commentform label {
  width: 100px;
  float: left;
}
.comment-form #commentform textarea {
  width: 75%;
  padding: 15px;
}
.comment-form .form-submit #submit {
  width: auto;
  color: #ffffff;
  background-color: #1bbc9b;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  padding: 15px 20px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.comment-form .form-submit #submit:hover {
  background-color: #19af90;
}
.pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination ul li {
  float: left;
  display: inline-block;
  margin-right: 1px;
  width: 40px;
  height: 50px;
  background-color: #c3ccd4;
}
.pagination ul li a {
  display: block;
  text-align: center;
  line-height: 50px;
  /*&:hover {
					background-color: lighten(@h-color, 55%);
					color: @white-color;
				}*/

}
.pagination ul li a:hover {
  background-color: #1bbc9b;
  color: #ffffff;
  /*&:hover {
					cursor:default;
					color: @white-color;
				}*/

}
.latest-posts {
  margin-top: 20px;
  margin-bottom: 50px;
}
.latest-posts ul {
  padding: 0;
  margin: 0 !important;
}
.latest-posts ul li {
  list-style: none !important;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f4;
}
.latest-posts ul li span {
  font-size: 13px;
  color: #7f8185;
}
.latest-posts ul li h6 a {
  color: #2a333b;
}
.latest-posts ul li h6 a:hover {
  color: #1bbc9b;
}
.latest-posts ul li figure {
  width: 50px;
  height: 50px;
  overflow: hidden;
  float: left;
  border: 3px solid #f0f2f4;
  margin-right: 20px;
}
.latest-posts ul li figure img {
  width: 100%;
  display: block;
}
.archive-list {
  margin-top: 20px;
  margin-bottom: 50px;
}
.archive-list ul {
  padding: 0;
  margin: 0 0 0 30px;
}
.archive-list ul li {
  list-style: disc;
  color: #2a333b;
  line-height: 28px;
}
.archive-list ul li a {
  color: #2a333b;
}
.archive-list ul li a:hover {
  color: #1bbc9b;
}



/*-------------------------------*/
/* SHORTCODES STYLE		   		                												  
/*-------------------------------*/
#shortcodes {
  margin: 60px 0;
}
#shortcodes .row {
  margin-top: 40px;
}
.alerts {
  margin-top: 50px;
}
.alert {
  color: #ffffff;
  font-weight: bold;
  min-height: 50px;
  line-height: 50px;
  padding-left: 15px;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.alert.close {
  -webkit-transform: scale(40);
  -moz-transform: scale(40);
  -o-transform: scale(40);
  -ms-transform: scale(40);
  transform: scale(40);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.alert-close {
  float: right;
  font-weight: normal;
  font-size: 14px;
  cursor: pointer;
  line-height: 50px;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.1);
  height: 50px;
  width: 50px;
  text-align: center;
}
.error-alert {
  background-color: #D66060;
}
.information-alert {
  background-color: #7DBCDB;
}
.success-alert {
  background-color: #BDD672;
}
.warning-alert {
  background-color: #E6D97E;
}
blockquote {
  margin: 0;
  padding: 20px;
  width: auto;
  background-color: #f0f2f4;
  border-left: 5px solid #d2d9df;
}



/*-------------------------------*/
/* ABOUT US STYLE		   		                												  
/*-------------------------------*/
#about-us .page-title {
  margin-top: 60px;
  margin-bottom: 40px;
}
#about-us .our-team {
  margin-bottom: 40px;
}
#about-us .member-team {
  position: relative;
  top: 100px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-bottom: 40px;
}
#about-us .member-team .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 320px;
}
#about-us .member-team .img img {
  width: 100%;
  height: auto;
  display: block;
}
#about-us .member-team .member-info {
  display: block;
  margin-top: 20px;
  text-align: center;
}
#about-us .member-team .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
#about-us .member-team:hover .overlay {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.social-t {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: 30px;
  list-style: none;
}
.social-t li {
  list-style: none;
  display: inline-block;
  float: left;
  width: 50px;
  height: 50px;
  margin-left: 1px;
  background-color: rgba(0, 0, 0, 0.6);
}
.social-t li:hover {
  background-color: #1bbc9b;
}
.social-t li:first-child {
  margin-left: 0;
}
.social-t li a {
  display: block;
  line-height: 50px;
  text-align: center;
}
.social-t li a:hover {
  color: #ffffff;
}
/*******************************
 * Isotope
 *******************************/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
