.partner-section{
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 100px;
}
.partner-section .tab-wrap{
    width: 100%;
    display: flex;
    gap: 15px;
    margin: 50px auto 72px;
}
.partner-section .tab-wrap .tab{
    width: 20%;
    border-radius: 8px;
    background: #E9F6FF;
    padding: 10px 28px;
    color: var(--MainColor, #234EEA);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.45px;
    cursor: pointer;
    text-align: center;
}
.partner-section .tab-wrap .tab:hover,
.partner-section .tab-wrap .tab.active{
    background: var(--MainColor, #234EEA);
    color: #fff;
}
.partner-section .tab-container{
    width: 100%;
}
.partner-section .tab-container .tab-area{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.partner-section .tab-container .tab-area .partner-wrap{
    display: flex;
    gap: 20px;
    padding: 30px 40px;
    box-sizing: border-box;
    border: 1px solid #DDD;
    background: #FFF;
    align-items: flex-start;
}
.partner-section .tab-container .tab-area .partner-wrap .img-wrap{
    width: 300px;
    aspect-ratio: 1 / 1;
    background-position: center center !important;
    background-size: contain !important;
    background-repeat: no-repeat;
    /* background: url("../img/partner/partner-img.png"); */
}
.partner-section .tab-container .tab-area .partner-wrap .info-wrap{
    width: calc(100% - 320px);
    padding-left: 24px;
    border-left: 1px solid #DDD;
}
.partner-section .tab-container .tab-area .partner-wrap .info-wrap .label{
    color: #111;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.4px;
    margin-bottom: 4px;
}
.partner-section .tab-container .tab-area .partner-wrap .info-wrap .company{
    color: #111;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.6px;
    margin-bottom: 20px;
}
.partner-section .tab-container .tab-area .partner-wrap .info-wrap .info{
    color: #505050;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 23.2px */
    letter-spacing: -0.4px;
    word-break: keep-all;
}



@media(max-width: 1200px) {
    .partner-section .tab-container .tab-area .partner-wrap {
        padding: 20px 30px;
    }
}
@media(max-width: 1100px) {
    .partner-section .tab-wrap .tab{
        padding: 10px 10px;
    }
    .partner-section .tab-wrap {
        margin: 50px auto 42px;
    }
}
@media(max-width: 900px) {
    .partner-section .tab-wrap .tab{
        font-size: 16px;
    }
    .partner-section .tab-container .tab-area .partner-wrap{
        flex-direction: column;
    }
    .partner-section .tab-container .tab-area .partner-wrap .img-wrap,
    .partner-section .tab-container .tab-area .partner-wrap .info-wrap{
        width: 100%;
    }
    .partner-section .tab-container .tab-area .partner-wrap .info-wrap{
        border-left: none;
        padding-left: 0;
    }
}
@media(max-width: 768px) {
    .partner-section .tab-wrap .tab {
        font-size: 14px;
        padding: 10px 0px;
    }
}
@media(max-width: 650px) {
    .partner-section .tab-wrap{
        gap: 5px;
        margin: 30px auto 20px;
    }
    .partner-section .tab-wrap .tab {
        font-size: 13px;
        padding: 10px 0px;
    }
}
@media(max-width: 480px) {
    .partner-section .tab-wrap .tab {
        font-size: 11px;
        padding: 8px 0px;
    }
    .partner-section .tab-container .tab-area .partner-wrap {
        padding: 20px 15px;
    }
    .partner-section .tab-container .tab-area .partner-wrap .info-wrap .label{
        font-size: 15px;
    }
    .partner-section .tab-container .tab-area .partner-wrap .info-wrap .company{
        font-size: 20px;
    }
    .partner-section .tab-container .tab-area .partner-wrap .info-wrap .info{
        font-size: 14px;
    }
}
