diff --git a/_sass/_layout.scss b/_sass/_layout.scss
index 8e1a1d3..66f5710 100644
--- a/_sass/_layout.scss
+++ b/_sass/_layout.scss
@@ -397,4 +397,42 @@ input[type=text], input[type=textarea], input[type=number] {
background: #FFFFFF;
border: 2px solid #D8D8D8;
border-radius: 4px;
+}
+
+
+.fade-in {
+-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
+ -moz-animation: fadein 2s; /* Firefox < 16 */
+ -ms-animation: fadein 2s; /* Internet Explorer */
+ -o-animation: fadein 2s; /* Opera < 12.1 */
+ animation: fadein 2s;
+}
+
+@keyframes fadein {
+ from { opacity: 0; }
+ to { opacity: 1; }
+}
+
+/* Firefox < 16 */
+@-moz-keyframes fadein {
+ from { opacity: 0; }
+ to { opacity: 1; }
+}
+
+/* Safari, Chrome and Opera > 12.1 */
+@-webkit-keyframes fadein {
+ from { opacity: 0; }
+ to { opacity: 1; }
+}
+
+/* Internet Explorer */
+@-ms-keyframes fadein {
+ from { opacity: 0; }
+ to { opacity: 1; }
+}
+
+/* Opera < 12.1 */
+@-o-keyframes fadein {
+ from { opacity: 0; }
+ to { opacity: 1; }
}
\ No newline at end of file