.post-type-archive-projects #pxl-wapper .container {
	padding: 0px 15px;
}

/* Filter wrapper START */

.projects-filter__wrap {
	padding-top: 35px;
	display: flex;
	gap: 20px;
}

/* Filter wrapper END */

/* Search form START */

.filter-search-form__wrap {
	position: relative;
	width: 59%;
}

.search-icon-filter {
	position: absolute;
	top: 20px;
	left: 20px;
}

input[type="search"].filter-search-form {
	padding: 15px 20px 15px 50px;
	height: 54px;
	border-radius: 4px;
	border: 1px solid #E9E9FF;
	background: #FFF;
}

input[type="search"].filter-search-form::placeholder {
    font: 1.25rem/3 sans-serif;
	color: #C1C1D9;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 21px */
	letter-spacing: -0.28px;
}
/* Search form END */


/* Filter dropdown list START */

.filter-categories-list__wrap {
	width: 32%;
	height: 54px;
	position: relative;
}

.filter-categories-list {
	position: absolute;
	z-index: 1;
	margin: 0px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
  	list-style: none;
	border-radius: 4px;
    border: 1px solid #E9E9FF;
    background: #FFF;
	font-size: 14px;
	line-height: normal;
}

.filter-categories-list .arrow-down-icon {
	position: absolute;
    top: 23px;
    right: 34px;
	z-index: -1;
}

.filter-categories-list .arrow-down-icon.open-categories-filter {
	transform: rotate(180deg);
}

.filter-categories-list li.categories-list-item {
  	padding: 15px 20px;
  	z-index: 2;
}
.filter-categories-list li.categories-list-item:not(.init) {
  	width: 100%;
  	display: none;
	cursor: pointer;
}
.filter-categories-list li.categories-list-item:not(.init):hover,
.filter-categories-list li.categories-list-item.selected:not(.init) {
  	background: var(--purple);
	color: var(--white);
	transition: .3s;
}
li.init {
	padding: 15px 20px;
	height: 52px;
	display: flex;
	align-items: center;
	cursor: pointer;
	color: var(--purple-dark);
}
/* Filter dropdown list END */

/* Filter platform start START*/

.filter-platform-list {
	position: absolute;
	z-index: 1;
	margin: 0px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
  	list-style: none;
	border-radius: 4px;
    border: 1px solid #E9E9FF;
    background: #FFF;
	font-size: 14px;
	line-height: normal;
}

.filter-platform-list .arrow-down-icon {
	position: absolute;
    top: 23px;
    right: 34px;
	z-index: -1;
}

.filter-platform-list .arrow-down-icon.open-categories-filter {
	transform: rotate(180deg);
}

.filter-platform-list li.categories-list-item {
  	padding: 15px 20px;
  	z-index: 2;
}
.filter-platform-list li.categories-list-item:not(.init) {
  	width: 100%;
  	display: none;
	cursor: pointer;
}
.filter-platform-list li.categories-list-item:not(.init):hover,
.filter-platform-list li.categories-list-item.selected:not(.init) {
  	background: var(--purple);
	color: var(--white);
	transition: .3s;
}

/* Filter dropdown END */

/* Filter button START */

.filter-search-btn__wrap {
	width: 9%;
	transition: .3s;
}

.filter-search-btn {
	display: flex;
	height: 54px;
	padding: 15px 25px;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
	border-radius: 45px;
	border: 2px solid var(--purple);
	background: var(--purple);
	color: var(--white);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 19.2px */
	letter-spacing: -0.32px;
}

.filter-search-btn:hover {
	background: var(--purple-light);
	border: 2px solid var(--purple-light);
}

/* Filter button END */

/* Projects list START */

.projects-list__wrap {
	position: relative;
	padding: 40px 0px 140px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 10px;
}

.projects-list__wrap .project-item {
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #F6F6FF;
	border-radius: 10px;
}

.project-item-excerpt {
	margin: 0;
	color: var(--dark-gray);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 21px */
	letter-spacing: -0.28px;	
}

.project-item-link {
	padding: 15px 25px;
	width: 146px;
	border-radius: 45px;
	border: 2px solid var(--purple);
	color: var(--purple);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 19.2px */
	letter-spacing: -0.32px;
	text-align: center;
}

.project-item-link:hover {
	transition: .3s;
	background: var(--purple);
	border: 2px solid var (--purple);
	color: var(--white);
}



/* Projects list END */

/* Projects responsive START */

@media only screen and (max-width: 1100px) {
	.projects-filter__wrap {
		flex-direction: column;
	}
	
	.projects-filter__wrap .filter-search-form__wrap, .projects-filter__wrap .filter-categories-list__wrap, .projects-filter__wrap .filter-search-btn__wrap, .projects-filter__wrap .filter-search-btn__wrap .filter-search-btn{
		width: 100%;
	}
}

@media only screen and (max-width: 1024px) {
	.projects-list__wrap {
		grid-template-columns: repeat(2,1fr);
		padding: 40px 0px 100px;
	}
	
	.header-projects__desc {
		padding-top: 30px;
	}
	
	.projects-list__wrap .project-item {
		padding: 30px 20px;
	}
}

@media only screen and (max-width: 480px) {
	.projects-list__wrap {
		grid-template-columns: 1fr;
	}
	
	.project-item-link {
		padding: 12px;
		width: 100%;
	}
}

/* Projects responsive END */

/* Projects pagination START */

.page-numbers {
	display: none;
}

.next.page-numbers, .prev.page-numbers  {
	position: absolute;
	bottom: 64px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.prev.page-numbers {
	flex-direction: row-reverse;
}

.next.page-numbers {
	right: 0;
}

@media only screen and (max-width: 1024px) {
	.next.page-numbers, .prev.page-numbers {
		bottom: 32px;
	}
}
/* Projects pagination END */

/* Projects Single page BANNER START */

.single-proj-banner__wrap:before {
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #27274F;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.proj-banner-tags__wrap .elementor-widget-container {
	margin: 0px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	
}

.proj-banner-tags__wrap p{
	margin: 0px;
	padding: 9px 14px;
	color: #171E2A;
	background-color: #DBDADA;
	font-size: 10px;
	font-weight: 400;
	line-height: 12px;
	letter-spacing: 0em;
	text-align: left;

}

/* Projects Single page BANNER END */


/* Projects Single page SOLUTION START */

.custom-ordered-list ol {
	padding: 0px;
	margin: 0px;
	counter-reset: myCounter;
}

.solution-second-step .custom-ordered-list ol {
	counter-reset: myCounter 1;
}

.solution-third-step .custom-ordered-list ol {
	counter-reset: myCounter 2;
}

.solution-fourth-step .custom-ordered-list ol {
	counter-reset: myCounter 3;
}

.solution-fifth-step .custom-ordered-list ol {
	counter-reset: myCounter 4;
}

.solution-sixth-step .custom-ordered-list ol {
	counter-reset: myCounter 5;
}

.solution-seventh-step .custom-ordered-list ol {
	counter-reset: myCounter 6;
}

.solution-eighth-step .custom-ordered-list ol {
	counter-reset: myCounter 7;
}

.solution-nineth-step .custom-ordered-list ol {
	counter-reset: myCounter 8;
}

.solution-tenth-step .custom-ordered-list ol {
	counter-reset: myCounter 9;
}

.custom-ordered-list li {
	position: relative;
    padding: 5px 0 0 80px;
    list-style: none;
}

.custom-ordered-list--big li {
    padding: 0.3em 0 0 100px;
	z-index: 1;
	color: var(--white);
}

.custom-ordered-list li:before {
	counter-increment: myCounter;
    content: counter(myCounter, decimal-leading-zero);
    color: var(--white);
    display: inline-block;
    text-align: center;
    margin: 0;
    line-height: 40px;
    font-weight: 600;
    z-index: 1;
}

.custom-ordered-list--big li:after, .custom-ordered-list--big li:before {
    width: 74px;
    height: 50px;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 26px;
	font-weight: 600;
	line-height: 36px;
	letter-spacing: -0.02em;
	text-align: left;

}

.custom-ordered-list--big li:before {
    line-height: 1.924em;
}

.custom-ordered-list li:after, .custom-ordered-list li:before {
    width: 3em;
    height: 2.22em;
    position: absolute;
    top: 0;
    left: 0;
}

.custom-ordered-list li:after {
    content: "";
    background: var(--purple);
    transform: skew(-12deg);
}

.custom-ordered-list--big li:after, .custom-ordered-list--big li:before {
    width: 74px;
    height: 50px;
}

.custom-ordered-list.custom-ordered-list--purple li:after {
    background: var(--purple);
}

.solution-desc__wrap:before {
	content: "";
    position: absolute;
    top: 50%;
    left: 2%;
    display: block;
    height: 126px;
    width: 1px;
    background-color: rgba(255, 255, 255, .4);
    transform: translateY(-50%) skew(-15deg);
}

.proj-ul-with-text ul{
	margin: 0px;
}

.proj-ul-with-text ul br {
	display: none;
}

.product-feature-icon .pxl-icon1 {
	position: relative;
	height: 90px;
}

.product-feature-icon .pxl-icon1:before {
	content: "";
	position: absolute;
	bottom: 16px;
	width: 74px;
	height: 4px;
	transform: skewX(-30deg);
	background-color: var(--sky-blue);
}

.product-feature-icon .yellow-line .pxl-icon1:before {
	background-color: var(--yellow);
}

.product-feature-icon .green-line .pxl-icon1:before {
	background-color: var(--light-green);
}

.project-skew-image .elementor-widget-container {
	position: relative;
    transform: skewX(-12deg);
    overflow: hidden;
}

.project-skew-image img {
	transform: skewX(12deg) scale(1.2);
}

.proj-absolute-triangle svg {
	position: absolute;
    left: 19%;
    top: -30px;
}

.proj-absolute-first-triangle svg {
	position: absolute;
    right: 25%;
    top: -40px;
}

@media only screen and (max-width: 1023.75px) {
	.solution-desc__wrap:before {
		display: none;
	}
	
	.image-col-skew_new {
		margin: 0 auto;
		max-width: 470px;
	}
	
	.project-skew-image img {
		width: 100% !important;
	}
	
	.proj-absolute-triangle svg, .proj-absolute-first-triangle svg {
		display: none;
	}
}

@media (max-width: 767.75px) {
	.custom-ordered-list--big li {
		margin-left: 0;
		padding-top: 3em;
		padding-left: 0;
	}
	
	.custom-ordered-list--big li:after, .custom-ordered-list--big li:before {
		width: 62px;
		height: 42px;
		padding-top: 4px;
		font-size: 22px;
	}
	
	.image-col-skew_new .elementor-widget-container {
		left: calc(50% - 50vw);
		width: 100vw !important;
		transform: none;
	}
	
	.project-skew-image img {
		transform: none;
	}
}

/* Projects Single page SOLUTION END */

/* Projects Single page QUOTE START */

.inst-quote__main {
    max-width: 770px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 35px 0 0 90px;
    position: relative;
    z-index: 4;
    margin: 0 auto;
}

.inst-quote__img {
	display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
}

.inst-quote__text {
    font-style: italic;
}

.inst-quote__info {
    display: inline-block;
    margin-left: auto;
    margin: 8px 65px 0 auto;
}

.inst-quote__author {
    display: block;
}

.inst-quote__position {
    display: block;
    margin-top: 5px;
}

@media (min-width: 1760px) {
	.inst-quote__main {
		max-width: 900px;
	}
	
	.inst-quote__info {
		margin-right: 90px;
	}
}

@media (max-width: 1023px) {
	.inst-quote__wrap {
		padding: 0;
	}
	
	.inst-quote__main {
		padding: 0px;
	}
	
	.inst-quote__img {
		position: static;
		margin: 0 auto 45px;
	}
	
	.inst-quote__info {
		margin: 0px;
	}
}

@media (max-width: 767px) {
	.inst-quote__img {
		width: 45px;
		height: 45px;
		margin-bottom: 30px;
	}
	
}
/* Projects Single page QUOTE END */

/* Projects Single page Inline ul START */

.inline-marker-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

/* Projects Single page Inline ul END */

/* BI solution for vending machine step START */

.projects-step {
	overflow: hidden;
    padding-right: 100px;
    width: 420px;
}

.projects-step .step__wrap {
	position: relative;
}

.projects-step fieldset {
	position: relative;
    border: 2px solid var(--purple);
    border-right: none;
    padding: 35px 0 50px 25px;
}

.projects-step .step__title {
	padding: 0 20px;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 3.22px;
    text-transform: uppercase;
    color: var(--purple);
}

.projects-step .step__text {
	position: relative;
    padding-left: 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.23em;
    color: #fff;
}

.projects-step fieldset:after {
	content: "";
    position: absolute;
    top: 9px;
    right: -59px;
    display: block;
    width: 118px;
    height: 118px;
    border-right: 2px solid var(--purple);
    border-bottom: 2px solid var(--purple);
    transform: rotate(-45deg);
}

.projects-step.first-step fieldset:after {
	right: -55px;
    width: 114px;
    height: 108px;
}

.projects-step.second-step fieldset:after {
	top: 13px;
    right: -63px;
    width: 130px;
    height: 125px;
}

@media only screen and (max-width: 767px) {
	.projects-step {
		width: 348px;
	}
	
	.projects-step fieldset {
		padding: 20px 0 30px 10px;
	}
	
	.projects-step .step__title {
		padding: 0 10px;
	}
	
	.projects-step .step__text {
		padding-left: 10px;
		font-size: 18px;
	}
	
	.projects-step.first-step fieldset:after {
		right: -57px;
		top: 10px;
		width: 116px;
		height: 110px;
	}
	
	.projects-step.second-step fieldset:after {
		top: 6px;
		right: -49px;
		width: 101px;
		height: 95px;
	}
	
	.projects-step.third-step fieldset:after {
		top: 3px;
		right: -41px;
		width: 85px;
		height: 80px;
	}
}

@media only screen and (max-width: 359px) {
	.projects-step {
		width: 308px;
	}
	
	.projects-step .step__title {
		font-size: 18px;
	}
	
	.projects-step .step__text {
		font-size: 16px;
	}
	
	.projects-step.first-step fieldset:after {
		right: -53px;
		top: 8px;
		width: 109px;
		height: 104px;
	}
	
	.projects-step.second-step fieldset:after {
		top: 5px;
		right: -46px;
		width: 95px;
		height: 90px;
	}
	
	.projects-step.third-step fieldset:after {
		top: 3px;
		right: -41px;
		width: 85px;
		height: 80px;
	}
}

/* BI solution for vending machine step END */

