/* Подключим шрифт Exo 2 для страниц Работа. Чтобы можно было его применять. */

@font-face {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 200; /* предположительно Regular */
    src: url('/wp-content/themes/flatsome-child/assets/fonts/Exo_2/Exo2-Medium.woff2') format('woff');
} 
	
	/**/ 
html body {
    font-family: 'Exo 2', sans-serif;
    font-weight: 200;
	font-size: 20px; 
	color: white;
}

/* Контейнер */
.heroes-experience {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Заголовок */
.heroes-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 35px;
	color: #ffffff;
	text-align: center;
	margin-bottom: 30px;
}

/* Текстовые блоки */
.heroes-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin: 20px 0;
	text-align: justify;   /* текст по ширине */
	max-width: 850px;
	margin: auto;
	background-color: #003a5b;
	padding: 20px 25px;     
    border-radius: 8px;   
}

/* Горизонтальная линия */
.heroes-divider {
    border-top: 1px solid #ffffff;
	opacity: 1;
	width: 60%;        /* ширина линии */
	margin: 25px auto;/* по центру */
}