   body {
            font-family: "Rubik", sans-serif;
         
            color: #333;
            line-height: 1.6;
        }

 #mainNav{
      font-family: "Poppins", sans-serif;
    }
   


.hero-slider {
    height: 70dvh;
    overflow: hidden;
    max-width: 100vw;
    width: auto !important;
}
.hero-slider .carousel-cell {
    width: 100%;
    height:600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-slider .carousel-cell .slide-content {
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1170px;
    margin: 0 auto;
    z-index: 1;
}

.hero-slider .carousel-cell .slide-content p {
    line-height: normal;
}

.hero-slider .carousel-cell .slide-content .title {
    position: relative;
    text-transform: uppercase;
    color: #ffffff;
}
.hero-slider .carousel-cell .slide-content .caption {
    text-transform: uppercase;
    color: #ffffff;
}

.flickity-prev-next-button{
	width: 36px;
	height: 36px;
}

/* --------------------------------
Masking
-------------------------------- */
.slide-content .title,
.slide-content .caption,
.slide-content .btn {
    position: relative;
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-content.mask .mask {
    position: relative;
    overflow: hidden;
    padding: 50px;
}
.slide-content.mask .title {
    /*
    animation-duration: 2s;
    animation-delay: 0.2s;
    animation-name: slide-up;
    animation-fill-mode: backwards;
    animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
    /**/

    animation: slide-up 2s cubic-bezier(0.85, 0, 0.15, 1) 0.2s backwards;
    opacity: 1;
}
.slide-content.mask .caption{
    animation-duration: 2s;
    animation-delay: 0.2s;
    animation-name: slide-down;
    animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes poof {
    0% {
        opacity: 0;
        background-position: 100% 150%;
        transform: rotateZ(0) scale(1);
    }
    50% {
        opacity: 0.5;
        background-position: 100% 100%;
        transform: rotateZ(-10deg) scale(1.5);
    }
    100% {
        opacity: 0;
        background-position: 100% 50%;
        transform: rotateZ(-20deg) scale(2);
    }
}

/* Slides */
.caption b{
	color: #18d1ff;
}
.caption span{
	color: #fff;
}
.hero-slider .carousel-cell:nth-child(1) .slide-content,
.hero-slider .carousel-cell:nth-child(2) .slide-content {
    text-align: left;
}



.hero-slider .carousel-cell:nth-child(1) .slide-content .caption,
.hero-slider .carousel-cell:nth-child(2) .slide-content .caption {
    color: black;
    text-transform: none;
    font-weight: 500;
    margin: 16px 0;
    padding: 0;
}

