html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height:1.55;
	font-family:"MONTSERRAT-LIGHT",Inter,Segoe UI,Arial,sans-serif;
	color:var(--ink);
	font-size: 14px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
	box-sizing:border-box
}
*::before,
*::after {
	box-sizing: inherit;
}
svg{
	width:1em;
	height:1em;
	fill:none;
	stroke:currentColor;
	stroke-width:2.8;
	stroke-linecap:round;
	stroke-linejoin:round
}
*:focus {
	outline: none;
}
a {
	text-decoration: none;
	color: inherit;
	transition: .3s;
}
button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
	transition:.3s;
}
strong{
	font-family:"MONTSERRAT-REGULAR";
}
:root{
	--teal:#008c86;
	--teal2:#00a49c;
	--teal-dark:#006962;
	--ink:#1d292c;
	--muted:#637174;
	--bg:#f4f7f7;
	--line:#e4ecec;
	--white:#fff;
	--dark:#101d20;
	--shadow:0 18px 45px rgba(16,42,46,.10);
	--radius:16px;
	box-sizing:border-box;
}
.container{
	width:min(1280px,calc(100% - 48px));
	margin:auto
}
@media (max-width:992px) {
	.container{
		width:100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	:root{
		--shadow:0 5px 10px rgba(16,42,46,.10);
		--radius:10px;
	}
}
.btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	border-radius:9px;
	font-size:16px;
	padding:12px 22px;
	border:1px solid transparent;
	white-space:nowrap;
	cursor:pointer;
	font-family:"MONTSERRAT-REGULAR";
	transition:.18s ease
}
.btn:hover{
	transform:translateY(-1px);
	box-shadow:0 10px 22px rgba(0,0,0,.14)
}
.btn-primary{
	background:var(--teal);
	color:#fff
}
.btn-ghost{
	background:rgba(255,255,255,.08);
	border-color:rgba(255,255,255,.62);
	color:#fff
}
.btn-small{
	background:var(--teal);
	color:#fff;
	padding:11px 16px;
	font-size:13px
}
.btn-outline-teal{
	border-color:var(--teal);
	color:var(--teal);
	background:#fff
}
.btn-light{
	background:#fff;
	color:var(--teal)
}
.btn-outline-white{
	border-color:rgba(255,255,255,.68);
	color:#fff;
	background:transparent
}
@media (max-width:1440px){
	.btn{
		gap:8px;
		border-radius:6px;
		font-size:14px;
		padding:10px 20px;
	}
	.btn-small{
		padding:10px 15px;
		font-size:12px
	}
}
@media (max-width:992px){
	.btn{
		gap:8px;
		border-radius:5px;
		font-size:12px;
		padding:10px 20px;
	}
}