/* 컨택트 전용 css */
.page-title{
    background-image: url(img/contactmain.png);
    background-attachment: fixed;
    height: 500px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: var(--border);
    margin-top:80px;
}
.page-title h1{color:rgb(18, 33, 65);}


/* 1 */
.section1{
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: var(--border);
    
}

.section1 .container{
    display: flex;
    justify-content: space-between;

}

.section1 .item{
    width: 30%;
}

.section1 a{display: block;}

.section1 p{padding-top: 10px;}

/* 2 */
.section2{
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: var(--border);

}
.section2 .container{
    padding-top: 20px;
    max-width:900px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:10px;
}
.section2 .item{
    border: 2px solid rgb(18, 33, 65);
    background-color: white;
    text-align: left;
    padding: 10px;
    text-transform: capitalize;
    font-weight: bold;
    color:rgb(126, 131, 143);
}
.section2 .item5{
    grid-column: span 2;
    height: 200px;
}
.section2 .item6{
    background-color: var(--point);
    grid-column: span 2;
    text-align: center;
    color: white;
}

/* 3 */
.section3{
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: var(--border);
    background-color: #f5d253;
}
.section3 .container{border: var(--border);}
.section3 iframe{
    width:100%;
    height: 500px;
    display: block;
}

@media(max-width:800px){
    .section1 .container{
        display: block;
    }
    .section1 .item{width:100%; margin-bottom: 30px;}
    .section2 .container{
        grid-template-columns: repeat(1,1fr);
    }
    .section2 .item{grid-column: auto;}
}