.text-with-icon-animation{
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.text-with-icon-animation.gdpr{
    padding-top: 103px;
}

.text-with-icon-animation.gdpr .image{
    width: 67px;
    height: 67px;
}

.text-with-icon-animation.gdpr .image img{
    max-width: 80%;
    max-height: 100%;
    width: 100%;
}

.text-with-icon-animation .items{
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.text-with-icon-animation .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 158px;
    width: calc((100% - 50px * 2) / 3);
}
.text-with-icon-animation .image{
    width: 84.2px;
    height: 84.2px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 1;
}

.text-with-icon-animation .title{
    color: rgb(255, 255, 255);
    font-size: 13px;
    line-height: 64px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: none;
}


.text-with-icon-animation .image img{
    max-width: 48px;
    z-index: 3;
}

.text-with-icon-animation .image.bottom-image{
    align-items: flex-end;
}

.text-with-icon-animation .image.bottom-image img{
    object-position: center bottom;
    max-width: 58px;
    margin-bottom: -1px;
} 

.pulsating-circle{
    position: relative;
}

.pulsating-circle:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 158, 28);
    position: absolute;
    z-index: 2;
    border-radius: 50%;
}

.gdpr .pulsating-circle:before{
    background: #000;
}

.pulsating-circle::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    animation: pulse-ring 1.5s infinite;
    z-index: 1;
    opacity: 1;
}


@keyframes pulse-ring {
    0% {
        opacity: 1;
   }
    80%, 100% {
        transform: scale(1.5);
        opacity: 0;
   }
}

.hero-banner.om-oss{
    height: 516px;
    overflow: hidden;
}

.text-with-icon-animation.om-oss{
    padding-top: 0;
    margin-top: -42px;
}

.hero-banner.om-oss.gradient-background:after{
    display: none;
}


@media(max-width: 991.98px){
    .hero-banner.om-oss{
        height: 460px;
        min-height: 460px;
    }

    .text-with-icon-animation.om-oss{
        margin-top: -37.5px;
    }

    .text-with-icon-animation .item{
        width: calc((100% - 10px * 2) / 3);
        max-width: 139px;
    }
    .text-with-icon-animation .items{
        gap: 10px;
    }

    .text-with-icon-animation .image{
        width: 75px;
        height: 75px;
        max-width: 100%;
    }

    .text-with-icon-animation .image img{
        max-width: 43px;
    }

    .text-with-icon-animation .image.bottom-image img{
        max-width: 55px;
    }

    .text-with-icon-animation.gdpr .image{
        width: 54.6px;
        height: 54.6px;
    }

    .text-with-icon-animation .title{
        line-height: 19px;
        margin-top: 10px;
    }

    .text-with-icon-animation.gdpr{
        padding-bottom: 30px;
        padding-top: 100px;
    }
}

@media(max-width: 320px){
    .text-with-icon-animation .title{
        word-break: break-all;
    }
}