@charset "utf-8";

#apply-consulting { padding: 200px 0 100px; text-align: center; } 
.intro-title { transition: all 0.7s; display: inline-block; position: relative; margin-bottom: 90px; transform: scale(0.7); font-size: 50px; font-weight: bold; opacity: 0; } 
.intro-title:after { content: ""; background: var(--page-theme-color); position: absolute; bottom: -57px; width: 50%; height: 5px; left: 50%; transform: translateX(-50%); } 
.active-section.active .intro-title { opacity:1; transform: scale(1); } 
#apply-consulting form { text-align: left; margin: 60px auto; width: 830px; opacity: 0; transform: translateY(70px); transition: all 0.5s; transition-delay: 0.2s; } 
#apply-consulting.active form { opacity: 1; transform: translateY(0); } 
#apply-consulting form .sec-row { margin-bottom: 20px; } 
#apply-consulting form .sec-row > label { font-size: 15px; display: block; margin-bottom: 10px; } 
#apply-consulting form .sec-row input { border: 1px solid #ccc; padding: 6px 12px; width: 100%; font-size: 15px; } 
#apply-consulting form .sec-row select { width: 100%; padding: 6px 12px; border: 1px solid #ccc; font-size: 15px; } 
#apply-consulting form .sec-row .only_num { width: 65px; } 
#apply-consulting form .sec-row textarea { border: 1px solid #ccc; resize: none; width: 100%; height: 77px; font-size: 15px; padding: 10px 12px; } 
#apply-consulting form .sec-row .dash { margin-left: 4px; } 
#apply-consulting form .sec-row .terms-box { width: 100%; height: 160px; overflow-y: scroll; border: 1px solid #ccc; padding: 10px; } 
#apply-consulting form .agree-line label { margin-left: 5px; font-size: 15px; cursor: pointer; } 
#apply-consulting form .submit-btn { background: #3a3537; color: #fff; cursor: pointer; border-radius: 2px; padding: 10px 25px; margin: 30px auto; display: block; transition: all .3s; } 
#apply-consulting form .submit-btn:hover { background: var(--page-theme-color); } 
#apply-consulting form .must { position: relative; width: 6px; height: 6px; background: #f25656; display: inline-block; border-radius: 50%; vertical-align: 2px; margin-left: 2px; } 
#apply-consulting .sec-row input,
#apply-consulting .sec-row select,
#apply-consulting .sec-row textarea { transition: all .3s; } 
#apply-consulting .sec-row input:focus,
#apply-consulting .sec-row select:focus,
#apply-consulting .sec-row textarea:focus { border:1px solid var(--page-theme-color); } 

/* 지도 */
#map { text-align: center; } 
#map .map-img { max-width: 830px; display: block; margin: 20px auto 100px; transition: all .7s; transform: scale(0.7); opacity: 0; } 
#map.active .map-img { opacity: 1; transform: scale(1); } 


@media (max-width: 1000px) { /* 태블릿,모바일 레이아웃 변경 */
 #apply-consulting form { width: 95%; } 
 #map .map-img {width:100%;}
 }
@media (max-width: 500px){
 .intro-title { font-size: 40px; } 
 }