.slide a {
    color: inherit;
    border: 2px solid;
    padding: 10px;
    font-size: 1.1vw;
    margin-top: 20px;
    display: inline-block;
    transition: all .3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: white;
}

 .slider h2 {
     font-weight: 300;
     font-size: 26px;
     padding: 20px 0;
     color: white;
     font-weight: 600;
 }

.slider p {
    font-size: 20px;
    /* line-height: 1.7em; */
    color: white;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: all .3s;
    perspective: 900px;
    transform-style: preserve-3d;
}

.slider .previous, .slider .next {
    font-family: "FontAwesome";
    font-size: 20px;
    position: absolute;
    top: 50%;
    color: white;
    padding: 20px;
    text-decoration: none;
    left: -100px;
    margin-top: -34px;
    transition: all .3s;
    opacity: 0;
    z-index: 10000;
}

.slider .next {
    right: -100px;
    content: "\f054";
    left: auto;
}

.slider:hover .previous, .slider:hover .next {
    opacity: 1;
}

.slider:hover .previous {
    left: 0;
}

.slider:hover .next {
    right: 0;
}

.slider .slides {
    height: 100%;
}

.slide {
    width: 100vw;
    text-align: center;
    position: absolute;
    transform: scale(0.5, 0.5);
    opacity: 0;
    transition: all .3s;
    background-size: cover;
    background-repeat: no-repeat;
    height: 370px;
}

.slide.blue {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../images/slider/gemstone.jpeg");
    background-position: center;
}

.slide.white {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../images/slider/Bone%20Carvings.jpeg");
    background-position: center;

}

.slide.red {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../images/slider/Paintings.jpeg");
    background-position: center;
    background-size: contain;
}

.slide.green {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../images/slider/Jade.jpeg");
    background-position: center;
}

.slide.yellow {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../images/slider/Antique%20Jewellery.jpeg");
    background-position: center;
}

/* .slide.orange {
     background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("images/slider/slide6.jpg");

 }

 .slide.black {
     background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("images/yopo.jpg");

 }*/

.slide.active {
    z-index: 10;
    left: 0;
    opacity: 1;
    transform: scale(1, 1);
}

.slide.inactiveLeft {
    left: -100vw;
    z-index: 11;
}

.slide.inactiveRight {
    left: 100vw;
    z-index: 11;
}


.slide a:hover {
    background: rgb(255, 255, 255);
    border: 2px solid transparent;
    text-decoration: none;
    letter-spacing: 2px;
    padding-right: 30px;
    color: black;
}

.slide a:after {
    content: " \f105";
    font-family: "FontAwesome";
    position: absolute;
    margin-left: -10px;
    transition: all .3s;
    opacity: 0;
}

.slide a:hover:after {
    margin-left: 10px;
    opacity: 1;
}

.slider .bullets {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.slider .bullets .bullet {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    z-index: 14;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s;
}

.slider .bullets .bullet.active {
    background: rgba(255, 255, 255, .4);
}

.slider .bullets .bullet:hover {
    border: 2px solid rgba(255, 255, 255, .8);
    background: transparent;
}

.slider-sec {
    margin-top: 65px;
}