.home-slider {
    height: 100vh;
    overflow: hidden;
}
.home-slide{
    background-position: center center !important;
    background-size: cover !important;
}
#mainSlider .slide-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#mainSlider .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 60px;
    flex-wrap: wrap;
    display: flex;
    align-content: center;
    justify-content: center;
}
#mainSlider .swiper-slide .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    padding-bottom: 10px;
    transform: translateX(-100%);
    opacity: 0;
    color: #ffffff;
}
#mainSlider .swiper-slide .title a{
    color: #ffffff;
}
#mainSlider .swiper-slide-active .title{
    animation: moveToBase 1s 0.3s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
#mainSlider .swiper-slide .text {
    font-weight: 100;
    font-size: 1.2rem;
    line-height: 1.3;
    transform: translateX(100%);
    opacity: 0;
    color: #ffffff;
}
#mainSlider .swiper-slide-active .text{
    animation: moveToBase 1s 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
#mainSlider .slide-text-container{
    padding: 20px;
    background-color: #1616169c;
    color: #fff;
    max-width: 800px;
    overflow: hidden;
    transform: scaleY(0);
    min-width: 30vw;
    border-left: 10px solid #ffffffd9;
}
#mainSlider .swiper-slide-active .slide-text-container{
    animation: scaleUpY 1s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
.text-block-outline{
    z-index: 999;
}
.text-block-outline::after{
    content: "";
    display: block;
    transform: scaleX(0);
    height: 3px;
    width: 100%;
    background-color: #ffffffc9;
    margin-top: 10px;
}
.text-block-outline::before{
    content: "";
    display: block;
    transform: scaleX(0);
    height: 3px;
    width: 100%;
    background-color: #ffffffc9;
    margin-bottom: 10px;
}
#mainSlider .swiper-slide-active .text-block-outline::after{
    animation: scaleUpX 0.3s 0.3s forwards linear;
}
#mainSlider .swiper-slide-active .text-block-outline::before{
    animation: scaleUpX 0.3s 0.3s forwards linear;
}
.swiper-button-next, .swiper-button-prev{
    color: #fff;
    transition: 0.3s linear;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    transform: scale(1.1);
}
.swiper-pagination-bullet{
    border: 2px #fff;
    transition: 0.3s linear;
}
.swiper-pagination-bullet:hover, .swiper-pagination-bullet-active{
    background-color: #fff;
}
.swiper-pagination-bullet-active{
    width: 24px;
    border-radius: 4px;
}
/* scroll down icon */
.scroll-downs {
    position: absolute;
    top: 75%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width :34px;
    height: 55px;
    z-index: 999;
  }
.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
    background-color: #1e1e1e54;
  }
.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}

/* Responsivness */
@media screen and (max-width: 800px) {
    .swiper-slide .title {
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 2rem;
    }

    #mainSlider .swiper-slide{
        padding: 40px 10px;
    }
    .swiper-button-next, .swiper-button-prev{
        display: none;
    }
}

/* Animations */
@keyframes scaleUpY {
    to {
        transform:scaleY(1);
    }
}
@keyframes moveToBase {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
  }

@keyframes scaleUpX {
    from{
        transform:scaleX(0);
    }
    to {
        transform:scaleX(1);
    }
}