body{
		height: 100vh;
		position: relative;
		background: url(../images/fs4.jpg);	
		background-repeat: no-repeat;
		background-size: cover;		
		background-blend-mode: multiply;
		background-color:rgba(0,0,0,.65);
		font-family: 'Encode Sans', sans-serif;
	}


a {text-decoration:none}

.logo {width:200px}

.form-control{background-color: rgba(255,255,255,.5);}

.btn-cian{color: #fff;
background-color: #50B7B2;
border-color: #50B7B2;}

.btn-cian:hover{color: #fff;
background-color: #40A8A0;
border-color: #40A8A0;}

.btn-link{color: rgba(255,255,255,1);}
.btn-link:hover{color: rgba(255,255,255,.7);}
.btn-img {width:90%}
	
.boton-home {position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);    
	margin-bottom: 80px;
	}
	
.boton-home:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.boton-home:hover, .boton-home:focus, .boton-home:active {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  -webkit-animation-name: hover;
  animation-name: hover;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.boton-home:hover:before, .boton-home:focus:before, .boton-home:active:before {
  opacity: .8;
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-animation-name: hover-shadow;
  animation-name: hover-shadow;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}


