﻿body {
}
.ItemInView {
    opacity:1;
    transition:all ease 1s;
}
.ItemOutTop {
    transition:all ease 1s;
    opacity:0;
}
.ItemOutBottom {
    transition:all ease 1s;
    opacity:0;
}

input[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
 
  border: 1px solid #DDDDDD;
}
 
input[type=text]:focus, textarea:focus {
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);

  border: 1px solid #595454;
}