/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2021 | 14:28:26 */
.sec-hover .elementor-widget-container {
    overflow: hidden !important;
}
.form-anim-btn{
  overflow: hidden !important;
}
.form-anim-btn span:nth-child(1){
      top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
90deg,transparent,#FFFFFF);
    animation: animate1 1s linear infinite;
    position: absolute;
}
@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}
.form-anim-btn span:nth-child(2){
  top: 0%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
180deg,transparent,#FFFFFF);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
  position: absolute;
}
@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}
.form-anim-btn span:nth-child(3){
  bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
270deg,transparent,#FFFFFF);
    animation: animate3 1s linear infinite;
    animation-delay: 0.50s;
  position: absolute;
}
@keyframes animate3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}
.form-anim-btn span:nth-child(4){
  bottom: 0%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
360deg,transparent,#FFFFFF);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
  position: absolute;
}
@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}