section.banner_sec:has(form){
    padding: var(--padding-50);
}

section.banner_sec:has(form) .banner_wrap{
    width: 100%;
    max-width: 60%;
    margin: auto;
}

section.banner_sec:has(form) .banner_wrap .contactfrom{
    margin-top: 35px;
}

section.banner_sec:has(form) .banner_wrap h2{
    text-align: center;
}

.banner_wrap form .field{
    margin-bottom: 10px;
}

.contactmap{
    margin-bottom: 50px;
}

.banner_wrap form .field input,.banner_wrap form .field textarea{
    border: 1px solid #a9a9a9;
    box-sizing: border-box;
    color: #000;
    height: auto;
    padding: 10px;
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.banner_wrap form{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.banner_wrap form .field:has(input[type="text"]){
    width: 100%;
    max-width: calc(50% - 8px);
}

.banner_wrap form .field{
    width: 100%;
}

.field-submit input{
    background-color: var(--bg-header);
    color: var(--c-white);
    padding: 15px 30px;
    font-size: var(--fw-14);
}


@media screen and (max-width: 768px){

    
        section.banner_sec:has(form) .banner_wrap{
            max-width: 100%;
            padding: 0 20px;
        }

    .banner_wrap form .field:has(input[type="text"]){
        max-width: 100%;
    }
}