@font-face {
	font-family: "Muller";
	src: url("../fonts/Muller/MullerRegular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Muller";
	src: url("../fonts/Muller/MullerMedium.ttf") format("truetype");
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: "Muller";
	src: url("../fonts/Muller/MullerBold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "DelaGothicOne";
	src: url("../fonts/DelaGothic/DelaGothic_Fix.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "SFPro";
	src: url("../fonts/SFPro/FontsFree-Net-SFProText-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "SFPro";
	src: url("../fonts/SFPro/FontsFree-Net-SFProText-Semibold.ttf") format("truetype");
	font-style: normal;
	font-weight: 600;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter/Inter-Medium.ttf") format("truetype");
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: "Gilroy";
	src: url("../fonts/Gilroy/gilroy-medium.ttf") format("truetype");
	font-style: normal;
	font-weight: 500;
}




* {
	margin: 0;
	padding: 0;
	line-height: 1;
	box-sizing: border-box;
}

*::-webkit-scrollbar {
	height: .375rem;
	width: .375rem;
}

*::-webkit-scrollbar-track {
	background-color: transparent;
}

*::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, .2);
	/* Если нужно - добавьте :hover и:active */
}

*::-webkit-scrollbar-thumb:vertical {
	min-height: 1.5rem;
}

*::-webkit-scrollbar-thumb:horizontal {
	min-width: 1.5rem;
}

html {
	scrollbar-width: thin;
	background: #FBFBFB;
}

body {
	font-family: "Muller", sans-serif;
	color: #100C40;
	font-style: normal;
	font-weight: 400;
	width: 100%;
	position: relative;
	scrollbar-width: thin;
	font-size: 16px;
	background: #F8F8F8;
}


input {
	padding: 0;
	margin: 0;
	border: 0;
	border: none;
	outline: none;
	resize: none;
	background: none;
}

input::placeholder {
	opacity: 1;
}


label {
	padding: 0;
	margin: 0;
}

button {
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	transition: opacity 1s ease;
}

button:hover {
	opacity: 0.5;
}

ul {
	padding: 0;
	list-style: none;
}

p {
	margin: 0;
}

a {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.4000000059604645);
	transition: opacity 1s ease;
}

a:hover {
	opacity: 0.5;
}

button:hover {
	cursor: pointer;
}

textarea {
	resize: none;
	scrollbar-width: thin;
}

ul {
	display: flex;
	flex-direction: column;
}

li {
	font-size: 12px;
	line-height: 1.4;
	color: rgba(16, 12, 64, 0.699999988079071);
	margin-left: 10px;
	padding-left: 20px;
	position: relative;
}

li::before {
	position: absolute;
	left: 5px;
	top: 9px;
	content: "";
	width: 2px;
	height: 2px;
	display: block;
	border-radius: 100%;
	background: #100c40;
}

.slider-last-block {
	display: none !important;
}

.slider-next-block {
	display: none !important;
}

@media (max-width: 600px) {

	li {
		font-size: 12px;
		line-height: 1.4;
		margin-left: 0;
		padding-left: 0px;
	}

	li::before {
		left: -5px;
		top: 6px;
	}
	input{
		font-size: 16px !important;
	}
}