.scs-image-header {
    border-right: none;
    border-left: none;
    position: relative;
}

.scs-image-header .scs-image-container,
.scs-image-header .scs-image-overlay,
.scs-image-header .scs-image-overlay2 {
    position: absolute;
    bottom: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    margin: 0px;
    overflow: hidden;
}

.scs-image-header .scs-image-container {
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
}

.scs-image-header .scs-image-overlay,
.scs-image-header .scs-image-overlay2 {
    /* background-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 1) 100%); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.scs-image-header .arrow-down-wrapper {
    position: absolute;
    bottom: 12px;
    left: calc(50vw - 14px);
}

.scs-image-header .arrow-down-wrapper p {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.scs-image-header .arrow-down-wrapper p a i {
    text-shadow: -1px 1px 0px #5d5d5d;
}

.scs-animate-delay {
    animation-delay: 2s;
}

.scs-animate-fading2 {
    animation: fading 2s;
}

.scs-animate-fading5 {
    animation: fading 5s;
}

.scs-animate-grow {
    animation: grow 6s linear normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes grow {
    to {
        transform: scale(1.05);
    }
}