@font-face {
	font-family: 'Quicksand';
	src: url('../fonts/quicksand-v37-latin-300.woff2') format('woff2'),
		 url('../fonts/quicksand-v37-latin-300.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Quicksand';
	src: url('../fonts/quicksand-v37-latin-regular.woff2') format('woff2'),
		 url('../fonts/quicksand-v37-latin-regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Quicksand';
	src: url('../fonts/quicksand-v37-latin-500.woff2') format('woff2'),
		 url('../fonts/quicksand-v37-latin-500.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

:root {
	--varcpwidth: 1200px;
	--varcpcontainersubwidth: 400px;
	--cp-gutter: 24px;
	--cp-gutter-small: 12px;
	--cp-section-spacing: 56px;
	--cp-section-spacing-small: 36px;
	--cp-card-spacing: 24px;
	--cp-content-width: 820px;
	--cp-color-accent: #62b1f6;
	--cp-color-accent-dark: #2f7fbf;
	--cp-color-text: #222;
	--cp-color-muted: #666;
	--cp-color-heading: #2f3a42;
	--cp-color-background: #fff;
	--cp-color-panel: #f7f9fb;
	--cp-color-border: #e5eaf0;
	--cp-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
	--cp-footer-height: 30px;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

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

body {
	position: relative;
	margin: 0;
	font-family: 'Quicksand', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--cp-color-text);
	background: var(--cp-color-background);
	text-align: left;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus {
	color: var(--cp-color-accent-dark);
}

a:focus,
button:focus {
	outline: 2px solid var(--cp-color-accent);
	outline-offset: 2px;
}

h1,
h2,
h3 {
	margin-top: 0;
	margin-bottom: 0.55em;
	line-height: 1.18;
	font-weight: 500;
	letter-spacing: -0.015em;
	color: var(--cp-color-heading);
}

h1 {
	font-size: clamp(2.7rem, 2vw + 1.65rem, 3.6rem);
}

h2 {
	font-size: clamp(2.2rem, 1.4vw + 1.45rem, 2.85rem);
}

h3 {
	font-size: clamp(1.75rem, 0.9vw + 1.25rem, 2.15rem);
}

p {
	margin: 0 0 1em;
}

ul {
	margin-top: 0;
	margin-bottom: 1.2em;
	padding-left: 1.35em;
}

li + li {
	margin-top: 0.35em;
}

address {
	margin-bottom: 1em;
	font-style: normal;
	line-height: inherit;
}

strong {
	font-weight: 500;
}

@media screen and (max-width: 1024px) {
	:root {
		--varcpwidth: 100%;
		--varcpcontainersubwidth: 100%;
		--cp-gutter: 16px;
		--cp-section-spacing: 40px;
		--cp-section-spacing-small: 28px;
	}

	body {
		font-size: 17px;
	}
}

@media screen and (max-width: 640px) {
	:root {
		--cp-gutter: 14px;
	}

	body {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

/* Navigation list reset
   The global li + li spacing is useful in content lists, but it also affects
   Bootstrap nav items. Without this reset, every menu item after the first
   receives a top margin, which makes "clients" appear misaligned. */
.nav > li + li,
.navbar-nav > li + li,
.dropdown-menu > li + li {
	margin-top: 0;
}
