.c-bf {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #e1efff;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 100;
}

.text-img {
    width: 100%;
    max-width: 588px;
}

.c-bf.active {
    background-size: cover;
    background-color: #e1efff;
}

.c-bf__bg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 6px;
    gap: 20px;
}

.c-bf__init,
.c-bf__dropdown {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 94%;
    max-width: 450px;
    margin: 0 auto;
    padding: 8px 0;
    gap: 20px;
}

.c-bf__dropdown {
    padding: 22px 16px;
    flex-direction: column;
    max-width: 450px;
}

.c-bf__down {
    display: none;
}

.c-bf__btn {
    position: relative;
    display: block;
    padding: 4px 16px;
    white-space: nowrap;
    border-radius: 30px;
    text-align: center;
}

.c-bf__init .c-bf__btn {
    font-size: 14px;
    text-decoration: underline;
    font-weight: bold;
}

.c-bf__dropdown .c-bf__btn {
    min-width: 200px;
}

.c-bf__btn::after {
    display: inline-block;
    vertical-align: text-bottom;
    margin-left: 6px;
}

.c-bf__listbtns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.c-bf__drop {
    color: transparent;
    font-size: 1px;
    position: absolute;
    top: inherit;
    bottom: 40px;
    right: 20px;
}

.c-bf__drop::after {
    display: block;
    font-size: 24px;
    color: black;
    transform: scaleY(-1);
}

@media screen and (min-width: 768px) {
    .c-bf__init,
    .c-bf__dropdown {
        max-width: 900px;
    }

    .c-bf__dropdown {
        flex-direction: row;
        padding: 4px 0px;
        gap: 20px;
        margin-bottom: 10px;
        max-width: 1100px;
    }

    .c-bf__init .c-bf__btn {
        font-size: inherit;
        text-decoration: none;
        font-weight: normal;
    }

    .c-bf__dropdown .c-bf__btn {
        min-width: initial;
    }

    .c-bf__drop {
        position: initial;
        font-size: initial;
        color: initial;
    }

    .c-bf__drop::after {
        font-size: 18px;
        display: inline-block;
        vertical-align: text-bottom;
        margin-left: 6px;
        transform: none;
    }
}

@media only screen and (min-width: 1250px) {
  .c-bf {
    top: 125px;
  }
   .c-bf__btn {
    background-color: var(--blue);
    color: var(--white);
  } 
}

