.special {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	min-height: 478px;
    padding-top: 104px;
    padding-bottom: 110px;
}
.special__content {
    max-width: 500px;
}
.special__title {
    margin-bottom: 30px;
}
.special__text {
    margin-bottom: 30px;
}
.special__text:last-child {
    margin-bottom: 0px;
}
.special__text a {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.special__text a:hover {
    color: var(--primary-color-active);
    border-color: transparent;
}
.special__more a {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.special__more a:hover {
    color: var(--primary-color-active);
    border-color: transparent;
}
@media screen and (min-width: 1576px) {
	.special__content {
		max-width: 700px;
	}
}
@media screen and (max-width: 580px) {
	.special {
		display: block;
		min-height: 0px;
		padding-top: 40px;
		padding-bottom: calc(40px + 5px + 3px);
	}
    .special__bg:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
		width: 100%;
		height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
		z-index: 10;
    }
	.bg.special__bg {
		overflow: hidden;
	}
	.bg.special__bg img {
		top: -20px;
		width: calc(100% + (20px * 2));
		height: calc(100% + (20px * 2));
		filter: blur(15px);
		z-index: 0;
	}
	.special__title br {
		display: none;
	}
	.special__title {
		margin-bottom: 20px;
	}
	.special__text {
		margin-bottom: 15px;
	}
	.special__text, 
	.special__more {
		font-size: 17px;
		line-height: 24px;
	}
}