/* GENERAL */
:root {
    --green-color: #94dc00;
    --trans-color: transparent;
    --black-color: #000;
    --white-color: #fff;
    --lila-color: #c074f1;
}

.bold-custom {
    font-family: GothamRndBold;
    font-weight: 800;
}

.line-up {
    background: #000;
    height: 10px;
    display: flex;
    width: 40px;
}

/* clase de colores  */
.green-color {
    color: var(--green-color) !important;
}

.bg-green {
    background-color: var(--green-color) !important;
}

.trans {
    background-color: var(--trans-color) !important;
}

.black-ct {
    color: var(--black-color) !important;
}

.bg-black {
    background-color: var(--black-color) !important;
}

.white-ct {
    color: var(--white-color) !important;
}

.white-cbg {
    background-color: var(--white-color) !important;
}

/* margen del header  */
.mar-header {
    margin-top: 8rem !important;
}

/* Lineas de Secciones */
.mar-header,
.title-sec-two,
.section-six {
    border-bottom: 2px solid var(--black-color);
}

/* botones */
.btn-gen {
    font-family: 'GothamRndBold';
    width: 7rem;
    height: 7rem;
    border: 0 solid transparent;
    border-radius: 100%;
    padding: 1rem;
    margin-top: 1rem;
    color: #fff;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: transparent !important;
    font-size: 12px;
}


.btn-gen:hover {
    border: 4px solid #000;
    color: #000 !important;
    border-right-style: dotted;
}

.btn-gen::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    position: absolute;
    left: 0%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -webkit-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-gen::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #7ae001;
    position: absolute;
    left: 0%;
    opacity: 1;
    top: 0;
    z-index: -15;
    -webkit-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all .65s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-gen:hover::before {
    opacity: 1;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-gen:hover::after {
    opacity: 1;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

/* Section Two */
.img-sec-two {
    width: 120px;
    height: auto;
    border: 3px solid var(--black-color);
    border-radius: 15px;
}

.sec-with-w>h3 {
    max-width: 200px;
}

.desc-img-sec-two {
    max-width: 190px;
}

.after-key[data-key="0"]::after,
.after-key[data-key="1"]::after,
.after-key[data-key="2"]::after {
    content: "";
    position: absolute;
    width: auto;
    height: 70%;
    background: transparent;
    bottom: 35%;
    right: 0;
    border-right: 2px solid var(--black-color);
}

/* Accordion */
.accordion-content .accordion {
    border-bottom: 2px solid #999;
}

.accordion-button {
    font-size: 24px !important;
}

.accordion-button:hover,
.accordion-button:active {
    color: #be70f1;
}

.accordion-body.body-description {
    font-size: 16px;
}

.accordion-item.faq {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 2px solid #999 !important;
}

.accordion-item:last-of-type {
    border-radius: 0px !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
}


.accordion-item:not(:first-of-type) {
    border-top: none;
}

.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.accordion-button {
    border: none !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
}

/* Section Four  */
.after-key-two[data-key="0"]::after,
.after-key-two[data-key="1"]::after {
    content: "\f285";
    font-family: "bootstrap-icons";
    font-weight: bold;
    font-size: 35px;
    position: absolute;
    width: auto;
    height: 70%;
    background: transparent;
    bottom: 0;
    right: 0;
}

.sec-with-w>h3.sec-f {
    max-width: 250px;
}

.img-sec-four {
    width: 200px;
    height: auto;
    border: 3px solid var(--black-color);
    border-radius: 15px;
}

.doble-margin-border {
    border-top: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
}

.btn-link {
    border-radius: 50% !important;
    width: 7rem;
    height: 7rem;
    border: 4px solid var(--green-color);
    background: var(--trans-color) !important;
    font-size: 12px !important;
    color: var(--white-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-link:hover,
.btn-link:active {
    color: var(--green-color) !important;
}

.img-banner-bg {
    height: auto;
    width: 100%;
}

/* Slider */
.img-slider {
    width: 260px;
    height: 160px;
    border: 2px solid var(--black-color);
}

.content-desc-slider {
    width: 75%;
}

.bi-chevron-right::before,
.bi-chevron-left::before {
    font-size: 35px;
    color: var(--black-color);
    padding-bottom: 8rem;
}

.desc-banner {
    line-height: 12px;
}

.title-banner-all {
    font-size: 2.5rem !important;
}

@media(max-width: 768px) {
    .mar-header {
        margin-top: 5rem !important;
    }

    .after-key[data-key="0"]::after,
    .after-key[data-key="1"]::after,
    .after-key[data-key="2"]::after {
        width: 80%;
        height: 0%;
        bottom: 0;
        right: 40px;
        border-right: none;
        border-bottom: 2px solid var(--black-color);
    }

    .accordion-body.body-description {
        font-size: 14px !important;
    }

    .accordion-button {
        font-size: 17px !important;
    }

    .sec-with-w>h3.sec-f {
        max-width: 200px;
    }

    .after-key-two[data-key="0"]::after,
    .after-key-two[data-key="1"]::after {
        content: "\F282";
        height: 5%;
        right: 45%;
    }

    .title-banner-all {
        font-size: 1rem !important;
    }

    .desc-banner {
        font-size: 12px;
    }

    .img-banner-bg {
        height: 20vh;
    }
}