@font-face {
    font-family: 'OpenSans'; /* Имя шрифта */
    src: url(fonts/opensans-bold.ttf); /* Путь к файлу со шрифтом */
    font-weight: bold;
}

@font-face {
    font-family: 'Bebas'; /* Имя шрифта */
    src: url(fonts/bebas.ttf); /* Путь к файлу со шрифтом */
}

@font-face {
    font-family: 'Roboto'; /* Имя шрифта */
    src: url(fonts/roboto-light.ttf); /* Путь к файлу со шрифтом */
    font-weight: 300;
}

@font-face {
    font-family: 'Roboto'; /* Имя шрифта */
    src: url(fonts/roboto-regular.ttf); /* Путь к файлу со шрифтом */
    font-weight: normal;
}

html {
	min-height: 100%;
	position: relative;
}

body {
	background: #fff url(img/body-bg.png) left top no-repeat;
	color: #282828;
	padding: 0;
	margin: 0;
	font-family: 'Roboto';
}

a {color: #4d8512;}
a:link, a:visited, a:active {text-decoration: none;}
a:hover {text-decoration: underline;}

h1 {
	font-size: 45px;
	font-family: 'Bebas';
	color: #333;
	padding: 0;
    margin: 0;
    margin-bottom: 30px;
    letter-spacing: 1.8px;
    font-weight: normal;
}

h3 {
	font-size: 35px;
	font-family: 'Bebas';
	color: #333;
	padding: 0;
    margin: 0;
    margin-bottom: 25px;
    letter-spacing: 1.8px;
    font-weight: normal;
}

.left-box {
	width: 253px;
	height: 100%;
	position: absolute;
	background: url(img/left-box-bg.png) repeat-y;
}

.inner{
	//position: relative;
}

.logo-box {
	width: 130px;
	margin: 0 auto;
	padding: 43px 0 0 0;
	margin-bottom: 50px;
}

.logo-box .logo {
	background: url(img/logo.png) no-repeat;
	width: 130px;
	height: 241px;
	margin-bottom: 28px;
	display: block;
}

.logo-box .lang-box .ru {
	background: url(img/ru.png) no-repeat;
	width: 32px;
	height: 18px;
	display: inline-block;
	margin-right: 10px;
	transition: 0.3s ease;
	opacity: 1;
}

.logo-box .lang-box .eng {
	background: url(img/eng.png) no-repeat;
	width: 32px;
	height: 18px;
	display: inline-block;
	transition: 0.3s ease;
	opacity: 1;
}

.logo-box .lang-box .ru:hover, .logo-box .lang-box .eng:hover {
	opacity: 0.5;
}

footer {
	position: absolute;
    bottom: 0;
    margin-bottom: 50px;
    margin-left: 40px;
    width: 150px;
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto';
    line-height: 18px;
}


.content-box {
	padding: 55px 70px;
	margin-left: 253px;
	max-width: 960px;
}

.about-me {
	color: #333;
	font-size: 17px;
	line-height: 24px;
	font-weight: 300;
	text-shadow: 0.1px 0.1px 0.1px #dadada;
}

.about-me p {
	margin-bottom: 35px;
}

.about-me img {
	border-radius: 10px;
	margin-bottom: 50px;
	max-width: 504px;
	width: 100%;
}

.about-me li {
	line-height: 34px;
}

.record-kurs {
	width: 240px;
    height: 63px;
    background: #c7463d;
    border-radius: 10px;
    color: #fff;
    font-family: 'Bebas';
    letter-spacing: 1.2px;
    text-align: center;
    padding-top: 19px;
    font-size: 24px;
    box-sizing: border-box;
    margin-top: 30px;
    text-decoration: none !important;
    display: block;
    transition: 0.3s ease;
}

.record-kurs:hover {
	background-color: #5d9424;
}


