.cyonect-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
    overflow: hidden;
    color: white;
}

.cyonect-hero__top {
    --display: none;
}

.cyonect-hero__bottom {
    --display: flex;
}

.cyonect-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /*noinspection CssUnresolvedCustomProperty*/
    background-color: var(--e-global-color-primary);

    img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }
}

.cyonect-hero__inner {
    background-color: #0B2A3D80;
    position: relative;
    z-index: 5;
    align-self: stretch;
}

.cyonect-hero__content {
    position: relative;
    z-index: 10;
    padding-block: 50px;
    max-width: 812px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cyonect-hero__badge {
    margin-bottom: 27px;
}

.cyonect-hero__text {
    max-width: 600px;
}

.cyonect-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cyonect-hero__buttons,
.cyonect-hero__text {
    margin-top: 27px;
}

.cyonect-hero__highlights {
    background-color: var(--e-global-color-text);
    text-align: center;

    .e-con-inner {
        flex-direction: column;
    }
}

.cyonect-hero__highlights-content {
    max-width: 768px;
    margin-inline: auto;
}

.cyonect-hero__highlights-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.cyonect-hero__highlights-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cyonect-hero__highlights-point-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .cyonect-hero__top {
        --display: flex;
    }

    .cyonect-hero__bottom {
        .elementor-widget-breadcrumbs {
            display: none;
        }
    }

    .cyonect-hero__content {
        justify-content: flex-end;
    }

    .cyonect-hero__highlights-points {
        grid-template-columns: 1fr 1fr;
    }
}