@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url("variables.f816acbfb1ad.css");

body {
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
	background: var(--white) !important;
	font-family: var(--font-body);
	font-optical-sizing: auto;
	font-weight: 400;
	-webkit-font-smoothing: optimizeLegibility;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

*::selection {
	background: var(--raspberry);
	color: var(--pink-soft);
}

i[class^="icon-"]{
	font-weight: 300;
}

/* #cms-top~main {
	margin-top: -46px;
} */
#loader {
	position: fixed;
	background: #f2f2f2;
	width: 100lvw;
	height: 100dvh;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

#loader img {
	width: 30dvw;
	filter: invert(1);
	animation: fadeIn .3s ease-in-out forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: .1;
	}
}

main {
	background: var(--color-bg);
	color: var(--color-text);

	section.container {
		width: 100%;
		max-width: 1180px;
		margin: 0 auto;
		padding: 0 var(--s3);

		@media (max-width: 767px) {
			padding: 0 var(--s1);
		}
	}

	a {
		text-decoration: none;
		color: var(--grey);
	}
}

@media only screen and (max-width: 767px) {
	#loader img {
		width: 50dvw;
	}
}