/*인사말 메뉴*/
#greeting>a{
    background-color: rgb(232,119,34);
    font-weight: 500;
    color: #fff;
}

#greeting>a::before{
    position: absolute;
    bottom: -20px;
    left: 50%;
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    background-color: rgb(232,119,34);
    transform: rotate(45deg) translateX(-50%);
    z-index: -1;
}

/*인사말 본문 내용*/
.big_greeting_text{
    width: 100%;
    max-width: 1400px;
    height: 650px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.big_greeting_text_area{
    width: 100%;
    height: 100%;
    position: relative;
}

/*인사말 로고*/
.greeting_logo_area{
    width: 50%;
    text-align: center;
    float: left;
    overflow: hidden;
    position: relative;
}

#greetingLogo{
    width: 100%;
    height: 400px;
    margin: 0 0 0 -500px;
    opacity: 0;
    transition: all 0.5s;
}

#m_greetingLogo{
    display: none;
}

/*인사말 텍스트 본문*/
.greeting_txt_area{
    width: 50%;
    float: left;
    display: block;
    position: relative;
}

.greeting_txt{
    width: 100%;
    height: 100%;
    margin-left: 400px;
    opacity: 0;
    transition: all 0.5s;
}

.m_greeting_txt{
    display: none;
}

.greeting_title{
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(20,20,20,0.5);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.greeting_title>h2{
    font-weight: normal;
    font-size: 1.8em;
    letter-spacing: -1px;
    margin-bottom: 10px
}

.greeting_title>h3{
    font-weight: normal;
    font-size: 2.4em;
    letter-spacing: -1px;
}

.greeting_title>h3 span{
    color: rgb(232,119,34);
}

.greeting_txt>p{
    font-size: 1em;
    margin-bottom: 20px;
}

.greeting_txt>p:last-of-type{
    margin-bottom: 0px;
}


@media all and (max-width: 1400px){
    .big_greeting_text{
        height: 100%;
        overflow: hidden;
        margin-bottom: 100px;
    }
    
    .greeting_logo_area{
        width: 100%;
        position: relative;
        margin-bottom: 30px;
    }
    
    .greeting_logo{
        width: 100%;
    }
    
    #greetingLogo{
        display: none;
    }
    
     #m_greetingLogo{
        display: block;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
     #m_greetingLogo>img{
        width: 100%;
    }
    
    .greeting_txt_area{
        width: 100%;
        position: relative;
    }
    
    .greeting_txt{
        display: none;
    }
    
    .m_greeting_txt{
        display: block;
        width: 100%;
        text-align: justify;
        padding: 0 200px;
    }
    
    .m_greeting_title>h2{
        font-size: 2em;
        font-weight: normal;
        margin-bottom: 5px;
    }
    
     .m_greeting_title>h3{
        font-size: 1.5em;
        font-weight: normal;
        margin-bottom: 30px;
    }
    
    .m_greeting_title>h3 span{
        color: rgb(232,119,34);
    }
    
    .m_greeting_text{
        font-size: 1em;
    }
    
    .m_greeting_text>p{
        margin-bottom: 10px;
    }
    
    .m_greeting_text>p:last-of-type{
        margin-bottom: 0px;
        font-size: 1.1em;
    }
}

@media all and (max-width: 960px){
    #m_greetingLogo{
        width: 100%;
        max-width: 200px;
        height: 200px;
    }
    
    .m_greeting_txt{
        padding: 0 30px;
        text-align: justify
    }
    
    .m_greeting_title>h2{
        font-size: 1.2em;
    }
    
    .m_greeting_title>h3{
        font-size: 1.1em;
    }
    
    .m_greeting_text{
        font-size: 0.8em;
    }
    
    #greeting>a::before{
        display: none;
    }
}