:root{
    --color-news:rgb(0,173,123);
    --color-news-more:rgb(65,65,65);
}

/*ГЛАВНОЕ*/
main{
    display:flex;
    flex-direction:column;
    align-items:center;
}
#content{
    margin:50px 0 0;
    width:1200px;
    font-size:18px;
}
.section-header{
    font-size:50px;
    margin:30px 0 40px;
    text-transform:uppercase;
}

/*ПОРТАЛ ПРИЕМА ЗАЯВОК - СТОИМОСТЬ ПОДКЛЮЧЕНИЯ*/
#news{
    width:1200px;
	margin-bottom: 10px;
}
#news .section-header,.news{
    display:flex;
    justify-content:space-between;
}
#news .section-header div:nth-child(1){
    color:var(--color-news);
    font-size:50px;
    text-transform:uppercase;
}
#news .section-header div a{
    font-size:22px;
    color:var(--color-news-more);
	text-decoration: underline;
}
#news .section-header div a:hover{
	color: #ff4545;

}


/*ПОДГОНКА МОБИЛЬНОЙ ВЕРСИИ*/
@media screen and (max-width: 900px) {
    #content,#news{
        width:90vw;
    }
    #news>.section-header,
    .news{
        flex-direction:column;
    }
}
