@charset "utf-8";

.page__company {}
.page__company > section {
    min-height: 100vh;
    position: relative;
}

/* 소개 */

.company__rhaon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../img/company/intro_bg.jpg") 50% /cover no-repeat;
}
.company__rhaon .text {
    text-align: center;
    z-index: 1;
}
.company__rhaon .text h3 {
    margin-bottom: 40px;
}
.company__rhaon .text h3 * {
    font-size: 70px;
    color: #fff;
    font-family: var(--font-type1);
}
.company__rhaon .text h3 b {
    color: var(--point-color);
}
.company__rhaon .text p {
    font-family: var(--font-type2);
    font-size: 30px;
    color: #fff;
    line-height: 2;
}
.company__rhaon .bg__circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.company__rhaon .bg__circles .circles {
    position: relative;
}
.company__rhaon .bg__circles span {
    border: 4px dotted #fff;
    border-radius: 50%;
    position: absolute;
}
.company__rhaon .bg__circles span:nth-child(1) {
    opacity: 0.1;
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation: 100s circleRotate linear infinite;
}
.company__rhaon .bg__circles span:nth-child(2) {
    opacity: 0.2;
    width: 700px;
    height: 700px;
    top: -350px;
    left: -350px;
    animation: 100s circleRotateReverse linear infinite;
}

.company__rhaon .bg__circles span:nth-child(3) {
    opacity: 0.2;
    width: 1000px;
    height: 1000px;
    top: -500px;
    left: -500px;
    animation: 100s circleRotate linear infinite;
}

@keyframes circleRotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}
@keyframes circleRotateReverse {
    0% {
        transform: rotateZ(360deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

#companyCanvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.company__ideology {
    background: linear-gradient(360deg, #00205c, #000D25);
    text-align: center;
}
.company__ideology * {
    color: #fff;
}
.ideology__contents {
    position: relative;
    z-index: 1;
    padding: 250px 0;
}
.img__henry {
    width: 350px;
    position: relative;
    top: 40px;
    z-index: 1;
}
.ideology__items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}
.ideology__items .item {
    background: rgba(255,255,255,0.1);
    width: 100%;
    padding: 25px 10px;
    backdrop-filter:blur(2px);
    transition-duration: 0.5s;
    position: relative;
    top: 0;
    transition-duration: 0.5s;
    border-top: 1px solid #fff;
}
.ideology__items .item h4 {
    font-size: 32px;
    font-family: var(--font-type2);
    margin-top: 15px;
    letter-spacing: 2px;
}
.ideology__items .item p {
    font-size: 24px;
    opacity: 0.8;
}

.ideology__items h4 {
    font-size: 24px;
    font-family: var(--font-type1);
}
.ideology__share {
    padding-top: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.ideology__share > div {
    width: 50%;
    text-align: left;
}
.ideology__share h4 {
    font-size: 30px;
    padding-bottom: 20px;
    font-family: var(--font-type1);
}
.ideology__share .box__outer {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.ideology__share .sharebox1 .box {
    position: relative;
    width: 175px;
    height: 175px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    position: relative;
}
.ideology__share .sharebox1 .box:nth-child(2) {
    left: -20px;
}
.ideology__share .sharebox1 .box:nth-child(3) {
    left: -40px;
}
.ideology__share .sharebox1 .box:nth-child(4) {
    left: -60px;
}
.ideology__share .sharebox1 .box:before {
    content: '●';
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: 45px;
    left: 45px;
    transform-origin: center center;
    animation: shareboxRotate 4s linear infinite;
}
@keyframes shareboxRotate {
    0% {
        transform: translate(0, 0) rotate(0deg) translate(100%, 100%);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) translate(100%, 100%);
    }
}

.ideology__share .sharebox1 .box:nth-child(1):before {
    color: #F6771F;
}
.ideology__share .sharebox1 .box:nth-child(2):before {
    color: #3B9DC7;
}
.ideology__share .sharebox1 .box:nth-child(3):before {
    color: #32A76C;
}
.ideology__share .sharebox1 .box:nth-child(4):before {
    color: #A464CD;
}

.ideology__share .sharebox2 img {
    max-width: 200px;
    width: 100%;
    transition-duration: 0.5s;
}
.ideology__share .sharebox2 .box {
    border: 1px solid #000;
    width: 50%;
    height: 170px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
/*
.ideology__share .sharebox2 .box:hover img {
    transform: rotateY(180deg);
} */
.ideology__share .sharebox2 .box:nth-child(2) {
    position: relative;
    left: -30px;
    top: 30px;
}

.ideology__share .sharebox2 .box .box__inner p {
    font-size: 24px;
    padding-top: 10px;
}
.company__value {
    padding-top: 150px;
    padding-bottom: 150px;
}
.value__contents {
    padding: 0 0 150px;
}
.value__contents h2 {
    font-size: 70px;
    font-family: var(--font-type1);
}
.value__contents h3 {
    font-size: 50px;
    font-family: var(--font-type2);
    font-weight: 100;
    color: #000;
}
.value__contents .tab {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.value__contents .tab .tab__btn {
    width: 525px;
    margin-top: 20px;
}
.value__contents .tab .tab__btn button {
    width: 262px;
    height: 60px;
    font-size: 24px;
    font-family: var(--font-type1);
    line-height: 60px;
    background: #F1F1F1;
    color: #999999;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 5px;
    border: 0;
    transition-duration: var(--duration);
    position: relative;
}
.value__contents .tab .tab__btn button.active,
.value__contents .tab .tab__btn button:hover {
    background: #000;
    color: #fff;
}
.value__contents .tab .tab__btn button:nth-child(2) {
    left: 130px;
}
.value__contents .tab .tab__btn button:nth-child(3) {
    left: 260px;
}
.value__contents .tab .tab__contents {
    width: calc(100% - 525px);
    padding-left: 140px;
    position: relative;
}
.value__contents .tab .tab__contents .cont {
    display: none;
}
.value__contents .tab .tab__contents .cont.active {
    display: block;
}
.value__contents .tab .tab__contents .cont h4 {
    font-family: var(--font-type1);
    font-size: 30px;
    word-break: keep-all;
}
.value__contents .tab .tab__contents .cont p {
    font-size: 24px;
    margin-top: 15px;
    line-height: 1.6;
}
.value__contents .tab .tab__contents:before {
    content: '';
    width: 1px;
    height: 250px;
    background: #000;
    position: absolute;
    left: 50px;
    top: -20px;
    transform: rotate(-45deg);
}
.value__contents .tab .tab__contents:after {
    content: '';
    width: 1px;
    height: 250px;
    background: #000;
    position: absolute;
    right: 0;
    top: -150px;
    transform: rotate(-45deg);
}
.value__contents .triangles {
    position: relative;
}
.value__contents .triangles span {
    font-size: 40px;
    position: absolute;
    transition-duration: var(--duration);
}
.value__contents .triangles span:nth-child(1) {
    top: 90px;
    left: 120px;
    transform: rotate(45deg);
    opacity: 0.2;
}
.value__contents .triangles span:nth-child(2) {
    top: -250px;
    left: 0;
    transform: rotate(35deg);
    opacity: 0.5;
}
.value__contents .triangles span:nth-child(3) {
    top: 30px;
    right: -30px;
    transform: rotate(-45deg);
    opacity: 0.3;
}
.value__contents .triangles.response1 {}
.value__contents .triangles.response1 span:nth-child(1) {
    transform: rotate(335deg);
}
.value__contents .triangles.response1 span:nth-child(2) {
    transform: rotate(350deg);
}
.value__contents .triangles.response1 span:nth-child(3) {
    transform: rotate(0);
}
.value__contents .triangles.response2 span:nth-child(1) {
    top: 70px;
    left: 150px;
    transform: rotate(20deg);
}
.value__contents .triangles.response2 span:nth-child(2) {
    top: -250px;
    left: 30px;
    transform: rotate(20deg);
}
.value__contents .triangles.response2 span:nth-child(3) {
    top: 60px;
    right: -60px;
    transform: rotate(350deg);
}
.value__contents .triangles.response3 span:nth-child(1) {
    top: 100px;
    left: 180px;
    transform: rotate(395deg);
}
.value__contents .triangles.response3 span:nth-child(2) {
    top: -250px;
    left: 0;
    transform: rotate(280deg);
}
.value__contents .triangles.response3 span:nth-child(3) {
    top: 30px;
    right: -30px;
    transform: rotate(0);
}

.slogan__contents .text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
    position: relative;
}
.slogan__contents .text h3 {
    width: 550px;
    font-family: var(--font-type2);
    font-weight: 100;
    font-size: 50px;
    padding-right: 20px;
    color: #000;
    line-height: 1.6;
}
.slogan__contents .text p {
    width: calc(100% - 700px);
    font-size: 24px;
    line-height: 1.6;
    padding: 0 20px;
}
.slogan__contents .text:before {
    content: '';
    width: 1px;
    height: 250px;
    background: #000;
    position: absolute;
    left: 200px;
    bottom: -30px;
    transform: rotate(45deg);
}
.img__slogan__children {
    width: 200px;
}

/* 함께 걸어온 길 */
.company__history {
    padding: 0;
}
.company__history h2 {
    position: absolute;
    top: 180px;
    left: 150px;
}
.company__history h3 {
    position: absolute;
    top: 250px;
    left: 150px;
    color: #9453ed;
    font-size: 160px;
    font-family: var(--font-type1);
}

.company__history .history__list {
    padding-top: 500px;
    padding-bottom: 100px;
    position: relative;
}
.company__history .history__list:before {
    content: '';
    display: block;
    width: 100px;
    height: 100%;
    background: linear-gradient(to top, #ff0039, #ff0039, #ff0039,  #9453ed);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.company__history .history__list > li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.company__history .history__list .year {
    font-size: 100px;
    font-family: var(--font-type0);
    color: #fff;
    font-weight: bold;
    background: none;
    width: 100px;
    text-align: center;
}
.history__list .year__info {
    margin-bottom: 55px;
    padding-left: 40px;
    padding-top: 20px;
}
.history__list .year__info > li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}
.history__list .year__info > li * {
    font-size: 30px;
    color: #000;
}
.history__list .year__info > li > b {
    width: 50px;
    margin-right: 22px;
    font-family: var(--font-type1);
    font-weight: bold;
}
.history__list .year__info > li > span {
    font-family: var(--font-type2);
}
.img__rhaon__circle {
    position: fixed;
    bottom: -100px;
    right: 20%;
    transition-duration: var(--duration);
    width: 300px;
}

.company__organization {
    padding: 150px 0;
    text-align: center;
}
.organization__rhaon {
    position: relative;
    width: 430px;
    height: 160px;
    margin: 0 auto 90px;
    overflow: hidden;
}
.organization__rhaon .back,
.organization__rhaon .front {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-duration: var(--duration);
    box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
    backface-visibility: hidden;
    border-radius: 10px;
}
.organization__rhaon .front {
    border: 1px solid #fff;
    background: #000;
    z-index: 1;
    transform: rotateX(0deg);
}
.organization__rhaon .back {
    border: 1px solid #000;
    background: #fff;
    transform: rotateX(-180deg);
}
.organization__rhaon img {
    height: 60px;
}
.organization__rhaon:hover .front {
    transform: rotateX(-180deg);
}
.organization__rhaon:hover .back {
    transform: rotateX(0deg);
}
.organization__rhaon:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-rhaon 2s ease-in-out infinite;
    z-index: 2;
}
.organization__rhaon:active {
    box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.2), inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
@-webkit-keyframes shiny-rhaon {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.organization__chart {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
.organization__chart * {
    font-family: var(--font-type1);
}
.organization__chart .chart__team {
    position: relative;
    width: 180px;
    padding-top: 60px;
}
.organization__chart .chart__team h3 {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    font-size: 32px;
    border-radius: 10px 10px 0 0;
}
.organization__chart .chart__team .team__logo {
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.organization__chart .chart__team .team__logo img {
    max-height: 80px;
    margin: 0 auto;
    display: block;
}
.organization__chart .chart__team .part__outer {
    border: 1px solid #000;
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 15px;
}
.organization__chart .chart__team .part {
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 16px 0;
    background: #000;
    border-radius: 10px;
    color: #fff;
    font-size: 23px;
    margin-bottom: 10px;
}
.organization__chart .chart__team .part:last-of-type {
    margin-bottom: 0;
}
.organization__chart .chart__team .part.add_under1 {
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
}
.organization__chart .chart__team .part.add_under2 {}
.organization__chart .chart__team .underpart1 {
    margin-bottom: 15px;
    background: #333;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
}
.organization__chart .chart__team .underpart1 p {
    color: #fff;
    font-size: 17px;
    font-family: var(--font-type3);
    line-height: 1.4;
}
.organization__chart .chart__team .underpart2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.organization__chart .chart__team .underpart2 p {
    width: 50%;
    background: #000;
    color: #fff;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 10px;
}
.organization__chart .chart__team .support {}
.organization__chart .chart__team.green h3 {
    background: linear-gradient(180deg, #09DB1E 0%, #00B712 100%);
}
.organization__chart .chart__team .part__outer {
    backdrop-filter: blur(1px);
}
.organization__chart .chart__team.green .part__outer {
    border: 1px solid #69D974;
    background: rgba(240, 255, 242, 0.1);
}
.organization__chart .chart__team.green .part {
    background: #69D974;
}
.organization__chart .chart__team.blue h3 {
    background: linear-gradient(180deg, #2395FF 0%, #0072DB 100%);
}

.organization__chart .chart__team.blue .part__outer {
    border: 1px solid #72BBFF;
    background: rgba(241, 247, 255, 0.1);
}
.organization__chart .chart__team.blue .part {
    background: #72BBFF;
}
.organization__chart .chart__team.orange h3 {
    background: linear-gradient(180deg, #F96C1D 0%, #FF5C00 100%);
}

.organization__chart .chart__team.orange .part__outer {
    border: 1px solid rgba(255, 153, 131, 1);
    background: rgba(255, 245, 241,0.1);
}
.organization__chart .chart__team.orange .part {
    background: #FF985E;
}
.organization__chart .chart__team.orange .underpart1 {
    background: #FF7A2E;
}
.organization__chart .chart__team.service h3 {
    background: linear-gradient(180deg, #FFDC5F 0.01%, #FFC700 100%);
}
.organization__chart .chart__team.service .part__outer {
    border: 1px solid #EFCC14;
    background: rgba(255, 254, 241, 0.1);
}
.organization__chart .chart__team.service .part,
.organization__chart .chart__team.service .underpart2 p {
    background: #FFD43C;
}
.organization__chart .chart__team.service .underpart2 p {
    position: relative;
}
.organization__chart .chart__team.service .underpart2 p:before {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background: #FFD43C;
    position: absolute;
    top: -10px;
}
.organization__chart .chart__team.service .part {}
.organization__chart .chart__team.support h3 {
    border-radius: 10px;
    background: linear-gradient(180deg, #7E7B7B 0%, #616161 100%);
}
.organization__chart .chart__team .part,
.organization__chart .chart__team .underpart2 p {
    font-family: var(--font-type2);
    font-weight: bold;
}

.chart__bg {
    background: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.chart__bg__circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.chart__bg__circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(119, 119, 119, 0.2);
    animation: circlesAnimate 25s linear infinite;
    bottom: -150px;
}

.chart__bg__circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.chart__bg__circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.chart__bg__circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.chart__bg__circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.chart__bg__circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.chart__bg__circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.chart__bg__circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.chart__bg__circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.chart__bg__circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.chart__bg__circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
@keyframes circlesAnimate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.company__ci {
    padding: 150px 0;
    text-align: center;
}

.ci__main__logo {
    position: relative;
    padding-bottom: 50px;
}

.ci__achromatic__logo {
    padding: 50px 0;
    border-top: 1px solid #eee;
    /* border-bottom: 1px solid #ddd; */
    position: relative;
}
.ci__achromatic__logo .logobox__outer,
.ci__main__logo .logobox__outer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.ci__achromatic__logo .logobox__outer .logobox,
.ci__main__logo .logobox__outer .logobox {
    width: 100%;
    max-width: 445px;
}
.ci__achromatic__logo .logobox__outer .logobox h3,
.ci__main__logo .logobox__outer .logobox h3 {
    text-align: left;
    height: 20px;
    font-size: 24px;
    padding-bottom: 40px;
    font-family: var(--font-type1);
}
.ci__achromatic__logo .logobox__outer .logobox .box,
.ci__main__logo .logobox__outer .logobox .box {
    padding: 50px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 446px;
    background: #fff;
    box-shadow: 0 10px 30px 10px rgba(0,0,0,0.05);
    border-radius: 5px;
}
.ci__achromatic__logo .logobox__outer .logobox .box img,
.ci__main__logo .logobox__outer .logobox .box img {
    width: 100%;
}
.ci__achromatic__logo .logobox__outer .logobox.black .box {
    background: #1c1c1b;
}
.ci__achromatic__logo.subcolor {
    padding: 10px 0 50px;
    border-top: 0;
}
.ci__achromatic__logo.subcolor2 .logo__information {
    gap: 50px;
}
.ci__achromatic__logo.subcolor2 .achromatic-text {
    width: 100%;
}
.ci__achromatic__logo.subcolor2  .logo__information .achromatic-color,
.ci__achromatic__logo.subcolor2  .logo__information .main-color {
    width: 120%;
}
.logo__information {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-top: 35px;
}
.logo__information .main-color h4 {
    color: #9453ed;
    font-size: 24px;
    font-family: var(--font-type0);
    padding-bottom: 10px;
}
.logo__information .achromatic-color h4 {
    color: black;
    font-size: 24px;
    font-family: var(--font-type0);
    padding-bottom: 10px;
}
.logo__information .achromatic-color img,
.logo__information .main-color img {
    width: 100%;
}
.logo__information .achromatic-text,
.logo__information .main-text {
    padding-top: 30px;
    padding-left: 20px;
    width: 100%;
}
.logo__information .achromatic-text p,
.logo__information .main-text p {
    word-break: keep-all;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: var(--font-type2);
    line-height: 1.6;
    text-shadow: 1px 1px 2px white;
    font-weight: bold;
}
.logo__information .achromatic-color,
.logo__information .main-color {
    width: 48%;
}
.ci_divider {
    margin: 100px 0 0;
}

.ci__download {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 75px;
}
.orb-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.company__map {
    text-align: center;
    padding: 150px 0;
}
.company__map p {
    font-size: 30px;
}
.map__img {
    max-width: 100%;
}

.company__welfare {
    text-align: center;
    padding: 150px 0;
}
.card-wrap {
    display: block;
    max-width: 47%;
    margin: 0 auto;
}
.card-wrap .card {
    display: block;
    position: relative;
    height: 180px;
    width: 47%;
    /* box-shadow:rgba(0, 0, 0, 0.66) 0 30px 60px 0, inset #333 0 0 0 5px, inset rgba(255, 255, 255, 0.5) 0 0 0 6px; */
    transition-duration: var(--duration);
    margin: 0 auto 90px;
}
.card-wrap .card:nth-child(odd) {
    margin-right: 0;
}
.card-wrap .card:nth-child(even) {
    margin-left: 0;
}
.card-wrap .card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-wrap .card-info {
    padding: 60px 0 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 180px;
    color: #000;
    z-index: 2;
    background: #f9f9f9;
    /* background: linear-gradient(to top, #F9F9F9, #fff); */
    transition-duration: var(--duration);
    text-align: center;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
}
.card-wrap .card-info img {
    height: 70px;
    transition-duration: var(--duration);
    position: absolute;
    top: -30px;
    left: calc(50% - 35px);
}
.card-wrap .card-info h4 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
    font-family: var(--font-type1);
    word-break: keep-all;
    color: #333;
    padding: 0 10px;
}
.card-wrap .card-info p {
    font-size: 17px;
    padding: 10px 20px 0;
    word-break: keep-all;
    line-height: 1.4;
}
.card-wrap .card:hover .card-info img {
    transform: rotateY(180deg);
}

.company__welfare {}

.particletext {
    position: relative;
    display: inline-block;
    font-size: 8vw;
    font-family: var(--font-type1);
    text-align: center;
    text-align: left;
    margin-bottom: 100px;
    margin-top: 100px;
}
.particletext.hearts > .particle {
    opacity: 0;
    position: absolute;
    background-color: rgba(204,42,93,1);
    animation: hearts 3s ease-in infinite;
}
.particletext.hearts > .particle:after,
.particletext.hearts > .particle:before {
    position: absolute;
    content: '';
    border-radius: 100px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(204,42,93,1);
}
.particletext.hearts > .particle:before {
    transform: translateX(-50%);
}
.particletext.hearts > .particle:after {
    transform: translateY(-50%);
}
.particletext.fire > .particle {
    position: absolute;
    background-color: rgba(255,193,7,0.5);
    border-radius: 40px;
    border-top-right-radius: 0;
    animation: fires 0.8s linear infinite;
    transform: rotate(-45deg);
    opacity: 0;
}
.particletext.fire > .particle:before {
    position: absolute;
    content: '';
    top: 60%;
    left: 40%;
    transform: translate(-50%,-50%);
    width: 50%;
    height: 50%;
    border-radius: 40px;
    border-top-right-radius: 0;
    background-color: rgba(251,140,0,0.5);
}
.particletext.confetti > .particle {
    opacity: 0;
    position: absolute;
    animation: confetti 3s ease-in infinite;
}
.particletext.confetti > .particle.c1 {
    background-color: rgba(76,175,80,0.5);
}
.particletext.confetti > .particle.c2 {
    background-color: rgba(156,39,176,0.5);
}

@keyframes hearts {
    0% {
        opacity: 0;
        transform: translate(0, 0%) rotate(45deg);
    }
    20% {
        opacity: 0.8;
        transform: translate(0, -20%) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: translate(0, -1000%) rotate(45deg);
    }
}

@keyframes confetti {
    0% {
        opacity: 0;
        transform: translateY(0%) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    35% {
        transform: translateY(-800%) rotate(270deg);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(2000%) rotate(1440deg);
    }
}
@keyframes fires {
    0% {
        transform: rotate(-70deg) translateY(0%);
    }
    25% {
        transform: rotate(-20deg) translateY(-5%);
        opacity: 1;
    }
    50% {
        transform: rotate(-70deg) translateY(-10%);
    }
    75% {
        transform: rotate(-20deg) translateY(-20%);
    }
    100% {
        transform: rotate(-70deg) translateY(-40%);
        opacity: 1;
    }
}

.welfare__lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 100%;
}
.welfare__lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(0,0,0, 0.05);
    overflow: hidden;
}

.welfare__lines .line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #000000 75%, #000000 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.welfare__lines .line:nth-child(1) {
    margin-left: -25%;
}
.welfare__lines .line:nth-child(3) {
    margin-left: 25%;
}

.welfare__lines .line:nth-child(1):after,
.welfare__lines .line:nth-child(3):after {
    animation-delay: 2.5s;
}
.welfare__lines .line:nth-child(1):after {
    animation-delay: 2s;
}
@keyframes drop {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

/*********************************************

    response

**********************************************/

@media screen and (max-width:1400px) {
    .company__rhaon .text h3 *,
    .company__title,
    .slogan__contents h2,
    .value__contents h2 {
        /* before: font-size:70px; */
        font-size: 50px;
    }
    .slogan__contents .text h3,
    .value__contents h3 {
        /* before: font-size:50px; */
        font-size: 37px;
    }
    .company__rhaon .text p,
    .ideology__items .item h4,
    .ideology__share h4,
    .value__contents .tab .tab__contents .cont h4 {
        /* before: font-size:30px; */
        font-size: 24px;
    }
    .ideology__items .item p,
    .ideology__share .sharebox1 .box,
    .ideology__share .sharebox2 .box .box__inner p {
        /* before: font-size:24px; */
        font-size: 20px;
    }
    .ideology__items {
        gap: 20px;
    }
    .ideology__share .sharebox1 .box {
        width: 140px;
        height: 140px;
    }
    .ideology__share .sharebox1 .box:before {
        top: 30px;
        left: 30px;
    }

    /* 함께 걸어온 길 */
    .company__history h3 {
        font-size: 114px;
    }
    .img__rhaon__circle {
        right: 5%;
    }

    /* CI */
    .logo__information .achromatic-text br,
    .logo__information .main-text br {
        display: none;
    }
    .ci__achromatic__logo .logobox__outer .logobox {
        width: 32.5%;
    }

    /* 복지제도 */
    .card-wrap .card-info h4 {
        font-size:24px;
    }
    .card-wrap .card-info p br{
        display: none;
    }
    .card-wrap .card-info p {
        font-size:14px;
    }
}

@media screen and (max-width:1200px) {
    .company__rhaon .text {
        padding: 0 10px;
    }
    .company__rhaon .text h3 *,
    .company__title,
    .slogan__contents h2,
    .value__contents h2 {
        font-size: 40px;
    }
    .company__rhaon .text p,
    .ideology__items .item h4,
    .ideology__share h4,
    .slogan__contents .text p,
    .value__contents .tab .tab__contents .cont h4,
    .value__contents .tab .tab__contents .cont p {
        font-size: 20px;
    }
    .img__henry {
        width: 200px;
        top: 25px;
    }
    .ideology__share {
        display: block;
    }
    .ideology__share > div {
        width: 100%;
    }
    .ideology__share .sharebox1 {
        margin-bottom: 100px;
    }
    .ideology__share .sharebox1 .box {
        width: 190px;
        height: 190px;
    }
    .ideology__share .sharebox1 .box:before {
        top: 55px;
        left: 55px;
    }
    .ideology__contents {
        padding: 100px 0;
    }
    .value__contents {
        padding: 0 0 100px;
    }
    .company__value {
        padding-top: 100px;
    }
    .value__contents .tab {
        display: block;
    }
    .value__contents .tab .tab__btn button {
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        display: block;
    }
    .value__contents .tab > div {
        width: 100% !important;
    }
    .value__contents .tab .tab__contents {
        padding-left: 50px;
        margin-top: 110px;
    }
    .value__contents .triangles.response1 span:nth-child(3) {
        top: 30px;
        right: 30px;
    }
    .value__contents .triangles.response2 span:nth-child(3) {
        top: 60px;
        right: 60px;
    }
    .value__contents .triangles.response3 span:nth-child(3) {
        top: 30px;
        right: 30px;
    }
    .slogan__contents {
        margin-top: 150px;
    }
    .slogan__contents .text {
        display: block;
        margin-top: 0;
    }
    .slogan__contents .text h3 {
        width: 100%;
    }
    .slogan__contents .text p {
        padding: 0;
        width: 100%;
        margin-top: 10px;
    }
    .img__slogan__children {
        margin-left: auto;
        display: block;
    }
    .slogan__contents .text:before {
        bottom: 50px;
    }

    /* 함께 걸어온 길 */
    .company__history h3 {
        font-size: 91px;
    }
    .company__history .history__list {
        padding-top: 400px;
    }
    .img__rhaon__circle {
        right: -60px;
        bottom: -60px;
        width: 200px;
    }
    .history__list .year__info > li * {
        font-size: 20px;
    }
    .company__history .history__list .year {
        font-size: 80px;
    }
    .history__list .year__info > li > b {
        width: 30px;
    }

    /* 조직도 */
    .organization__chart {
        padding: 0 10px;
    }
    .organization__chart .chart__team h3 {
        font-size: 27px;
    }
    .organization__chart .chart__team .part,
    .organization__chart .chart__team .underpart2 p {
        font-size: 17px;
    }
    .organization__chart .chart__team .part__outer {
        padding: 10px;
    }
    .organization__chart .chart__team .part,
    .organization__chart .chart__team .underpart2 p {
        font-family: var(--font-type2);
        font-weight: bold;
    }
    .organization__chart .chart__team .underpart1 p {
        font-size: 14px;
    }
    .organization__chart {
        gap: 10px;
    }

    .welfare__lines .line:nth-child(1) {
        margin-left:-40%;
    }
    .welfare__lines .line:nth-child(3){
        margin-left: 40%;
    }
    .card-wrap {
        max-width:76%;
    }
}

@media screen and (max-width:768px) {
    .img__rhaon__circle{
        display: none;
    }
    .company__rhaon .text h3 *,
    .company__title,
    .slogan__contents h2,
    .value__contents h2 {
        font-size: 24px !important;
        word-break: keep-all;
    }
    .company__rhaon .text p,
    .ideology__items .item h4,
    .ideology__share h4,
    .slogan__contents .text p,
    .value__contents .tab .tab__contents .cont h4,
    .value__contents .tab .tab__contents .cont p {
        font-size: 14px;
    }
    .ideology__items .item p,
    .ideology__share .sharebox1 .box,
    .ideology__share .sharebox2 .box .box__inner p {
        font-size: 12px;
    }
    .slogan__contents .text h3,
    .value__contents h3 {
        font-size: 20px;
    }
    .company__rhaon .text p br {
        display: none;
    }
    .ideology__items {
        gap: 5px;
    }
    .ideology__items .item {
        padding: 10px 3px;
    }
    .ideology__items .item h4 {
        margin-top: 5px;
    }
    .ideology__share .sharebox1 .box {
        width: 80px;
        height: 80px;
    }
    .ideology__share .sharebox1 .box:nth-child(2) {
        left: -10px;
    }
    .ideology__share .sharebox1 .box:nth-child(3) {
        left: -20px;
    }
    .ideology__share .sharebox1 .box:nth-child(4) {
        left: -30px;
    }
    .ideology__share {
        padding-top: 50px;
    }
    .ideology__share .sharebox1 {
        margin-bottom: 50px;
    }
    .ideology__share .sharebox1 .box:before {
        top: 19px;
        left: 19px;
        width: 40px;
        height: 40px;
    }
    .ideology__share .sharebox2 .box {
        height: 100px;
    }
    .ideology__share .sharebox2 .box:nth-child(2) {
        left: -10px;
    }
    .value__contents .tab .tab__btn button {
        width: 120px;
        font-size: 17px;
    }
    .value__contents .tab .tab__btn button:nth-child(2) {
        left: 60px;
    }
    .value__contents .tab .tab__btn button:nth-child(3) {
        left: 120px;
    }
    .value__contents .tab .tab__contents {
        padding-left: 0;
        margin-top: 70px;
    }
    .value__contents .tab .tab__contents:before {
        height: 150px;
        left: 0;
        top: 50px;
    }
    .value__contents .tab .tab__contents:after {
        height: 150px;
        top: -80px;
    }
    .value__contents .triangles.response1 span:nth-child(2) {
        top: -150px;
        left: 0;
    }
    .value__contents .triangles.response2 span:nth-child(2) {
        top: -150px;
        left: 50px;
    }
    .value__contents .triangles.response3 span:nth-child(2) {
        top: -200px;
        left: 0;
    }
    .value__contents .triangles.response3 span:nth-child(1) {
        top: 50px;
        left: 130px;
    }
    .slogan__contents {
        margin-top: 100px;
    }
    .img__slogan__children {
        width: 100px;
    }
    .slogan__contents .text:before {
        left: 60px;
        bottom: 0;
        height: 150px;
    }
    .company__value {
        padding-top: 50px;
    }

    /* 함께 걸어온 길 */
    .company__history {
        padding-left: 0 !important;
    }
    .company__history h2 {
        left: 50px;
        top: 120px;
    }
    .company__history h3 {
        font-size: 46px;
        top: 150px;
        left: 50px;
    }
    .company__history .history__list:before {
        width: 40px;
    }
    .company__history .history__list .year {
        font-size: 30px;
        width: 30px;
        padding-left: 5px;
    }
    .company__history .history__list {
        padding-top: 250px;
    }
    .history__list .year__info {
        padding-left: 20px;
    }
    .history__list .year__info > li * {
        font-sizE: 14px;
    }
    .history__list .year__info {
        padding-top: 0;
        margin-bottom: 40px;
    }
    .history__list .year__info > li > b {
        width: 25px;
        margin-right: 5px;
    }
    .history__list .year__info > li {
        margin-bottom: 10px;
    }
    .organization__rhaon {
        width: 90%;
        height: 100px;
    }
    .organization__rhaon img {
        height: 45px;
    }
    .organization__chart {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .organization__chart .chart__team {
        width: calc(32.5% - 5px);
    }

    /* CI 소개 */
    .ci__achromatic__logo .logobox__outer,
    .ci__main__logo .logobox__outer {
        display: block;
    }
    .ci__achromatic__logo .logobox__outer .logobox,
    .ci__main__logo .logobox__outer .logobox {
        margin-bottom: 20px;
    }
    .ci__achromatic__logo .logobox__outer .logobox .box,
    .ci__main__logo .logobox__outer .logobox .box {
        height: 80px;
    }
    .logo__information {
        display: block;
    }
    .logo__information .achromatic-color,
    .logo__information .main-color {
        width: 100%;
    }
    .ci__achromatic__logo .logo__information {
        padding-top: 0;
    }
    .ci__achromatic__logo.subcolor2 .logo__information .achromatic-color:nth-child(2)  {
        margin-top: 50px;
    }
    .logo__information .achromatic-text,
    .logo__information .main-text {
        padding-top: 10px;
        padding-left: 0;
    }
    .ci__achromatic__logo {
        padding: 50px 0;
    }
    .ci__download {
        display: block;
    }
    .ci__download a {
        margin: 0 auto 20px;
    }
    .logo__information .achromatic-color img,
    .logo__information .main-color img {
        max-width: 445px;
    }
    .ci__achromatic__logo .logobox__outer .logobox {
        width: 100%;
    }
    .welfare__lines .line:nth-child(1) {
        margin-left:-45%;
    }
    .welfare__lines .line:nth-child(3){
        margin-left: 45%;
    }
    .card-wrap {
        max-width:84%;
    } 
    .particletext {
        font-size:30px;
        margin-top: 50px;
        margin-bottom: 70px;
    }
    .card-wrap .card-info {
        padding: 30px 0;
        min-height: auto;
    }
    .card-wrap .card-info img {
        height: 50px;
        left: calc(50% - 25px);
    }
    .card-wrap .card-info h4 {
        font-size:17px;
        padding: 0 5px;
    }
    .card-wrap .card{
        margin:0 auto 40px;
    }

    .logo__information .achromatic-text p, .logo__information .main-text p {
        font-size:17px;
    }
    .ci__achromatic__logo .logobox__outer .logobox h3, .ci__main__logo .logobox__outer .logobox h3 {
        font-size:20px;
        padding-bottom:30px;
    }
    .ideology__share .sharebox2 img {
        max-width: 100px;
    }
    .team__logo__marchen {
        position: relative;
        top: 30px;
    }
    .organization__chart .chart__team h3 {
        font-size: 20px;
    }
    .organization__chart .chart__team .part, .organization__chart .chart__team .underpart2 p {
        font-size: 14px;
    }
    .organization__chart .chart__team .underpart1 {
        padding: 10px 5px;
    }
}
