#module .tab-content {
    display: none;
}

#module .tab-content.active {
    display: block;
}

#module .tab-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 80%;
    margin: 1.171875vw auto 1.171875vw;
    border-radius: 1.5625vw;
}

#module .tab-buttons .tab-button {
    color: #192b5d;
    font-size: 1.015625vw;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 1.5625vw;
    width: 30%;
    text-align: center;
    padding: 0.390625vw 0;
    font-weight: bold;
    border: 0.078125vw dashed #192b5d;
}

#module .tab-buttons .tab-button.active {
    background: #192b5d;
    color: #fff;
    border-color: #192b5d;
}

@media screen and (max-width:1460px) {
    #module .tab-buttons .tab-button {
        font-size: 1.232877vw;
        padding: 0.547945vw 0;
    }

}

@media screen and (max-width: 480px) {
    #module .tab-buttons .tab-button {
        font-size: 3.25vw;
        border-radius: 6.25vw;
        padding: 1.041667vw 0;
    }

    #module .tab-buttons {
        max-width: 100%;
        border-radius: 6.25vw;
        margin: 6.25vw 0;
    }
}