.parallax--bg {
    background-image: url('../img/our-projects/projects-bg.webp');
    height: 540px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.parallax--bg:before {
    content:'';
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid #FDFFF8;
    border-right: 30px solid transparent;
    display: block;
    transform: scaleY(-1);
    position: absolute;
    left: 0;
    top: -1px;
}

.parallax--bg:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid #FDFFF8;
    border-left: 30px solid transparent;
    display: block;
    transform: scaleY(-1);
    position: absolute;
    right: 0;
    top: -1px;
}

.parallax--content{
    position: relative;
}

.parallax--content:before{
    content: '';
    background-image: url('../img/home/who-we-are-glas.png');
    position: absolute;
    top: 50%;
    left: 7%;
    width: 130px;
    height: 155px;
    background-repeat: no-repeat;
    background-size: 100%;
    /* transform: rotate(337deg) translateY(-50%); */
    z-index: -1;
    animation: imageEffect 15s infinite ease-in-out;
}


.projects--items .projects--item {
    display: flex;
}

.projects--items .projects--item .project--img {
    width: 628px;
    /* aspect-ratio: 1 / 1; */
    height: 550px;
}

.projects--items .projects--item .project--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.projects--slide .swiper-pagination > .swiper-pagination-bullet {
  width: 17px;
  height: 2px;
  border-radius: 0px;
  background: rgb(255 255 255 / 30%);
  transition: 0.3s;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 2px) !important;
  opacity: 1;
}

.projects--slide
  .swiper-pagination
  > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 43px;
  background: var(--primary);
  transition: 0.3s;
}

.projects--slide .swiper-pagination {
  bottom: 35px !important;
  z-index: 1;
}

.projects--slide, .projects--slide .bg--banner {
    height: 100%;
}

.projects--slide .bg--banner {
    position: relative;
}

.projects--slide .bg--banner:before{
	content: '';
	width:100%;
	height:100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 79.94%, #000000 100%);
	position: absolute;
	left: 0;
	top: 0;
}

.projects--items .projects--item .project--content {
    flex: 1;
    padding: 0px 50px;
}

.projects--items .projects--item .project--content ol, .projects--items .projects--item .project--content ul {
    padding-left: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.projects--items .projects--item:nth-child(even) {
    flex-direction: row-reverse;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url('../img/our-projects/project-item-bg.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 40%;
}

.projects--items .projects--item .project--content .heading--key {
    font-family: EnergyRegular;
    font-weight: 700;
    color: var(--black);
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.projects--items .projects--item .project--content .heading--key--items {
    list-style-type: decimal;
    padding-left: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.partner--feature h2.heading--main {
    font-size: clamp(24px, 3vw, 48px);
    font-family: HaasGrotDispBold;
    color: var(--black);
}
.partner--feature h2.heading--main {
    font-size: clamp(24px, 3vw, 48px);
    font-family: HaasGrotDispBold;
    color: var(--black);
}

.partner--feature p {
    color: var(--black);
}

.partner--feature .dubble--btn {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

@media(max-width:1200px){
    .projects--items .projects--item .project--content {
        padding: 0px 30px;
    }
    .projects--items .projects--item:nth-child(even) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media(max-width:1024px){
    .parallax--bg {
        height: 440px;
    }
    .projects--items .projects--item .project--img {
        width: 50%;
    }
}

@media(max-width:768px){
    .parallax--bg {
        height: 280px;
        background-attachment: scroll;
    }
    .projects--items .projects--item{
        flex-direction: column !important;
    }
    .projects--items .projects--item .project--img{
        width: 100%;
        height: 250px;
    }
    .projects--items .projects--item .project--content {
        padding: 20px !important;
    }
    .projects--items .projects--item .project--content .heading--key{
        font-size: 18px;
    }
    .parallax--content:before {
        opacity: 0;
    }
}
