/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 22, 2019, 12:23:20 PM
    Author     : gasper
*/



/* slider
----------------------*/
.slide-wrap {
    margin-top: 30vh;
    width: 100%;
}
.slide-mask {
    position: relative;
    overflow: hidden;
    height: 50vh;
}
.slide-group {
    position: absolute; 
    top: 0px; 
    left: 0;
    width: 100%;
    list-style: none;
}
.slide {
   height: 50vh;
}
/* nav
----------------------*/
.slide-nav {
    position: absolute;
    top: 35vh;
}
.slide-nav ul {
    margin: 0;
    padding: 0;
}
.slide-nav li {
    display: block;
    width: 14px;
    height: 14px;
    cursor: pointer;
    margin-bottom: .5em;
    border: solid 1px #979797;
    border-radius: 50%;
}
.slide-nav li.current {
    background-color: #ffffff;
}
