.parallax--bg {
    background-image: url('../img/global-partnership/global-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;
    bottom: -20%;
    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;
    align-items: center;
}

.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--items .projects--item .project--content {
    flex: 1;
    padding: 0px 50px;
}

.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 top;
    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;
}


/* Couter */
.counter-wrapper{
    max-width:1260px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
    width:100%;
}

.counter-box h2{
    color:#9EC127;
    font-family: HaasGrotDispMedium;
    margin-bottom:10px;
}

.counter-box p{
    color:var(--black);
    font-size:18px;
}
/* Couter end */

@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;
    }
    .counter-wrapper{
        grid-template-columns:repeat(2,1fr);
        row-gap: 10px;
    }
    .counter-box p{
        font-size:15px;
    }
}

@media(max-width:480px){
    .counter-wrapper{
        grid-template-columns:1fr;
    }
}