.responsivetabContent{
    display: none;
}
.responsivetabContent.active{
    display: block;
}
.responsivetabs {
    margin-bottom: 20px;
    overflow-x: auto;
    border-radius: 30px;
    background: #EBF4FF;
    padding: 4px;
    gap: 4px;
}
.responsivetabs li {
    padding: 6px 30px;
    position: relative;
    min-width: unset;
    transition: all 0.2s linear;
    flex-grow: 1;
    background: transparent;
    border-radius: 40px;
    border: 1px solid #EBF4FF;
}
.responsivetabs li .responsivetab-link {
    font-size: 14px;
    color: #737373;
    font-family: "Anjoman-Regular", serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
    cursor: pointer;
}
.responsivetabs li:hover .responsivetab-link {
    color: #DFAF37;
}
.responsivetabs li.active {
    border: 1px solid #DFAF37;
}
.responsivetabs li.active .responsivetab-link {
    color: #DFAF37;
}

