.about-files {
	position: relative;
	padding: 30px 0;
}

@media screen and (min-width: 768px) {
	.about-files {
		padding: 54px 0;
	}
}

@media screen and (min-width: 1440px) {
	.about-files {
		margin-top: -220px;
		padding: 61px 0;
	}
}

.about-files__button {
	position: relative;
	font-size: 14px;
	font-family: inherit;
	width: 100%;
	text-transform: uppercase;
	color: inherit;
	padding: 10px 0;
	margin-bottom: 15px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.about-files__button::after {
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
	background-image: url(/local/templates/main/img/arrow-menu.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 35px;
	height: 35px;
	content: "";
	transition: transform 0.4s ease;
}

.about-files__button.active::after {
	transform: scaleY(-1);
}

.about-files__title {
	text-align: left;
	color: #000;
	font-family: Tektur;
	font-size: clamp(16px, 2.7vw, 26px);
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	text-transform: uppercase;
}

.about-files__files-container {
	height: 0;
	overflow: hidden;
	transition: height 0.4s ease, max-height 0.4s ease;
}

.about-files__files-container.active {
	height: var(--inner-height, 0);
}

.about-files__files-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.about-files__file-link {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 5px 0 15px;
	border-bottom: 2px solid #054B5E;
}

.about-files__file-link:hover .about-files__file-name {
	color: #054B5E;
}

.about-files__file-icon {
	position: relative;
	height: auto;
	width: auto;
}

.about-files__file-icon svg {
	height: 40px;
	width: auto;
}

.about-files__file-name {
	color: #333;
	text-align: justify;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%;
	transition: color 0.4s ease;
}

@media screen and (max-width: 768px) {
	.about-files__file-name {
		font-size: 14px;
	}
}