/* Contact */

.address{
    padding-left: 80px;
    padding-right: 80px;
    max-width: 1754px;
    margin: auto;
}
.address h1{
    margin-top: 40px;
    margin-bottom: 40px;
    color: #1f4569;
    /* text-decoration: underline; */
    border-bottom: 2px solid #1f4569;
    font-size: clamp(15px, 2.5vw, 38px);
    font-family: 'IBM Plex Sans Thai', sans-serif;


}
.address h2{
    margin-bottom: 20px;
    color: #ff9204;
    font-size: clamp(10px, 2.5vw, 30px);
    font-family: 'IBM Plex Sans Thai', sans-serif;


}
.address .ad{
    font-size: clamp(10px, 2.5vw, 20px);
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'IBM Plex Sans Thai', sans-serif;

}

.form form {
    color: rgb(0, 0, 0);
    text-align: center;
}

form{
    width: 90%;
    max-width: 600px;
}
.input-group{
    margin-bottom: 30px;
    position: relative;
    font-weight: bolder;
}
form input,textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 2px solid rgba(182, 177, 177, 0.438);
    color: rgb(0, 0, 0);
    /* background: transparent; */
    font-size: clamp(8px, 2.5vw, 15px);
    border-radius: 8px;

    
}
form label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: rgb(0, 0, 0);
    cursor: text;
    transition: 0.2s;
    font-size: clamp(8px, 2.5vw, 15px);
}
form button{
    padding: 10px;
    color: rgb(22, 16, 16);
    outline: none;
    /* background: transparent; */
    border: 2px solid rgba(182, 177, 177, 0.438);
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
}

form input:focus~label, 
form input:valid~label,
form textarea:focus~label,
form textarea:valid~label{
    top: -35px;
    font-size: clamp(8px, 2.5vw, 15px);
    color: #0f9c39;
}

.form-container{
    margin-top: 50px;
    margin-bottom: 50px;
    
}
.row-form{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row-form .input-group{
    flex-basis: 49%;
}

.row-buttom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row-buttom button{
    flex-basis: 49%;
    font-size: clamp(8px, 2.5vw, 15px);
    font-weight: bolder;


}

.row-buttom .reset{
    /* background: #f03d3d; */
    background: white;
    transition: .5s;

}
.row-buttom .submit{
    /* background: #30ff3b; */
    background: white;
    transition: .5s;
}

.row-buttom .submit:hover{
    background: #2bff00;
    border-color: #78f87e;
    box-shadow: 6px 7px 7px rgb(5, 247, 57);
    outline: 0;
}

.row-buttom .reset:hover{
    background: #e92107;
    border-color: #f10e06;
    box-shadow: 6px 7px 7px rgb(230, 37, 30);
    outline: 0;
}

.input-group .label:focus{
    border-color: #06f112;
    box-shadow: 6px 7px 7px skyblue;
    outline: 0;
}



/* Type = Number Only no arrow */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.map{
    max-width: 2500px;
    margin: auto;
}

.row-form .input-group img{
    padding-left: 100px;
    width: 90%;
}