@media (max-width: 1000px){
	.sub-report-content {
		grid-template-columns: repeat(1, 1fr) !important;		
		column-gap: 17px !important;
		row-gap: 10px !important;
	}
	
	.main-report-content {
		display:block !important;
		margin-bottom: -160px  !important;
	}
	.main-report-detail .content {
		margin-bottom: 25px !important;
	}
	.main-report-img {
		width: 228px !important;
		height: 310px !important;
		margin: auto !important;
		z-index: 50 !important;
		position: relative !important;
	}
	
	.main-report-detail {
		margin: auto !important;
		width:343px !important;
		height:507px !important;
		height: auto !important;
		max-height: 560px !important;
		transform: translate(0px, -160px) !important;
		padding: 180px 50px !important;
	}
	
	.main-report-detail .title {
		font-size:110% !important;
		
	}
	
	.main-report-detail .content {
		font-size:90% !important;
	}
	
	.sub-report-card {
	    width: 343px !important;
		height: 63px !important;
	}
	
	.card-title {
		font-size:100% !important;
	}
	
	.ebook_img {
		width:11px !important;
		height:14px !important;
	}
	
	.pdf_img {
		width:11px !important;
		height:14px !important;
	}
	
	.pdf-text ,.ebook-text{
		font-size:90% !important;
	}
	.sub-report-card {
		margin: auto;

		padding: 20px 35px !important;
	}
	.card-title {
		width:40% !important;
	}
	.ebook , .pdf {
		margin-top:0px !important;
	}
}

@media (min-width: 1001px) and (max-width: 1300px) {
	.sub-report-content {
		display: grid;
		grid-template-columns: repeat(2, 1fr) !important;
		column-gap: 25px;
		row-gap: 20px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.sub-report-card {
		width:unset !important;
	}
}

.main-report-detail {
	background-color: #F6F6F6;
	border-radius: 23px;
	padding: 60px 80px;
	width: 885px;
    height: 383px;
	transform: translate(-50px, 100px);
	box-shadow: 0px 5px 15px rgb(119 119 119 / 20%);
}

.main-report-detail .title {
	font-size: 212.5%;
    color: var(--clr-primary);
    font-weight: 600;
	margin-bottom: 10px;
}

.main-report-detail .content {
	font-size: 110%;
	margin-bottom:50px;
	overflow: auto;
    max-height: 130px;
}

.main-report-detail .report-button button{
    padding: 5px 21px;
    background-color: #630F63;    
	color: #fff;
    border-radius: 8px;
    font-size: 87.5%;
    text-transform: none;
    height: 39px;
}

.main-report-content {
	display: flex;
}

.main-report-img {
	width: 443px;
    height: 601px;
}

.main-report-img img {
	max-width: unset;
    height: inherit;
    width: inherit;
}

.sub-report-list {
	margin-top: 20px;
}

.sub-report-list .sub-report-list-title{
	font-size: 175%;
    color: var(--clr-primary);
    font-weight: 600;
	margin-bottom:17px;
	
}

.sub-report-content {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.sub-report-card {
    background-color: #F6F6F6;
    border-radius: 23px;
	width:409px;
	height:79px;
	padding: 20px 42px;
	display: flex;
	align-items: center;
}

.card-title {
	font-weight:600;
	font-size:140%;
	color : #6D1B6D;
	    width: 40%;
}
.ebook {
	margin-top:5px;
	margin-right:27px;
}

.ebook-text{
	font-size:110%;
}

.ebook_img {
	position: relative;
    background-image: url(../images/ebook.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	width:13px;
	height:16px;
	display: inline-block;
	margin-right:13px;
}
.pdf {
	margin-top:5px;
}

.pdf-text{
	font-size:110%;
}

.pdf_img {
	position: relative;
    background-image: url(../images/pdf.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	width:13px;
	height:16px;
	display: inline-block;
	margin-right:16px;
}
.sub-report-card.over {
	display:none;
}

.sub-report-card.over.active {
	display:flex;
}
.show_button {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height:30px;
	width:30px;	
	margin: 35px auto 20px auto;
}

.show_button::after {
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	width: 96px;
	color: var(--clr-primary);
	font-weight: 500;
	font-size: 92.5%;
	text-align: center;
	transform: translate(-50%, 100%);
}

.show_button.more {
	background-image: url(../images/button-down.svg);
}
.show_button.more::after {
	content: 'More ';
}

.show_button.less {
	background-image: url(../images/button-up.svg);
}
.show_button.less::after {
	content: 'Less ';
}