/* 浜烘墠浠峰€兼彁鍗囬〉闈笓鐢ㄦ牱寮� */
i{
    font-style: normal;
}
/* 涓绘í骞呭尯鍩� */
.talent-enhancement-hero {
    background: url('../image/talent-redemption/talimpback.png') center/cover no-repeat;

    background-size: 100% 100%;
    padding: 0 8vw;
    height: 55vh;
    position: relative;
}
.talent-enhancement-banner {
    background: url('../image/talent-redemption/top-banner.png') center/cover no-repeat;

    background-size: 100% 100%;
    padding: 0 8vw;
    height: 55vh;
    position: relative;
}

/* 绉婚櫎鍘熸湁鐨勭綉鏍艰儗鏅紝浣跨敤鍥剧墖鑳屾櫙 */

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
    min-height: 50vh;

    max-width: 100%;
    margin: 0 auto;
    gap: 4vw;
}

.hero-left {
    width: 100%;
    flex: 1;
    color: white;
    position: relative;
    margin-bottom: 10vh;
}

.hero-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 1vh;
}

.star {
    font-size: 1.5vw;
    color: #ffd700;
    animation: twinkle 2s infinite;
}

.star:nth-child(2) {
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    animation-delay: 1s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 2.5vw;
    font-weight: 700;
    margin: 0 0 0 11vh;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-arrows {
    display: flex;
    gap: 12px;
    margin: 1vh 0;
}

.arrow {
    font-size: 1.5vw;
    color: #ffd700;
    animation: slideRight 1.5s infinite;
}

.arrow:nth-child(2) {
    animation-delay: 0.3s;
}

.arrow:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(10px);
        opacity: 0.7;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.5vw;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 300;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 40vh;
}

.hero-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    align-self: flex-end;
}

.hero-graphics {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 鏁版嵁鍥捐〃 */
.chart-container {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 200px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.chart-screen {
    padding: 15px;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: space-around;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, #4CAF50, #8BC34A);
    border-radius: 2px 2px 0 0;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }

    to {
        height: var(--height, 60%);
    }
}

/* 浜戝浘鏍� */
.cloud-icon {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 3vw;
    color: rgba(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* 绗旇鏈數鑴� */
.laptop-icon {
    position: absolute;
    bottom: 20%;
    right: 30%;
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.laptop-screen {
    width: 100%;
    height: 70%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin: 8px;
    position: relative;
    overflow: hidden;
}

.laptop-chart {
    width: 100%;
    height: 100%;
    position: relative;
}

.line-chart {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #2196F3, #FF9800);
    border-radius: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* 鏈哄櫒浜哄浘鏍� */
.robot-icon {
    position: absolute;
    bottom: 10%;
    left: 20%;
    font-size: 2.5vw;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* 杩炴帴绾� */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 1px;
    animation: flow 3s linear infinite;
}

.line-1 {
    top: 30%;
    left: 0;
    right: 0;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    left: 0;
    right: 0;
    animation-delay: 1s;
}

.line-3 {
    top: 80%;
    left: 0;
    right: 0;
    animation-delay: 2s;
}

@keyframes flow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* 浜烘墠浠峰€兼彁鍗囬€氶亾鍖哄煙 */
.talent-enhancement-channels {
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    padding: 8vh 8vw;
    position: relative;
    min-height: 50vh;
    /* background-image: url('../image/talent-improve/talimpback2.png'); */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.talent-enhancement-channels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="city" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 20 L 5 15 L 10 18 L 15 12 L 20 20" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23city)"/></svg>'); */
    opacity: 0.3;
    /* z-index: 1; */
}

.talent-enhancement-channels::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30vh;
    top: 91%;
    background-image: url('../image/talent-improve/talimpback2.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0.8;
}

.channels-header {
    display: flex;
    align-items: center;
    margin-bottom: 6vh;
    position: relative;
    z-index: 2;
}

.channels-icon {
    font-size: 2vw;
    margin-right: 1vw;
    color: #1976d2;
}

.channels-title {
    margin-left: 10px;
    font-size: 1.3vw;
    font-weight: 700;
    color: #333;
}

.channels-grid {
    width: 91%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
    place-items: center;
    position: relative;
    z-index: 2;
    margin-left: 3.7vw;
}

.channel-card {
    background: url('../image/talent-redemption/topbackimg.png') center/cover no-repeat;
    border-radius: 1vw;
    width: 100%;
    /* padding: 3vh 2vw; */
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.channel-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(90deg, rgba(82, 174, 235, 1) 0%, rgba(15, 143, 255, 1) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;

    .card-title-img {
        display: none;
    }

    .card-title-whiteimg {
        display: block;
        width: 20px;
        height: 20px;
        margin-left: 5px;
    }

    .card-title-button {
        color: #ffffff;
    }
}

.channel-card .card-title:hover {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.channel-card .card-title {
    /* color: black; */
    text-shadow: none;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}


.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.channel-card:hover .card-icon {
    transform: scale(1.1);
}

.channel-card:hover .card-button {
    opacity: 1;
    visibility: visible;
}

.card-icon {
    margin-bottom: 2vh;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.card-logo {
    width: 6vw;
    height: 6vw;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.card-title {
    font-size: 1.4vw;
    font-weight: 600;
    /* color: #333; */
    margin: 0;
    margin-top: 20px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.card-title锛歨over {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}


.card-button:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.1);
}

.button-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* 鑱屼笟鎶€鑳藉煿璁浘鏍� */
.icon-folder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.folder-chart {
    position: relative;
    width: 40px;
    height: 40px;
}

.pie-chart {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: conic-gradient(#fff 0deg 120deg, rgba(255, 255, 255, 0.3) 120deg 360deg);
    position: absolute;
    top: 0;
    left: 0;
}

.bar-chart-mini {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 20px;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0.7));
    border-radius: 2px;
}

/* 瀛﹀巻鎻愬崌鍩硅鍥炬爣 */
.icon-money {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #FFC107);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.money-bag {
    font-size: 2.5vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.money-chart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 15px;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0.7));
    border-radius: 2px;
}

/* 鍛樺伐鍩硅鍥炬爣 */
.icon-gear {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9C27B0, #E91E63);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.gear-icon {
    font-size: 2.5vw;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.trend-line {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 25px;
    height: 2px;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.7));
    border-radius: 1px;
}

.trend-line::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #fff;
}

/* 绠＄悊鍜ㄨ鍥炬爣 */
.icon-documents {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #607D8B, #90A4AE);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(96, 125, 139, 0.3);
}

.document-1 {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.document-2 {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 25px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.person-icon,
.diamond-icon {
    font-size: 1.2vw;
}

.card-title-span {
    display: flex;
    justify-content: center;
    align-items: center;
    ;
}

.card-title-button {
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 50px;
    color: #1c95fb;
}

.card-title-img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.card-title-whiteimg {
    display: none;
}

.talent-card {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 39px;
}

.talent-back-img {
    position: relative;
    cursor: pointer;
}

.talent-card-title {
    position: absolute;
    width: 100%;
    height: auto;
    top: 8vh;
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
    color: #ffffff;
    cursor: pointer !important;

}

.talent-card-title img {
    width: 32px;
    height: 32px;
}

.el-carousel__item h3 {
    color: #475669;
    font-size: 18px;
    opacity: 0.75;
    line-height: 300px;
    margin: 0;
}

.el-carousel__item:nth-child(2n) {
    background-color: #99a9bf;
}

.el-carousel__item:nth-child(2n+1) {
    background-color: #d3dce6;
}

.talent-carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 50px;
}

.talent-card-carousel {
    width: 1450px;
    height: auto;
}

.el-carousel__indicators {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.talent-custom-indicator .el-carousel__button {
    background-color: #166fed;
    height: 6px;
    border-radius: 10px;
}

.talent-carcousel-button {
    position: absolute;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: right;
    margin-left: -60px;
    margin-top: 70px;
    cursor: pointer;
}
.talent-insurance-img{
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;;
    margin-top: 50px;
    margin-bottom: 5vh;
}
.talent-business-img{
    width: 92%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;;
    margin-top: 50px;
    margin-bottom: 26vh;
}

.talent-security-img{
    width: 92%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 3fr);
    gap: 1vw;;
    margin-top: 50px;
    cursor: pointer;
}
.talent-image{
    width: 95%;
    height: auto;
    margin: 0 auto;
    cursor: pointer;
}
.talent-image:hover{
    transform: scale(1.05);
    transition: all 0.3s ease;

}
#test:hover{
    transform: scale(1.05);
    transition: all 0.3s ease;
    background-color: red;
    padding: 150px;
}

.talent-insurance-img img{
    width: 95%;
    height: auto;
    margin: 0 auto;
    cursor: pointer;
}
.talent-platform-img{
    width: 100%;
    margin-top: 38px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-self: center;
}
.talent-top-banner{
    width: 1400px;
    height: auto;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
}
.talent-top-banner img{
    width: 100%;
    height: auto;
    margin: 0 auto;
    cursor: pointer;
    padding-top: 30px;
}
.talent-top-banner p{
    position: absolute;
    top: 6.5vh;
    left: 1vw;
    color: white;
    font-size: 20px;
}

.el-tabs__nav{
    width: 450px;
}
.el-tabs__item{
    height: 100px;
    line-height: 100px;
    font-size: 18px;
    /* margin-bottom: 30px; */
}
.el-tabs__item.is-active {
    color: #ffffff;
    border-radius: 10px;
    margin-left: 15px;
    margin-right: 15px;
    background: linear-gradient(to right, #339efd, #afd9f7);
}

.el-tabs--left .el-tabs__item.is-left{
    text-align: center;
}
.el-tabs__nav-wrap{
    padding-top: 3vh;
     background: linear-gradient(to bottom, #daedff, #ffffff);
}
.talent-redemption-content{
    width: auto;
    height: 330px;
    background-color: #ffffff;
    border-radius: 10px;
    border: #e5e5e5 1px solid;
    margin-bottom: 30px;
}
.talent-content-title{
    width: 100%;
    height: 90px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e5e8ed, #edeff3, #b5bccc);
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}
.talent-content-title p{
    margin-left: 30px;
    font-size: 20px;
    font-weight: 600;
}
.talent-content-button{
    width: 140px;
    height: 40px;
    margin-right: 30px;
    cursor: pointer;
}
.talent-content-list{
    color: #a6a6a6;
    display: flex;
    flex-flow: row;
    margin-left: 30px;
    margin-top: 40px;
    font-size: 18px;
}

.el-tabs__active-bar{
    display: none;
}
.el-dialog{
    height: auto;
    background: linear-gradient(to bottom, #4994e7, #f5f5f5);
    border-radius: 20px;
}
.talent-pop-content{
    background-color: #ffffff;
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: -50px;

}
.pop-content{
    display: flex;
    flex-flow: column;
    margin-left: 40px;
    margin-right: 40px;
}
.pop-content span{
    font-size: 18px;
    font-weight: 800;
    margin-top: 20px;
    color: #000;
}
.pop-content p{
    font-size: 16px;
    margin: 20px 0;
    line-height: 28px;
}
.el-dialog__footer{
    cursor: pointer;
    text-align: center;
}
.el-dialog__headerbtn .el-dialog__close{
    color: #ffffff;
    font-size: 40px;
}
.el-dialog__title{
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
}
.talent-pop-img{
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}
.talent-pop-img span{
    color: #ffffff;
    font-size: 45px;
    font-weight: 600;
}
.talent-cardimg-back{
    width: 100%;
    height: auto;
    cursor: pointer;
}
/* 鍝嶅簲寮忚璁� */
@media (max-width: 1920px) {
    .channels-grid {
        width: 92%;
        margin-left: 3vw;
    }
}
@media (max-width: 1500px) {
    .channels-grid {
        width: 100%;
        margin-left: 0;
    }
    .talent-cardimg-back {
        width: 85%;
        /* margin-left: 58px; */
    }
}
@media (max-width: 1380px) {
    .channels-grid {
        width: 100%;
        margin-left: 0;
    }
    .talent-cardimg-back {
        width: 85%;
        /* margin-left: 58px; */
    }
}
@media (max-width: 768px) {
    .talent-enhancement-hero {
        min-height: 50vh;
        padding: 0 4vw;
        background-size: cover;
    }
.talent-cardimg-back {
        width: 85%;
        /* margin-left: 58px; */
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 4vh;
    }

    .hero-title {
        font-size: 8vw;
    }

    .hero-subtitle {
        font-size: 4vw;
    }

    .star {
        font-size: 4vw;
    }

    .arrow {
        font-size: 4vw;
    }

    .hero-right {
        height: 30vh;
    }

    .chart-container {
        width: 150px;
        height: 90px;
    }

    .cloud-icon {
        font-size: 6vw;
    }

    .laptop-icon {
        width: 80px;
        height: 60px;
    }

    .robot-icon {
        font-size: 5vw;
    }

    .talent-enhancement-channels {
        padding: 6vh 4vw;
    }

    .channels-title {
        margin-left: 5px;
        font-size: 2.5vw;
    }

    .channels-icon {
        font-size: 4vw;
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .channel-card {
        min-height: 150px;
        height: 150px;
        padding: 10vh 3vw;
    }

    .card-title {
        font-size: 3vw;
        margin-top: 15px;
    }

    .card-logo {
        width: 10vw;
        height: 10vw;
    }

    .card-button {
        padding: 6px;
        bottom: 15px;
        opacity: 0;
        visibility: hidden;
    }

    .button-icon {
        width: 70px;
        height: 70px;
    }

    .icon-folder,
    .icon-money,
    .icon-gear,
    .icon-documents {
        width: 60px;
        height: 60px;
    }

    .person-icon,
    .diamond-icon {
        font-size: 3vw;
    }

    .channel-card:hover .card-button {
        opacity: 1;
        visibility: visible;
    }

    .channels-grid {
        width: 100%;
        margin-left: 0;
    }

    .talent-card {
        flex-direction: column;
        margin-top: 20px;
    }

    .talent-cardimg-back {
        width: 100%;
        margin-bottom: 20px;
    }

    .talent-card-title-img {
        width: 12px;
        height: 12px;
    }

    .talent-card-title {
        top: 3vh;

    }
    .talent-carcousel-button {
        width: 100%;
        height: 30px;
        margin-top: 86px;
    }
    .talent-platform-img{
        width: 100%;
        height: 80px;
    }
    .talent-insurance-img{
        display: flex;
        flex-flow: column;
        margin-bottom: 30px;
    }
    .talent-insurance-img img{
        margin-bottom: 30px;
    }
    .talent-security-img{
        display: flex;
        flex-flow: column;
        margin-bottom: 30px;
    }
    .talent-image{
        margin-bottom: 30px;
    }
    .talent-business-img{
        display: flex;
        flex-flow: column;
        margin-bottom: 30px;
    }
    .talent-top-banner img{
        display: none;
    }
}

@media (max-width: 480px) {
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 3vh;
    }
    .talent-cardimg-back {
        width: 85%;
        /* margin-left: 58px; */
    }

    .channel-card {
        min-height: 120px;
        height: 120px;
        padding: 10vh 4vw;
    }

    .card-title {
        font-size: 4vw;
        margin-top: 10px;
    }

    .card-logo {
        width: 15vw;
        height: 15vw;
    }

    .card-button {
        padding: 5px;
        bottom: 10px;
        opacity: 0;
        visibility: hidden;
    }

    .button-icon {
        width: 60px;
        height: 60px;
    }

    .icon-folder,
    .icon-money,
    .icon-gear,
    .icon-documents {
        width: 50px;
        height: 50px;
    }

    .person-icon,
    .diamond-icon {
        font-size: 4vw;
    }

    .channel-card:hover .card-button {
        opacity: 1;
        visibility: visible;
    }

    .channels-grid {
        width: 100%;
        margin-left: 0;
    }

    .talent-card {
        flex-direction: column;
        margin-top: 20px;
    }

    .talent-cardimg-back {
        width: 100%;
        margin-bottom: 20px;
    }
     .talent-carcousel-button {
        width: 100%;
        height: 30px;
        margin-top: 86px;
    }
     .talent-platform-img{
        width: 100%;
        height: 80px;
    }
    .talent-insurance-img{
        display: flex;
        flex-flow: column;
        margin-bottom: 30px;
    }
      .talent-security-img{
        display: flex;
        flex-flow: column;
        margin-bottom: 30px;
    }
    .talent-business-img{
        display: flex;
        flex-flow: column;
        margin-bottom: 30px;
    }
    .talent-image{
        margin-bottom: 30px;
    }
    .talent-top-banner img{
        display: none;
    }
}