.promotions {
	width: 760px;
    max-width: calc(100% - 20px);
	text-align: center;
	margin: 50px auto 150px;
}

.promotions__title {
	font-size: 36px;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	width: 400px;
	margin: 0 auto 70px;
	position: relative;
}

.promotions__title:after {
	content: '';
	display: block;
	height: 3px;
	background-color: #50629d;
	position: absolute;
	left: 30%;
	right: 30%;
	bottom: -20px;
}

.promotions__text {
	font-size: 18px;
	font-weight: 400;
	color: #000;
	line-height: 22px;
	margin-bottom: 10px;
}

@media (max-width: 800px) {
	.promotions__title {
		font-size: 32px;
		margin: 0 auto 50px;
   	}

   .promotions__text {
		font-size: 16px;
   	}
}

@media (max-width: 479px) {
	.promotions {
		margin: 30px auto;
   	}

   .promotions__title {
	   font-size: 28px;
  	}

	.promotions__text {
		font-size: 14px;
	}
}