* {
  font-family:'Malgun Gothic', dotum, sans-serif !important;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
}
ul {
    margin: 0;
    padding: 0;
}
p {
    margin: 0;
}
a {
    text-decoration: none;
}

img {
    border-radius: 0 !important;
}

@keyframes appear_from_bottom{
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to{
    opacity: 1;
  }
}

.logo-box {
    position: absolute;
    top: 25px;
    left: 30px;
    width: 300px;
}

section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.bg-carousel-box {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}
.bg-carousel-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #eaedea, #eaedea 1%, #eaedeb00);
    /* background: rgba(255, 255, 255, 0.5); */
    z-index: 0;
}
.bg-carousel-box > img {
    position: absolute;
    top: 0;
    left:0;
    /* width: 100%; */
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    opacity: 0;
    animation: display 9s infinite;
}
.bg-carousel-box img:nth-child(2) {
  animation-delay: 3s;
}
.bg-carousel-box img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes display {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  80% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(-10px);
    opacity: 0;
  }
}

.btn-box {
    position: absolute;
    bottom: 50px;
    width: 90%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
}
.btn-link {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 14pt;
    font-weight: bold;
    transition: all 0.3s ease;
}


@media(max-width:624px) {
    img {
        width: auto !important;
        max-width: unset !important;
        /* height: 100% !important; */
    }
    #bg-pic1 {
        translate: -30%;
        content: url("/www/data/org/org_1.png");
    }
    #bg-pic2 {
        left: 0 !important;
        translate: -42%;
        content: url("/www/data/org/org_11.JPG");
    }
    #bg-pic3 {
        left: 0 !important;
        translate: -22%;
        content: url("/www/data/org/org_8.jpg");
    }
    .logo-box {
        width: 60%;
    }
    .btn-box {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }
    .btn-link {
        width: 80%;
        height: 70px;
        font-size: 18pt;
        font-weight: 600;
    }
}
@media(max-width:1080px) {
    .btn-box {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}