/* ---------------------------------------------------------
    Softmaker Office Übersicht Animation und Overlay
--------------------------------------------------------- */
@media (min-width: 992px) {
    .overlay-container {
        position: relative;
        width: 100%;
        height: 100%;
        /*		aspect-ratio: 16 / 9; */
        /* min-height: 300px; */
    }

    .overlay-text {
        padding: 70px 0;
    }

    .overlay-container img.overlay-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-position: right;
        display: block;
    }

    .overlay-block {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.bg-gradi-white {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 100%);
}








.wow-section-blue {
    background-color: #e6d7cd;
    background-image: radial-gradient(circle farthest-corner at 50% 0%, #162d64, #040b1b);
}

.wow-section-dark {
    background-color: #e6d7cd;
    background-image: radial-gradient(circle farthest-corner at 50% 0%, #7b7e8b, #090818);
}


.wow-heading1 {
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.6);
    background-image: linear-gradient(172deg, #a9adc1 32%, #090818 76%);
    /*
      font-size: 3.25em;
		line-height: 1.1em;
		font-weight: 600;
      */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;

}

/*
	
	div.at-container {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
*/
.at-item {
    animation-name: text-shadow-drop-down;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-delay: 1.5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    /* shorthand
		animation: text-shadow-drop-down 2s ease-in-out 2s 1 alternate-reverse both;
	  */
}

@keyframes text-shadow-drop-down {

    0% {
        text-shadow: 0 0 0 transparent;
    }

    50% {
        text-shadow: 0px 10px 15px rgba(0, 0, 0, 1);
    }

    100% {
        text-shadow: 0 0 0 transparent;
    }
}


/*
  .product-title {
    background-image: url('../../../../images/smo/overview/new/nx_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 125px;  Platz für das Bild 
  }
*/

.pulse-nx {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.25, 1.25, 1.25);
        transform: scale3d(1.25, 1.25, 1.25);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.25, 1.25, 1.25);
        transform: scale3d(1.25, 1.25, 1.25);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}













/* block-$ */
.block-reveal {
    --t: calc(var(--td) + var(--d));
    color: transparent;
    /*  padding: 4px;*/
    position: relative;
    overflow: hidden;
    animation: revealBlock 0s var(--t) forwards;
}

.block-reveal::after {
    content: '';
    width: 0%;
    height: 100%;
    padding-bottom: 4px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bc);
    animation: revealingIn var(--td) var(--d) forwards, revealingOut var(--td) var(--t) forwards;
}

h2.block-reveal {
    animation: changeColorToBlue 0s var(--t) forwards;
}

/* animations */
@keyframes revealBlock {
    100% {
        color: inherit;
    }
}

@keyframes revealingIn {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes revealingOut {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Farbanimation für h2 */
@keyframes changeColorToBlue {
    0% {
        color: transparent;
    }

    100% {
        color: #0085cd;
    }
}

/* ---------------------------------------------------------
    Neue Fonts Animation für Elegante Schriften
--------------------------------------------------------- */

/* Einstellung Mobil */
section .zoom {
    width: 100vw;
    height: 100vh;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

/* Einstellung Desktop */
@media only screen and (min-device-width: 960px) {

    section .zoom {
        width: 100vw;
        height: 100vh;
        position: relative;
        margin: 0 auto;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

section .zoom .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom .overlay {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
}
