/*
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 : 3 juin 2015, 11:16:52
    Author     : jeremydesvaux
*/

.noewp-slider-wrapper {
    overflow: hidden;
    z-index: 1;
    .translate3d(0,0,0);
    min-height: 440px;
    width: calc(100% - 330px);
    -webkit-transition: -webkit-transform ease-in-out .4s;
    -moz-transition: -moz-transform ease-in-out .4s;
    -ms-transition: -ms-transform ease-in-out .4s;
    -o-transition: -o-transform ease-in-out .4s;
    transition: transform ease-in-out .4s;
    position: relative;
    float: right;
}

.noewp-slider .noewp-slider-item {
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
    position: absolute;
}

.noewp-slider .noewp-slider-item.current {
    z-index: 2;
    opacity: 1;
}

.noewp-slider .noewp-slider-image {
    width: 100%;
}

.noewp-slider .noewp-slider-content {
    left: 0;
    padding: 40px;
    position: absolute;
    top: 0;
    width: calc(100% - 40px);
    color: white;
}

.noewp-slider .slider-title {
    margin: 0;
    padding: 0;
    margin-top: 50px;
    font-size: 36px;
    line-height: 38px;
    padding-right: 40px;
}

.noewp-slider .dark-bkg-full {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #012b5b;
    opacity: .25;
}

.noewp-slider .noewp-slider-link {
    display: inline-block;
    margin-top: 60px;
    padding: 20px 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 5px;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    transition:border 0.2s ease, background 0.2s ease;
    -moz-transition:border 0.2s ease, background 0.2s ease;
    -webkit-transition:border 0.2s ease, background 0.2s ease;
}

.noewp-slider .noewp-slider-link:hover {
    background: rgba(255,255,255,0.9);
    border-color: transparent;
    color: #012b5b;
}

.noewp-slider .noewp-slider-arrow {
  display: block;
  position: absolute;
  width: 70px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  bottom: 10px;
  z-index: 3;
  cursor: pointer;
  color: #fff;
  opacity: 0;
  -webkit-transition: all;
  -moz-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  transition-duration: 250ms;
}

.noewp-slider:hover .noewp-slider-arrow {
    opacity: 1;
}

.noewp-slider .noewp-slider-prev {
    left: 10px;
}

.noewp-slider .noewp-slider-next {
    right: 10px;
}

.noewp-slider .noewp-slider-prev:before {
    content: '←';
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-weight: lighter;
}

.noewp-slider .noewp-slider-next:before {
    content: '→';
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-weight: lighter;
}

.slider-header .noewp-slider-wrapper {
	width: 100%;
}

.slider-header .noewp-slider .noewp-slider-link:hover {
	color: #911150;
}