/* 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: 120px;
	border-color: var(--white-color);
}

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

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

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

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

.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:hover {
	color: inherit;
	text-decoration: none;
}

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

.proposal-item__image-wrapper:before {
	content: '';
	display: block;
	padding-top: calc(240 * 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(19, 26, 34, .6);
}

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

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

.proposal-item__content {

}

.proposal-item__title {
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.05em;
	font-weight: 800;
	margin-bottom: 11px;
	text-transform: uppercase;
}

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

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

.proposal-item_type_box {
	color: var(--white-color);
	height: 100%;
}

.proposal-item_type_box:hover {
	color: var(--white-color);
}

.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__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, .3);
	padding: 26px 19px;
	color: currentColor;
}

.proposal-item_type_box .proposal-item__content:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 110px;
	height: 3px;
	background: currentColor;
	opacity: 0;
	transition: 0.15s ease-in-out;
}

.proposal-item_type_box:hover .proposal-item__content:before {
	opacity: 1;
}

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