.header {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.creative-slides.active {
    opacity: 1;
}

.creative-slides {
    position: absolute;
    opacity: 0;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.caption .title {
    line-height: 1.1;
    color: #fff;
    text-shadow: 0px 0px 7px rgb(0 0 0 / 25%);
}

.posText1 {
    text-align: center;
    font-weight: 900;
    font-size: min(8rem, 50px);
    padding: 5px;
}

.posText2 {
    text-align: center;
    font-weight: 600;
    font-size: min(2rem, 6vw);
    color: #F2F3F5;
    padding: 10px;
}

.creative-slider:hover .slick-prev {
    opacity: .91;
    left: 3%
}

.creative-slider:hover .slick-next {
    opacity: .91;
    right: 3%;
}

.creative-slider .slick-prev:hover,
.creative-slider .slick-next:hover {
    background: rgba(255, 255, 255, .1);
    color: #727373;
}

.creative-slider .slick-prev,
.creative-slider .slick-next {
    background: rgba(255, 255, 255, .05);
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 50;
    top: 50%;
    opacity: 0;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-radius: 50%;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.creative-slider a {
    text-decoration: none;
}

.creative-slider .slick-dots {
    list-style: disc;
    line-height: 1;
    width: 100%;
    margin: 0 !important;
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 60;
    text-align: left;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slick-dots li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    transition: all .5s ease;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;

}

.slick-dots li.active {
    background-color: #f07230;
    width: 8px;
    height: 8px;
}

.animate {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.creative-slides.active .ef-fadeInDown {
    -webkit-animation-name: animate-fadeInDown;
    animation-name: animate-fadeInDown;
}

.creative-slides.active .ef-fadeInLeft {
    -webkit-animation-name: animate-fadeInLeft;
    animation-name: animate-fadeInLeft;
}

@keyframes animate-fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -60%, 0);
        transform: translate3d(0, -60%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes animate-fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.creative-slider .slick-next {
    right: -38px;
}

.creative-slider .slick-prev {
    left: -38px;
}

@media (max-width: 768px) {

    .creative-slider .slick-prev,
    .creative-slider .slick-next {
        margin-top: -47px;
    }

    .creative-slider .slick-dots {
        right: 0;
        width: auto;
        margin: 0;
        padding: 15px 0 16px;
    }

    .caption .title {
        font-size: 3.2rem;
    }
}

@media only screen and (max-width: 991px) {
    .creative-slider .slick-dots {
        left: 0;
        bottom: 20px;
        max-width: none;
        padding: 0 15px;
        text-align: center;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .creative-slider .slick-next {
        right: 3%;
    }

    .creative-slider .slick-prev {
        left: 3%;
    }
}

@media only screen and (max-width: 575px) {
    .creative-slides {
        padding-right: 15px;
        padding-left: 15px;
    }

    .creative-slider .slick-dots {
        padding: 12px 0 14px;
    }

}