/* * {
    outline: red 1px solid;
} */
* {
    font-family: BebasNeue;
}
input{
    font-family: Arial, Helvetica, sans-serif;
}
.fillh {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #000000;
    /* background: -webkit-linear-gradient(
        0deg,
        #000000 20%,
        #6902aa 50%,
        #000000 80%
    );
    background: linear-gradient(0deg, #000000 20%, #6902aa 50%, #000000 80%); */
}

/* .header {
    background-color: green;
} */
.main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: -webkit-linear-gradient(
        0deg,
        #000000 20%,
        #a6000e 50%,
        #000000 80%
    );
    background: linear-gradient(0deg, #000000 0%, #a6000e 45%, #000000 75%);
}
.inner-main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
/* .footer {
    background-color: yellow;
} */

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    transform: scale(2);
}
.slick-prev {
    translate: 60px 0;
    z-index: 10;
}
.slick-next {
    translate: -60px 0;
}
.slick-dots {
    left: 0;
    right: 0;
    margin:auto;
    max-width: 80%;

}
.slick-dots li button:before {
    color: white;
}
.slick-dots li.slick-active button:before {
    color: #e10718;
}

.blurcss {
    filter: blur(15px);
    -webkit-filter: blur(15px);
    object-fit: cover;
}
.blurcss2 {
    filter: blur(15px) brightness(0.3);
    -webkit-filter: blur(15px) brightness(0.3);
    object-fit: cover;
}

.full-visible-text {
    color: #fff;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

/* Text Scrolling index */
.nc-scrolling_text {
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}
.nc-text {
    animation: animate_text 60s linear infinite;
}
.nc-text span {
    margin: 0 ;
}
@keyframes animate_text {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-100%, 0, 0);
    }
}

/* .mc-asdf */
