.information{
	position: relative;
	width: 100%;
	overflow: visible;
	transition: 1s 0.6s ease all;
	padding: 40px 0px;
	color: black;
	margin-left: 10px;
	margin-top: 30px;
}
.information-numbers{
	display: grid;
	grid-template-columns: 50% 50%;
}
.title {
	text-align: center;
	padding-bottom:10px;
}
.information__holder{
	display: grid;
	grid-template-columns: 30% 60%;
	grid-column-gap: 30px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.information__item__list{
	background-color: var(--second-color);
	color: #fff;
	padding: 15px 20px;
	height: 370px;
}
.information__item__title{
	width: 100%;
	line-height: 1.2;
	font-size: 20px;
	display: inline-block;
	font-weight: 700;
	align-items: center;
	cursor: pointer;
	justify-content: space-between;
	margin-bottom: 10px;
}
.information__item__content.open{
	height: auto;
	opacity: 1;
}
.information__item__content:not(.open){
	width: 90%;
	opacity: 0;
	height: 0;
    overflow: hidden;
	transition: opacity 1s ease-out;
}


span {
	cursor: pointer;
}
@media only screen and (max-width: 1024px){
	.information__item__title{
		font-size: 14px;
	}
	.information__item__content{
		font-size: 12px;
	}
	.information__item__list{
		height: 310px;
	}
}
@media only screen and (max-width: 783px){
	.information__item__list{
		height: 330px;
	}
}
@media only screen and (max-width: 588px){
	.information__item__list{
		height: 360px;
	}
}
@media only screen and (max-width: 512px){
	.information__item__list{
		height: 390px;
	}
}
@media only screen and (max-width: 449px){
	.information__item__list{
		height: 415px;
	}
}
@media only screen and (max-width: 446px){
	.information__holder{
		grid-column-gap: 5px;
	}
}
@media only screen and (max-width: 390px){
	.information__item__list{
		height: 445px;
	}
}
@media only screen and (max-width: 345px){
	.information__item__list{
		height: 470px;
	}
}
