Portfolio 3
Portfolio 3

Montana |
Rocky Mountains

Oregon |
Deep Forrest

Idaho |
Spring Valley

Great Basin |
Desert

Mississippi |
River

Alaska |
Snowy Mountains
Montana |
Rocky Mountains
Oregon |
Deep Forrest
Idaho |
Spring Valley
Great Basin |
Desert
Mississippi |
River
Alaska |
Snowy Mountains
/* ===== Portfolio 3 ===== */
#portfolio-3 .card {
overflow: hidden;
background: #000;
}
#portfolio-3 .card img {
-webkit-transform: translate3d(-30px, 0, 0) scale(1.25);
transform: translate3d(-30px, 0, 0) scale(1.25);
-webkit-transition: all .35s;
-o-transition: all .35s;
transition: all .35s;
opacity: .8;
}
#portfolio-3 .card:hover img {
-webkit-transform: translate3d(0, 0, 0) scale(1);
transform: translate3d(0, 0, 0) scale(1);
opacity: .3;
}
#portfolio-3 .card p {
position: absolute;
top: 20px;
left: 0px;
opacity: 0;
}
#portfolio-3 .card:hover p {
position: absolute;
-webkit-transform: translatex(12px);
-ms-transform: translatex(12px);
transform: translatex(12px);
-webkit-transition: all .35s;
-o-transition: all .35s;
transition: all .35s;
top: 20px;
left: 30px;
opacity: 1;
}
#portfolio-3 .card h4 {
position: absolute;
bottom: 20px;
right: 20px;
}