/*-------------------------------------------------*/
/*----------Image Slider Blueprint-----------------*/
/*-------------------------------------------------*/
/*parent container*/
.NovaSlider {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
}
/*Image Slide*/
.NovaSliderCanvas{
    position: relative;
    width: 100%;
    height: calc(100vh - 210px);
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
}
.NovaSliderCanvas li{
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin: 0 0 0 0;
    transition: opacity 2s linear, transform 9s ease-in-out;
    box-shadow: 35px 15px 35px 15px black inset;
	display: list-item;
}
/*Info Slide*/
.NovaSliderInfo{
    position: absolute;
    height: calc(100% - 140px);
    width: 100%;
    left: 0;
    top: 0;
    background-image: url("../Images/SliderBlackOverlay.png");
    background-position: left center;
    background-repeat: no-repeat;
    list-style: none;
    margin: 0;
    padding: 0px;
    color: #ffffff;
    overflow: hidden;
}
.NovaSliderInfo li{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    margin: 70px;
    width: calc(100% - 140px);
    height: calc(100% - 140px);
    transition: opacity 2s linear;
    pointer-events: none;
}
.NovaSliderInfo li p:nth-of-type(1){
    position: relative;
    font-size: 72px;
    line-height: 72px;
    font-weight: 700;
    margin: 0 0 35px 0;
    max-width: 35%;
}
.NovaSliderInfo li p:nth-of-type(2){
    position: relative;
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    margin: 0 0 26px 0;
    max-width: 33%;
}
.NovaSliderInfo li p:nth-of-type(3){
    position: relative;
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 50px 0;
    font-weight: 300;
    max-width: 31%;
}
.NovaSliderInfo li a:nth-of-type(1){
    position: relative;
    font-size: 16px;
    line-height: 29px;
    font-weight: 700;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
    border-width: 2px;
    border-radius: 5px;
    padding: 0 10px;
    text-decoration: none;
    color: white;
    height: 29px;
    display: inline-block;
    vertical-align: middle;
}
@media screen and (orientation: landscape) and (max-height: 600px)
{
    .NovaSliderInfo li a:nth-of-type(1) {
        display: none;
    }
}
.NovaSliderInfo li a:nth-of-type(1):hover{
    border-color: #ffffff;
}
.NovaSliderInfo li a:nth-of-type(2){
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: auto;
    height: 100%;
}
.NovaSliderInfo li a > img{
    position: relative;
    height: 100%;
    width: auto;
    right: -160px;
    bottom: 0px;
    border-style: solid;
    border-width: 2px;
    border-color: #000000;
    transition: right 2s ease-in-out;
}
@media screen and (max-width: 900px) {
    .NovaSliderInfo li img {
        display: none;
    }
}
@media screen and (orientation: portrait){
    .NovaSliderInfo li img {
        display: none;
    }
    .NovaSliderInfo li p:nth-of-type(1){
        max-width: 70%;
    }
    .NovaSliderInfo li p:nth-of-type(2){
        max-width: 65%;
    }
    .NovaSliderInfo li p:nth-of-type(3){
        max-width: 60%;
    }
}
@media screen and (orientation: landscape) and (max-height: 700px){
    .NovaSliderInfo li p:nth-of-type(1){
        font-size: 36px;
        line-height: 36px;
        max-width: 60%;
    }
    .NovaSliderInfo li p:nth-of-type(2){
        font-size: 28px;
        line-height: 28px;
        max-width: 55%;
    }
    .NovaSliderInfo li p:nth-of-type(3){
        font-size: 20px;
        line-height: 20px;
        max-width: 50%;
    }
}
/*Slider Controls*/
.NovaSliderControls{
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0 !;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #ffffff;
    vertical-align: middle;
    font-size: 0;
}
.NovaSliderControls input{
    position: absolute;
    left: -9999px;
}
.NovaSliderControls label{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
    border-radius: 30px;
    background-color: #000000;
    opacity: 0.3;
    margin: 25px 10px;
}
.NovaSliderControls label:hover{
    opacity: 1;
}
.NovaSliderControls input:checked + label{
    opacity: 1;
}
.NovaSliderControls img{
    position: relative;
    display: inline-block;
    opacity: 0.3;
    margin: 17.5px 20px; /*-0.75em 20px;*/
}
.NovaSliderControls img:hover{
    opacity: 1;
}
/*SelectedStyles*/
.NovaSliderSelected{
    opacity: 1 !important;
    pointer-events: all !important;
}
.NovaSliderSelected a img{
    right: 0 !important;
}
.NovaSliderSelectedImage{
    transform: scale(1.15);
}
/*Slider ScrollBar Down*/
.NovaSliderScrollBar{
    position: relative;
    opacity: 0.3;
    height: 70px;
    width: 100%;
    margin: 0;
    padding: 0;
    background-image: url("../Images/ArrowDownSlim.png");
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.NovaSliderScrollBar:hover{
    opacity: 1;
}
.NovaSliderScrollBarSelected{
    background-image: url("../Images/ArrowUpSlim.png");
}