.documents {
	
}
.documents__row {
	display: flex;	
	gap: 40px;
	margin-bottom: 60px;
}
.documents__title {
	font-family: 'HeliosExtC', sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
	color: #FFFFFF;
	margin-bottom: 40px;
}
.documents__image {
	max-width: 360px;
}
.documents .slick-next, 
.documents .slick-prev {
	top: inherit;
	bottom: -30px;
}
.documents .slick-next {
	right: 40px;
}
.documents .slick-prev {
	left: inherit;
	right: 80px;
}

.documents .slick-next::before, 
.documents .slick-prev::before {
	font-size: 26px;
}
.documents__item a {
	cursor: pointer;
}
.modal-overlay {
	background-color: rgba(0, 0, 0, 0.6);
	bottom: 0;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	width: 100%;
	z-index: 1;
}
.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.modal-overlay__body {
	max-width: 700px;
	margin: auto;
	position: relative;
	display: flex;
	align-items: center;
	height: 100vh;
	justify-content: center;
}
.modal__close {
	position: absolute;
	right: -30px;
	top: 5px;
	display: block;
	width: 36px;
	height: 36px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("../img/close.png");
	font-size: 0;
	background-color: transparent;
}
.modal__image {
	max-width: 100%;
	max-height: 98vh;
}

.documents__btn {
	padding: 8px 12px;    
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
		background-color: #ffffff00;
    border: 2px solid #c618d9;
    width: fit-content;
    gap: 8px;
}