/* Link Hovers */
a:hover{
    text-decoration: none;
    color:#6E6586;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    padding-bottom: 2px;
    border-bottom: 1px solid #6E6586;
}
article div a:hover{
    border: none!important;
    padding-bottom: 1rem!important;
}
/* Body State */
.overflow-hidden{
    overflow: hidden;
}
/* Form States */
input:focus{
    border: none;
    color:#000000;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -webkit-box-shadow: 0 0 10px rgba(30, 30, 30, 0.125);
-moz-box-shadow: 0 0 10px rgba(30, 30, 30, 0.125);
box-shadow: 0 0 10px rgba(30, 30, 30, 0.125);
}
input:focus::-webkit-input-placeholder{
    color: transparent;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
input:focus:-moz-placeholder{
    color: transparent;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
input:focus::-moz-placeholder{
    color: transparent;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
input:focus:-ms-input-placeholder{
    color: transparent;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
input:focus::placeholder{
    color: transparent;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
.btn:hover, button:hover{
    background:#6E6586;
    color: #ffffff;
    padding-bottom: 1rem;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}