.email-form{
    margin: 0 15px!important;
    width: 100%;
}
.strib-ca{
    font-size: 48px;
    font-weight: 700;
    color: white;

}
.animations-ds{
    animation-duration: 2s;
    animation-name: slidein;
}
/*    color: #d8082b;*/

.form-group input{
    border-radius: 20px;
}
.frmi{
    border-radius: 20px;
    width: 100%;
}
.frmibtn{
    border-radius: 20px;
}
.conte-pd{
    animation-duration: 2s;
    animation-name: sliders;
}
.title-form{
    font-size: 24px;
    color: white;
    margin-bottom: 28px;
    margin-top: 8px;
    font-weight: 700;
    text-align: center;
}
.fondo{
    position: relative;
}

.fondo:before {
	content:'';
	position: absolute;
        top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.3);
}

.fondo .container{
    border-radius: 20px;
}


@keyframes sliders {
    from {
        transform: translate(-200%,0);
      }
    
      to {
        transform: translate(0,0);
      } 
  }

@keyframes slidein {
    from {
        transform: translate(200%,0);
    }
  
    to {
      margin-left: 0%;
    }
  }