@charset "utf-8";
/* Common CSS */

*, *:before, *:after { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
body { margin:0; padding:0; font-family: 'Inter', sans-serif; font-size:16px; line-height:1.7; color:#2D3339; word-wrap:break-word;background: #FDFDFD;  }
input, button, select, textarea { font-family:inherit; font-size:inherit; line-height:inherit; }
:focus { outline:none; }
a { color:#F8941E; text-decoration:none; }
img { vertical-align:middle; border:none; max-width:100%; height:auto; }
hr { margin:30px 0; border:0; border-top:2px solid #f8f8f8; }
embed, iframe, object {	margin:0 0 20px; max-width:100%; }
b, strong { font-weight:700; }

h1, .heading-1, h2, .heading-2, h3, .heading-3, h4, .heading-4, h5, .heading-5, h6, .heading-6 { margin:0 0 15px; font-family: 'DM Sans', sans-serif; font-weight:600; line-height:1.2; color:#2D3339; }
h1 a, .heading-1 a, h2 a, .heading-2 a, h3 a, .heading-3 a, h4 a, .heading-4 a, h5 a, .heading-5 a, h6 a, .heading-6 a { color:inherit; }
h1, .heading-1 { font-size:40px; }
h2, .heading-2 { font-size:32px; }
h3, .heading-3 { font-size:28px; }
h4, .heading-4 { font-size:24px; }
h5, .heading-5 { font-size:20px; }
h6, .heading-6 { font-size:16px; }

p { margin:0; margin-bottom:25px; }
ol, ul { margin:0; margin-bottom:25px; }

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], select, textarea {
	display:block;
	width:100%;
	margin:0;
	padding:18px 20px;
	background:#fff;
	color:#2D3339;
	border:1px solid #E2E8EB;
	border-radius:8px;
	font-size:16px;
	line-height:normal;
	font-weight:normal;  
	resize:none;
}
select { 	
	padding-right:40px; 
	background:url(../images/select.svg) no-repeat center right 15px #fff; 
	-webkit-appearance:none;
	   		appearance:none;
}
select::-ms-expand { display:none; }
button[type="submit"], input[type="submit"], .btn { 
	display:inline-block;
	max-width:100%;	
	margin:0;
	padding:17px 20px;
	background:#F8941E;
	color:#fff;
	border:none;
	border-radius:4px;
	cursor:pointer;
	vertical-align:middle;	
	text-align:center;
	font-size:14px;
	line-height:normal;
	font-weight:600;
	text-transform:uppercase;
	-webkit-appearance:none;
	   		appearance:none;
	-webkit-transition:all .3s;
			transition:all .3s;
}
button[type="submit"]:hover, input[type="submit"]:hover, .btn:hover,.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
	background:#2D3339;
	color:#fff;	
}

::-moz-selection { background:#F8941E; color:#fff; }
::selection { background:#F8941E; color:#fff; }

*::-webkit-scrollbar { width:12px; }
*::-webkit-scrollbar-thumb { background-color:#F8941E; }

table { width:100%; margin:0 0 30px; padding:0; border-collapse:collapse; border:none; border-radius:4px; }
table th, table td { padding:15px; text-align:left; line-height:normal; border:1px solid #E2E8EB; }
table th { background:#2D3339; color:#fff; border:none; }

.typography ul, .typography ol { list-style:none; padding:0; }
.typography ul ul, .typography ol ol, .typography ul ol, .typography ol ul { margin-bottom:0; }
.typography ul > li { background:url(../images/list.svg) no-repeat left 7px; padding-left:30px; margin-top:15px; }
.typography ol > li { margin-top:15px; }
.typography ol { counter-reset:item; }
.typography ol li:before { content:counter(item)'.'; counter-increment:item; display:inline-block; width:30px; font-weight:600; color:#F8941E; text-align:center; }
.typography li li { padding-left:30px; }