body,
body * {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: block;
	font-size: 16px;
	font-family: Roboto;
	box-sizing: border-box;
}
b {
	font-size: inherit;
	line-height: inherit;
	display: inline-block;
}
.gradient-border {
	background: linear-gradient(42deg, #3d29ad, #6654d3);
}
header {
	width: 100%;
	z-index: 10;
	height: 94px;
	display: flex;
	position: fixed;
	color: #f5f5f5;
	padding: 30px 140px;
	background-color: #191919;
	justify-content: space-between;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
}
header .name {
	gap: 15px;
	display: flex;
	margin-left: -55px;
	align-items: center;
}
header .name > h1 {
	font-size: 36px;
	font-weight: bold;
	font-family: Kanit;
}
header .navigation {
	gap: 30px;
	display: flex;
	align-items: center;
}
header .navigation > a {
	color: #f5f5f5;
	text-decoration: none;
}
main {
	padding-top: 94px;
	background-color: #f1f1f1;
}
main > * {
	padding: 80px 140px;
}
main .about {
	gap: 160px;
	display: flex;
	align-items: start;
	background-color: #f5f5f5;
}
main .about > div {
	gap: 20px;
	display: flex;
	flex-direction: column;
}
main .about > div > h2 {
	font-size: 48px;
	color: #242424;
	font-weight: bold;
	line-height: 50px;
}
main .about > div > p {
	font-size: 24px;
	color: #383838;
}
main .about > div .gradient-border {
	width: 160px;
	height: 10px;
}
main .projects {
	gap: 140px;
	display: flex;
	flex-direction: column;
}
main .projects .title {
	gap: 80px;
	display: flex;
	align-items: center;
}
main .projects .title > h2 {
	max-width: 460px;
	font-size: 144px;
	line-height: 1em;
	text-align: right;
	word-wrap: break-word;
	text-transform: uppercase;
}
main .projects .title > p {
	font-size: 24px;
	line-height: 32px;
}
main .projects .project-list {
	gap: 80px;
	display: flex;
	flex-direction: column;
}
main .projects .project-list .project {
	gap: 30px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: space-evenly;
}
main .projects .project-list .project:nth-child(even) {
	flex-direction: row;
}
main .projects .project-list .project > div {
	padding: 40px;
	max-width: 580px;
	position: relative;
	border-radius: 5px;
	border: 2px solid #000;
}
main .projects .project-list .project > div .gradient-border {
	top: 45px;
	left: 15px;
	width: 10px;
	height: 24px;
	position: absolute;
}
main .projects .project-list .project > div > h3 {
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	margin-bottom: 1em;
}
main .projects .project-list .project > div > p {
	font-size: 20px;
	line-height: 32px;
}
main .formations {
	background-color: #191919;
	display: flex;
	gap: 80px;
	color: #f5f5f5;
}
main .formations > h2 {
	max-width: 400px;
	font-size: 144px;
	line-height: 1em;
	text-align: right;
	word-wrap: break-word;
	text-transform: uppercase;
	color: #757575;
}
main .formations > div {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
main .formations > div > h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	margin-bottom: 20px;
}
main .formations > div .formation-list {
	gap: 20px;
	display: flex;
	flex-direction: column;
}
main .formations > div .formation-list .formation {
	padding: 20px;
	position: relative;
	border-radius: 5px;
	border: 1px solid #000;
	background-color: #1e1e1e;
}
main .formations > div .formation-list .formation > h3 {
	font-size: 18px;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: 10px;
}
main .formations > div .formation-list .formation > p {
	max-width: 60%;
	font-size: 14px;
	color: #c7c7c7;
	font-weight: 400;
	line-height: 20px;
}
main .formations > div .formation-list .formation .local {
	top: 20px;
	right: 20px;
	font-size: 18px;
	font-weight: 600;
	position: absolute;
	text-transform: uppercase;
}
main .formations > div .formation-list .formation .year {
	top: 20px;
	font-size: 14px;
	color: #383838;
	font-weight: 400;
	line-height: 20px;
	position: absolute;
	right: calc(100% + 25px);
	text-transform: uppercase;
}
main .formations > div .formation-list .formation .gradient-border {
	top: 25px;
	left: -10px;
	width: 20px;
	height: 10px;
	position: absolute;
}
main .formations > div .course-list {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 20px;
	width: 480px;
}
main .formations > div .course-list > img {
	position: absolute;
	left: -35px;
}
main .formations > div .course-list > h3 {
	font-size: 14px;
	font-weight: bold;
	color: #757575;
	text-transform: uppercase;
	margin-bottom: 10px;
}
main .formations > div .course-list .course {
	display: flex;
	justify-content: space-between;
}
main .formations > div .course-list .course > h4 {
	font-size: 18px;
	font-weight: 400;
}
main .formations > div .course-list .course > p {
	font-size: 18px;
	font-weight: 400;
	color: #757575;
}
footer {
	background-color: #000000;
	color: #f5f5f5;
	display: flex;
	padding: 80px 140px;
	align-items: start;
	justify-content: space-between;
}
footer .info {
    gap: 40px;
	display: flex;
	max-width: 300px;
	flex-direction: column;
}
footer .info > h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}
footer .info .gradient-border {
    width: 160px;
    height: 10px;
    margin-bottom: 30px;
}
footer .info > p {
    font-size: 18px;
    color: #757575;
    line-height: 32px;
}
footer .contacts {
	gap: 30px;
	display: flex;
	flex-direction: column;
}
footer .contacts .contact {
	gap: 30px;
    display: flex;
    color: #f5f5f5;
	align-items: center;
    text-decoration: none;
}
footer .contacts .contact > span {
    font-size: 36px;
    font-weight: bold;
    line-height: 43px;
}
