* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	
	min-height: 100vh;
	margin: 0;
	padding: 0;

	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
	line-height: 1.3;
}

.header {
	background-color: #c9643b;
	color: #fff;
}

.nav-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;

	list-style: none;
}

.nav-link {
	padding: 0 20px;
	line-height: 50px;

	text-decoration: none;
	color: #fff;
	transition: 0.3s;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
}

.main-container {
	display: flex;
	flex-wrap: wrap;
}

.main-container a {
	text-decoration: none;
	color:#bdb76b;
	font-weight: bold;
}

.section {
	width: 45%;
	padding: 10px;
	padding-bottom: 35px;
	margin: 20px;

	border-bottom: 1px solid #c9643b;
}

.section-profile {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;

	border-bottom: 15px solid #d7d1c9;
}

.section-profile-title {
	text-align: center;
}

.section-profile-logo {
	border-radius: 50%;
	width: 220px;
	height: 220px;	
}

.section-lang , .section-edu {
	border: 0;
	line-height: 2;
}

.section-contacts , .section-skills {
	line-height: 2;
}

.section-title {
	text-transform: uppercase;
	color: #c9643b;
	font-weight: bold;
}

.section-title-h1 {
	position: relative;
	padding: 0;
	margin-bottom: 20px;

	color: black;
	font-size: 30px;
	letter-spacing: 5px;
}

.section-title-h1::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -70px;
	width: 140px;
	height: 2px;
	background-color: #c9643b;
}

.section-title-h3 {
	margin-top: 50px;
	color: #c9643b;
	letter-spacing: 2px;
}

.section-item {
	position: relative;
	padding-left: 30px;

	list-style-type: none;
}

.section-item::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0px;
	width: 10px;
	height: 10px;
	border: 1px solid #c9643b;
	border-radius: 50%;
}

.footer {
	padding: 20px;
	background-color: #c9643b;
	color: #fff;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.rss {
	width: 120px;
	height: 45px;
	background-image: url(./assets/icons/rs_school_js.svg);
}

@media (max-width: 820px) {
	.header {
		display: none;	
	}

	.section {
		width: 100%;
	}

	.section-lang {
		border-bottom: 1px solid #c9643b;
	}

	.section-profile-logo {
		width: 120px;
		height: 120px ;
	}
}