 /*************************************

Template Name: kazo - Personal Portfolio Template
Author: ThemeSockets
Version: 1.0
Design and Developed by: ThemeSockets

NOTE: This is main stylesheet of the template.

****************************************/
 /*================================================
            Table of contents  
==================================================
 
00. BASE CSS
01. PRELOADER
02. SECTION TITLE AND SECTION PADDING
03. HEADER AREA
04. WELCOME AREA
05. ABOUT AREA
06. SERVICES AREA
07. WORK AREA
08. STAT AREA
09. TESTIMONIAL AREA 
10. PRICING AREA 
11. CTA AREA 
12. LOGO CAROUSEL AREA 
13. CONTACT INFO AREA
14. BLOG AND SINGLE BLOG PAGE
15. FOOTER AREA

/*====================================================
            End table content 
===================================================*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

 /*================================================
        00 BASE CSS
==================================================*/
body {
     font-family: 'Poppins', sans-serif;
     color: #444;
     font-weight: 400;
     line-height: 28px;
     font-size: 15px;
 }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}
 a:focus {
     outline: 0 solid
 }
 img {
     max-width: 100%;
     height: auto;
 }
a{
    transition: 0.4s
}
 html,
 body {
     height: 100%
 }
 a:hover {
     text-decoration: none
 }
 /* Remove Chrome Input Field's Unwanted Yellow Background Color */
 
 input:-webkit-autofill,
 input:-webkit-autofill:hover,
 input:-webkit-autofill:focus {
     -webkit-box-shadow: 0 0 0px 1000px white inset !important;
 }

 /*================================================
             01 PRELOADER
==================================================*/
 
.preeloader {
    background: rgba(255, 255, 255, 1) none repeat scroll 0 0;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999999;
}

.preloader-spinner {
    -webkit-animation: 1s ease-out 0s normal none infinite running pulsate;
    animation: 1s ease-out 0s normal none infinite running pulsate;
    border: 5px solid #292929;
    border-radius: 40px;
    display: block;
    height: 40px;
    left: 50%;
    margin: -20px 0 0 -20px;
    opacity: 0;
    position: fixed;
    top: 50%;
    width: 40px;
    z-index: 10;
}

@-webkit-keyframes pulsate {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes pulsate {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

 /*================================================
     02 SECTION TITLE AND SECTION PADDING
==================================================*/
 
 .section-title {
     margin-bottom: 65px;
     text-align: center;
     position: relative;
     z-index: 1;
 }
 .section-title h2 {
     font-size: 45px;
     text-transform: uppercase;
     display: inline-block;
     margin-bottom: 5px;
     font-weight: 800;
 }
.title-bg {
    font-family: 'Montserrat', sans-serif;
	position: absolute;
	top: 8px;
	left: 0;
	font-size: 115px;
	font-weight: 800;
	text-align: center;
	right: 0;
	color: #eee;
	z-index: -1;
	opacity: 0.9;
}
 .section-title p {
     font-size: 14px;
     margin: 0;
 }
 .section-padding {
     padding: 100px 0;
 }
.stat-area.section-padding{
    padding: 140px 0;
}
 /*================================================
       03 HEADER AREA
==================================================*/
 
 .custom-navbar {
     border-width: 0;
     background: transparent;
     -webkit-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
 }
 .logo a {
    font-family: 'Montserrat', sans-serif;
	color: #fff;
	display: inline-block;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: 3px;
	margin-top: 21px;
	text-transform: uppercase;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
	line-height: 40px;
}
 .logo a:focus {
     text-decoration: none;
 }
 .main-menu {
     text-transform: uppercase;
 }
 .main-menu ul.navbar-nav {
     float: right;
 }
 .main-menu ul.nav.navbar-nav li.active {
     position: relative;
 }
 .main-menu ul.navbar-nav li a {
     color: #fff;
     font-weight: 500;
     font-size: 12px;
     padding: 30px 13px;
     -webkit-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
     position: relative;
 }
 .main-menu ul.navbar-nav li a:focus,  .main-menu ul.navbar-nav li a:hover {
     background: none;
 }
 .custom-navbar.top-nav-collapse .logo a {
     margin-top: 15px;
 }
 .custom-navbar.top-nav-collapse .main-menu ul.navbar-nav li a {
     color: #444;
     padding: 25px 13px;
 }
.logo a span {
     display: inline-block;
     font-size: 28px;
     padding: 9px 5px 8px 7px;
 }
 .custom-navbar.top-nav-collapse {
     background: #fff;
     box-shadow: 0 0 10px #222;
     border-width: 0;
 }
 .custom-navbar.top-nav-collapse .main-menu ul.navbar-nav li.active a:after {
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 /*================================================
        04 WELCOME AREA
==================================================*/
 
 .welcome-area {
     background-size: cover;
     background-position: center center;
     z-index: 1;
     position: relative;
     height: 100%;
 }
 .welcome-area:after,
 .stat-area:after {
     position: absolute;
     content: "";
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #000;
     opacity: .6;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
     z-index: -1;
 }
.bg-shape-1, .bg-shape-2 {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
}
.bg-shape-1{
    height: 100px;
    background-position: left top;
}
.bg-shape-2{
    height: 90px;
    background-position: center top;
}
 .welcome-table {
     display: table;
     width: 100%;
     height: 100%;
     text-align: center;
 }
 .welcome-cell {
     display: table-cell;
     vertical-align: middle;
 }
.welcome-text h2 {
	color: #fff;
	font-weight: 800;
	font-size: 80px;
    margin-bottom: 5px;
    line-height: 1.0;
}
.cd-headline.clip .cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}
.bct-text {
  color: #fff;
}
.cd-headline.clip {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
}
.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
     font-weight: 400;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
    color: #fff;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xclip */
.cd-headline.clip span {
  display: inline-block;
  padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 70%;
  background-color: #fff;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline b.is-visible {
  opacity: 1;
}
.social-links {
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}
.social-links ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.social-links li{
    display: inline-block;
    margin-right: 8px;
}
.social-links a {
	display: block;
	color: #444;
	font-size: 18px;
    margin-right: 10px;
    text-align: center;
}
.widget.social .social-links a{
   width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #444;
    color: #444;
    text-align: center;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 0;
}
 .welcome-area .home-arrow {
     text-align: center;
     position: absolute;
     bottom: -200px;
     left: 50%;
     -webkit-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
 }
 .welcome-area .home-arrow a {
     font-size: 34px;
 }
 .welcome-area .home-arrow .fa {
     display: inline-block;
     -webkit-transform-style: preserve-3d;
     transform-style: preserve-3d;
     -webkit-animation-name: home-arrow;
     animation-name: home-arrow;
     animation-duration: 2s;
     -webkit-animation-duration: 2s;
     -webkit-animation-iteration-count: infinite;
     animation-iteration-count: infinite;
     -webkit-animation-timing-function: linear;
     animation-timing-function: linear;
 }
 @-webkit-keyframes home-arrow {
     from {
         -webkit-transform: translate3d( 0, 0px, 0);
         transform: translate3d( 0, 0px, 0);
         filter: alpha(opacity=0);
         opacity: 0;
         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
     }
     10% {
         -webkit-transform: translate3d( 0, 5px, 0);
         transform: translate3d( 0, 5px, 0);
         filter: alpha(opacity=100);
         opacity: 1;
         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     }
     to {
         -webkit-transform: translate3d( 0, 30px, 0);
         transform: translate3d( 0, 30px, 0);
         filter: alpha(opacity=0);
         opacity: 0;
         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
     }
 }

 /*================================================
        05 ABOUT AREA
==================================================*/
.author-image {
	padding-bottom: 30px;
	padding-left: 30px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 0 100%;
}
.author-image img{
   
}
.about-text {
	margin-top: 15px;
    padding-left: 15px;
}
.about-text h2{
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}
.about-text h4{
    font-weight: 600;
}
.about-text h3 span{
    color: #18ba60;
}
h2.about-heading {
    
 }
.about-btn a {
	display: inline-block;
	padding: 8px 24px;
	text-transform: uppercase;
    color: #222;
    background-color: #fff;
    border: 2px solid #fff;
	font-weight: 500;
	margin-right: 10px;
	margin-top: 10px;
	border-radius: 45px;
}
.about-btn a.btn-black{
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.about-btn i.fa, .cta-area i.fa{
	margin-right: 8px;
}
.row.margin-top-80 {
  margin-top: 80px;
}
.skills {
	
}
.skill-section-title {
  margin-bottom: 50px;
}
.skill-section-title h3 {
  text-transform: uppercase;
  font-size: 32px;
}
.about-area .single-skill{
    margin-bottom: 32px;
}
.about-area .skill-info {
	overflow: hidden;
}
.about-area .skill-info h4 {
	text-transform: uppercase;
	font-size: 15px;
	margin-bottom: 10px;
    color: #444;
}
.about-area .progress {
	height: 10px;
	border-radius: 0px;
	box-shadow: none;
	overflow: visible;
    background-color: #ddd;
}
.about-area .progress .progress-bar {
	position: relative;
}
.about-area .progress .progress-bar span {
	font-size: 16px;
	right: 0;
	color: #fff;
	position: absolute;
	top: -17px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100%;
	font-size: 13px;
	font-weight: 600;
}
.about-text-area{
    position: relative;
}
 .about-text-area .owl-nav div {
	color: #333;
	font-size: 28px;
	left: 40px;
	margin-top: -25px;
	position: absolute;
	bottom: 31px;
	transition: 0.4s;
	z-index: 1;
}
 .about-text-area .owl-nav div.owl-next {
     left: auto;
     right: 40px;
}

 /*================================================
        06 SERVICES AREA
==================================================*/
 
.services-area{
    background-color: #f7f7f7;
}
 .single-service {
     position: relative;
     overflow: hidden;
     font-size: 15px;
     font-weight: 300;
     padding: 40px 30px;
     background-color: #fff;
     border-radius: 5px;
     position: relative;
     transition: box-shadow 0.4s ease 0s;
 }
.single-service:hover {
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
	background: #fff;
}
 .service-img {
     height: 65px;
     width: 60px;
     background-size: contain;
     background-repeat: no-repeat;
 }
 .single-service h3 {
     font-size: 18px;
     font-weight: 600;
     margin: 15px 0;
     text-transform: capitalize;
 }
 .single-service p {
     margin: 0;
 }
.service-overlay ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-overlay.text-left {
  margin-top: 10px;
}
.service-overlay.text-left li i {
	margin-right: 5px;
}

.service-list .owl-dots, .about-text-area .owl-dots{
     margin-top: 35px;
     text-align: center;
 }
 .service-list .owl-dots div, .about-text-area .owl-dots div{
     display: inline-block;
     height: 12px;
     margin-right: 7px;
     width: 12px;
     border-radius: 50%;
     background-color: transparent;
     border: 2px solid #444;
 }
.service-list .owl-dots div.active, .about-text-area .owl-dots div.active{
     border: 2px solid transparent;
}
.about-text-area .owl-dots div:last-child{
    margin-right: 0;
}
 /*================================================
        07 WORK AREA
==================================================*/
.work-area{
    background-color: #fff;
}
 .work-inner .mix {
     display: none;
 }
 ul.work-list {
     list-style: outside none none;
     margin-bottom: 30px;
     padding: 0;
 }
 ul.work-list li {
	cursor: pointer;
	display: inline-block;
	padding: 4px 20px;
	font-size: 15px;
	text-transform: uppercase;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 20px;
	border: 1px solid rgba(153, 153, 153, 0.2);
	background-color: transparent;
	margin-right: 10px;
	margin-bottom: 10px;
}
ul.work-list li.active{
   color: #fff;
}
 .single-work {
     position: relative;
     overflow: hidden;
     margin-bottom: 30px;
     
 }
 .single-work img {
     -webkit-transform: scale(1.15);
     transform: scale(1.15);
     -webkit-transition: all 0.4s ease 0s;
     transition: all 0.4s ease 0s;
 }
 .single-work:hover img {
     -webkit-transform: scale(1);
     transform: scale(1);
 }
 .item-hover {
	padding: 30px;
	left: 5px;
	position: absolute;
	top: 5px;
	z-index: 1;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: 0.4s;
	transition: 0.4s;
	right: 5px;
	bottom: 5px;
}
 .item-hover:before {
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: #fff;
     opacity: 0;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
     visibility: hidden;
     z-index: -1;
     -webkit-transition: 0.4s;
     transition: 0.4s;
 }
 .single-work:hover .item-hover:before {
     opacity: 0.95;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
     visibility: visible;
 }
 .single-work:hover .item-hover {
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 .work-table {
     display: table;
     height: 100%;
     text-align: left;
     width: 100%;
 }
 .work-tablecell {
     display: table-cell;
     vertical-align: middle;
 }
 .single-work:hover .hover-content {} .hover-content h4,
 .hover-content p {
     margin: 0;
 }
 .hover-content h4 {
     margin-bottom: 10px;
     font-weight: 600;
     font-size: 18px;
     color: #222;
     text-transform: capitalize;
 }
 .hover-content p {
     font-weight: 400;
     font-size: 14px;
     line-height: 24px;
 }
 .hover-content a {
     display: inline-block;
     font-size: 14px;
     height: 35px;
     line-height: 35px;
     color: #fff;
    margin-top: 12px;
    margin-right: 5px;
     text-align: center;
     -webkit-transition: all 0.6s ease 0s;
     transition: all 0.6s ease 0s;
     width: 35px;
     transition: 0.6s;
     border-radius: 50%;
 }
 /*===============================================
	    08. STAT AREA
===============================================*/
.stat-area{
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
 .single-stat {
  text-align: center;
}
.icon {
  color: #fff;
  font-size: 30px;
  text-align: center;
    margin-bottom: 20px;
}
.count-stat {
 
}
.count-stat h3 {
  margin-bottom: 3px;
  font-size: 30px;
  font-weight: 700;
    color: #fff;
}
.count-stat h4 {
  text-transform: capitalize;
  font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
}


 /*================================================
        09 TESTIMONIAL AREA 
==================================================*/
 
 .testimonial-area {
     
}
.single-testimonial {
	position: relative;
	background-color: #fff;
	padding:5px;
}
.testimonial-shadow {
    padding: 25px;
	box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.05);
}
 .t-image {
     height: 70px;
     left: 20px;
     position: absolute;
     right: 0;
     width: 70px;
 }
 .t-name {
     padding: 13px 0;
     font-size: 14px;
 }
 .t-image img {
     border-radius: 50%;
     width: 100%;
 }
 .t-author h4 {
     margin: 0;
     font-size: 16px;
     text-transform: uppercase;
 }
 .t-content {
     margin-top: 0;
     margin-bottom: 20px;
 }
.t-content p{
    font-size: 14px;
}
 .t-author {
     padding-left: 85px;
     padding-top: 30px;
     background-image: url(assets/img/arrow-line.png);
     background-repeat: no-repeat;
     background-position: left top;
 }
 .testimonial-area .owl-dots, .logo-carousel .owl-dots {
     margin-top: 35px;
     text-align: center;
 }
 .testimonial-area .owl-dots div, .logo-carousel .owl-dots div {
     display: inline-block;
     height: 12px;
     margin-right: 7px;
     width: 12px;
     border-radius: 50%;
     background-color: transparent;
     border: 1px solid #444;
 }
 
/*================================================
        10 CTA AREA 
==================================================*/
.cta-area{
    background-color: #f7f7f7;
}
.cta-area p{
    font-weight: 500;
}
.cta-area h2 {
  font-size: 42px;
  font-weight: 800;
  text-transform: capitalize;
    margin-bottom: 25px;
}
.cta-area a {
    display: inline-block;
  text-transform: capitalize;
  padding: 11px 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
    border-radius: 50px;
}


/*================================================
    11 PRICING AREA
==================================================*/
.pricing-area .box {
	background-color: #fcfcfb;
	text-align: center;
	margin: 40px 0 0 0;
	width: 100%;
	display: block;
	transition: 300ms linear;
	transition-property: box-shadow;
	max-width: 100%;
	border-radius: 12px;
	-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.pricing-area .box.left .price-box-header {
	border-radius: 12px 0 0 0;
}
.price-box-header {
	background: #f7f7f7;
	padding-bottom: 20px;
	border-radius: 12px 12px 0 0;
}
.box.middle .price-box-header{
    box-decoration-break: #fff;
}
.pricing-area .box.middle .heading, .pricing-area .box.middle .price{
    color: #fff;
}
.pricing-area .heading {
	text-align: center;
	color: #444;
	margin-top: 0;
	margin-bottom: 0;
	padding: 40px 0 0 0;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}
.pricing-area .price {
	font-size: 45px;
	font-weight: 700;
	text-align: center;
	display: inline-block;
	margin-top: 0;
	position: relative;
	top: 0;
	overflow: visible;
	z-index: 1;
	transition: 300ms linear;
	width: 100%;
	height: auto;
	line-height: 1.5;
}
.pricing-area .price span {
	font-size: 18px;
	font-weight: normal;
}
.pricing-area .price span {
	font-size: 18px;
	font-weight: normal;
}
.pricing-area ul {
	background-color: white;
	margin: 0;
	padding: 0;
	border-top: 0.0625rem solid #f3f1f1;
	text-align: left;
	color: #444;
	font-family: inherit;
	font-size: 15px;
	font-weight: normal;
	line-height: 1;
}
.pricing-area ul li {
	border-bottom: 0.0625rem solid #f3f1f1;
	position: relative;
    text-align: center;
	padding: 20px 15px;;
	list-style: none;
}
.pricing-area .options span {
	position: relative;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.pricing-area .options i.fa{
    margin-right: 5px;
}
.pricing-area .options i.fa.fa-close {
	color: red;
}
.pricing-area .options i.fa.fa-check{
    color: green;
}
.pricing-area a {
	background-color: white;
	border-radius: 15rem;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 3.125rem;
	text-transform: uppercase;
	padding: 6px 20px;
	margin-bottom: -1.875rem;
	margin-top: 2.1875rem;
	position: relative;
	top: 0.625rem;
	display: inline-block;
	vertical-align: baseline;
}

/*================================================
    12 LOGO CAROUSEL AREA
==================================================*/
 .logo-carousel-area {
     background-color: #f7f7f7;
}
 .logo-carousel img {
     width: auto !important;
     padding: 15px;
     background-color: #fff;
}

 /*================================================
        13 CONTACT INFO AREA
==================================================*/
 .contact-form,
 .author-adress {
 }
 .contact-form .form-group {
     margin-bottom: 15px;
}
 .form-control {
    padding: 12px 15px;
     font-size: 15px;
     height: auto;
     box-shadow: none !important;
     border: 1px solid #f4f4f4;
     border-radius: 0;
    background-color: #f4f4f4;
 }
.form-control:focus {
    border: 0px solid;
}
.contact-form .has-error .form-control{
     border: 0px solid;
}
 textarea.form-control {
     resize: vertical;
     height: 130px;
 }
.btn.btn-sent{
    height: 45px;
    width: 100%;
    font-size: 16px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
    text-transform: capitalize;
    transition: 0.4s;
}
 .btn.disabled,
 .btn[disabled],
 fieldset[disabled] .btn {
     box-shadow: none;
     cursor: not-allowed;
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 .btn.btn-effect.disabled {
     cursor: not-allowed;
 }
.single-info {
     position: relative;
     padding: 25px 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}
 .info-icon {
     position: absolute;
     top: 25px;
     left: 30px;
     width: 50px;
     height: 50px;
     font-size: 18px;
     color: #fff;
     text-align: center;
     line-height: 50px;
     border-radius: 50%;
}
 .info-icon.fa{
     font-size: 20px;
}
.single-info h5{
    margin-bottom: 5px;
    text-transform: capitalize;
}
.single-info p{
    margin-bottom: 0;
}
.info-content {
	padding-left: 70px;
}
.map{
    height: 350px;
    width: 100%;
    border: 5px solid #f5f5f5;
}
.margin-bottom-60{
    margin-bottom: 60px;
}
/*================================================
    14. BLOG AND SINGLE BLOG PAGE
==================================================*/

.breadcroumb-area{
    padding: 140px 0 90px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    text-align: center;
    color: #fff;
}
.breadcroumb-area:before{
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.breadcroumb-area h1 {
    font-size: 46px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
    margin-top: 0;
}
.breadcroumb {
    color: #fff;
    font-size: 16px;
}
.breadcroumb a {
    color: #fff;
}
.blog-content-area, .single-blog-area{
    background-color: #f7f7f7;
}
.widget{
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .07)
}
.widget {
  
}
.widget.search{
  
}
.search-form {
    background-color: #f7f7f7;
    border: none;
    width: 100%;
}
.search-form input[type="search"] {
    padding: 14px;
    border: 0px solid;
    background: transparent;
    width: 80%;
}
.search-form button[type="submit"] {
	border: 0px solid;
	color: #fff;
	float: right;
	padding: 14px;
	width: calc(100% - 80%);
    transition: 0.4s;
}
.search-form button[type="submit"]:hover{
    background-color: #222;
    color: #fff;
}
.widget-title {
	font-size: 16px;
	margin-bottom: 30px;
	margin-top: 0;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 15px;
	color: #fff;
}
.widget ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.widget ul li{
    line-height: 22px;
}
.widget.about-me p {
	margin-top: 10px;
	margin-bottom: 0;
}
.widget.category ul li, .widget.tags ul li{
    margin-bottom: 8px
}
.widget.category ul{
    padding-left: 15px;
}
.widget.category li{
    position: relative;
}
.widget.category li:before{
    position: absolute;
    left: -15px;
    top: 0;
    font-family: fontawesome;
    content: "\f0da";
    font-size: 18px;
}
.widget a{
    padding-bottom: 8px;
    display: block;
    transition: 0.3s;
}
.widget.category li a, .widget.recent-post li a{
    color: #444;
}
.widget.tags li {
    display: inline-block;
}
.widget.tags a {
	color: #444;
	display: block;
	font-size: 13px;
	font-weight: 500;
	margin-right: 4px;
	padding: 8px 20px;
	transition: 0.4s;
	border: 1px solid #e0e0e0;
	border-radius: 50px;
	margin-bottom: 5px;
    text-transform: capitalize;
}
.widget.tags a:hover{
    color: #fff;
}
.widget.recent-post span {
  display: block;
  font-size: 13px;
    color: #999;
}
.post-featured-content {
  margin: 0;
  max-height: 400px;
  overflow: hidden;
}
.single-post, .single-post-details, .comment-list-area, .comment-form-wrap {
	background-color: #fff;
    margin-bottom: 50px;
    padding: 30px;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .07);
}
.single-post-details h2 {
  margin: 20px 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    
}
.single-post h2{
     margin: 20px 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}
.post-meta span {
    font-size: 13px;
    text-transform: uppercase;
    margin-right: 15px;
}
.post-meta span i.fa{
    margin-right: 4px;
}
.read-more-btn {
  color: #18ba60;
  display:inline-block;
text-transform: capitalize;
}
.entry-content {
  margin-top: 12px;
}
.pagination ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.pagination li {
    display: inline-block;
}
.pagination li a {
    background-color: #fff;
    color: #444;
  display: block;
  font-size: 18px;
  font-weight: 500;
  height: 35px;
  line-height: 34px;
  margin-right: 4px;
  text-align: center;
  width: 35px;
    transition: 0.3s;
}

.pagination{
    margin: 0;
}
.pagination ul li:hover a, .pagination ul li.active a{
    color: #fff;
}

.single-post-details blockquote {
  font-size: 14px;
  font-style: italic;
    background-color: #f7f7f7;
margin-top: 15px;
margin-bottom: 15px;
}

.comments-area ul.comment-list {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.row.replay-area {
  margin-left: 120px;
  margin-top: 40px;
}
h3.comment-title {
	margin-bottom: 30px;
	font-weight: 600;
	font-size: 21px;
}
h3.comment-form-title{
    margin-bottom: 20px;
    font-weight: 600;
}
.comment-metadata h5 {
    margin-bottom: 0;
    font-weight: 600;
}
.comment-metadata p {
    color: #777;
    font-size: 12px;
}
.comment-reply-link {
    font-weight: 600;
}
.comment-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    padding-bottom: 25px;
}
.comment-item:last-child{
    border-bottom: 0px solid;
}

.comment-form-wrap .form-control {
    background-color: #f7f7f7;
    border: none;
    border-radius: 0;
    font-size: 15px;
    box-shadow: none;
    height: 45px;
}
.comment-form-wrap .form-control:focus{
    background-color: #f7f7f7;
    border: none;
}
.comment-form-wrap textarea.form-control {
    height: 150px;
    resize: none;
}
.btn-comment {
	padding: 10px 25px;
	border: none;
	color: #fff;
	margin-top: 10px;
	transition: 0.4s;
	border-radius: 45px;
}


 /*================================================
        15. FOOTER SECTION
==================================================*/
 
 .footer {
     background-color: #222;
     padding: 20px 0;
 }
 .footer p {
     font-size: 16px;
     color: #fff;
     margin: 0px;
 }