/* Proposals */
.proposals-section {

}

.proposals {
	--gutter-y: 40px;
	display: flex;
	flex-wrap: wrap;
	margin-left: calc(-.5 * var(--gutter-x));
	margin-right: calc(-.5 * var(--gutter-x));
	margin-top: calc(-1 * var(--gutter-y));
}

.proposals.slick-initialized {
  display: block;
  margin: 0;
}

.proposals .slick-list {
  margin-left: calc(-.5 * var(--gutter-x));
  margin-right: calc(-.5 * var(--gutter-x));
}

.proposals .slick-list .proposals__item {
	margin-top: 0;
}

.proposals .slick-arrow {
	top: 130px;
}

@media (max-width: 1399.98px) {
	.proposals .slick-arrow {
		top: 113px;
	}
}

@media (max-width: 1199.98px) {
	.proposals .slick-arrow {
		top: 94px;
	}
}

@media (max-width: 767.98px) {
	.proposals .slick-arrow {
		top: 107px;
	}
}

@media (max-width: 575.98px) {
	.proposals .slick-arrow {
    top: 37vw;
	}
}

.proposals_type_box {
	display: grid;
	gap: var(--gutter-x);
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 305px);
	margin: 0;
}

.proposals__item {
	flex: 0 0 auto;
	width: 25%;
	padding-left: calc(.5 * var(--gutter-x));
	padding-right: calc(.5 * var(--gutter-x));
	margin-top: var(--gutter-y);
}

.proposals_type_box .proposals__item {
	flex: unset;
	width: auto;
	padding: 0;
	margin: 0;
}

.proposals_type_box .proposals__item:nth-child(1) {
	grid-area: 1 / 1 / 3 / 2;
}

.proposals_type_box .proposals__item:nth-child(2) {
	grid-area: 1 / 2 / 2 / 3;
}

.proposals_type_box .proposals__item:nth-child(3) {
	grid-area: 1 / 3 / 2 / 5;
}

.proposals_type_box .proposals__item:nth-child(4) {
	grid-area: 2 / 2 / 3 / 4;
}

.proposals_type_box .proposals__item:nth-child(5) {
	grid-area: 2 / 4 / 3 / 5;
}

@media (max-width: 991.98px) {
	.proposals__item {
		width: 33.33%;
	}

	.proposals_type_box {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 305px);
	}

	.proposals_type_box .proposals__item:nth-child(1) {
		grid-area: 1 / 1 / 3 / 2;
	}

	.proposals_type_box .proposals__item:nth-child(2) {
		grid-area: 1 / 2 / 2 / 3;
	}

	.proposals_type_box .proposals__item:nth-child(3) {
		grid-area: 1 / 3 / 2 / 4;
	}

	.proposals_type_box .proposals__item:nth-child(4) {
		grid-area: 2 / 2 / 3 / 3;
	}

	.proposals_type_box .proposals__item:nth-child(5) {
		grid-area: 2 / 3 / 3 / 4;
	}
}

@media (max-width: 767.98px) {
	.proposals__item {
		width: 50%;
	}

	.proposals_type_box {
		gap: 0;
		display: flex;
		flex-wrap: wrap;
		margin-left: calc(-.5 * var(--gutter-x));
		margin-right: calc(-.5 * var(--gutter-x));
		margin-top: calc(-1 * var(--gutter-y));
	}

	.proposals_type_box .proposals__item {
		flex: 0 0 auto;
		width: 50%;
		padding-left: calc(.5 * var(--gutter-x));
		padding-right: calc(.5 * var(--gutter-x));
		margin-top: var(--gutter-y);
		height: 350px;
	}

	.proposals_type_box .proposals__item:first-child {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.proposals__item {
		width: 100%;
	}
	
	.proposals_type_box .proposals__item {
		width: 100%;
	}
}
/* ! Proposals */

/* Proposals Item */
.proposal-item {
	display: block;
	color: inherit;
	text-decoration: none;
	position: relative;
}

.proposal-item__image-wrapper {
	position: relative;
	margin-bottom: 20px;
}

.proposal-item__image-wrapper:before {
	content: '';
	display: block;
	padding-top: calc(260 * 100% / 305);
}

.proposal-item__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.proposal-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.proposal-item__image:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .75);
}

.proposal-item__image:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -30px;
	width: 60px;
	height: 60px;
	background-color: rgba(0, 0, 0, .27);
	background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m1.465 15.632 7.284-7.047a.81.81 0 0 0 0-1.174L1.469.368a.879.879 0 0 0-1.214 0 .81.81 0 0 0 0 1.174l6.673 6.456-6.677 6.46a.813.813 0 0 0 0 1.174.879.879 0 0 0 1.214 0Z'/%3E%3C/svg%3E");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 9px 16px;
}

.proposal-item__image:before,
.proposal-item__image:after {
	opacity: 0;
	visibility: hidden;
	transition: 0.35s ease-in-out;
}

.proposal-item:hover .proposal-item__image:before,
.proposal-item:hover .proposal-item__image:after {
	opacity: 1;
	visibility: visible;
}

.proposal-item__content {

}

.proposal-item__title {
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	color: var(--accent-color);
	margin-bottom: 13px;
}

.proposal-item:hover .proposal-item__title {
	color: var(--main-color);
}

.proposal-item__title:last-child {
	margin-bottom: 0;
}

@media (max-width: 1199.98px) {
	.proposal-item__title {
		font-size: 16px;
    line-height: 24px;
	}
}

@media (max-width: 767.98px) {
	.proposal-item__title {
		font-size: 14px;
	}
}

.proposal-item_type_box {
	height: 100%;
}

.proposal-item_type_box .proposal-item__image-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.proposal-item_type_box .proposal-item__image-wrapper:before {
	display: none;
}

.proposal-item_type_box .proposal-item__image:after {
	margin: -53px 0 0 -30px;
}

.proposal-item_type_box .proposal-item__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-top: 1px solid var(--line-color);
	padding: 18px 20px;
	overflow: hidden;
	color: var(--main-color);
	height: 89px;
	transition: 0.35s ease-in-out;
}

.proposal-item_type_box:hover .proposal-item__content {
	border-top-color: transparent;
	color: var(--white-color);
}

.proposal-item_type_box .proposal-item__title {
	color: inherit !important;
	margin: 0;
}
/* ! Proposals Item */