.texto-form h2{
   padding: 0 25px!important;
}
.texto-form h3{
   display: none !important;
}
.texto-form form label{
  color: white !important;
}
.texto-form form input{
  border-radius: 3px;
}
.texto-form form input[type="submit"]{
  background: #007CA2 !important;
  border: none !important
}

.seccion-form{
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.texto-form{
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.shape-form{
   font-size: 600px;
   display: inline-block;
   line-height: 1;
   -webkit-transition: all .3s;
   -o-transition: all .3s;
   transition: all .3s;
   text-align: center;
   position: absolute;
   max-width: 100%;
   top: -40px;
   left: 0px;
}
.shape-form{
  width: 100px;
  transform: rotate(0deg);
}
#horizontal-lines g {
    animation: horizontalRotate 3s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
    animation-direction: alternate;
}
#straight-lines g {
  animation: straightRotate 3s ease infinite;
  transform-box: fill-box;
  transform-origin: center;
  animation-delay: 0s;
  animation-direction: alternate;
}

@keyframes straightRotate {
    from {
        transform-box: fill-box;
        transform-origin: center;
        transform: rotate(45deg);
    }
    to {
        transform: rotateY(360deg)
    }
}

#horizontal-lines g {
   animation: horizontalRotate 3s ease-in-out infinite;
   transform-box: fill-box;
   transform-origin: center;
   animation-direction: alternate;

}

@keyframes horizontalRotate {
    from {
          transform-box: fill-box;
          transform-origin: center;
          transform: rotate(45deg);
    }
    to {
          transform: rotateY(-360deg)
    }
}

#crooked-lines g {
   animation: crookedRotate 3s ease-in-out infinite;
   transform-box: fill-box;
   transform-origin: center;
   animation-direction: alternate;
}

@keyframes crookedRotate {
    from {
            transform-box: fill-box;
            transform-origin: center;
            transform: rotate(45deg);
    }
    to {
            transform: rotateY(-360deg)
    }
}
@media (max-width:700px){
  .shape-form{
    display: none;
    }
  }