@charset "utf-8";
/* CSS Document */


.report{
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}

.report h3{
	display: flex;
	align-content: center;
	font-size: 42px;
	text-transform: uppercase;
	font-weight: 600;
}

.reportbg{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 3rem;
}

.reportL{
	display: flex;
	flex-direction: column;
	padding: 8px 20px;
	gap: 2rem;
}

.reportRow{
	display: flex;
	flex-direction: row;
	gap: 10rem;
	position: relative;
	justify-content: space-between;
}

.reportRow::after{
	position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    right: auto;
    left: 0;
    bottom: -14px;
	transition: .5s ease-out;
	background: #aeaeae;
}

.reportRow p{
	font-weight: 700;
    font-size: 22px;
	margin-bottom: 0;
}

.reportR{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.reportRow a{
	/*background-color: #3A3A3A;
	padding: 8px 20px;
	border-radius: 5px;*/
	position: relative;
	font-weight: 600;
	font-size: 16px;
}

.reportRow a::after{
	position: absolute;
    content: "";
    width: 50%;
    height: 3px;
    right: auto;
    left: 0;
    bottom: -4px;
	transition: .5s ease-out;
	background: #131313;
}

.reportRow a:hover::after{
	width:100%
}

.investorTabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 90px;
}
.investorTabs .dscrptn {
    width: 48%;
}
.investorTabs .dscrptn .at-title::after {
	display: none;
}

@media (max-width:767px){
	.investorTabs .dscrptn {
		width: 100%;
	}
}