.sub-header {
    position: fixed;
    background: #fff;
    z-index: 99;
    top: 4.5625rem;
    left: 0;
    width: 100%;
    height: 4.5rem;
}


.sub-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.5rem;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}

.sub-header-content-item {
    margin-right: 2.625rem;
    cursor: pointer;
}

.sub-header-content-item a {
    color: #333333;
}

.ability {
    display: flex;
    align-items: center;
}

.ability:hover,.ability.active  {
    color: #FA1D53;
}

.ability img {
    margin-left: 0.3125rem;
    width: 1.25rem;
    height: 0.75rem;
    transition: transform 0.3s ease;
}

.ability:hover img {
    transform: rotate(180deg);
}

.ability.active img {
    transform: rotate(180deg);
}

.website-iocn img {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
}

.login-in-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.375rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    font-weight: 500;
    font-size: 14px;
    background: linear-gradient(90deg, #FD3B50 0%, #FA1D53 52%, #FD5294 100%);
    color: #FFFFFF;
}

.on-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.375rem;
    height: 2.5rem;
    background: #FFFFFF;
    border-radius: 1.25rem;
    border: 1px solid #FA1D53;
    font-weight: 500;
    font-size: 14px;
    color: #FA1D53;
}

.ability-dropdown {
    border-top: 1px solid #CCCCCC;;
    position: absolute;
    top: 4.5rem;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 98;
}

.ability.active + .ability-dropdown {
    display: block;
}

.ability-list {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1.25rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ability-list li {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #444444;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
}

.ability-list li a {
    font-weight: 800;
    font-size: 16px;
    color: #0E0E0E;
}

.ability-list li:nth-child(-n+5):after {
    content: "";
    margin-left: 2.75rem;
    display: block;
    width: 1px;
    height: 1.875rem;
    background: #4D4D4D;
}

.sub-header-cc .ability:hover,.sub-header-cc .ability.active{
    color: #10b981;
}
.sub-header-cc .normal-btn,.sub-header-cc .plain-btn{padding:10px 20px;border-radius:100px;}