@charset "utf-8";
/* Grinspan.net CSS */

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	background: #1A1B25;
	color: #F5F7F2;
	text-align: center;
	padding: 0 1rem;
}
h1, h2 {
	font-weight: 400;
	margin-bottom: 20px;
}
h1 {
	font-size: 32px;
}
h2 {
	font-size: 26px;
}
.card, .card-panel {
	padding: 20px 30px 20px 20px !important;
	background-color: #1A1B25;
	box-shadow: 0 2px 2px 0 rgb(245 247 242 / 14%), 0 3px 1px -2px rgb(245 247 242 / 12%), 0 1px 5px 0 rgb(245 247 242 / 20%);
}
.card.hoverable:hover, .card-panel.hoverable:hover {
	box-shadow: 0 8px 17px 0 rgb(245 247 242 / 20%), 0 6px 20px 0 rgb(245 247 242 / 19%);
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}
.pageTitle {
	font-size: 40px;
	margin: 0;
}

/* SVG Styles */
.gspan-fill {
	stroke: none;
}
.thegrinspan-block {
	fill: #F5F7F2;
	stroke: none;
}
.thegrinspan-outline {
	fill: none;
	stroke: #F5F7F2;
	stroke-width: 2px;
	stroke-miterlimit: 10;
}
.thegrinspan-fill {
	/*stroke: none;*/
	stroke-miterlimit: 10;
}

.logoLink {
	display: inline-block;
}
.logoLink .logo {
	animation-fill-mode: forwards;
	transition: all .6s ease;
}
.logoLink:hover .logo.gspan {
	animation: bounce 1s;
}
.logo.gspan {
	display: inline-block;
	width: 120px;
	height: 120px;
	margin: 30px 0;
	fill: #F5F7F2;
}
.logo.thegrin {
	display: inline-block;
	width: 100%;
	height: auto;
	margin: 30px 0;
	fill: transparent;
	stroke: #F5F7F2;
	stroke-width: 2px;
	opacity: 0;
}
.logo.thegrin.show {
	opacity: 1;
	fill: #F5F7F2;
	stroke-width: 0;
}
	
@media (min-width: 700px) {
	.logo.thegrin {
		width: 640px;
		height: 140px;
	}
}
.svgLogo {
	width: 100%;
	height: 100%;
}
a, a:hover, a:active {
	color: #F5F7F2;
}

.aboutMe {
	text-align: justify;
}
.aboutMe p {
	font-size: 16px;
}

.socialWrap {
	list-style-type: none;
	padding: 0;
}
.socialWrap li {
	display: inline-block;
}
a.social {
	text-decoration: none;
	font-size: 20px;
	line-height: 24px;
}
.icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
	vertical-align: text-bottom;
}
.icon.linkedin svg {
	fill: #F5F7F2;
}
form#contact {
	position: relative;
}
form#contact .loader {
	display: none;
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
form#contact fieldset {
	-webkit-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
	border: 0;
}
form#contact.load fieldset {
	opacity: .25;
	pointer-events: none;
}
form#contact.load .loader {
	display: block;
}
.formMsg {
	display: none;
	font-size: 20px;
}
.formMsg p {
	margin: 0;
}
.formMsg.success {
	display: block;
	color: #4CAF50;
}
.formMsg.fail {
	display: block;
	color: #F44336;
}
.input-field.error input, .input-field.error textarea {
	border-color: #F44336 !important;
	box-shadow: none !important;
}
.input-field.error .material-icons, .input-field.error label {
	color: #F44336 !important;
}
.input-field.valid input, .input-field.valid textarea {
	border-color: #4CAF50 !important;
	box-shadow: none !important;
}
.input-field.valid .material-icons, .input-field.valid label {
	color: #4CAF50 !important;
}
input.invalid, textarea.invalid {
	border-color: #F5F7F2 !important;
	box-shadow: none !important;
}
fieldset .error {
	padding-left: 3rem;
	text-align: left;
	color: #F44336;
}
.preloader-wrapper.big {
	width: 120px;
	height: 120px;
}
.spinner-layer {
	border-color: #F5F7F2;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	border: 1px solid red;
}

.thegrin.anim {
	opacity: 1;
}
.thegrin.anim.startAnim {
	animation-duration: 3s;
	animation-name: logoReveal;
}
@keyframes logoReveal {
	from,
	20%,
	25%,
	30%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate(0, -3000px);
		fill: transparent;
		stroke: #F5F7F2;
		stroke-width: 2px;
	}
	20% {
		transform: translate(0, 25px);
	}
	25% {
		transform: translate(0, -10px);
	}
	30% {
		opacity: 1;
		transform: translate(0, 5px);
	}
	33% {
		transform: translate(0,0);
	}
	40% {
		fill: transparent;
		stroke: #F5F7F2;
		stroke-width: 2px;
	}
	to {
		transform: translate(0,0);
		fill: #F5F7F2;
		stroke-width: 0;
	}
}
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	14% {
		transform: scale(1.3);
	}
	28% {
		transform: scale(1);
	}
	42% {
		transform: scale(1.3);
	}
	70% {
		transform: scale(1);
	}
}
@keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translate3d(0,0,0);
	}
	40%,
	43% {
		transform: translate3d(0,-30px,0);
	}
	70% {
		transform: translate3d(0,-15px,0);
	}
	90% {
		transform: translate3d(0,-4px,0);
	}
}