@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
	--text: #48494f;
	--link: #099d83;
	--l-grey: #f1f1f1;
	--dark-grey: #393a40;
	--db-grey: #dbdbdb;
}

*,
:before,
:after {
	padding: 0;
	border: 0;
	margin: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	font: 400 16px/1.5625 Inter, sans-serif;
	color: var(--text);
	background: #fff;
}

table {
	border-collapse: collapse;
}

td {
	vertical-align: top;
}

p {
	margin: 1em 0;
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	text-align: revert;
}

p strong {
	text-transform: uppercase;
}

a {
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	outline: none;
	transition: all .3s;
}

a:hover {
	text-decoration: underline;
}

hr {
	height: 1px;
	background: var(--db-grey);
	margin: 20px 0;
}

ul {
	list-style: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
	text-transform: uppercase;
	margin: 1.5em 0 1em;
}

h1,
.h1 {
	font-size: 40px;
	margin: 20px 0 .7em;
}

h2,
.h2 {
	font-size: 25px;
}

.h2 {
	margin: 0 0 30px;
}

h3,
.h3 {
	font-size: 20px;
}

.h3 {
	margin: 1.5em 0 -.7em;
}

h4 {
	font-size: 16px;
}

h5,
h6 {
	font-size: 16px;
	text-transform: none;
}

input,
select,
textarea {
	display: block;
	width: 100%;
	height: 40px;
	padding: 0 20px;
	background: #fff;
	border-radius: 10px;
	outline: none;
	font: 500 16px/1.2 Inter, sans-serif;
	color: #000;
}

input:hover,
select:hover,
textarea:hover {}

input:focus,
select:focus,
textarea:focus {}

input {}

select {
	cursor: pointer;
	background: url(../i/sel.svg) no-repeat calc(100% - 20px) 55%, #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	overflow: auto;
	height: 120px;
	padding: 10px 20px;
}

.error {
	border-color: #f00 !important;
}

input[type=radio],
input[type=checkbox] {
	display: inline-block;
	vertical-align: middle;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	width: auto !important;
	height: auto !important;
	cursor: pointer;
	vertical-align: middle;
}

button,
input[type=submit],
input[type=button],
.button,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: auto;
	height: 50px;
	padding: 0 30px;
	background: var(--link) !important;
	border: 0;
	border-radius: 25px;
	color: #fff !important;
	font: 700 13px/1.2 Inter, sans-serif;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	cursor: pointer;
	margin: 10px 0 0;
	transition: all .3s;
}

button::after,
input[type=submit]::after,
input[type=button]::after,
.button::after,
.btn::after {
	content: '';
	width: 7px;
	height: 11px;
	background: url(../i/btn.svg);
}

button svg,
input[type=submit] svg,
input[type=button] svg,
.button svg,
.btn svg {
	width: 25px;
	height: 25px;
}

button:hover,
input[type=submit]:hover,
input[type=button]:hover,
.button:hover,
.btn:hover {
	background: var(--text) !important
}

button:focus,
input[type=submit]:focus,
input[type=button]:focus,
.button:focus,
.btn:focus {
	background: var(--text) !important
}

button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled,
.button:disabled {
	background: var(--text) !important;
	opacity: .6;
}

label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	color: #8f8f8f;
	cursor: pointer;
}

label input[type="checkbox"] {
	display: none;
}

label input[type="checkbox"]+i {
	width: 30px;
	height: 30px;
	background: #fff;
	border: 1px solid var(--db-grey);
	border-radius: 5px;
}

label input[type="checkbox"]:checked+i {
	background: url(../i/checkbox.svg) no-repeat 50% 50%, #fff;
}




.structura_ul{
	/* padding: auto; */
	background-color: #fff;
	padding: 1em 1.5em;
}
.structura_ul li{
	border-bottom: 1px solid #DBDBDB;
	padding: 1em;
}
