* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: sans-serif;
	min-height: 100vh;
	max-width: 100vw;
	line-height: 1.4;
	padding: 20px 50px;
}

.container {
	max-width: 1200px;
}

.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}

.header__logo {
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	text-decoration: none;
	margin: 0px 0px 0px 20px;
	font-weight: 700;
	position: relative;
	z-index: 3;
}

.header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: crimson;
	z-index: 2;
}

.header__body {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 40px;
	align-items: center;
}

.header__list {
	display: flex;
	position: relative;
	z-index: 2;
}

.header__list li {
	list-style: none;
	margin: 0px 0px 0px 20px;
}

.header__list a {
	text-decoration: none;
	position: relative;
}

.header__list a::before {
	content: '';
	position: absolute;
	left: 0; bottom: -5px;
	width: 0;
	height: 1.5px;
	background-color: #fff;
}

.header__list a:hover::before {
	width: 100%;
}

.header__list a:hover::before {
	transition: width 0.35s;
}

.header__link {
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	text-decoration: none;
}

.header__burger {
	display: none;
}

.heading-1 {
	font-size: 40px;
	text-transform: uppercase;
}

.heading-2 {
	font-size: 40px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.heading-3 {
	font-size: 20px;
	text-transform: uppercase;
	color: crimson;
	margin-bottom: 10px;
}

.sub-heading {
	font-size: 20px;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	border-bottom: 2px solid #ccc;
	padding-top: 40px;
	padding-bottom: 10px;
}

.sub-heading p {
	font-weight: 700;
	text-transform: capitalize;
	margin-right: 10px;
}

.sub-heading span {
	color: #555;
	font-weight: 300;
	border-right: 1px solid #ccc;
	padding-right: 10px;
}

.sub-heading .important {
	color: crimson;
	text-transform: uppercase;
	font-weight: 300;
}

/* HOME */

.home {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
}

.home-img{
	width: 100%;
}

.list {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 10px;
	margin-bottom: 10px;
}

.list img {
	width: 100%;
	height: 80px;
}

.list > p {
	font-weight: 700;
}

a {
	text-decoration: none;
	position: relative;
	color: #000;
}

.list a:hover,
.next-link a:hover,
.rel-art-item a:hover {
	text-decoration: underline;
	color: crimson;
}

/* ARTICLE */

.head-p {
	margin: 10px;
}

article > p {
	text-align: justify;
	font-size: 20px;
	margin-bottom: 20px;
}

.next-link {
	font-weight: 700;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.next-link-nx div p {
	text-align: right;
}

.next-link-nx > div > a {
	display: flex;
	align-items: flex-end;
}

.next-link-pr-arrow-l,
.next-link-pr-arrow-r {
	position: relative;
	padding-right: 15px;
}

.next-link-pr-arrow-l::after,
.next-link-pr-arrow-r::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(135deg);
	right: 0;

	border-width: 0 3px 3px 0;
	border-style: solid;
	border-color: crimson;
	padding: 5px;
}

.next-link-pr-arrow-l::after {
	margin: 11% 100% 0px 0px;
}

.next-link-pr-arrow-r::after{
	transform: translateY(-50%) rotate(-45deg);
	margin: -3.5% -4% 0px 0px
}

.rel-art-head {
	font-size: 20px;
	text-transform: uppercase;
	color: crimson;
	margin-top: 10px;
}
.rel-art {
	font-weight: 700;
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.rel-art-item img {
	height: 70%;
}

footer {
	height: 10hr;
	width: auto;
	border-top: 2px solid #ccc;
	margin: 0;
	padding: 0;
}

.foot-text {
	margin-top: 10px;
	text-align: center;
	
}

.back-to-top {
	position: fixed;
	bottom: -50px;
	right: 10px;
	background-color: crimson;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.4s linear;
	opacity: 0.8;
}

.back-to-top.active {
	bottom: 50px;
	transition: 0.4s linear;
}
