/* SLIDER STYLES */



.slider-wrapper{
    background: #323A45s;
    background-size:100%;
    border-bottom: 2px solid #323A45;
	border-top: 1px solid #323A45;
    width:100%;
    max-height: 550px;
    position:relative;
    top: 0;
    z-index:0;
    overflow:hidden;
    margin-bottom: 0;
    clear:both;
}


@media only screen and (max-width: 767px) {
    .slider-wrapper{
        top: 0px;
        margin-bottom: 0px;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1280px){
    .slider-wrapper
    {
        max-height:550px;
    }
}
@media only screen and (min-width: 900px) and (max-width: 1024px){

    .slider-wrapper
    {
        max-height:400px;
    }
}
@media only screen and (min-width: 751px) and (max-width: 900px){

    .slider-wrapper
    {
        max-height:350px;
    }
}
@media only screen and (min-width: 641px) and (max-width: 750px){

    .slider-wrapper
    {
        max-height:350px;
    }
}
@media only screen and (min-width: 480px) and (max-width: 640px){

    .slider-wrapper
    {
        max-height:250px;
    }
}
@media only screen and (max-width: 479px){

    .slider-wrapper
    {
        max-height:250px;
    }
}

/* ELEMENT STYLES */

.slider p{
    white-space: nowrap;
}

.slider .slide-heading{
    background:#fff;
    color: #403F3F;
    font-size: 32px;
	font-family: 'montserratregular';
    padding: 1% 1.5%;
    border-radius: 3px;
    box-sizing:content-box;
}

.slider .sub-line{
    background:rgba(8,12,48,0.6);
    color: #fff;
    font-size:30px;
    font-weight: normal;
    text-align:left;
    font-weight: 700;
    padding: 1%;
    border-radius: 3px;
    box-sizing:content-box;
	max-width:50%;
}

.slider .small-line{
    background:#8CBE45;
    color: #fff;
    font-size:24px;
	line-height:140% !important;
    font-weight: normal;
    text-align:left;
    padding: 1%;
    border-radius: 3px;
    box-sizing:content-box;
	max-width:50%;
	font-family: 'montserratregular';
}

.slider-read{
    background:#8CBE45;
    font-size:16px;
	line-height:18px;
	font-family: 'montserratregular';
    border-radius:2px;
    text-decoration: none;
    color: #fafafa;
    padding:.8%;
    display:block;
    box-sizing:content-box;
    text-transform: uppercase;
    transition: background-color 400ms linear;
    -webkit-transition: background-color 400ms linear;
    -ms-transition: background-color 400ms linear;
    -moz-transition: background-color 400ms linear;
    -o-transition: background-color 400ms linear;
}
.slider-read:hover{ background:#000!important;color:#fff; }