.parallax--bg {
    background-image: url('../img/csr/csr-parallax.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;
}


.csr--sustainbility {
    position: relative;
}

.csr--sustainbility:before {
    content: '';
    width: 100%;
    background-image: url('../img/csr/sustainability-bg.png');
    position: absolute;
    bottom: 50px;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 540px;
    min-height: 460px;
    background-position: bottom;
}

.csr--sustainbility:after {
    content: '';
    width: 100%;
    background-image: url('../img/home/who-we-are-glas.png');
    position: absolute;
    bottom: 50px;
    left: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 127px;
    min-height: 149px;
    /* transform: rotate(330deg); */
    animation: imageEffect 15s infinite ease-in-out;
}

.csr--sustainbility--inner .csr--sustainbility--inner--items {
    display: flex;
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
}

.csr--sustainbility--inner .csr--sustainbility--inner--items .csr--sustainbility--item--thum {
    max-width: 580px;
    width: 100%;
    height: 400px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 100% 100%, 10% 100%, 0% 90%, 0% 10%);
    overflow: hidden;
}

.csr--sustainbility--inner .csr--sustainbility--inner--items .csr--sustainbility--item--thum img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;
}

.csr--sustainbility--inner .csr--sustainbility--inner--items .csr--sustainbility--item--content {
    max-width: 680px;
    width: 100%;
    background: #E2EEBA;
    padding: 65px;
    width: 100%;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 100%, 0% 10%);
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
    color: var(--black);
    margin-left: -50px;
}

.csr--sustainbility--inner .csr--sustainbility--inner--items .csr--sustainbility--item--content h2 {
	margin-bottom: 20px;
}

.esg--section {
    background-image: url('../img/csr/esg-bg.webp');
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.esg--section::before{
    content: '';
    width: 100%;
    height: 100%;
    background: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.what--build--items {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: -145px;
    z-index: 1;
    position: relative; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-right: 20px;
    padding-left: 20px;
    z-index: 1;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: -145px;
}

.what--build--items .what--item {
    position: relative;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    overflow: hidden;
    transition: 0.3s;
    /* aspect-ratio: 1 / 1; */
}

.what--build--items .what--item:nth-child(1) > .bottom--what--item, .what--build--items .what--item:nth-child(3) > .bottom--what--item {
    color: var(--black);
}

.what--build--items .what--item:nth-child(2) > .bottom--what--item {
    color: var(--white);
}

.what--build--items .what--item:nth-child(1) > .bottom--what--item{
    background: #cef79e;
}

.what--build--items .what--item > .bottom--what--item {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 7%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* justify-content: space-between; */
    transition: 0.3s;
}

.what--build--items .what--item > .bottom--what--item > .what--icon > img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    object-position: left;
    transition: 0.3s;
}
.what--build--items .what--item:hover .what--icon img {
    transform: rotate(360deg) !important;
}

.what--build--items .what--item > .bottom--what--item h3 {
    font-family: HaasGrotDispMedium;
    font-size: clamp(18px, 2vw, 24px);
}

.what--build--items .what--item > .bottom--what--item p {
    font-family: "HaasGrotDispRoman";
    font-size: clamp(15px, 2vw, 18px);
}

.what--build--items .what--item:nth-child(2) > .bottom--what--item{
    background: #3e5ba6;
}

.what--build--items .what--item:nth-child(3) > .bottom--what--item {
    background: #e7e8e1;
}

.what--build--items .what--item:nth-child(2) > .bottom--what--item .what--icon > img {
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.driving--impact {
    background: #FDFFF8;
    position: relative;
    padding-top: 250px;
}

/* Diriving Slider */
.diriving-impact-slider--container {
    overflow: hidden;
    /* max-width: 1270px; */
    max-width: 75%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.diriving-impact-slider {
  width: 100%;
  margin: 0 auto;
}

.diriving-impact-slider{
	width:100%;
	padding:20px 0 30px
}

.diriving-impact-slider .swiper-slide{
  width:80%;
  /* height:520px; */
  height: 65vh;
  border-radius:10px;
  position:relative;
  flex-shrink:0;
}
.diriving-impact-slider .swiper-slide.swiper-slide-active {
    width: 80%;
}
.diriving-impact-slider .swiper-slide img{
  width:28%;
  height:100%;
  object-fit:cover;
  display:block;
  object-position: center;
  clip-path: polygon(20% 0%, 80% 0%, 100% 10%, 100% 90%, 80% 100%, 20% 100%, 0% 90%, 0% 10%);
    overflow: hidden;
    filter: blur(3px) brightness(0.55);
    opacity: 0.9;
    transition: filter 0.5s ease, opacity 0.5s ease;
}
.diriving-impact-slider .swiper-slide.swiper-slide-active img {
    clip-path: polygon(5% 0%, 95% 0%, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0% 90%, 0% 10%);
    width: 100%;
    filter: none;
    opacity: 1;
    transition: filter 0.5s ease, opacity 0.5s ease;
}

.diriving-impact-slider .swiper-slide-prev img {
    margin-left: auto;
}

.diriving-impact-slider .swiper-slide-img {
    height: 100%;
}

.diriving-impact-slider .swiper-wrapper{
  display:flex;
  align-items:center; /* vertical centering */
}

.diriving-impact-slider .swiper-slide-content {
    background: #3E5BA6;
    color: var(--white);
    text-align: center;
    max-width: 535px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    margin-top: -100px;
    z-index: 1;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s ease, opacity 0.5s ease;
}

.diriving-impact-slider .swiper-slide-content p {
    margin-bottom: 0;
}

.diriving-impact-slider .swiper-slide.swiper-slide-active .swiper-slide-content{
	visibility: visible;
  opacity: 1;
}

.driving--impact .swiper-button-next,
.driving--impact .swiper-button-prev{
  width:70px;
  height:70px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  top: calc(50% + 100px);
  transform: translateY(-50%);
}

.driving--impact .swiper-button-prev{left:2%}
.driving--impact .swiper-button-next{right:2%}

.driving--impact .swiper-button-next svg, .driving--impact .swiper-button-prev svg {
    width: 15px;
}
/* Diriving Slider end */


.partner--feature {
    background: #D8E6A9;
}

.partner--feature .container-fluid > .row {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.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:1024px){
    .parallax--bg {
        height: 440px;
    }
    .driving--impact .swiper-button-next, .driving--impact .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .driving--impact .swiper-button-next svg, .driving--impact .swiper-button-prev svg {
        width: 10px;
    }

    .diriving-impact-slider .swiper-slide {
        height: 50vh;
    }
}

@media(max-width:991px){
    .csr--sustainbility--inner .csr--sustainbility--inner--items .csr--sustainbility--item--content {
        padding: 40px;
    }
}
@media(max-width:768px){
    .parallax--bg {
        height: 280px;
        background-attachment: scroll;
    }
    .partner--feature .dubble--btn {
        flex-wrap: wrap;
        row-gap: 0;
    }
    .csr--sustainbility--inner .csr--sustainbility--inner--items .csr--sustainbility--item--content {
        padding: 50px 20px;
        margin-left: 0;
        margin-top: 15px;
        clip-path: polygon(10% 0%, 90% 0%, 100% 5%, 100% 95%, 90% 100%, 10% 100%, 0% 100%, 0% 5%);
    }
    .csr--sustainbility:after{
        display: none;
    }

    .csr--sustainbility--inner .csr--sustainbility--inner--items {
        flex-direction: column;
    }

    .csr--sustainbility--inner .csr--sustainbility--inner--items .csr--sustainbility--item--thum {
        height: 250px;
    }

    .what--build--items {
        grid-template-columns: repeat(1, 1fr);
    }

    .driving--impact {
        padding-top: 200px;
        padding-bottom: 100px;
    }

    .diriving-impact-slider .swiper-slide {
        height: 200px;
    }

    .diriving-impact-slider .swiper-slide-content {
        max-width: 83%;
        padding: 10px;
        font-size: 12px;
        margin-top: -50px;
    }

    .diriving-impact-slider--container {
        max-width: 95%;
        padding-bottom: 100px;
    }

    .driving--impact .swiper-button-next, .driving--impact .swiper-button-prev {
        width: 40px;
        height: 40px;
        bottom: 50px;
        top: auto;
        margin: 0;
    }

    .driving--impact .swiper-button-next svg, .driving--impact .swiper-button-prev svg {width: 7px;}

    .driving--impact .swiper-button-prev {
        left: calc(50% - 30px);
        transform: translateX(-50%);
    }

    .driving--impact .swiper-button-next {
        left: calc(50% - -30px);
        transform: translateX(-50%);
    }
    .what--build--items .what--item > .bottom--what--item{
      gap:30px
    }
    .what--build--items .what--item > .bottom--what--item > .what--icon > img {
      width: 50px;
      height: 50px;
    }
}

