.slide_section {
	position: relative;
	padding: 120px 0;
	text-align: left;
	overflow: hidden;
}

.slide_section .inside {
	max-width: 880px;
	width: 100%;
}

.slide_section p.title {
	font-size: 44px;
	font-style: normal;
	font-weight: 700;
	line-height: 50px;
	color: #000;
	margin: 0 auto 48px auto;
}

.slide_section p.title span {
	color: #8DD3BF;
}

.slide_section img {
	max-width: 100%;
	height: auto;
}

.slide_section .sections {
	
}

.slide_section .sections .section {
	border-bottom: 1px solid #000;
}

.slide_section .sections .section .title {
	position: relative;
	color: #000;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	padding: 24px 90px 24px 0;
	cursor: pointer;
}

.slide_section .sections .section .title svg {
	position: absolute;
	width: 24px;
	height: 24px;
	right: 8px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: 300ms;
}

.slide_section .sections .section.open .title svg {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

.slide_section .sections .section .content {
	display: none;
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding-bottom: 24px;
}

@media only screen and (max-width: 996px) {
	.slide_section {
		padding: 80px 0;
	}

	.slide_section p.title {
		font-size: 24px;
		line-height: 32px;
	}

	.slide_section .sections .section .title { 
		font-size: 18px;
		font-style: normal;
		font-weight: 700;
		line-height: 24px; 
	}

	.slide_section .sections .section .content {
		font-size: 16px;
		line-height: 22px;
	}
}