/***************************************
*******    Essential CSS  **************
****************************************/
/*
You should include in css folder:
    mycommoncss.css
    w3.css
    bootstrap.min.css
*/


/***************************************
*******    Reset css     ***************
****************************************/
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
    height: 100%;
    color: #777;
    line-height: 1.8;
}
.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}
a{text-decoration: none;}
a:hover{text-decoration: none;}
img {
    width: 100%;
    height: auto;
}
.lead{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/***************************************
*******   All parallax css  ************
****************************************/
.para-logo, .para-ceo, .para-skill, .para-team, .para-offer, .para-service, .para-portfolio, .para-contact, .para-partner{
    opacity: 1;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
}

/*----- Logo. Full height -----*/
.para-logo{
    background-image: url("resource/img/parallax/01.jpg");
    /*min-height: 800px; *//*look at media screen*/
}

.para-logo:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
}
.para-logo-content{
    position:relative;
    z-index:10;
    opacity:1;
    color:white;
}

/*----- CEO -----*/
.para-ceo{
    background-image: url("resource/img/parallax/para-ceo.jpg");
    /*min-height: 800px; *//*look at media screen*/
}

.para-ceo:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
}
.para-ceo-content{
    position:relative;
    z-index:10;
    opacity:1;
}

/*----- skill -----*/
.para-skill{
    background-image: url("resource/img/parallax/para-skill.png");
}

.para-skill:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
}
.para-skill-content{
    position:relative;
    z-index:10;
}

/*----- team -----*/
.para-team{
    background-image: url("resource/img/parallax/para-team.jpg");
}

.para-team:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
}
.para-team-content{
    position:relative;
    z-index:10;
}

/*----- offer -----*/
.para-offer{
    background-image: url("resource/img/parallax/para-offer.jpg");
}

.para-offer:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
}
.para-offer-content{
    position:relative;
    z-index:10;
}

/*----- service -----*/
.para-service {
    background-image: url("resource/img/parallax/para-service.png");
    z-index:-10; /*if ovelap contant of this div on any sticky div, then useful*/
}

.para-service:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
    z-index:;
}
.para-service-content{
    position:relative;
    z-index:10;
}

/*----- portfolio -----*/
.para-portfolio, .para-contact {
    background-image: url("resource/img/parallax/para-portfolio.jpg");
}

.para-portfolio:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
}
.para-portfolio-content{
    position:relative;
    z-index:10;
}

/*----- contact -----*/
.para-contact {
    background-image: url("resource/img/parallax/para-contact.jpg");
}

.para-contact:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
}
.para-contact-content{
    position:relative;
    z-index:10;
}

/*----- partner -----*/
.para-partner {
    background-image: url("resource/img/parallax/para-partner.png");
    z-index:-10; /*if ovelap contant of this div on any sticky div, then useful*/
}

.para-partner:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:black;
    left:0px;
    top:0px;
    opacity:0.7;
}
.para-partner-content{
    position:relative;
    z-index:10;
}


/* Resize Parallax for tablets and mobiles */
@media only screen and (min-width: 300px) { /* if reach level 300px output is 200px*/
    .para-logo,.para-ceo, .para-skill, .para-team, .para-offer, .para-service, .para-portfolio, .para-contact , .para-partner{
        min-height: 200px;
    }
}

@media only screen and (min-width: 601px) { /* if reach level 601px output is 400px*/
    .para-logo,.para-ceo, .para-skill, .para-team, .para-offer, .para-service, .para-portfolio, .para-contact, .para-partner {
        min-height: 400px;
    }
}

@media only screen and (min-width: 993px) { /* if reach level 993px output is 800px*/
    .para-logo {
        min-height: 800px;
    }
    .para-skill,.para-ceo, .para-team, .para-offer, .para-service, .para-portfolio, .para-contact, .para-partner {
        min-height: 450px;
    }
}

/* Turn off parallax scrolling for tablets and mobiles */
@media only screen and (max-width: 1024px) {
    .para-logo,.para-ceo, .para-skill, .para-team, .para-offer, .para-service, .para-portfolio, .para-contact, .para-partner {
        background-attachment: scroll;
    }
}


/***************************************
*******   Navbar CSS     ***************
****************************************/
nav {
    color:darkgray;
}

/***************************************
*******   header         ***************
****************************************/


/***************************************
*******   CEO         ***************
****************************************/


/***************************************
*******   My Skill       ***************
****************************************/
/***************************************
*** My Skill  animated Progress bar  ***
****************************************/

.myskillbar{
    width:100%;
    color:#fff;
    margin-top:25px;
}
.skillbar{
    width: 100%;
    height: 40px;
    border:4px solid  #f1f1f1;
    position:relative;
    margin-bottom:15px;
    background-color: #fff;
    box-sizing:border-box;
    display:block;
}
.count-bar{
    height: 100%;
    width:0px;
    position:relative;
    height: 32px;
}

.title {
    position:absolute;
    top:0;
    left:0;
    width:;
    font-weight:bold;
    font-size:13px;
    color:#ffffff;
}

.title span {
    display:block;
    background:rgba(0, 0, 0, 0.1);
    padding:0 20px;
    height:32px;
    line-height:35px;
}
.count{
    position:absolute;
    top:0;
    right:12px;
    line-height:32px;
    font-size:14px;
    font-weight:400;
}



/***************************************
*******  Team            ***************
****************************************/
.img-border{
    border:1px solid gray;
}

/***************************************
*******  Offer           ***************
****************************************/


/***************************************
*******   our service    ***************
****************************************/
#service{
    background: url(resource/img/parallax/para-service2.jpg) ;
    background-size: cover;
}

.service{
    background:#000;
    opacity: 0.85;
}
.services-wrap {
  padding: 10px;
  background: white;
  border-radius: 4px;
  margin: 0 0 20px;
  overflow: hidden;
}

.services-wrap h3 {
  font-size: 20px;
  margin: 10px 0;
}

.services-wrap{
  margin-right: 5px;
  min-height: 200px;
}
.services-wrap:hover{
    background-color:black;
    color:white;
}

/***************************************
*******   feature        ***************
****************************************/

#feature {
  background: #f2f2f2;
  padding-bottom: 40px;
}
.features{
  padding: 0;
}

.feature-wrap {
  margin-bottom: 35px;
  overflow: hidden;
}

.feature-wrap h2{
  margin-top: 10px;
}

.feature-wrap .pull-left {
  margin-right: 25px;
    z-index:
}

.feature-wrap i{
  font-size: 48px;
  height: 110px;
  width: 110px;
  margin: 3px;
  border-radius: 100%;
  line-height: 110px;
  text-align:center;
  background: white;
  color: #777;
  border: 3px solid #ffffff;
  box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
  float: left;
  margin-right: 25px;
}

.feature-wrap i:hover {
  background: #777;
  color: white;
   box-shadow: inset 0 0 0 5px white;
  -webkit-box-shadow: inset 0 0 0 5px #c52d2f;
  border: 3px solid #777;
}

/***************************************
*******   Portfolio      ***************
****************************************/

/*--  image-over-style-1  for portfolio---- */
.image-over-style-1-wrap {
  position: relative;
  margin-bottom:20px;
}

.image-over-style-1-wrap img{
  width: 100%;
}

.image-over-style-1-wrap .image-over-style-1-inner{
  top: 0;
  background: transparent;
  opacity: .8;
  width: 100%;
  border-radius: 0;
  margin-bottom: 0;
}

.image-over-style-1-wrap .image-over-style-1-inner h3{
  margin:10px 0;
}

.image-over-style-1-wrap .image-over-style-1-inner h3 a{
  font-size: 24px;
  color: #fff;
}

.image-over-style-1-wrap .overlayer-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 0;
  background:gray;
  color: #fff;
  vertical-align: middle;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
  padding: 1px;
}

.image-over-style-1-wrap .overlayer-1 .preview {
  bottom: 0;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  color: #fff;
}

.image-over-style-1-wrap:hover .overlayer-1 {
    opacity: 1;
}

.image-over-style-1-head{
    background-color:black;
    padding:5px;
    text-align: center;
}
.image-over-style-1-text{
    background-color:blueviolet;
    padding:5px;
    text-align: center;
    color:white;
}
.image-over-style-1-link{
    background-color:darkviolet;
    padding:5px;
    text-align: center;
}
.image-over-style-1-link:hover{
    background-color:white;
    padding:5px;
    text-align: center;
    color:darkviolet;
}
/* ----------///  image-over-style-1 -------------------- */



/***************************************
*******   partner       ***************
****************************************/

#partner {
  color: #fff;
  text-align: center;
}

#partner h2,
#partner h3 {
  color: #fff;
}

.partners ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left:-5%;
}

.partners ul li{
  display: inline-block;
  float: left;
  width: 15%;
  margin-left:5%;
}
.lead{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/***************************************
*******  Testmonial      ***************
****************************************/

.testimonial {
    background: url(resource/img/parallax/para-testmonial.jpg) no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}
.pattern-overlay {
    background-color:black;
    opacity: 0.85;
}
.testimonial .section-padding {
    padding: 5% 0px 5% 0px;
}
.testimonial-slider .carousel-indicators {
    bottom: -65px;
}
.testimonial-slider .carousel-indicators li {
    border: 2px solid #ffffff;
    height: 15px;
    width: 15px;
}
.testimonial-slider .carousel-indicators li.active {
    height: 16px;
    width: 16px;
}
.testimonial-slider blockquote {
    border: none;
    font-size: 1em;
    font-weight: 300;
    padding:20px 5%;
}
.testimonial-overlayer{
    position:absolute;
    left:0px;
    bottom:0px;

}



/***************************************
*******  google map      ***************
****************************************/
.gmap-area {
  background-image: url("resource/img/parallax/map.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}

.gmap-area .gmap iframe {
  border-radius: 50%;
  height: 280px;
  width: 300px;
}

.gmap{
    border: 10px solid #f6f5f0;
    border-radius: 50%;
    height: 300px;
    width: 300px;
    box-shadow: 0px 0px 3px 3px #e7e4dc;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.gmap-area .map-content ul {
  list-style: none;
}

.gmap-area .map-content address h5{
  font-weight: 700;
  /* font-size: 16px; */
}
/***************************************
*******  Blog CSS        ***************
****************************************/
.blog-item {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 50px;
}
.blog-heading{
    color:#c52d2f;
}

.blog .blog-item .img-blog {
  border-radius: 5px;
  margin-bottom: 45px;
}

.blog .blog-item .blog-content {
  padding-bottom: 25px;
}

.blog .blog-item .blog-content h2 {
  margin-top: 0;
  font-size: 30px;
}

.readmore{
    margin-top: 0;
    background:#c52d2f;
    border-color:#c52d2f;

}
.readmore:hover{
    background:white;
    color:#c52d2f;
    border-color:#c52d2f;
}

.blog .blog-item .blog-content h3 {
  color: #858586;
  margin-bottom: 40px;
  /* font-weight: 300 */
}

.blog .blog-item .blog-content h4 {
  font-size: 14px;
}
.blog-text{
    text-align: justify;
    color: #858586;
    font-size:;
}

.blog .blog-item .entry-meta {
  border-radius: 5px;
  overflow: hidden;
}

.blog .blog-item .entry-meta > span {
  background: #f5f5f5;
  border-top: 1px solid #fff;
  display: block;
  font-size: 12px;
  overflow: hidden;
  padding: 5px;
  text-align: left;
}

#publish_date {
  background: #c52d2f;
  border-bottom: 5px solid #4e4e4e;
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

.blog .blog-item .entry-meta > span {
  color: #ccc;
}

.blog .blog-item .entry-meta > span a {
  font-size: 12px;
  margin-left: 3px;
  font-weight: 300;
  color: #888;
}

.entry-meta span {
  display: inline-block;
  margin-right: 10px;
}

ul.pagination > li > a {
  border: 1px solid #F1F1F1;
  margin-right:5px;
  border-radius: 5px;
  font-size: 16px;
  padding: 5px 14px;
    color:#c52d2f;
}

ul.pagination > li > a i{
  margin-left:5px;
  margin-right:5px;
}

ul.pagination > li.active > a,
ul.pagination > li:hover > a {
  background-color: #c52d2f !important;
  border-color: #c52d2f !important;
  color: #fff;
}


/***************************************
*******  blog-single page **************
****************************************/

.blog-single-meta{
    padding: 1px 1px 20px 5px
}
.blog-single-meta span{
    float:left;
    width:10%;
    padding:0.5% 10px 0.5% 10px;
}


/***************************************
*******  Hover Effect     **************
****************************************/
/*---------------------hover effect 1 ------------------*/

.hovereffect-1 {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect-1 .overlay-1 {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hovereffect-1 img {
  display: block;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.hovereffect-1:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.7" /><feFuncG type="linear" slope="0.7" /><feFuncB type="linear" slope="0.7" /></feComponentTransfer></filter></svg>#filter');
  filter: brightness(0.7);
  -webkit-filter: brightness(0.7);
}

.hovereffect-1 h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 17px;
  padding-top: 180px;
  width: 100%;
}

.hovereffect-1:hover h2 {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
  transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}

.hovereffect-1 a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
}

.hovereffect-1 a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect-1 .rotate-1 {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 100%;
  height: 100%;
  position: absolute;
}

.hovereffect-1 hr {
  width: 50%;
  opacity: 0;
  filter: alpha(opacity=0);
}

.hovereffect-1  hr:nth-child(2) {
  -webkit-transform: translate3d(-50%,-50%,0) rotate(0deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate(0deg) scale3d(0,0,1);
}

.hovereffect-1  hr:nth-child(3) {
  -webkit-transform: translate3d(-50%,-50%,0) rotate(90deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate(90deg) scale3d(0,0,1);
}

.hovereffect-1 h2, .hovereffect-1 hr {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
}

.group1, .group2 {
  left: 50%;
  position: absolute;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
  padding: 0px;
}

.group1 {
  top: 40%;
}

.group2 {
  top: 60%;
}

.hovereffect-1 p {
  width: 30%;
  text-transform: none;
  font-size: 15px;
  line-height: 2;
}

.hovereffect-1 p a {
  color: #fff;
}

.hovereffect-1 p a:hover,
.hovereffect-1 p a:focus {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.hovereffect-1  a i {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  padding: 10px;
  font-size: 20px;
}

.group1 a:first-child i {
  -webkit-transform: translate3d(-60px,-60px,0) rotate(45deg) scale(2);
  transform: translate3d(-60px,-60px,0) rotate(45deg) scale(2);
}

.group1 a:nth-child(2) i {
  -webkit-transform: translate3d(60px,-60px,0) rotate(45deg) scale(2);
  transform: translate3d(60px,-60px,0)  rotate(45deg) scale(2);
}

.group2 a:first-child i {
  -webkit-transform: translate3d(-60px,60px,0) rotate(45deg) scale(2);
  transform: translate3d(-60px,60px,0) rotate(45deg) scale(2);
}

.group2 a:nth-child(2) i {
  -webkit-transform: translate3d(60px,60px,0)  rotate(45deg) scale(2);
  transform: translate3d(60px,60px,0)  rotate(45deg) scale(2);
}

.hovereffect-1:hover hr:nth-child(2) {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(-50%,-50%,0) rotate(0deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate(0deg) scale3d(1,1,1);
}

.hovereffect-1:hover hr:nth-child(3) {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(-50%,-50%,0) rotate(90deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate(90deg) scale3d(1,1,1);
}

.hovereffect-1:hover .group1 i:empty, .hovereffect-1:hover .group2 i:empty {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0) rotate(45deg) scale(1);
  opacity: 1;
  filter: alpha(opacity=100);
}

/*----------------- hover effect 2 -----------------*/

.hovereffect-2 {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect-2 .overlay-2 {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hovereffect-2 img {
  display: block;
  position: relative;
}

.hovereffect-2 h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 17px;
  padding-top: 180px;
}

.hovereffect-2:hover h2 {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
  transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}

.hovereffect-2 a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
}

.hovereffect-2 a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect-2 hr {
  width: 40%;
  opacity: 0;
  filter: alpha(opacity=0);
  border: 1px solid #FFF;
}

.hovereffect-2  hr:nth-child(3) {
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,90deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,90deg) scale3d(0,0,1);
}

.hovereffect-2  hr:nth-child(4) {
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,180deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1, 180deg) scale3d(0,0,1);
}

.hovereffect-2 h2, .hovereffect-2 hr {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
}

.set1, .set2 {
  left: 50%;
  position: absolute;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
  padding: 0px;
}

.set1 {
  top: 40%;
}

.set2 {
  top: 60%;
}

.hovereffect-2 p {
  width: 30%;
  text-transform: none;
  font-size: 15px;
  line-height: 2;
}

.hovereffect-2 p a {
  color: #fff;
}

.hovereffect-2 p a:hover,
.hovereffect-2 p a:focus {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.hovereffect-2  a i {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  padding: 10px;
  font-size: 20px;
}

.set1 a:first-child i {
  -webkit-transform: translate3d(-60px,-60px,0);
  transform: translate3d(-60px,-60px,0);
}

.set1 a:nth-child(2) i {
  -webkit-transform: translate3d(60px,-60px,0);
  transform: translate3d(60px,-60px,0);
}

.set2 a:first-child i {
  -webkit-transform: translate3d(-60px,60px,0);
  transform: translate3d(-60px,60px,0);
}

.set2 a:nth-child(2) i {
  -webkit-transform: translate3d(60px,60px,0);
  transform: translate3d(60px,60px,0);
}

.hovereffect-2:hover hr:nth-child(3) {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-90deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-90deg) scale3d(1,1,1);
}

.hovereffect-2:hover hr:nth-child(4) {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-180deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-180deg) scale3d(1,1,1);
}

.hovereffect-2:hover .set1 i:empty, .hovereffect-2:hover .set2 i:empty {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  opacity: 1;
  filter: alpha(opacity=100);
}

/*---------------Hover effect 3 ----------*/

.hovereffect-3 {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect-3 .overlay-3 {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hovereffect-3 img {
  display: block;
  position: relative;
}

.hovereffect-3 h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 17px;
}

.hovereffect-3:hover h2 {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
  transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}

.hovereffect-3 a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
}

.hovereffect-3 a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect-3 h2,
.hovereffect-3 p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
  padding: 0px;
}

.hovereffect-3 .overlay-3:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 60%;
  border: 2px solid #fff;
  content: '';
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
}

.hovereffect-3 p {
  width: 20%;
  text-transform: none;
  font-size: 15px;
  line-height: 2;
}

.hovereffect-3 p a {
  color: #fff;
}

.hovereffect-3 p a:hover,
.hovereffect-3 p a:focus {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.hovereffect-3  a i {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  padding: 0px 5px;
}

.hovereffect-3 p a:first-child i {
  -webkit-transform: translate3d(-60px,-60px,0);
  transform: translate3d(-60px,-60px,0);
}

.hovereffect-3 p a:nth-child(2) i {
  -webkit-transform: translate3d(60px,-60px,0);
  transform: translate3d(60px,-60px,0);
}

.hovereffect-3 p a:nth-child(3) i {
  -webkit-transform: translate3d(-60px,60px,0);
  transform: translate3d(-60px,60px,0);
}

.hovereffect-3 p a:nth-child(4) i {
  -webkit-transform: translate3d(60px,60px,0);
  transform: translate3d(60px,60px,0);
}

.hovereffect-3:hover .overlay-3:before {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: rgba(0,0,0,0.2);
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-135deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-135deg) scale3d(1,1,1);
}

.hovereffect-3:hover p i:empty {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  opacity: 1;
  filter: alpha(opacity=100);
}
/*---------------Hover effect 4 ----------*/


.hovereffect-4 {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}
.hovereffect-4 .overlay-4 {
    width: 100%;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: auto;
    bottom: 0;
    padding: 1em;
    height: 4.75em;
    background: #79FAC4;
    color: #3c4a50;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.hovereffect-4 img {
    display: block;
    position: relative;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

.hovereffect-4:hover img {
-webkit-transform: translate3d(0,-10%,0);
    transform: translate3d(0,-10%,0);
}

.hovereffect-4 h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    float: left;
    margin: 0px;
    display: inline-block;
}

.hovereffect-4 a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    margin: 50px 0 0 0;
    background-color: transparent;
}
.hovereffect-4 a.info:hover {
    box-shadow: 0 0 5px #fff;
}


.hovereffect-4 p.icon-links a {
    float: right;
    color: #3c4a50;
    font-size: 1.4em;
}

.hovereffect-4:hover p.icon-links a:hover,
.hovereffect-4:hover p.icon-links a:focus {
    color: #252d31;
}

.hovereffect-4 h2,
.hovereffect-4 p.icon-links a {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,200%,0);
    transform: translate3d(0,200%,0);
}

.hovereffect-4 p.icon-links a span:before {
    display: inline-block;
    padding: 8px 10px;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.hovereffect-4:hover .overlay-4,
.hovereffect-4:hover h2,
.hovereffect-4:hover p.icon-links a {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.hovereffect-4:hover h2 {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.hovereffect-4:hover p.icon-links a:nth-child(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.hovereffect-4:hover p.icon-links a:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.hovereffect-4:hover p.icon-links a:first-child {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
