@import url('https://fonts.googleapis.com/css?family=Contrail+One');
@import url('https://fonts.googleapis.com/css?family=Sunflower:300');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');

body{
	width: 100%;
	height: auto;
	margin: 0;
}

a{
  font-size: 14pt;
  font-family: 'Sunflower', sans-serif;
}

section#banner{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 3px #000;
  z-index: 980;
  text-align: center;
}

.logo{
  position: absolute;
  width: 300px;
  height: 70px;
  display: inline-block;
  top: 50px;
  margin: 0 auto;
  background: url('../../img/logo/logo3.png');
  background-size: 100% 100%;
  z-index: 999;
}

.contenedor-slider {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 300%;
}

.slider__section {
  width: 100%;
}

.slider__img {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
}

.imgSlider-1{
  width: 100%;
  height: 100vh;
  background: url('../img/banner.jpg');
  background-size: 100% 100%;
}

.imgSlider-2{
  width: 100%;
  height: 100vh;
  background: url('../img/testePsicologico.jpg');
  background-size: 100% 100%;
}


.imgSlider-3{
  width: 100%;
  height: 100vh;
  background: url('../img/dinamica.jpg');
  background-size: 100% 100%;
}

.btn-prev, .btn-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 62px;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  font-family: sans-serif;
  cursor: pointer;
}

.btn-prev:hover, .btn-next:hover {
  background: white;
}

.btn-prev {
  left: 10px;
	z-index: 99;
}

.btn-next {
  right: 10px;
	z-index: 99;
}

.titBanner{
  position: relative;
  font-size: 35pt;
  top: 70%;
  display: inline-flex;
  justify-content: start;
  color: #fff;
  text-decoration: none;
  padding: 5px 30px;
  background: rgba(80,80,80, 0.8);
  border-radius: 60px;
}.titBanner:hover{
  background: rgba(80,80,80, 1);

}


/********************************** MOBILE ********************************/
@media (max-width: 980px){
  .contenedor-slider {
    position: relative;
    margin: auto;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .logo{
    position: absolute;
    width: 500px;
    height: 116px;
    display: inline-block;
    top: 50px;
    margin: 0 auto;
    background: url('../../img/logo/logo3.png');
    background-size: 100% 100%;
    z-index: 999;
  }

  .slider__img {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
  }

  .imgSlider-1{
    width: 100%;
    height: 100vh;
    background: url('../img/banner2.jpg');
    background-size: 100% 100%;
  }

  .imgSlider-2{
    width: 100%;
    height: 100vh;
    background: url('../img/testePsicologico2.jpg');
    background-size: 100% 100%;
  }


  .imgSlider-3{
    width: 100%;
    height: 100vh;
    background: url('../img/dinamica2.jpg');
    background-size: 100% 100%;
  }

  .btn-prev, .btn-next {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 80px;
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    font-family: "roboto", sans-serif;
    cursor: pointer;
  }

}