
section.acf-sustainability-banner .text-item {
    font-size: var(--f30);
    z-index: 10;
}
/* Text and Icon Position */
section.acf-sustainability-banner .text-item img {margin: 0 5px 0 15px;width: 36px;height: auto;}
body.rtl section.acf-sustainability-banner .text-item img {margin: 0 15px 0 5px;}
section.acf-sustainability-banner .text-top {top: 20%;left: 61%;transform: translateX(-50%);}
section.acf-sustainability-banner .text-right {right: 5%;top: 63%;transform: translateY(-50%);}
body.rtl section.acf-sustainability-banner .text-right {right: 7%;top: 62%;}
section.acf-sustainability-banner .text-bottom {bottom: 18%;left: 6%;transform: translateX(-50%);}
body.rtl section.acf-sustainability-banner .text-bottom {bottom: 19%;left: 18%;}
section.acf-sustainability-banner .text-left {left: 4%;top: 30%;transform: translateY(-50%);}
/* Middle Image */
section.acf-sustainability-banner .middle-image-section {margin: auto;width: 700px;}

@media (max-width: 992px) {
    section.acf-sustainability-banner .middle-image-section {width: auto;}
    section.acf-sustainability-banner .text-item {font-size: var(--f16);}
    section.acf-sustainability-banner .text-item img {width: 16px;}
}
/* fade in effect */
section.acf-sustainability-banner .middle-image-fade-in {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInMiddleImage 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInMiddleImage {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

section.acf-sustainability-banner .text-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInText 1s ease-in-out forwards;
}

section.acf-sustainability-banner .text-item:nth-child(1) { animation-delay: 1s; }
section.acf-sustainability-banner .text-item:nth-child(2) { animation-delay: 1.5s; }
section.acf-sustainability-banner .text-item:nth-child(3) { animation-delay: 2s; }
section.acf-sustainability-banner .text-item:nth-child(4) { animation-delay: 2.5s; }

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Backgorund  Image Animation Effect */
@keyframes drawPath {
    0% { stroke-dasharray: 0, 1000; stroke-dashoffset: 1000; }
    100% { stroke-dasharray: 1000, 1000; stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes waveMovement {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(0px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(-5px); }
    100% { transform: translateX(0px) translateY(0px); }
}

section.acf-sustainability-banner {
    position: relative;
    overflow: hidden;  
}

section.acf-sustainability-banner .background-svg {
    opacity: 0;
    width: 100%;
    height: auto;
    transform-origin: center;
    animation: fadeIn 0.5s ease-in forwards, waveMovement 3s infinite ease-in-out;
    animation-delay: 0.5s;
}
section.acf-sustainability-banner .background-svg path {
    stroke: var(--feather-white);
    stroke-width: 2;
    fill: var(--feather-white); 
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

section.acf-sustainability-banner .background-svg path:nth-of-type(1) {
    animation: drawPath 0.7s ease-out forwards;
}

section.acf-sustainability-banner .background-svg path:nth-of-type(2) {
    animation: drawPath 0.7s ease-out forwards;
    animation-delay: 0.7s;
}

section.acf-sustainability-banner .background-svg path:nth-of-type(3) {
    animation: drawPath 0.7s ease-out forwards;
    animation-delay: 1.4s;
}


@media (max-width: 992px) {
    section.acf-sustainability-banner .background-svg {
    bottom: 83px;
}
}