.background-image-absolute {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    filter: brightness(.98)
}

.custom-rounded-xl {
    border-radius: 1.5rem;
}

.adaptive-400-300 {
    min-height: 400px;
}

@media (max-width: 1600px) {
    .adaptive-400-300 {
        min-height: calc(300px + (400 - 300) * (100vw - 320px) / (1600 - 320));
    }
}

.animation-hover {
    position: relative;
}


@media (min-width: 576px) and (max-width: 768px) {
    .animation-logo {
        height: calc(110px + (200 - 110) * (100vw - 576px) / (768 - 576));
    }
}

@media (max-width: 576px) {
    .animation-logo {
        height: 130px;
        width: 50%;
    }
}

.animation-logo > img {
    height: 89%;
    object-fit: contain;
}

.img3d {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img3d#textOnline3d {
    object-fit: none;
}

@media (min-width: 1200px) {
    .container {
        width: 1220px;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .img3d#textOnline3d {

        transform: translateX(calc(0px + (50 - 0) * (100vw - 320px) / (768 - 320)));
    }
}
.text-sale:before {
    content: "-25%";
    transform: rotate(45deg);
    font-weight: bold;
}

.text-sale {
    /*transform: rotate(-45deg)*/
    position: absolute;
    right: 1rem;
    height: 6rem;
    bottom: .25rem;
}

.item-feature {
    overflow: hidden;
    position: relative;
    z-index: 10;
    transition: .5s ease-in-out;
}

.item-feature  i:where(.fa-rub, .fa-plane, .fa-heart, .fa-credit-card, .fa-bicycle, .fa-id-badge,
.fa-percent, .fa-gavel, .fa-handshake, .fa-check, .fa-users, .text-sale, .fa-arrow-down) {
    position: absolute;
    bottom: 0;
    right: 1rem;
    font-size: 6rem;
    z-index: -1;
    color: #fff;
}

.head_block, .text_block {
    z-index: 1;
}

.text_block {
    font-weight: 600;
}
.button_become {
    background-color: var(--bac-color);
    padding: 10px 20px;
    border-radius: 8px;
    transition: .3s ease;
}

.button_become:hover {
    background-color: #009500;
}

.block-question {
    border-radius: 8px;
    background-color: white;
}

.head_question {
    cursor: pointer;
}

.anim-rotate {
    transform: rotate(180deg);
    transition: transform .2s ease;
}

.hide-answer:not(.d-none) {
    animation: opacity-1 .3s ease;
    opacity: 1;
}

@keyframes opacity-1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}