@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
* {
	margin: 0px;
	padding: 0px;
	list-style: none;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	outline: none;
}

html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
}

:root {
	--primary-color: #ffb600;
	--grey-text-color: #feb60240;
	--text-color: #0f283d;
}
input:autofill {
	background: unset;
}
body {
	background: #fff;
}
a {
	color: var(--primary-color);
}
img {
	display: block;
	max-width: 100%;
	max-height: 100vh;
}
.scroll-to-top {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 40px;
	bottom: -50px;
	border-radius: 4px;
	color: #fff;
	background: #222;
	border: 1px solid #ccc;
	width: 50px;
	height: 50px;
	font-size: 20px;
	opacity: 0;
	cursor: pointer;
	transition: all 1s ease-in-out;
	box-shadow: 0px 0px 20px -5px #ccc;
}
.floating-action .scroll-to-top {
	opacity: 1;
	bottom: 40px;
}






form .form-response {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	max-width: 480px;
}
form .form-response  span {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 15px 10px;
	background: #cfc;
	font-size: 14px;
	text-transform: unset;
	font-weight: 400;
	color: #060;
	border-radius: 3px;
}
form .form-response  span.error {
	background: #fcc;
	color: #600;
}


.form-loader {
	display: none;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background: #2225;
}
.form-loader::before {
	content: "";
	display: block;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	border: 3px solid #2226;
	border-top-color: var(--primary-color);
	animation: form_loader 0.5s linear infinite;
}
@keyframes form_loader {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
