:root {
    --cover-timing: 0.5s;
    --cover-ease: cubic-bezier(0.66, 0.08, 0.19, 0.97);
    --cover-stagger: 0.15s;
    --text-timing: 0.75s;
    --text-stagger: 0.015s;
    --text-ease: cubic-bezier(0.38, 0.26, 0.05, 1.07);
    --title-stagger: 0.05s;
    --highlight: white;
}

.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}
.white-heading {
    color: #ffffff;
}
.heading:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}
.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #ffffff;
}
/*-----Testimonial-------*/

/* ------testimonial  close-------*/

/* banner */
.video-container {
    height: 400px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
    z-index: 1;
    position: relative;
    text-align: center;
}
/* Banner Close */

/*..................Image Slider................*/
.bg-black {
    display: none !important;
}
.slider {
    width: 100%;
    overflow: hidden;
    height: 600px;
    position: relative;
}

.slider ul:first-child {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    width: 300%;
    height: 100%;
    top: 0;
}

.slider li {
    padding: 0;
    margin: 0;
    width: 33.333333%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
}

.slider li .img {
    border: none;
    width: 100%;
    min-height: 100%;
}

.slider button {
    position: absolute;
    display: block;
    box-sizing: border-box;
    border: none;
    outline: none;
    top: 0;
    bottom: 0;
    width: 20%;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    opacity: 0;
    z-index: 1;
}

.slider button.prev {
    left: 0;
}

.slider button.next {
    right: 0;
}

.slider button:hover,
.slider button:active {
    cursor: pointer;
    opacity: 1;
}

.slider .content {
    z-index: 2;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    height: 3em;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.1);
    color: #fff;
    text-align: center;
    line-height: 3em;
    font-size: 1.5em;
}

.slider .content a {
    color: inherit;
}

.nav-dots {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 50px;
    width: 250px;
    z-index: 1;
    text-align: center;
}

.nav-dots li {
    position: relative;
    /*    top: 40%;*/
    height: 5px;
    width: 10%;
    background: rgba(245, 245, 245, 0.5);
    border-radius: 3px;
    display: inline-block;
    margin: 5px;
}
.nav-dots .active,
.nav-dots li:hover {
    cursor: pointer;
    background: rgba(245, 245, 245, 1);
}

.wrap {
    width: 100%;
    height: auto;
    padding: 0 6%;
    background: rgb(246, 246, 246);
    background-size: cover;
}

/*==========             
Scrollbar
==========*/

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgb(219, 219, 219);
}

/*..................End Image Slider................*/
