.tab-content-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-content-slider .tabs {
    display: flex;
    gap: 0px;
    align-items: center;
    width: 100%;
    max-width: 40%;
}

.tab-content-slider .tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border-radius: 100%;
    padding: 3px;
    color: #1F2F4C;
    cursor: pointer;
    border: 1px solid #1F2F4C;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    max-width: 50px;
}


.tab-content-slider .tabs .divider-line {
    width: 100%;
    height: 1px;
    background-color: #00000038;
    display: block;
    position: relative;
    z-index: 999;
    min-width: calc(25% - 62px);
}


.tab-content-slider .tab-button .number-wrapper {
    background-color: transparent;
    border-radius: 50%;
    color: #1F2F4C;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    padding: 10px;
    line-height: 1;
    width: 100%;
}

.tab-content-slider .tab-button.active .number-wrapper {
    background-color: #1F2F4C;
    color: #fff;
}

.tab-content-slider .tab-item{
    display: none;
    flex-direction: row;
    gap: 20px;
}


.tab-content-slider .tab-item.active{
    display: flex;
}

.tab-content-slider .tab-content {
    display: flex;
    gap: 20px;
}



.tab-content-slider .content-left {
    flex: 1;
    color: #1F2F4C;
}




.tab-content-slider .content-right {
    flex: 1;
    margin-top: -70px;
}

.tab-content-slider .content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.tab-content-slider .slider-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.tab-content-slider .slider-button {
	background-color: transparent;
    color: #1F2F4C;
    border-radius: 22px;
    cursor: pointer;
    border: 1px solid #1F2F4C;
    font-family: 'EuropaBold';
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
}


.tab-content-slider .slider-button:hover {
    background-color: #1F2F4C;
    color: #ffffff!important;
}

.tab-content-slider .tab-title {
    font-family: 'EuropaBold', sans-serif;
    font-size: 22px;
    color: #1F2F4C;
    margin-bottom: 10px;
}

.tab-content-slider .tab-description {
    font-family: 'EuropaRegular', sans-serif;
    font-size: 14px;
    color: #1F2F4C;
}

/* animation-border-wave-effect element animation */
.slider-button.animation-border-wave-effect {
    position: relative;
    background-color: #fff;
}

.animation-border-wave-effect:before{
      content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    border: 3px solid #1F2F4C;
    z-index: -1;
    animation: border-wave 2s infinite linear;
    
    
}

@keyframes border-wave {

    0% {
        transform: scaleX(0.94) scaleY(0.80);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.07) scaleY(1.2); 
        opacity: 0.5;
    }
    100% {
        transform: scaleX(0.94) scaleY(0.80);
        opacity: 1;
    }

}

/* media 1024 */
@media (max-width: 1140px) {
    .tab-content-slider .tabs {
        max-width: 80%;
        justify-content: center;
        margin: 0 auto;
    }

    .tab-content-slider .tab-item {
        flex-direction: column;
    }

    .tab-content-slider .tab-content {
        flex-direction: column;
    }

    .tab-content-slider .content-left,
    .tab-content-slider .content-right {
        width: 100%;
        margin-top: 0px;
    }

    .tab-content-slider .tab-item.active {
        display: flex;
        flex-direction: column-reverse;
    }
}