@import url('https://fonts.googleapis.com/css2?family=Afacad&family=Nunito&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: nunito;
    color: #fff;
}
html{
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden !important;
}
.con-vw{
    width: 100vw;
    height: 100vh;
    background-image: url(../img/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.con-vw-all{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.369), rgba(0, 0, 0, 0.369));
    width: 100%;
    height: 100%;
}

.contact{
    width: 100%;
    height: fit-content;
}
.contact-title{
    width: 100%;
    padding-top: 16vh;
}
.contact-title h1{
    font-size: 35px;
    color: #fff;
    text-align: center;
    text-decoration: underline 3px solid #EAB622;
    text-underline-offset: 2px;
    margin-top: 1.5rem;
}
.inputs{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 2rem;
}
.input{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
}
.in-field{
    width: 100%;
    padding: 5px;
    border: 3px solid transparent;
    background-color: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-bottom: 3px solid #EAB622;
    outline: none;
    color: #fff;
}
.in-field:focus{
    border: 3px solid #EAB622;
}
::placeholder { /* Edge 12 -18 */
    color: #a3a3a3;
  }
.in-fi04{
    border: 3px solid #EAB622;
}
.in-btn{
    width: fit-content;
    padding: 10px 15px 10px 15px;
    background-color: #EAB622;
    color: #000;
    border: none;
    font-size: medium;
    cursor: pointer;
    transition: .3s;
}
.in-btn:hover{
    background-color: #203158;
    color: #fff;
}

@media (max-width:454px){
    .inputs{
        align-items: center;
        margin-left: 0;
    }
}
@media (max-width:370px){
    .inputs{
        width: 100vw;
    }
    .input{
        width: 85%;
    }
}
@media (max-width:724px){
    .inputs{
        margin-top: 2rem;
    }
    .con-vw{
        height: fit-content;
    }
}