/* BASIC css start */
#wrap {margin: 0 auto; margin-bottom:10%; max-width: 1200px; min-width: 300px;}

.news-tit { margin-top: 5%; font-size:2rem; color:#2D2926; font-weight:bold; font-family: 'Cormorant','Noto Serif KR', serif; text-align: center;}


#wrapper {
    margin: 5%;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container h2 {
    text-align: left;
    font-size:.85rem; font-family: 'Noto Sans KR',"³ª´®½ºÄù¾î",' NanumSquareR', sans-serif;
}


.text {
    text-align: left;
    width:1000px;
    margin:0 auto;
    
}

.text span a{font-size:.85rem; font-family: 'Noto Sans KR',"³ª´®½ºÄù¾î",' NanumSquareR', sans-serif; color:#FCF9EF; border:1px solid #2D2926; background-color:#2D2926; padding:10px;  transition: ease-in-out 0.3s all;}
.text span a:hover{font-size:.85rem; font-family: 'Noto Sans KR',"³ª´®½ºÄù¾î",' NanumSquareR', sans-serif; color:#2D2926; border:1px solid #2D2926; background-color:#fff; padding:10px;}


.text img{ width: 100%;}

/* Accordion Container */
.container {
    width: 100%;
    
    position: relative;
}

.container:hover.container:before {
    box-shadow: 0px 40px 90px #a1a7ac;
}

.container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: white;
    border-radius: 3px;
}

.accordionTitle {
    padding: 25px;
    position: relative;
    margin: 0;
    font-size: .85rem;
    /*ÆùÆ® °¡ÁßÄ¡*/
    letter-spacing: 1.5px;
    color: #000000;
    transition: ease-in-out 0.2s all;
    cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif;
}

.accordionTitle:hover {
    /* padding-left: 00px; */
}

/* Accordion Item line */
.accordionTitle:before,
.accordionTitle:after {
    content: '';
    position: absolute;
    height: 1px;
    border-radius: 50px;
    transition: ease-in-out 0.5s all;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordionTitle:before {
    width: 100%;
    background-color: #bfbfbf;
}

.accordionTitle:after {
    background-image: linear-gradient(90deg, #000000, #8b8b8b);
    width: 100%;
}

.accordionTitle:hover::after {
    width: 00%;
}

/* Accordion Item line - Active */
.accordionTitleActive:after {
    content: '';
    position: absolute;
    height: 1px;
    border-radius: 50px;
    transition: ease-in-out 0.5s all;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordionTitleActive:after {
    background-image: linear-gradient(90deg, #000000, #8b8b8b);
    width: 100%;
}

/* Accordion Item Icon */
.accIcon {
    float: right;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accIcon:before,
.accIcon:after {
    content: '';
    position: absolute;
    border-radius: 50px;
    background-color: #9d9d9d;
    transition: ease 0.5s all;
}

.accIcon:before {
    width: 2px;
    height: 10px;
}

.accIcon:after {
    width: 10px;
    height: 2px;
}

.accordionTitle:hover .accIcon:before,
.accordionTitle:hover .accIcon:after {
    background-color: #000000;
}

.accIcon.anime.accIcon:before {
    transform: rotate(90deg);
}

/* Text Content */
.accordion .item .text {
    width: 90%;
    opacity: 0;
    height: 0;
    padding: 0px 20px;
    position: relative;
    line-height: 25px;
    font-size: .85rem;
    font-weight: 0px;
    transition: all 0.5s cubic-bezier(.42, .2, .08, 1);
    overflow: hidden;
    background-color: #ffffff;
    /* letter-spacing: 0.5px;*/
    font-family: 'Noto Sans KR', sans-serif;
}

/* Text Content - Class for JS to hide and show */
.accordion .item .text.show {
    opacity: 1;
    height: auto;
    padding: 25px 20px;
    position: relative;
    z-index: 0;
    border-radius: 0px 0px 3px 3px;
}

/* BASIC css end */

