a{ text-decoration:none}

.widget-team-work-content-area li .accelerate img{
/*	width:266px;
	height:255px;
*/	}
img {
    height: auto;
    position: relative;
}
.full-size {
/*    width:266px;
	height:255px;
*/}
/* hover effect */
 .hover-wrapper {
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    margin-bottom: 5%;
    /* without this the link would be collapsed and won't be clickable */
    position: relative;
    border: 1px solid #444;
    overflow: hidden;
}
/* Flicker bug fix (hardware acceleration). More info here: http://davidwalsh.name/translate3d */
.accelerate {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/* 1st version of hover bg */
.full-size:hover {
    z-index: initial;
    /*box-shadow: 0 0 100px 50px rgba(0, 0, 0, 0.5) inset;*/
}
/* 2nd second version of hover bg */
 .hover-wrapper-left:hover {
    background: rgba(0, 0, 0, 0.8);
    z-index: initial;
}
/* 3rd version of hover bg */
 .hover-wrapper-right {
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 0; filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    /* IE fallback */
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}
.hover-wrapper:hover .hover-wrapper-right {
    background: url(../image/thumb_pattern.png) repeat scroll 0 0 rgba(0, 0, 0, 0);
    z-index: initial;
    top: 0;
    opacity: 1;
    filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    /* IE fallback */
}
.hover-wrapper img {
    z-index: -1;
    /* position image behing black hover area */
    vertical-align: bottom;
    /* this fixes problem with ugly gap below the image*/
}
.icon {
    display: inline-block;
    position: absolute;
    top:50%;
    left:50%;
    width: auto;
    height: auto;
    z-index: 100 !important;
}
/* animate opacity from 0 to 100% */
 .full-size__magnifyingGlass {
    opacity: 0;
    /*     margin-left: -38px;
    margin-top: -38px; */
    /* this is fallback in case you will not use jQuery icon positioning fix */
    background: #ddd;
    padding: 14px;
    border-radius: 50%;
}
.hover-wrapper:hover .full-size__magnifyingGlass {
    opacity: 1;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
/* scale the icon from 0 to 100% */
 .full-size__magnifyingGlass--second {
    margin-left: -24px;
    margin-top: -24px;
    left:50%;
    width: auto;
    height: auto;
    z-index: 100 !important;
    -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(0);
    /* width will be 110% as well as height */
    -moz-transform:scale(0);
    -ms-transform:scale(0);
    -o-transform:scale(0);
    transform:scale(0);
}
/* on image hover scale the icon to 100% size with animation */
 .hover-wrapper:hover .full-size__magnifyingGlass--second {
    /*transform*/
    -webkit-transform:scale(1, 1);
    /* width will be 110% as well as height */
    -moz-transform:scale(1, 1);
    -ms-transform:scale(1, 1);
    -o-transform:scale(1, 1);
    transform:scale(1, 1);
}
/* scale and rotate at the same time */
 .full-size__magnifyingGlass--third {
    /* vertical centering of the icon */
    margin-top: -26px;
    z-index: 100 !important;
    /* place the icon on the top of the image */
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    /*transform*/
    -webkit-transform:rotate(360deg) scale(0);
    /* rotate and scale before hover */
    -moz-transform:rotate(360deg) scale(0);
    -ms-transform:rotate(360deg) scale(0);
    -o-transform:rotate(360deg) scale(0);
    transform:rotate(360deg) scale(0);
}
.hover-wrapper:hover .full-size__magnifyingGlass--third {
    /*transform*/
    -webkit-transform:rotate(0deg) scale(1, 1);
    /* rotate and scale to default state */
    -moz-transform:rotate(0deg) scale(1, 1);
    -ms-transform:rotate(0deg) scale(1, 1);
    -o-transform:rotate(0deg) scale(1, 1);
    transform:rotate(0deg) scale(1, 1);
}
/* magnifyingGlass__full-size-third: icon motion from the left to the right and vice versa */
.left {
    left: 0;
}
/* on hover move the left icon to the right */
.hover-wrapper:hover .left {
    left: 55%;
}
.right {
    right: 0;
}
/* on hover move the right icon to the left */
 .hover-wrapper:hover .right {
    right: 55%;
}
/* FOURTH GROUP OF IMAGES */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.third {
    width: 30%;
    margin-right: 5%;
    display: inline-block;
    /* float elements side by side */
}
.last {
    margin-right: 0;
    /* clear margin-right on the last image */
}
.bg {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: 501;
    left: 0;
    top: -100%;
}
.third a {
    z-index: 5001;
    position: absolute;
    display: block;
    height:100%;
    width: 100%;
}
.third i {
    left: 50%;
}
/* font-awesome icons */
i {
    color: #FFF;
	background:#3A8BBA;
    padding: 4px;
    position: absolute;
    display: inline-block;
    z-index: 501;
    font-size: 1.2em;
    /*transform*/
    -webkit-transform:scale(0);
    /* width will be 110% as well as height */
    -moz-transform:scale(0);
    -ms-transform:scale(0);
    -o-transform:scale(0);
    transform:scale(0);
    -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;
    top: 50%;
}
i:hover{ color:#3A8BBA; background:#FFF;}

.hover-wrapper:hover i {
    /*transform*/
    -webkit-transform:scale(1, 1);
    /* width will be 100% as well as height */
    -moz-transform:scale(1, 1);
    -ms-transform:scale(1, 1);
    -o-transform:scale(1, 1);
    transform:scale(1, 1);
}
.hover-wrapper:hover .bg {
    top: 0;
}

.fa {
    display: inline-block;
}