/********** Template CSS **********/

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HSBombaram21-Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/HSBombaram21-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'iceJaram-Rg';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-2@1.0/iceJaram-Rg.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Giants-Inline';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-1@1.1/Giants-Inline.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream-3Light';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'KBO-Dia-Gothic_bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/KBO-Dia-Gothic_bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'KBO-Dia-Gothic_medium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/KBO-Dia-Gothic_medium.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
:root {
    --primary: rgb(0, 0, 124);
    --secondary: #131313;
    --light: #F1F3FA;
    --dark: #1C2035;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.0rem;
    height: 2.0rem;
    border-radius: 3.5rem;
    background-color: orange;
    border: 15px solid  orange;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(/cel.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

.copyright a:hover {
    color: var(--primary) !important;
}

.container-fluid bg-primary text-white d-none d-lg-flex {
    background: #f12711!important;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f5af19, #f12711)!important;  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f5af19, #f12711)!important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

@media (max-width: 768px) {
    .carousel-caption {
        text-align: center;
    }

    .col-lg-7 text-start {
        text-align: center;
    }


}

@media (max-width: 768px) {
    .col-lg-7 {
        text-align: center; /* 텍스트 가운데 정렬 */
    }
}

.carousel-control-prev,
.carousel-control-next {
    display: none; /* 숨기기 */
}





/* .scroller {
    max-width: 600px;
  }
  
  .scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
      90deg,
      transparent,
      white 20%,
      white 80%,
      transparent
    );
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  }
  
  .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s)
      var(--_animation-direction, forwards) linear infinite;
  }
  
  .scroller[data-direction="right"] {
    --_animation-direction: reverse;
  }
  
  .scroller[data-direction="left"] {
    --_animation-direction: forwards;
  }
  
  .scroller[data-speed="fast"] {
    --_animation-duration: 20s;
  }
  
  .scroller[data-speed="slow"] {
    --_animation-duration: 60s;
  }
  
  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }
  
  .tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
  }
  
  .tag-list li {
    padding: 1rem;
    background: var(--clr-primary-400);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
  }

  .con {
     display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
  } */

  .scroller {
    max-width: 100%;
    margin: 0 auto; /* 가로 중앙 정렬을 위해 추가 */
  }
  
  .scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: none; /* 그라데이션 마스크 제거 */
    mask: none;
  }
  
  .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 10s)
      var(--_animation-direction, forwards) linear infinite;
  }
  
  .scroller[data-direction="right"] {
    --_animation-direction: reverse;
  }
  
  .scroller[data-direction="left"] {
    --_animation-direction: forwards;
  }
  
  .scroller[data-speed="fast"] {
    --_animation-duration: 20s;
  }
  
  .scroller[data-speed="slow"] {
    --_animation-duration: 20s;
  }
  
  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }
  
  .tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
  }
  
  .tag-list li {
    padding: 1rem;
    background: var(--clr-primary-400);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
  }

.ji {
    min-height: 50vh;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fade 1s ease-in;
}

.faq {
    width: 100%;
    max-width: 1000px;
    border-bottom: 2px solid gray;
    margin-top: 2rem;
    padding-bottom: 1rem;
    cursor: pointer;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: left;
}

.question h3 {
    font-size: 1.5rem !important;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.0s ease;
}

.answer p {
    padding-top: 1rem;
    line-height: 1.5;
    font-size: 1.3rem;
}

.faq.active .answer {
    max-height: 300px;
    animation: fade 1s ease-in-out;
}

.faq.active svg {
    transform: rotate(180deg);
}

svg {
    transition: transform 0.5s ease-in;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.menu {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.container-xxl {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

.text-center {
    text-align: center;
}



@media (max-width: 576px) {
    .container-xxl {
        padding-right: 0px;
        padding-left: 0px;
    }
}

#aaa img {
    width: 150px;
}
#aaa {
    margin-bottom: 20px;
}

#bbb img, #ccc img{
    object-fit: cover; /* 이미지를 부모 요소에 맞게 조절하고, 비율을 유지함 */
    width: 50%; /* 부모 요소에 가득 차도록 설정 */
    height: 50%; /* 부모 요소에 가득 차도록 설정 */
    max-width: 70px;
    max-height: auto;
}

@media (max-width: 576px) {
    .row.g-4 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .col-lg-4, .col-md-6, .col-6 {
        padding-right: -15px;
        padding-left: -15px;
        padding-top: -15px;
        padding-bottom: -15px;
    }
    .service-item .project-item {
        padding: -20px;
    }
    .service-item img {
        width: 100%;
    }
    /* .service-item .p-4 {
        text-align: center;
    } */
    /* .service-item a.d-block {
        font-size: 0.9rem;
        margin-bottom: -10px;
        margin-top: -10px;
        
    } */
    /* .service-item span {
        display: none;
        } */
    #a, #b, #c, #d, #e, #f{
        display: none!important;
    }
    .col-6 {
        margin-bottom: -50px;
    }



}

.col-lg-4, .col-md-6 {
    margin-bottom: -50px;
}

#caca img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* 테두리를 둥글게 하는 속성 */

}

#caca .carousel-caption {    
    color: white; /* 텍스트 색상 */
    padding: 20px; /* 캡션 내부 여백 */
    border-radius: 10px; /* 테두리를 둥글게 하는 속성 */

}

.logos {
    max-width: 150px
}

.logoss {
    max-width: 120px;
}

.con1 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.scroller {
    padding: 0;
    width: 100%;
}

.scroller__inner {
    display: flex;
    gap: 10px; /* 이미지 간격 조절 (원하는 간격으로 조절 가능) */
    justify-content: center;
    align-items: center;
}

/* 이미지 레이아웃을 조정하는 스타일 */
.project-item {
    overflow: hidden;
}

/* 이미지에 대한 스타일 조정 */
.project-item img {
    object-fit: cover;
    object-position: center; /* 이미지를 중앙에 맞춤 */
    max-height: 400px; /* 이미지 높이를 부모 요소에 맞게 조절 */
    width: 100%; /* 이미지 너비를 부모 요소에 맞게 조절 */
}

/* 레터박스에 대한 스타일 조정 */
.p-4 {
    padding: 20px; /* 필요에 따라 조절하세요. */
    background: rgba(255, 255, 255, 0.7); /* 반투명한 흰 배경 */
}

/* 로고에 대한 스타일 조정 */
.project-overlay img {
    max-width: 80%; /* 이미지의 최대 너비를 부모 요소에 맞게 조절 */
    height: auto;
}

.imgimg {
    display: block;
    margin-top: 50px;
    width: 100%;
    border-radius: 15px;
    transition: opacity 0.5s ease-in-out; /* 트랜지션 효과 */
}

#transitionImage {
    width: 100%;
}

/* 모바일 화면에 대한 미디어 쿼리 */
@media only screen and (max-width: 767px) {
    #transitionImage {
        width: 100%;
    }
}




.swiper {
width: 100%;
height: 100%;
}

.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}

.swiper-slide img {
display: block;
max-width: 100%;
object-fit: cover;
border-radius: 15px;
}

.swiper {
margin-left: auto;
margin-right: auto;
}

/* 기본 스타일 */
.mySwipers img {
    border-radius: 0px;
}

/* 데스크탑 스타일 */
@media (min-width: 1400px) {
    .mySwipers img {
        max-width: 275px;
    }
}
@media (max-width: 1400px) {
    .mySwipers img {
        max-width: 200px;
    }
}
/* 모바일 스타일 */
@media (max-width: 999px) {
    .mySwipers img {
        max-width: 200px;
    }
}
@media (max-width: 670px) {
    .mySwipers img {
        max-width: 145px;
    }
}

@media (max-width: 415px) {
    .mySwipers img {
        max-width: 130px;
    }
}


/* 기본 스타일 */
.mySwiperst img {
    border-radius: 0px;
}

/* 데스크탑 스타일 */
@media (min-width: 1400px) {
    .mySwiperst img {
        max-width: 210px;
    }
}
@media (max-width: 1400px) {
    .mySwiperst img {
        max-width: 200px;
    }
}

@media (max-width: 1250px) {
    .mySwiperst img {
        max-width: 150px;
    }
}
/* 모바일 스타일 */
@media (max-width: 910px) {
    .mySwiperst img {
        max-width: 130px;
    }
}
@media (max-width: 670px) {
    .mySwiperst img {
        max-width: 115px;
    }
}

@media (max-width: 460px) {
    .mySwiperst img {
        max-width: 106px;
    }
}

@media (max-width: 400px) {
    .mySwiperst img {
        max-width: 90px;
    }
}

/* 기본 스타일 */
.mySwiperss img {
    border-radius: 0px;
}

/* 데스크탑 스타일 */
@media (min-width: 1400px) {
    .mySwiperss img {
        max-width: 275px;
    }
}
@media (max-width: 1400px) {
    .mySwiperss img {
        max-width: 200px;
    }
}
/* 모바일 스타일 */
@media (max-width: 999px) {
    .mySwiperss img {
        max-width: 200px;
    }
}
@media (max-width: 670px) {
    .mySwiperss img {
        max-width: 145px;
    }
}

@media (max-width: 415px) {
    .mySwiperss img {
        max-width: 130px;
    }
}

swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
  }

  swiper-slide img {
    display: block;
    width: 100%;
  }

  .hd {
    font-family: 'GmarketSansMedium';
    line-height: 2.0;
  }

  #hf{
    font-family: 'GmarketSansBold';
    font-size: 2.2rem;
    letter-spacing: -2px;
    color: rgb(0, 0, 124);;
  }

u {
    text-decoration: none;
    display: inline;
    box-shadow: inset 0 -10px 0 hsla(201, 100%, 68%, 0.93); 
}

@media (min-width: 1400px) {
    #tr img {
        max-width: 500px;
        border-radius: 15px;
    }
}
@media (max-width: 1400px) {
    #tr img {
        max-width: 400px;
        border-radius: 15px;
    }
}
@media (max-width: 1200px) {
    #tr img {
        max-width: 350px;
        border-radius: 15px;
    }
}
@media (max-width: 1050px) {
    #tr img {
        max-width: 300px;
        border-radius: 15px;
    }
}
/* 모바일 스타일 */
@media (max-width: 888px) {
    #tr img {
        max-width: 250px;
    }
}
@media (max-width: 670px) {
    #tr img {
        max-width: 380px;
    }
}

.image-background {
    background-image: url('/img/middle.png'); /* 이미지 경로 */
    background-size: cover; /* 이미지가 div를 완전히 덮도록 설정 */
    background-position: center; /* 이미지가 중앙에 위치하도록 설정 */
    height: 400px; /* 기본 높이 설정 (데스크탑) */
}

.Image {
    background-image: url('/img/cover.png'); /* 이미지 경로 */
    width: 100%;
    height: auto;
}

/* 모바일 화면에서의 높이 조정 */
@media (max-width: 768px) {
    .image-background {
        height: 250px;
    }
}

#trx img {
    width: 400px;
    padding: 30px;
    margin-top: -20px;
}

@media (max-width: 768px) {
    #trx img {
        padding: 20px;
        margin-top: -20px;
    }
    }

@media (min-width: 768px) {
    #hee {
        display: none;
    }
}

.hhh {
    max-width: 900px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hhh {
        display: none;
    }
}

.hii {
    font-size: 1rem;
}

.hiii {
    font-size: 1.5rem;
}

.imessage {
    background-color: #fff;
    border: 1px solid #e5e5ea;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    font-family: "SanFrancisco";
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    max-width: 600px;
    padding: 0.5rem 1.5rem;
  }
  
  .imessage p {
    border-radius: 1.15rem;
    line-height: 1.25;
    max-width: 75%;
    padding: 0.5rem .875rem;
    position: relative;
    word-wrap: break-word;
  }
  
  .imessage p::before,
  .imessage p::after {
    bottom: -0.1rem;
    content: "";
    height: 1rem;
    position: absolute;
  }
  
  p.from-me {
    align-self: flex-end;
    background-color: #248bf5;
    color: #fff; 
  }
  
  p.from-me::before {
    border-bottom-left-radius: 0.8rem 0.7rem;
    border-right: 1rem solid #248bf5;
    right: -0.35rem;
    transform: translate(0, -0.1rem);
  }
  
  p.from-me::after {
    background-color: #fff;
    border-bottom-left-radius: 0.5rem;
    right: -40px;
    transform:translate(-30px, -2px);
    width: 10px;
  }
  
  p[class^="from-"] {
    margin: 0.5rem 0;
    width: fit-content;
  }
  
  p.from-me ~ p.from-me {
    margin: 0.25rem 0 0;
  }
  
  p.from-me ~ p.from-me:not(:last-child) {
    margin: 0.25rem 0 0;
  }
  
  p.from-me ~ p.from-me:last-child {
    margin-bottom: 0.5rem;
  }
  
  p.from-them {
    align-items: flex-start;
    background-color: #e5e5ea;
    color: #000;
  }
  
  p.from-them:before {
    border-bottom-right-radius: 0.8rem 0.7rem;
    border-left: 1rem solid #e5e5ea;
    left: -0.35rem;
    transform: translate(0, -0.1rem);
  }
  
  p.from-them::after {
    background-color: #fff;
    border-bottom-right-radius: 0.5rem;
    left: 20px;
    transform: translate(-30px, -2px);
    width: 10px;
  }
  
  p[class^="from-"].emoji {
    background: none;
    font-size: 2.5rem;
  }
  
  p[class^="from-"].emoji::before {
    content: none;
  }
  
  .no-tail::before {
    display: none;
  }
  
  .margin-b_none {
    margin-bottom: 0 !important;
  }
  
  .margin-b_one {
    margin-bottom: 1rem !important;
  }
  
  .margin-t_one {
    margin-top: 1rem !important;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* general styling */
  @font-face {
    font-family: "SanFrancisco";
    src:
      url("https://cdn.rawgit.com/AllThingsSmitty/fonts/25983b71/SanFrancisco/sanfranciscodisplay-regular-webfont.woff2") format("woff2"),
      url("https://cdn.rawgit.com/AllThingsSmitty/fonts/25983b71/SanFrancisco/sanfranciscodisplay-regular-webfont.woff") format("woff");
  }
  
  body {  
    font-family: -apple-system, 
      BlinkMacSystemFont, 
      "Segoe UI", 
      Roboto, 
      Oxygen-Sans, 
      Ubuntu, 
      Cantarell, 
      "Helvetica Neue", 
      sans-serif;
    font-weight: normal;
    margin: 0;
  }
  
  .containers {
    margin: 0 auto;
    max-width: 600px;
    padding: 1rem;
  }
  
  .comment {
    color: #222;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 100%;
    padding: 0;
  }
  
    .containers {
      padding: 1rem;
    }
  
    .imessage {
      font-size: 1.05rem;
      margin: 0 auto 1rem;
      max-width: 700px;
      padding: 0.25rem 0.875rem;
      border-radius: 20px;
    }
  
    .imessage p {
      margin: 0.5rem 0;
    }

    .custom-image-overlay-container {
        position: relative;
        max-width: 100%;

    }
    
    .custom-image-overlay-container img {
        width: 100%;
        height: auto; 
        display: block; /* 이미지가 인라인 요소로 처리되지 않도록 설정 */
    }
    
    .custom-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4); /* 반투명 검은색 배경 */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .custom-overlay-text {
        color: white;
        font-size: 20px;
        padding: 15px; /* 텍스트 주변에 여유 공간 추가 */
        text-align: center; /* 텍스트 중앙 정렬 */
    }

    * {
        box-sizing: border-box;
        -webkit-font-kerning: normal;
        font-kerning: normal;
      }
      
      article {
        display: flex;
        flex-flow: column wrap;
        align-content: center;
        justify-content: center;
        margin: 1em auto;
        max-width: 300px;
      }
      
      .paragraphUnderline {
        color: #000;
        position: relative;
        font-size: 35px;
        font-weight: 700;
      }
      
      .paragraphUnderline:after {
        content: '';
        display: flex;
        height: 10px;
        margin-top: -10px;
        background: rgb(255, 136, 0);
        opacity : 0.5;
        width: 100%;
        animation: widthStretch 2s ease;
      }
      
      @keyframes widthStretch {
        from {
          width: 0;
          background: rgb(0, 255, 213)(0, 255, 255);
        }
        to {
          width: 100%;
          background: rgb(255, 136, 0);
        }
      }

.if {
    max-width: 100%;
    border-radius: 20px;
}

#ss img {
    border-radius: 15px;
    max-width: 360px;
}

@media (min-width: 768px) {
    #ss img{
        border-radius: 15px;
        max-width: 800px;
    }
}
@media (min-width: 430px) {
    #ss img{
        border-radius: 15px;
        max-width: 400px;
    }
}
@media (min-width: 430px) {
    #ss img{
        border-radius: 15px;
        max-width: 400px;
    }
}

body {
    width: 100%; /* 가로 너비를 100%로 설정하여 페이지가 확장되지 않도록 함 */
    position: relative; /* 위치를 상대 위치로 설정 */
}

@media screen and (max-width: 768px) {
    body {
        max-width: 100%; /* 최대 가로 너비를 100%로 설정하여 확대되지 않도록 함 */
    }
}


/* 플로팅 버튼 스타일 */
#float-button {
    position: fixed; /* 고정 위치 */
    bottom: 20px; /* 아래에서 20px */
    right: 20px; /* 오른쪽에서 20px */
    z-index: 100; /* 다른 요소 위에 표시 */
  }
  
  #call-button, #email-button {
    display: block;
    margin: 10px;
    padding: 10px;
    background-color: rgb(255, 106, 0); /* 배경색 */
    color: white; /* 글자색 */
    text-align: center;
    border-radius: 25px; /* 둥근 모서리 */
    text-decoration: none; /* 밑줄 없애기 */
  }
  
  #call-button:hover, #email-button:hover {
    background-color: #0056b3; /* 마우스 오버 시 색상 변경 */
  }

.page-header {
    background-size: cover;
    background-position: center;
}

.katering {
    background-image: url('/cover/cover_kater.png');
}

.lent {
    background-image: url('/cover/cover_lent.png');
}

.logo {
    width: 120px;
}

.ddd {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.video {
    text-align: center;
    max-width: 100%;
}

.dds {
    background-color: #000000;
    padding: 0;
    margin: 0;
}


@media (min-width: 550px) {
    .ddd, .ddds, #m3, #m32{
        display: none;
    }
    .ddd2 {
        max-width: 2500px
    }
}
@media (max-width: 1550px) {

    .ddd2 {
        max-width: 1600px
    }
}
@media (max-width: 550px) {
    .ddd2, #m4, .ddda2 {
        display: none;
    }
    .you {
        width: 370px;
        height: 250px;
    }
    .ddd {
        max-width: 100%;
    }
}

.m1 {
    max-width: 450px;
    position: absolute;
    top: -20px; /* 겹치게 하고 싶은 위치에 따라 조절하세요 */
    left: -80px; /* 겹치게 하고 싶은 위치에 따라 조절하세요 */
}

.m2 {
    width: 470px;
    position: absolute;
    top: 550px; /* 겹치게 하고 싶은 위치에 따라 조절하세요 */
    right: -50px; /* 겹치게 하고 싶은 위치에 따라 조절하세요 */
}



@media (max-width: 1500px) {
.m1 {
    width: 300px;
}
.m2 {
    width: 330px;
    top: 700px;
}
}

@media (max-width: 880px) {
    .m1 {
        width: 250px;
    }
    .m2 {
        width: 220px;
        top: 750px;
    }
    }

@media (max-width: 720px) {
    .m1 {
        width: 200px;
    }
    .m2 {
        width: 180px;
        top: 750px;
    }
    }

@media (max-width: 550px) {
    .m1 {
        width: 165px;
        left: -40px;
    }
    .m2 {
        width: 175px;
        top: 445px;
        right: -30px;
    }
    }

@media (max-width: 400px) {
    .m1 {
        width: 155px;
        left: -40px;
    }
    .m2 {
        width: 170px;
        top: 405px;
        right: -30px;
    }
    }

@media (min-width: 550px) {
    .you {
        width: 500px;
        height: 300px;
    }
    }

.m1, .m2 {
    animation: moveUpDown 2s infinite alternate; /* 5초 간격으로 반복하면서 위아래로 번갈아가며 움직임 */
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0); /* 최초 위치 */
    }
    50% {
        transform: translateY(7px); /* 중간 위치 (위로 이동) */
    }
    100% {
        transform: translateY(0); /* 최종 위치 (다시 원래 위치로) */
    }
}

.dss {
    padding: 0;
}

.maintxt {
    font-family: 'KBO-Dia-Gothic_medium';
    color: rgb(246, 123, 9);
}

.maintxt2 {
    font-family: 'KBO-Dia-Gothic_bold';
}
.maintxt3 {
    font-family: 'KBO-Dia-Gothic_bold';
    color: rgb(246, 123, 9);
}

.back {
    background-color: #ffffff;
}

.dsd {
    position: relative; /* 이미지의 기준이 될 부모 요소 */
    width: 100%;
    padding: 0;
}

#m3 {
    max-width: 100%;
    position: absolute;
    top: 295px;
}

#m4 {
    position: absolute;
    max-width: 100%;
    bottom: -90px;
    left: -420px;
    z-index: 1000;
}

#m42 {
    position: absolute;
    width: 450px;
    bottom: 260px;
    left: 590px;
    z-index: 1000;
}

@media (max-width: 430px) {
#m3 {
    top: 380px;
}
    }

    .menu-info {
        position: relative;
        text-align: center;
    }
    
    .menu-name {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1rem;
        color: #EEEEEE;
    }

    html, body {
        overflow-x: hidden;
    }
    
    body {
        overflow: hidden;
    }


@media (min-width: 550px) {
    .s1, .over {
        display: none;
    }
    }

.hj, .hj2 {
    position: absolute;
    bottom: -20px;
    padding: 0;
    margin: 0;
}

#ov {
    position: absolute;
    color: #EEEEEE;
}

.fixed-image {
    position: fixed;
    top: 50%; /* 화면 세로 중앙에 위치 */
    left: 50%; /* 화면 가로 중앙에 위치 */
    transform: translate(-50%, -50%); /* 화면 중앙 정렬 */
    z-index: 999; /* 다른 요소 위로 겹치도록 설정 */
}

.ban {
	width: 100%;
    position: fixed;
    
}

@media only screen and (max-width: 600px) {
    .image-contain {
        display: none;
    }
    }

    .ddds {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

.dp {
    position: absolute;
    color: white;
    text-align: center;
    font-size: 2rem;
    font-family: 'KBO-Dia-Gothic_medium';
    top: 30%;
    line-height: 4.2rem;
}


.ssd img, .ssda img {
    border-radius: 0;
}

@media (max-width: 550px) {
    .ban, .dp, .im, #das, #dfd  {
        display: none;
    }
    .ssd img {
        max-width: 220px;
        height: 200px;
        border-radius: 0;
    }
    .ssda img {
        max-width: 290px;
        height: 330px;
        border-radius: 0;
    }
}

@media (max-width: 400px) {
    .ssda img {
        max-width: 290px;
        height: 290px;
        border-radius: 0;
    }
}
.da {
    position: relative;
}

.over {
    position: absolute;
    width: 170px;
    z-index: 999;
    top: 30%;
    animation: fadeInAndGrow 1s ease forwards; /* 애니메이션 적용 */
    opacity: 1; /* 초기에 투명도를 0으로 설정하여 숨깁니다 */
    animation: moveUpDown 2s infinite alternate; /* 5초 간격으로 반복하면서 위아래로 번갈아가며 움직임 */

}

.vr {
    position: absolute;
    top: 330px;
    color: #EEEEEE;
    border: rgba(244, 130, 0, 0.973) solid;
    border-radius: 22px;
    padding: 12px;
    background-color: rgba(244, 130, 0, 0.973);
    font-family: 'KBO-Dia-Gothic_medium';
    font-size: 1.3rem;
    animation: moveUpDown 2s infinite alternate; /* 5초 간격으로 반복하면서 위아래로 번갈아가며 움직임 */
    z-index: 1000;
}

@media (max-width: 391px) {
 .vr{
    top: 283px;
 }
 #m3 {
    top: 330px;
}
#m32 {
    width: 240px;
}
}

@media (min-width: 475px) {
    .vr{
       top: 370px;
    }
   }
@media (min-width: 508px) {
.vr{
    top: 440px;
}
}

@media (min-width: 1400px) {
.vr{
    top: 440px;
}
}


@media (min-width: 1550px) {
.vr{
    top: 540px;
}
}


@media (min-width: 1080px) {
    .hj {
        width: 1200px;
        height: 220px;
    }
    .hj2 {
        width: 1200px;
        height: 270px;
    }
    #asa, #asaa {
        width: 600px;
    }
}


@media (min-width: 1200px) {
    .hj {
        width: 1400px;
        bottom: -70px;
        height: 250px;
    }
    .hj2 {
        width: 1400px;
        height: 290px;
    }
}

@media (min-width: 1400px) {
    .hj {
        width: 1600px;
        bottom: -30px;
        height: 280px;
    }
    .hj2 {
        width: 1600px;
        height: 300px;
    }
    #asa {
        width: 800px;
    }
}

@media (min-width: 1600px) {
    .hj {
        width: 2000px;
        bottom: -30px;
        height: 280px;
    }
    .hj2 {
        width: 2000px;
        height: 400px;
    }
}

.d {
    position: absolute;
    width: 220px;
    top: 100px;
}

#assd {
    top: 420px;
}

#assd2 {
    top: 640px;
}

.talk {
    position: absolute;
    top: 335px;
    color: #ffffff;
    border: rgba(244, 130, 0, 0.973) solid;
    border-radius: 29px;
    padding: 28px;
    background-color: rgba(244, 130, 0, 0.973);
    font-family: 'KBO-Dia-Gothic_medium';
    font-size: 2.5rem;
    animation: moveUpDown 2s infinite alternate; /* 5초 간격으로 반복하면서 위아래로 번갈아가며 움직임 */
    
    }
    
    .talk :hover { 
        background-color: rgba(244, 195, 0, 0.973);
    }

    .chang {
        top: 350px;
        color: #ffffff;
        border: rgba(244, 130, 0, 0.973) solid;
        border-radius: 29px;
        padding: 10px;
        background-color: rgba(244, 130, 0, 0.973);
        font-family: 'KBO-Dia-Gothic_medium';
        font-size: 1.5rem;
        animation: moveUpDown 2s infinite alternate; /* 5초 간격으로 반복하면서 위아래로 번갈아가며 움직임 */

        }
    
    @keyframes moveUpDown {
        0% {
            transform: translateY(0); /* 최초 위치 */
        }
        50% {
            transform: translateY(7px); /* 중간 위치 (위로 이동) */
        }
        100% {
            transform: translateY(0); /* 최종 위치 (다시 원래 위치로) */
        }
    }
    


@media (max-width: 1550px) {
    .d {
        width: 220px;
        top: 70px;
    }

    #assd {
        top: 290px;
    }
    
    #assd2 {
        top: 500px;
    }
    #m4 {
        position: absolute;
        max-width: 100%;
        bottom: -80px;
        left: -470px;
        z-index: 1000;
    }
    #m42 {
        width: 350px;
        bottom: 200px;
        left: 600px;
        z-index: 1000;
    }
    

}
@media (max-width: 1400px) {
    #m42 {
        width: 350px;
        bottom: 200px;
        left: 490px;
        z-index: 1000;
    }
    .talk {
        top: 245px;
    
        }
}

@media (max-width: 1201px) {
    #m42 {
        width: 300px;
        bottom: 270px;
        left: 480px;
        z-index: 1000;
    }
}

@media (max-width: 550px) {
    .d {
        width: 180px;
        top: 50px;
    }
    #m42 {
        width: 180px;
        bottom: 270px;
        left: 480px;
        z-index: 1000;
    }
}

@media (max-width: 440px) {
    .d {
        width: 130px;
        top: 30px;
    }
    .talk {
        top: 200px;
        border-radius: 29px;
        padding: 28px;
        font-size: 1.8rem;       
        }
}

@media (max-width: 340px) {
    .d {
        width: 120px;
        top: 10px;
    }
}

#aqs {
    position: relative;
}

.ddda2 {
    width: 100%;
    position: absolute;
    z-index: 1111;
}

#m32 {
    position: absolute;
    width: 270px;
    bottom: 170px;
    left: -20px;
}

@media (max-width: 391px) {
    .vr{
       top: 283px;
    }
    #m3 {
       top: 330px;
   }
   #m32 {
       width: 240px;
       bottom: 160px;
   }

   .talk {
    top: 160px;
    border-radius: 29px;
    padding: 28px;
    font-size: 1.4rem;       
    }
   }


   .inquiry-container {
    background-color: #ff8800;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 111000;
}
.inquiry-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 20px;
    border-right: 1.8px solid #000;
}
.inquiry-left div {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
}
.inquiry-left .phone-number {
    font-size: 3rem;
    color: #000;
}
.inquiry-left .sub-text {
    font-size: 1rem;
    color: #000;
}
.inquiry-right {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 20px;
}
.inquiry-right .input-group, .inquiry-right .action-group {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.inquiry-right input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    max-width: 200px;
}
.inquiry-right button {
    padding: 10px 20px;
    background-color: #02007b;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    font-size: 1.5rem;
}
.inquiry-right button:hover {
    background-color: #333;
}
.privacy-policy {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}
.privacy-policy label {
    margin-left: 5px;
}
.privacy-policy a {
    color: red;
    text-decoration: none;
    margin-left: 5px;
}

@media (min-width: 1800px) {
    .inquiry-left div {
        min-width: 1000px;
    }
}

@media (min-width: 1400px) {
    .inquiry-left div {
        min-width: 700px;
    }
}
@media (min-width: 1000px) {
    .inquiry-left div {
        min-width: 500px;
    }

    
}
/* .button-group {
    display: flex;
    gap: 10px;
  }
  .button-group button, .button-group a {
    padding: 10px 20px;
    background-color: #02007b;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    font-size: 1.5rem;
  }
  .button-group a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .button-group button:hover, .button-group a:hover {
    background-color: #0056b3;
  } */
/* 미디어 쿼리로 반응형 디자인 적용 */
@media (max-width: 768px) {
    .inquiry-container {
        height: 110px; /* 높이 제한 */
        padding: 5px; /* 패딩 축소 */
    }
    .inquiry-left {
        padding-right: 5px; /* 패딩 축소 */
        border-right: none;
    }
    .inquiry-left div {
        font-size: 1rem; /* 폰트 크기 축소 */
        min-width: 180px;
        
    }
    .inquiry-left .phone-number {
        font-size: 1.5rem; /* 폰트 크기 축소 */
    }
    .inquiry-left .sub-text {
        font-size: 0.8rem; /* 폰트 크기 축소 */
    }
    .inquiry-right {
        flex-direction: row; /* 행 방향 정렬 */
        padding-left: 5px; /* 패딩 축소 */
    }
    .inquiry-right .input-group, .inquiry-right .action-group {
        flex-direction: row; /* 행 방향 정렬 */
        width: 100%;
        gap: 5px; /* 간격 축소 */
    }
    .inquiry-right input {
        flex: 1;
        padding: 5px; /* 패딩 축소 */
        max-width: 80px; /* 최대 너비 제한 */
        font-size: 0.8rem; /* 폰트 크기 축소 */
    }
    .inquiry-right button {
        padding: 5px 10px; /* 패딩 축소 */
        font-size: 0.8rem; /* 폰트 크기 축소 */
    }
    .privacy-policy {
        font-size: 0.7rem; /* 폰트 크기 축소 */
        gap: 3px; /* 간격 축소 */
    }
    .privacy-policy label {
        margin-left: 3px; /* 마진 축소 */
    }
    .privacy-policy a {
        margin-left: 3px; /* 마진 축소 */
    }

    .assaa {
        margin-bottom: 100px!important;
    }
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
.das {
    color: white;
}