.herobanner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    z-index: 2;
}
.herobanner_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.herobanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.herobanner.no-image {
    justify-content: center;
    text-align: center;
}
.herobanner.no-image .herobanner_content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
}
.herobanner_content {
    flex: 0 0 60%;
    max-width: 60%;
    text-align: left;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}
.herobanner-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}
.herobanner-subtitle {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 1.4;
}
.herobanner-description {
    font-size: 1rem;
    margin-bottom: 20px;
}
.herobanner-icons {
    display: flex;
    gap: 48px;
}
@media (max-width: 480px) {
    .herobanner-icons {
    gap: 16px;
}
}

.herobanner-icon {
    position: relative;
    margin-top: 30px;
}
.herobanner-icons a {
    color: var(--white);
}
.herobanner-icons a .icms-svg-icon {
    color: var(--primary);
    width: 40px;
    height: 40px;
}
.herobanner-icon a:hover:before {
    content: '';
    position: absolute;
    right: -48px;
    top: -48px;
    width: 60px;
    height: 60px;
    background: url(/templates/modern/images/arrow.png) no-repeat center;
    animation: scale-up-tr-normal 0.2s ease 0s 1 normal none;
}

@keyframes scale-up-tr-normal {0% { transform: scale(0.5); transform-origin: 100% 0%; } 100% { transform: scale(1); transform-origin: 100% 0%;} }

.scale-up-tr-normal { 
    animation: scale-up-tr-normal 0.5s ease 0s 1 normal none; 
}