@media only screen and (max-width: 1199px) {
    .tab-carousel-button-holder {
        display: none;
    }


    .tab-carousel-card {
        background-color: #f5f5f5;
        border: solid 3px #2981E3;
        border-radius: 15px;
        color: #012F6B;
        font-family: 'Inter';
        padding: 30px;
        margin: 30px 0;

        height: 89px;
        
        overflow: hidden;
        transition: 0.8s;
    }

    .tab-carousel-card-header {
        position: relative;
        font-size: 20px;
        color: #012F6B;
        font-weight: bold;
        cursor: pointer;
        text-align: center;
        margin-bottom: 30px;
    }

    .tab-carousel-card-header .fa-solid.fa-chevron-down {
        position: absolute;
        background-color: #FFD800;
        border-radius: 100%;
        width: 30px;
        height: 30px;
        right: -15px;
        top: 0%;
    }

    .tab-carousel-card-header .fa-solid.fa-chevron-down::before{
        position: relative;
        top: 5px;
        display: block;
        
        transition: 0.4s;
    }

    .tab-carousel-card-content-holder h4 {
        color: #012F6B;
        font-size: 18px;
        font-weight: bold;
    }

    .tab-carousel-card-content-holder p {
        font-size: 16px;
    }


    /* OPEN STATE */

    .tab-carousel-card.open .tab-carousel-card-header .fa-solid.fa-chevron-down::before{
        transform: rotate(180deg);
    }

}

@media only screen and (max-width: 599px) {
    .tab-carousel-card-header{
        font-size: 16px;

    }
}