.top-title{
    background: url(../images/contact-top.png) no-repeat 50% 50%;
    background-size: 100% 100%;
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.top-title h3{
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
}
.contact-us{
    max-width: 1250px;
    margin: 0 auto;
    padding: 100px 30px;
    display: flex;
    align-items: flex-end;
}
.map {
    width: 62%;
}
.map-inn{
    border:0; 
    width: 100%; 
    height: 100%; 
    min-height: 600px;
}
.info{
    width: 30%;

    margin-left: 5%;

}
.info > img{
    width: 50%;
    max-width: 190px;
}
.info li{
    display: flex;
    align-items: center;
    margin-top: 32px;
    line-height: 1.6;
}
.info li > img{
    width: 46px;
    margin-right: 15px;
}
/* 문의 */
.question{
    max-width: 1250px;
    padding: 90px 30px;
    margin: 0 auto;
}
table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 30px;
}
input{
    height: 45px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    width: 100%;
    padding: 0 15px;
}
input:focus{
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 5px rgba(0, 126,206,0.5);
}
tr{
    margin-bottom: 30px;
}
th{
    width: 15%;
    vertical-align: middle;
}
td{
    width: 85%;
    vertical-align: middle;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
textarea{
    width: 100%; height: 300px;
    padding: 15px;
    overflow-y: auto;
    resize: none;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}
textarea:focus{
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 5px rgba(0, 126,206,0.5);
}
.file{
    position: relative;
}
.file input{
    width: 0; height: 0;
    position: absolute;
    left: 0; top: 0;
    opacity: 0;
}
.file label{
    width: 100px; height: 100%;
    background-color: var(--color-navy);
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-content: center;
}
.file > div{
    width: 100%; height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.file-name{padding: 0 15px;}
.send-btn{text-align: center;}
.send-btn input[type="submit"]{
    width: 300px; height: 45px;
    background-color: var(--color-blue);
    color: #ffffff;
    border-radius: 5px;
    margin-top: 40px;
}
@media screen and (max-width: 768px) {
    h4{margin: 40px auto; font-size: 26px; min-width: 150px;}
    .top-title{height: 260px;}
    .question{padding: 60px 30px 90px;}
    .contact-us{
        flex-direction: column;
        align-items: center;
    }
    .map{width: 100%;}
    .map-inn{min-height: 450px;}
    .info{margin-left: 0; width: 100%; margin-top: 35px;}
}
@media screen and (max-width: 560px) {
    h4{font-size: 20px; margin: 20px auto;}
}
@media screen and (max-width: 500px) {
    .top-title{height: 200px;}
    .top-title h3{font-size: 28px;}
    .question{padding: 30px 30px 90px;}
    .map-inn{min-height: 360px;}
}
@media screen and (max-width: 400px) {
    th, td{width: 100%; display: block; }
    th{text-align: left; margin-bottom: 5px;}
    .send-btn input[type="submit"]{width: 100%;}
}