/*********************HTML*********************/

html,body{
	margin: 0;
	padding: 0;
	font-family: Roboto;
	background: #f4f6f9;
    color: #333;
}

body{
	display: grid;
    grid-template-areas:
        "header header"
        "aside  main"
        "footer footer";
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

ul, li, ol, a{
	text-decoration: none;
	list-style: none;
	color: black;
}

/*********************HEADER*********************/

.header {
	grid-area: header;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
	background: linear-gradient(90deg, #3866bb, #0c2340);
	color: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,.2);
}

.header__left{
	display: flex;
    align-items: center;
    gap: 20px;
}

.title{
	text-transform: uppercase;
	font-size: 20px;
	margin-left: 10px;
}

.title__first-span{
color: #f0f0f0;
}

.title__second-span{
	color: #0004d3;
}

.title__third-span{
	color: #da0303;
}

.awards__img{
	width: 75px;
	height: 80px;
}

.header__discription{
	text-transform: uppercase;
}

.header__right{
	font-size: 14px;
}

.header__right a{
	font-size: 16px;
	color: #ffffff;
}

/*********************ASIDE*********************/
aside {
	grid-area: aside;
    width: 250px;
    padding: 20px 0;
    background: #fff;
    height: 100%;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.nav__item{
line-height: 24px;
}

.nav__link{
	margin-left: 10px;
}

.sidebar__title{
	font-weight: 600;
}

.sidebar__title, .nav__link{
	color:rgb(120, 174, 199);
}

.logo{
	background: url(../assets/img/logo.svg) no-repeat center/cover;
	width: 77px;
	height: 110px;
}

/*********************MAIN*********************/

.main {
	grid-area: main;
	border-left: 1px solid #cfcfcf;
	padding: 30px;
}

.main img {
	display: block;
	margin: 0 20px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.details__section{
	display: flex;
	justify-content: center;
}

.details{
	background-color: white;
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 15px;
}

.detail__title{
	font-size: 24px;
	text-align: center;
}

.detail__item{
	margin: 13px 0;
	font-size: 20px;
}

/*********************FOOTER*********************/

.footer {
	grid-area: footer;
	padding: 20px;
	background: #0c2340;
	color: #fff;
	text-align: center;
	font-size: 14px;
}
