.slider-section {
    flex: 1;
    width: 100%;
    height: 80%;
    overflow: hidden;
    position: relative;
}

.slider {
    width: 100%;
    height: 100vh;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* height: 80vh;
    width: 100vh; */
}

.slide {
    min-width: 100%;
}

/* .slideImage {
    width: 100%;
    height: 100%;
} */

.pattern {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
}

.home-text-header{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    /* z-index: 99; */
}

.text-vertical-center {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0;
    width: 100%;
    margin: 0;
    height: 100%;
    font-size: 19px;
}

.text-vertical-center h2 {
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: auto;
}

.text-vertical-center p {
    font-family: 'Brown Light', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin: 2px;
    text-align: center;
}

.text-vertical-center .scroll-down a.arrow {
    background: url(../../images/backroud-standard-images/arrow.svg) no-repeat;
    background-size: contain;
    opacity: .5;
    width: 64px;
    height: 31px;
    display: block;
    margin: 0;
    position: relative;
    -ms-animation: animatedarrow 1.2s infinite linear;
    -moz-animation: animatedarrow 1.2s infinite linear;
    -o-animation: animatedarrow 1.2s infinite linear;
    -webkit-animation: animatedarrow 1.2s infinite linear;
    animation: animatedarrow 1.2s infinite linear;
}

.scroll-down {
    position: absolute;
    bottom: 5%;
}

.text-vertical-center .scroll-down a.arrow:hover {
    background: url(../../images/backroud-standard-images/arrow_red.svg) no-repeat;
    opacity: 1;
}

.gravimind-email{
    color: white;
}

#scroll-down-text{
    color: white;
    position: absolute;
    bottom: 20%;
    font-size: 13px;
}

@keyframes animatedarrow {
    0% {
        top: -40px;
    }
    50% {
        top: -50px;
    }

    100% {
        top: -40px;
    }
}

@media screen and (max-width: 600px) {
    .text-vertical-center h2 {
        font-family: 'Brown Light', sans-serif;
        margin: 0;
        padding: 0;
        font-size: 45px;
        font-weight: 700;
        color: #fff;
        line-height: 50px;
        text-align: center;
    }
   
}