.home_main__2I_5U .new-form h1{
        font-family: "TragicMarker", sans-serif;
    font-size: 70px;
    text-align: center;
    margin-bottom: 20px;
}
.home_main__2I_5U .new-form form{
    display: flex;
    background: #fff;
    border: 1px solid #d8e9ed;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    gap: 20px;
    flex-direction: column;
    max-width: 630px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.home_main__2I_5U .new-form form .form-group{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}
.home_main__2I_5U .new-form form .form-group input {
    box-sizing: border-box;
    height: 46px;
    width: 100%;
    background: rgba(180, 210, 222, .2);
    outline: none;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    line-height: 227.7%;
    color: #000;
    padding: 5px 16px;
    font-family: GothamPro, sans-serif;
    border: 1px solid transparent;
    transition: 0.3s;
}
.home_main__2I_5U .new-form form .form-group input.error{
    border-color: red;
} 
.home_main__2I_5U .new-form form .form-group input:focus{
    border-color: #09354f;
}
.home_main__2I_5U .new-form form button{
    padding: 0 69px;
    height: 60px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    cursor: pointer;
    color: #fff;
    font-family: GothamPro, sans-serif;
    text-transform: capitalize;
    background: radial-gradient(131.06% 130% at 54.47% 130%,#09354f 0,#1a6480 100%);
}
#responseMessage{
    font-size: 14px;
    text-align: center;
    
}
.home_main__2I_5U .new-form form .thank-modal{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
    display: none;
}
.home_main__2I_5U .new-form form.thank .thank-modal{
    display: flex;
}


@media(max-width: 700px){
    .home_main__2I_5U .new-form h1{
        font-size: 50px;
    }
}