.our-animation-expertise-section{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: linear-gradient(180deg, #032576 0%, #010C25 43.72%);
    padding: 140px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.our-animation-expertise-section .main-h2{
    text-align: center;
    color: var(--n-white);
}

.our-animation-expertise-section .expertise-content{
    width: 100%;
}

.our-animation-expertise-section .expertise-container{
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 16px;
    justify-content: center;
}

.our-animation-expertise-section .expertise-item{
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    transition: 0.3s;
    gap: 24px;
    flex: 1;
    border: 1px solid rgba(157, 199, 255, 0.10);
    background: linear-gradient(0deg, rgba(37, 95, 232, 0.08) 0%, rgba(49, 105, 233, 0.20) 100%);
    padding: 12px 12px 20px 12px;
    box-sizing: border-box;
    max-width: 620px;
}

.our-animation-expertise-section .expertise-item-video{
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 538 / 320;
}

.our-animation-expertise-section .swiper__pagination-container{
    line-height: 8px;
    text-align: center;
}

.our-animation-expertise-section .swiper-pagination-bullet{
    opacity: 1;
    background-color: var(--n-grey-60);
}

.our-animation-expertise-section .swiper-pagination-bullet-active{
    opacity: 1;
    background-color: var(--bright-blue);
}

.our-animation-expertise-section .swiper-main-container{
    display: none;
}

.our-animation-expertise-section .expertise-item-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 16px;
    gap: 16px;
    flex: 1;
}

.our-animation-expertise-section .expertise-item-content .main-h4{
    color: var(--n-white);
}

.our-animation-expertise-section .expertise-item-content .main-text-medium{
    color: var(--d-light-grey);
    flex: 1;
}

.our-animation-expertise-section .expertise-item-content svg{
    display: none;
}

@media (hover: hover){
    .our-animation-expertise-section .expertise-item:hover{
        border-color: rgba(157, 199, 255, 0.20);
        background: linear-gradient(0deg, rgba(37, 95, 232, 0.16) 0%, rgba(49, 105, 233, 0.40) 100%);
    }
}

@media screen and (max-width: 1919px) {
    .our-animation-expertise-section{
        padding: 100px 80px;
        gap: 60px;
    }

    .our-animation-expertise-section .expertise-item{
        gap: 10px;
        max-width: 520px;
    }

    .our-animation-expertise-section .expertise-item-video{
        aspect-ratio: 392 / 232;
    }
}

@media screen and (max-width: 1439px) {
    .our-animation-expertise-section{
        padding: 80px 60px;
    }

    .our-animation-expertise-section .expertise-item{
        border-radius: 16px;
        max-width: 480px;
    }

    .our-animation-expertise-section .expertise-item-video{
        aspect-ratio: 352 / 209;
    }

    .our-animation-expertise-section .expertise-item-content{
        padding: 10px;
    }
}

@media screen and (max-width: 1079px) {
    .our-animation-expertise-section{
        padding: 80px 40px;
    }

    .our-animation-expertise-section .expertise-container{
        flex-direction: column;
        gap: 24px;
    }

    .our-animation-expertise-section .expertise-item{
        flex-direction: row-reverse;
        gap: 32px;
        padding: 12px 12px 12px 24px;
        max-width: 100%;
    }

    .our-animation-expertise-section .expertise-item-content{
        padding: 20px 0 12px;
    }

    .our-animation-expertise-section .expertise-item-content svg{
        display: block;
    }

    .our-animation-expertise-section .expertise-item-video{
        width: auto;
        flex: 1;
        aspect-ratio: 300 / 220;
    }
}

@media screen and (max-width: 577px) {
    .our-animation-expertise-section{
        padding: 80px 16px;
        gap: 40px;
    }

    .our-animation-expertise-section .expertise-container{
        gap: 0;
        flex-direction: row;
        justify-content: initial;
    }

    .our-animation-expertise-section .expertise-item{
        gap: 20px;
        flex-direction: column;
        padding: 12px 10px 16px 10px;
        flex-shrink: 0;
        flex-basis: auto;
    }

    .our-animation-expertise-section .swiper-main-container{
        display: block;
        margin-top: 32px;
    }

    .our-animation-expertise-section .expertise-item-content{
        padding: 0 8px;
    }

    .our-animation-expertise-section .expertise-item-content .main-text-medium{
        margin-bottom: 8px;
    }

    .our-animation-expertise-section .expertise-item-video{
        width: 100%;
        flex: unset;
        aspect-ratio: 321 / 235;
    }
}