.iwBigstage {
    min-height: 25vh;
    display: flex;
    align-items: end;

    .iwBigstage__container {
        position: relative;
    }

    .row {
        overflow: hidden;
        height: 100%;

        .iwBigstage__bigcol {
        }
    }


    .iwBigstage__watermark {
        color: #014987;
        font-size: 7rem;
        line-height: calc(7rem / 1);
        position: absolute;
        top: 0;
        left: 0;
        white-space: nowrap;

        transform: translateX(10%) scale(0.9);
        opacity: 0;
        transition: transform 1.2s ease-out, opacity 1.2s ease-out;
    }
    .iwBigstage__watermark.animate {
        transform: translateX(0) scale(1);
        opacity: 0.08;
    }

    .iwBigstage__title {
        font-size: 7rem;
        letter-spacing: -2px;
        line-height: calc(5rem * 1.5);
        margin: 2rem 0 -1rem 0;
        padding-left: 2rem;

        transform: translateX(-10%) scale(0.9);
        opacity: 0;
        transition: transform 0.82s ease-out, opacity 0.42s ease-out;
    }
    .iwBigstage__title.animate {
        transform: translateX(0);
        opacity: 1;
    }

    .iwBigstage__content {
        display: flex;
        flex-flow: column nowrap;
        gap: .5rem;
        justify-content: center;
        height: 100%;
        padding-top: 2rem;
        padding-bottom: 2rem;

    }

    .iwBigstage__headline {

    }

    .iwBigstage__text {
        padding-top: 0.65rem;
    }

    .iwBigstage__image {
        width: 100%;
        height: auto;
        position: relative;

        &:after, &:before {
            position: absolute;
            bottom: -1rem;
            height: 3rem;
            left: 50%;
            width: 80%;
            box-shadow: 0px 0 81px #024987;
            content: '';
            z-index: -1;
            background: transparent;
            transform: translateX(-50%);
        }

        &:before {
            z-index: 4;
            bottom: -3rem;
            box-shadow: 0px 0 40px rgba(0, 0, 0, 0.76);
            width: 50%;
            border-radius: 50%;
        }

        img {
            object-fit: cover;
            width: 100%;
            height: auto;
            transition: .2s ease-out;
            aspect-ratio: 4 / 5;
            object-position: top;
        }

        &:hover, &:focus {
            img {
            }

            .iwBigstage__new {
                font-size: 180%;

                &:before {
                    opacity: 1;
                    animation: rotateCircle 6s infinite linear;
                }
            }
        }
    }

    .iwBigstage__new {
        background-color: rgba(1, 73, 135, 0.75);
        color: white;
        padding: 2rem;
        position: absolute;
        top: 5rem;
        right: 0;
        transform-origin: center;
        transform: translateX(50%) rotate3d(0, 0, 1, 15deg);
        backdrop-filter: blur(5px) brightness(0.5);
        border-radius: 50%;
        width: 105px;
        height: 105px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        transition: font-size 0.2s ease;

        &:before {
            content: url(./NEU_converted.svg);
            position: absolute;
            width: 139px;
            height: 139px;
            top: -1rem;
            left: -1rem;
            transform: scale(0);
            opacity: 0;
            transition: opacity 0.2s ease;
        }
    }

    .iwBigstage__actions {
        display: flex;
        flex-direction: column;
        gap: .5rem
    }

    .iwButton {
        justify-content: center;
    }

    .iwButton--secondary {
        &::after {
            content: '';
            background-image: url(./Right-blue.svg);
            background-size: 24px;
            width: 24px;
            height: 24px;
        }
    }

    .iwButton--primary {
        &::after {
            content: '';
            background-image: url(./Right.svg);
            background-size: 24px;
            width: 24px;
            height: 24px;
        }
    }

    .iwButton--download {
        flex-direction: row-reverse;

        &::after {
            background-image: url(./download.svg);
        }
    }

    &.iwBigstage--withoutImage {
        .iwBigstage__texts {
            color: rgb(1, 73, 135);
            font-size: 1.25em;
        }
    }

    @media (min-width: 768px) {
        min-height: 40vh;
        .iwBigstage__actions {
            flex-flow: row wrap;
            gap: 1.25rem;

            .iwButton {
                justify-content: flex-start;
            }
        }

        .iwBigstage__image {
            img {
                /*aspect-ratio: 10/12;*/
            }

            &:after, &:before {
                width: 90%;
            }
        }

        .iwBigstage__content {
            gap: .75rem;
            padding-top: 2.9rem;
            padding-bottom: 3rem;
        }

        .iwBigstage__watermark {
            font-size: 10rem;
            line-height: calc(10rem / 1);
        }

        .iwBigstage__title {
            font-size: 10rem;
            line-height: calc(5rem * 1.5);
            margin: 2.5rem 0 -1.5rem 0;
            padding-left: 0;
        }

    }
    @media (min-width: 992px) {
        min-height: 35vh;
        .iwBigstage__image {
            img {
                /*aspect-ratio: 10/11;*/
            }
        }

        .iwBigstage__content {
            gap: 1rem;
            padding-top: 5rem;
            padding-bottom: 4rem;
        }

        .iwBigstage__watermark {
            font-size: 12rem;
            line-height: calc(12rem / 1);
        }

        .iwBigstage__title {
            font-size: 12rem;
            line-height: calc(6rem * 1.5);
            margin: 3.5rem 0 -2rem 0;
        }

        &.iwBigstage--withoutImage {
            .iwBigstage__actions {
                flex: 1;
                flex-direction: column;
                gap: 0;
                padding-left: 2rem;
            }

            .iwButton {
                flex-direction: row-reverse;
                background: transparent;
                border: none;
                justify-content: flex-end;

                a, span {
                    color: rgb(1, 73, 135);
                    font-weight: 600;
                }

                &::after {
                    background-image: url("./Right-blue.svg");
                }

            }

            .iwBigstage__texts {
                flex: 3;
            }

            .iwBigstage__content {
                flex-flow: row nowrap;
                align-items: flex-start;
            }

            .iwBigstage__text {
                padding-top: 0;
            }
        }
    }

    @media (min-width: 1200px) {
        min-height: 40vh;
        .iwBigstage__image {
            img {
                aspect-ratio: 4/5;
            }
        }

        .iwBigstage__content {
            gap: 1.25rem;
            padding-bottom: 5rem;
        }

        .iwBigstage__watermark {
            font-size: 14rem;
            line-height: calc(14rem / 1);
        }

        .iwBigstage__title {
            font-size: 14rem;
            line-height: calc(7rem * 1.5);
            margin: 4rem 0 -3rem 0;
        }

    }

    .iwBigstage--withoutImage {
        .iwBigstage__actions {

        }

        .iwBigstage__content {

        }
    }
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg) scale(1.1);
    }
    to {
        transform: rotate(360deg) scale(1.1);
    }
}


