.iwBigTeaser {
    .iwBigTeaser__container {
        position: relative;
    }

    .row {
        overflow: hidden;
    }

    .iwBigTeaser__watermark {
        color: #014987;
        opacity: 0.08;
        font-size: 7rem;
        line-height: calc(7rem / 1.3);
        position: absolute;
        top: 0;
        left: -4rem;
        white-space: nowrap;
    }


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

    }

    .iwBigTeaser__headline {

    }

    .iwBigTeaser__text {
        padding-top: 0.65rem;
    }

    .iwBigTeaser__image {
	    display: inline-block;
	    position: relative;

        &:after, &:before {
            position: absolute;
            bottom: -1rem;
            height: 3rem;
            left: 50%;
            width: 90%;
            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: 90%;
            border-radius: 50%;
        }
	    
	    /*a {*/
		/*    position: relative;*/
		/*    display: inline-block;*/
	    /*}*/

        img {
            object-fit: cover;
            width: 280px;
	        min-width: 280px;
            height: auto;
            transition: .2s ease-out;
            aspect-ratio: 11/12;
            object-position: top;
        }

        &:hover, &:focus-within {
            img {
                /*aspect-ratio: 1 / 1;*/
            }

            .iwBigTeaser__new {
                font-size: 180%;

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

    .iwBigTeaser__new {
        background-color: rgba(1, 73, 135, 0.75);
        color: white;
        padding: 2rem;
        position: absolute;
        top: 5rem;
        right: 0;
        transform-origin: center;
	    transform: translateX(45%) 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;

	        display: none;
	        
	        @media(min-width: 768px) {
		        display: block;
	        }
        }
    }

    .iwBigTeaser__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;
        }
    }

    @media (min-width: 768px) {
        .iwBigTeaser__actions {
            flex-direction: row;
            gap: 1.25rem;
            .iwButton {
                justify-content: flex-start;
            }
        }
        .iwBigTeaser__image {
            img {
	            width: 100%;
                aspect-ratio: 10/12;
            }
        }

        .iwBigTeaser__content {
            gap: .75rem;
        }

        .iwBigTeaser__watermark {
            font-size: 10rem;
            line-height: calc(10rem / 1.3);
            left: -8rem;
        }
    }
    @media (min-width: 992px) {
        .iwBigTeaser__image {
            img {
                aspect-ratio: 10/11;
            }
        }
        .iwBigTeaser__content {
            gap: 1rem;
        }
        .iwBigTeaser__watermark {
            font-size: 12rem;
            line-height: calc(12rem / 1.3);
            left: -10rem;
        }
    }

    @media (min-width: 1200px) {
        .iwBigTeaser__image {
            img {
                aspect-ratio: 1/1;
            }
        }
        .iwBigTeaser__content {
            gap: 1.25rem;
        }
        .iwBigTeaser__watermark {
            font-size: 14rem;
            line-height: calc(14rem / 1.3);
            left: -12rem;
        }
    }

}

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


