.header {
	padding: 30px 0px 0px 0px;
	
	color: rgba(31, 31, 31, 1);
	font-size: clamp(35px, 9vw, 150px);
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
}
.hr {
	max-width: 743px;
	height: 1px;
	background: rgba(0, 0, 0, 1);
	margin: 20px auto 0 auto;
	
}

.description {
	color: rgba(0, 0, 0, 1);
	font-size: clamp(16px, 1.1vw, 20px);
	font-weight: 500;
	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
	span {
		font-weight: 600;
	}
}

.tariffs-list {
	margin-top: 50px;
	
	.tariff {
		margin-top: 20px;
		background: rgba(31, 31, 31, 1);
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		padding: 15px 0px;
		cursor: pointer;
		transition: .1s;
		
		.title {
			color: rgba(255, 255, 255, 1);
			font-size: clamp(16px, 1.1vw, 20px);
			font-weight: 500;
			line-height: 120%;
			letter-spacing: 0%;
			text-align: center;
		}
	}
	.tariff:hover {
		opacity: .9;
	}
}

@media (max-width: 767px) {
	
	.header {
		border-top: none;
		padding-top: 0px;
		margin-top: 25px;
	}
	.hr {
		display: none;
	}
	
}