
:root {
    --white: #FFF;
    --primary: #f79729;
    --secondary: #2A2649;
    --secondary-light: #777777;
    --body-background: #efeefa;
    --border: #E6E8F0;
}


@media screen and (min-width: 300px) {

    .tabs-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 1rem;
        background-color: var(--white);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        margin: 0 auto;
        position: relative;
        height: 500px;
    }
    
    .tab-content-wrapper {
        overflow-y: auto;
        overflow-x: auto;
        height: 33.75rem;
        color: var(--secondary);
        transition: all 0.45s ease-in-out;
        width: 95%;
        margin: 30px auto;
    }
    
    .tab-content h2 {
        color: var(--secondary);
        font-size: 1.3rem;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .tab-content h4 {
        font-size: 0.965em;
    }
    
    .tab-content {
        display: block;
        font-size: 1rem;
        padding: 1.5rem 0.5rem;
        height: 33.75rem;
        transition: all 0.45s ease-in-out;
        padding: 1.5rem 0.5rem;
        background-color: var(--white);
    }
    
    .tab-content img {
        max-width: 18rem;
        width: 80%;
        flex-grow: 1;
    }
    
    .tabs {
        position: relative;
        display: flex;
        flex-direction: column;
        list-style-type: none;
        left: -30px;
        top: 10px;
    }

    .tabs li{
        height: 50px;
    }
    
    .tabs a {
        position: relative;
        display: flex;
        justify-content: start;
        align-items: center;
        text-decoration: none;
        width: 100%;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--secondary);
        overflow: hidden;
        text-align: left;
        height: 5.5rem;
        padding: 0px 1.5rem;
        width: 22rem;
        gap: 1rem;
    }
    
    .tabs a img {
        height: 1.25rem;
        width: 1.25rem;
    }
    
    .tabs .active, .tabs a:hover {
        font-weight: 700;
        outline: none;
        color: var(--secondary);
        border-right: 3px solid var(--primary);
    }
}

@media screen and (min-width: 1000px) {

    .tabs-container {
        width: 100%;
        flex-direction: row;
        top: 10px;
        height: 400px;
    }

    .tabs li{
        height: 80px;
    }



}

/* .tabs a svg {
    width: 2.25rem;
    height: 2.25rem;
    stroke: var(--secondary-light);
} */

/* .tabs .active svg, .tabs a:hover svg {
    stroke: var(--primary);
} */