/* General */
body {
	font-family: 'Work Sans', sans-serif;
}
.vh-100 {
    height: 100vh;
}
.noradius {
    border-radius: 0 !important;
}

/* Link Hover Animation */
a {
	color: #316F00 !important;
	text-decoration: none !important;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
    outline: none;
    cursor: pointer;
}
a:hover {
	color: #72CF7F !important;
	text-decoration: none !important;
}

/* Selection Color Changes */
::selection {
    background: #94ff98;
}
::-moz-selection {
	background: #94ff98;
}

input, textarea {
    -webkit-transition: all 0.60s ease-in-out;
    -moz-transition: all 0.60s ease-in-out;
    -ms-transition: all 0.60s ease-in-out;
    -o-transition: all 0.60s ease-in-out;
    outline: none;
}
input:focus, textarea:focus {
    border: 1px solid green !important;
    box-shadow: 0 0 3px green !important;
    -moz-box-shadow: 0 0 3px green !important;
    -webkit-box-shadow: 0 0 3px green !important;
}