.contact{
    background: linear-gradient(#ffffffb5, #ffffff2d);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    h2{
        color: #941C80;
        font-weight: 400;
        font-size: 2.5rem;
        .bold{
            font-weight: 700;
            text-transform: uppercase;
        }
        &::before{
            content: '';
            display: inline-block;
            width: 300px;
            height: 3px;
            background: #941C80;
            margin-right: 30px;
            vertical-align: middle;
            clip-path: polygon(100% 0%, 100% 100%, 0% 50%);
        }
        &::after{
            content: '';
            display: inline-block;
            width: 300px;
            height: 3px;
            background: #941C80;
            margin-left: 30px;
            vertical-align: middle;
            clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
        }
    }
    .jssf-form-container{
        width: 100%;
        max-width: 1000px;
        border-radius: 8px;
        padding: 20px;
        margin-top: 50px;
    }
}

.jssf-form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  .jssf-form-content{
    display: flex;
    flex-direction: center;
    justify-content: center;
    align-items: stretch;
  }
}

@media (width<1300px){
    .contact{
        h2{
            &::before{
                width: 200px;
            }
            &::after{
                width: 200px;
            }
        }
    }
}

@media (width<1000px){
    .contact{
        h2{
            font-size: 2rem;
            &::before{
                display: none;
            }
            &::after{
                display: none;
            }
        }
    }
}