:root {
    /* Green */
  --green-900: #1C2D15;
  --green-800: #243B1C;
  --green-700: #2F4D24;
  --green-600: #3C622E;
  --green-500: #426C33;
  --green-400: #68895C;
  --green-300: #809D76;
  --green-200: #A8BBA1;
  --green-100: #C4D1C0;
  --green-50: #ECF0EB;

  /* Neutral */
  --black: #000000;
  --white: #FFFFFF;
  --Sage_Green: #BCCCA9;
  --Sky_Blue: #5F9CB8;
  --Bright_Orange_500: #FF7C35;
  --Bright_Orange_50: #FFF2EB;
  --Terracotta_Brown_500: #B96337;
  --Terracotta_Brown_50: #F6EFEB;
  --Powder_Pink_500: #EE9CA5;
  --Powder_Pink_50: #FDF5F6;
  --Cobalt_Blue_500: #4788DD;
  --Cobalt_Blue_50: #E9EEF8;
  --Footer_Green1: #43513E;
  --Footer_Green2: #2A3128;

  /* Grayscale */
  --gray-900: #1B1D1F;
  --gray-800: #26282B;
  --gray-600: #454C53;
  --gray-500: #72787F;
  --gray-400: #9EA4AA;
  --gray-200: #C9CDD2;
  --gray-100: #E8EBED;
  --gray-50: #F7F8F9;

  /* 湲곗뾽 color */
  --yw_color : #FF7C35;
  --pg_color : #B96337;
  --js_color : #EE9CA5;

  /* Semantic */
  --success: #3E7BFD;
  --warning: #FF8539;
  --error: #F6503B;
}


body {}

.wrap {
    width:100%;
    max-width:1480px;
    padding:0 20px;
    margin: 0 auto;
}
h1 {
    font-size:24px;
    font-weight:700;
    color:#333;
    margin-bottom: 16px;
}

.license_wrap {}
.license_wrap ul {
    display:flex;
    gap: 64px 24px;
    flex-wrap: wrap;
}
.license_list {
    width: 100%;
    max-width:calc(25% - 18px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.license_list .img_box {    
    height:400px;
    background: var(--gray-100);
    border-radius: 40px;
    border:10px solid var(--gray-50);
    position:relative;
    display:flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.license_list .img_box .license_img {
    width: 100%;
    max-width:75%;
    height: 100%;
    max-height: 85%;
    object-fit: contain;
}
.license_list .img_box .zoom_btn {
    position:absolute;
    bottom:16px;
    right:16px;
    width:54px;
    height:54px;
    background: var(--white);
    border:1px solid var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}
.license_list .img_box .zoom_btn img {
    transition: 0.3s;
}
.license_list .img_box .zoom_btn:hover {
    background: var(--gray-200);
}
.license_list .img_box .zoom_btn:hover img {    
    animation: show2 0.3s forwards cubic-bezier(0.2, 0.46, 0.21, 1.45);
}
.license_list .txt_box {
    text-align: center;
}
.license_list .txt_box span {    
    font-size:16px;
    color:var(--gray-600);
}

@keyframes show2 { 
    0%   {transform: scale(0.5);}    
    100% {transform: scale(1);}
}

:root {
    --modal-height: 100px;
}


.zoom_modal_wrap {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(30, 40, 55, 0);
    backdrop-filter: blur(0px);    
    visibility: hidden;
    transition: 0.1s;
    z-index: 200;
}
.zoom_modal_wrap.show {
    visibility:visible;
    background:rgba(30, 40, 55, 0.8);
    backdrop-filter: blur(10px);    
}
.zoom_modal_wrap.close {
    visibility: hidden;
}
.zoom_modal_box {
    width:100%;
    height:100%;
}
.zoom_header {
    position: fixed;
    top: calc(-1 * var(--modal-height));
    width: 100%;
    height: var(--modal-height);
    display: flex;    
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    background:linear-gradient(180deg, #1E2B37, transparent);
    transition: 0.3s cubic-bezier(0, 0.75, 0.33, 0.98);
}
.show .zoom_header {
    top:0;
}

.zoom_header .zoom_tit {
    font-size:24px;
    font-weight:700;
    color:var(--white);    
    width:calc(100% - 64px);    
    line-height: 1.6em;
}

.zoom_header .close_btn {
    width:40px;
    height:40px;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    transition: 0.3s;
}
.zoom_header .close_btn:hover {
    background: var(--error);
}
.zoom_header .close_btn:hover img {
    animation: show2 0.3s forwards cubic-bezier(0.2, 0.46, 0.21, 1.45);
}



#zoom-container {
    width:100%;
    height:100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;    
    position: relative;
}
#zoom-image {
    max-width: none;
    max-height: none;
    width: 640px;
    height: auto;   
    cursor: grab;
    position: absolute;
    margin: 0;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 0.3s, opacity 0.3s;
    will-change: transform;
    object-fit: contain;
    opacity: 0;
}
#zoom-image.load_wait {
    transition: opacity 0.2s;
}
#zoom-image.load_wait2 {
    transition: none;
}
.show #zoom-image {
    opacity: 1;
}

.zoom_toolbar_box {
    position: fixed;
    bottom: calc(-1 * var(--modal-height));
    left: 50%;
    transform: translateX(-50%);
    height: var(--modal-height);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
    transition: 0.3s cubic-bezier(0, 0.75, 0.33, 0.98);
}
.show .zoom_toolbar_box {
    bottom:0;
}
.zoom_toolbar_box ul {
    display:flex;
    gap: 4px;
}

.zoom_toolbar_box ul li {
    border-radius: 20px;
    border:1px solid #ffffff5c;
    background: rgba(27,29,31,0.8);
    backdrop-filter: blur(10px);  
    display:flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    position:relative;    
}
.zoom_toolbar_box ul li .tooltip {
    position: absolute;
    top: -20px;
    background: var(--white);
    width: auto;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 8px;
    transition: 0.2s;
    opacity: 0;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}
.zoom_toolbar_box ul li .tooltip span {
    color:var(--gray-900);
    font-size: 14px;
}
.zoom_toolbar_box ul li:hover .tooltip {
    top:-36px;
    opacity: 1;
}
.zoom_toolbar_box ul .txt {
    width:80px;
    height:54px;
    padding:0 16px;    
    font-size:14px;
    font-weight:500;
    color:var(--white);
}
.zoom_toolbar_box ul .tool_btn {
    width:54px;
    height:54px;
    cursor: pointer;
}
.zoom_toolbar_box ul .tool_btn:hover {
    background: var(--Cobalt_Blue_500);
}
.zoom_toolbar_box ul .tool_btn:hover img { 
    
}
.zoom_toolbar_box ul .tool_btn:active img { 
    animation: show2 0.3s forwards cubic-bezier(0.2, 0.46, 0.21, 1.45);
}


@media (max-width:1023px) {
    :root {
        --modal-height: 80px;
    }
    .zoom_header .zoom_tit {
        font-size:16px;      
    }
}

@media (max-width:1480px) {
    .license_list .img_box {height:350px; border-radius: 30px;}
    .license_wrap ul {gap: 64px 16px;}
    .license_list {max-width: calc(25% - 12px);}
}

@media(max-width : 1240px){
    .license_list .img_box {height:300px;}
  }

@media (max-width:1023px) {
    .license_list .img_box {height:250px; border-radius: 20px; border: 5px solid var(--gray-50);}
    .license_wrap ul {gap: 64px 8px;}
    .license_list {max-width: calc(25% - 6px);}
}

@media(max-width : 768px){
    .license_wrap ul {gap: 54px 12px;}
    .license_list {max-width: calc(33.33% - 8px);}
  }
  
  @media(max-width : 564px){
    .license_list .img_box {height:230px;}
    .license_list {max-width: calc(50% - 6px); gap: 14px;}
    .license_wrap ul {gap: 40px 12px;}
  }
  
  @media(max-width : 350px){
    .license_list .img_box {height:200px;}
    .license_list {max-width: 100%;}
  }