.contact-section{
    position:relative;
    min-height:660px;
    padding:60px 22px 40px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}
.contact-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../assets/image/contact-bg.png")
               center bottom / cover no-repeat;

    opacity:.55;

}

.contact-section .section-heading h2{
    font-size: 32px;

    font-family: "Sanchez", serif;

    margin-bottom: 20px;
}

.contact-section>*{

    position:relative;

    z-index:2;

}
.contact-content{
    padding-top:20px;
}

.section-heading{
    margin-bottom:32px;
}

.contact-section span{
font-size: 18px;
font-weight: 500;

}
.contact-section p{
    font-size: 18px;
    font-weight: 400;
}

.contact-actions{

    margin-top:34px;

    display:grid;

    gap:14px;

}

.contact-actions a{
    gap: 10px;
    font-size: 20px;

    font-family: "IBM Plex Sans KR", sans-serif;
    font-weight: 500;

}


.contact-actions a img{
    width: 28px;
    height: 28px;
}

.sns-btn{
    margin-bottom: 0;
    margin-top: 10px;
    margin-left: 0;
}

.sns-btn ul{
    display: flex;
    gap: 4px;
    margin: 0 auto;

}
.sns-btn ul li{

    width:140px;
    height:56px;

    border-radius:999px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:19px;
    font-family:"IBM Plex Sans KR", sans-serif;
    font-weight:500;

    cursor:pointer;

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        filter .15s ease;

    box-shadow:0 6px 14px rgba(0,0,0,.18);
}


.sns-btn ul li a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;

    color:#fff;
    text-decoration:none;

    border-radius:999px;

    transition:
        transform .15s ease,
        filter .15s ease;
}

.sns-btn ul li a:active{
    transform:scale(.96);
    filter:brightness(.9);
}



.sns-btn ul li:nth-child(1){
    background-color: #ff2727;

}



.sns-btn ul li:nth-child(2){
    background-image:url("../assets/image/instabg.png");

    background-repeat:no-repeat;

    background-size:180% auto;

    background-position:22% center;
    
}
.sns-btn ul li:nth-child(3){
    background-color: #26c000;
}

.sns-btn ul li:nth-child(1) img{
    width: 35%;
}
.sns-btn ul li:nth-child(2) img{
    width: 27%;
}
.sns-btn ul li:nth-child(3) img{
    width: 40%;

}