/* ------------------------------------------  Hero Section Start ------------------------------------------ */
/*----- Background Video With Layer-----*/
.hero-section {
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
}

/*----- Typography-----*/
.title-before-heading {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-heading {
    font-size: 85px;
    font-weight: 600;
    line-height: 85px;
    letter-spacing: -2px;
    padding-bottom: 50px;
    margin-bottom: 0;
    background: linear-gradient(to right, #FFFFFF 5%, #8C6824 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*----- Products-----*/

.product-row {
    padding-bottom: 116px;
}

.product-card {
    border: 1px solid rgba(246, 236, 197, 0.1);
    padding: 0 30px 20px;
    border-radius: 4px;
}

.product-card.coins {
    padding: 0 20px 20px;
}

.product-card .img-box {
    padding: 50px 15px 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card .img-box.coins {
    padding: 50px 0px 40px;
}

.title-small {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.8px;
    text-transform: capitalize;
    color: #957436;
    margin-bottom: 0;
}
.title-small.silver{
    color: #A6A6A6;
}
.title-small.gold{
    color: #957436;
}


/*----- Pricing-----*/

.pricing-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
    color: var(--white);
    margin: 0;
    z-index: 2;
    position: relative;
}

.rates .type {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.rates .type.gold {
    color: var(--mustard);
}

.rates .type.silver {
    color: #A6A6A6;
}

.rates .pricing-text.price {
    font-size: 20px;
}

.pricing-box {
    padding: 22px 0;
}


.pricing-box {
    z-index: 2;
}

.pricing-box::after {
    content: '';
    background-image: url(../images/shadows/Ellipse.png);
    left: 5%;
    bottom: 0;
    width: 65%;
    height: 550px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

/* ------------------------------------------  Hero Section End ------------------------------------------ */


/* ------------------------------------------  Text Only Start ------------------------------------------ */
.text-only {
    font-size: 36px;
    font-weight: 400;
    line-height: 147%;
    letter-spacing: -1px;
    color: var(--black);
    text-align: center;
    margin: 0;
}

.text-only span {
    background: linear-gradient(to right, #000000 0%, #FFFFFF 115%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ------------------------------------------  Text Only End ------------------------------------------ */


/* ------------------------------------------  Features Products Start ------------------------------------------ */
.features-header {
    padding-bottom: 45px;
}

.features-heading {
    font-size: 64px;
    font-weight: 600;
    line-height: 77px;
    letter-spacing: -2px;
    background: linear-gradient(to right, #FFFFFF 5%, #8C6824 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}


.product-card-carousel {
    border: 1px solid rgba(246, 236, 197, 0.1);
    padding: 0 10px 42px;
    border-radius: 4px;
}

.product-card-carousel .carousel-img {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 52px 0px 44px;
}

.product-card-carousel .carousel-img img {
    max-height: 100%;
    width: 0 !important;
    transition: opacity 1.5s ease, transform 1.5s ease;
    opacity: 0;
    pointer-events: none;
    position: static; /* explicitly saying: no absolute */
}

.product-card-carousel .carousel-img .front {
    opacity: 1;
    pointer-events: auto;
}
.product-card-carousel .carousel-img .back {
    width: 0 !important;
}

.product-card-carousel:hover .carousel-img .front {
    opacity: 0;
    pointer-events: none;
    width: 0 !important;
}

.product-card-carousel:hover .carousel-img .back {
    opacity: 1;
    pointer-events: auto;
    width: 100% !important;
}

/* we can also use translateY unstead of 
.product-card-carousel .carousel-img img {
    max-height: 100%;
    width: 0 !important;
    transition: opacity 1.5s ease, transform 1.5s ease;
    opacity: 0;
    pointer-events: none;
    position: static;
}

.product-card-carousel .carousel-img .front {
    opacity: 1;
    pointer-events: auto;
}
.product-card-carousel .carousel-img .back {
    width: 0 !important; transform: scale(0.8);
}

.product-card-carousel:hover .carousel-img .front {
    opacity: 0;
    pointer-events: none;
    width: 0 !important;transform: scale(1.2);
}

.product-card-carousel:hover .carousel-img .back {
    opacity: 1;
    pointer-events: auto;
    width: 100% !important;transform: scale(1);
}*/


.btns-group {
    /*border: 1px solid red;*/
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.btn-circle {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-color: #8C6824;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid #8C6824;
    transition: 0.3s ease-in-out;
}
.btn-circle:hover {
    background-color: white;
}
.btn-circle .white, .btn-circle .color {
    width: auto !important;
}
.btn-circle .color {
    display: none !important;
}
.btn-circle:hover .color {
    display: block !important;
}
.btn-circle:hover .white {
    display: none !important;
}

.product-card-carousel:hover .btns-group{
    opacity: 1;
}

.white-tooltip .tooltip-inner {
    background: #FFFFFF;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    font-weight: 400;
}

.white-tooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #ffffff;
}
.white-tooltip.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-left-color: #ffffff;
}
.white-tooltip.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-bottom-color: #ffffff;
}
.white-tooltip.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-right-color: #ffffff;
}



.product-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    color: #F5B851;
    margin-bottom: 8px;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 23px;
}

.product-carousel .carousel-img img {
    display: block;
    width: auto !important;
}


.product-carousel .owl-stage {
    display: flex;
    padding-left: 4px;
}

.product-carousel .owl-stage .item {
    height: 100%;
}
.product-carousel .owl-nav {
    display: none;
}

.btn-wrap {
    display: flex;
    gap: 12px;
}

.prev-btn, .next-btn {
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.prev-btn img,
.next-btn img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Default: hide color, show gray */
.btn-wrap .color {
    display: none;
}
.btn-wrap .gray {
    display: block;
}

/* When button is NOT disabled: show color, hide gray */
.btn-wrap .prev-btn:not(.disabled) .color,
.btn-wrap .next-btn:not(.disabled) .color {
    display: block;
}
.btn-wrap .prev-btn:not(.disabled) .gray,
.btn-wrap .next-btn:not(.disabled) .gray {
    display: none;
}

/* When button IS disabled: show gray, hide color */
.btn-wrap .prev-btn.disabled .color,
.btn-wrap .next-btn.disabled .color {
    display: none;
}
.btn-wrap .prev-btn.disabled .gray,
.btn-wrap .next-btn.disabled .gray {
    display: block;
}


/* Show the colored icon when not disable */


/* Show the colored icon when hovering */
/*.btn-wrap .prev-btn:hover .color,*/
/*.btn-wrap .next-btn:hover .color {*/
/*    display: block;*/
/*}*/

/* Hide the gray icon when hovering */
/*.btn-wrap .prev-btn:hover .gray,*/
/*.btn-wrap .next-btn:hover .gray {*/
/*    display: none;*/
/*}*/


/* ------------------------------------------  Features Products End ------------------------------------------ */


/* ------------------------------------------  FAQS Start ------------------------------------------ */

.faq-header {
    padding-bottom: 66px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #2B2B2B;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: white;
    border-bottom: 1px solid transparent;
}

.accordion-button {
    background-color: transparent;
    padding: 30px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.4px;
    color: #ffffff;
    border-bottom: 1px solid #2B2B2B;
    margin: 0;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/icons/minus-icon.svg) !important;
    transform: none !important;
    height: 2px;
    right: 27px;
    position: relative;
}

.accordion-button::after {
    background-image: url(../images/icons/plus-icon.svg) !important;;
    transform: none !important;
    right: 27px;
    position: relative;
}

.faq-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: rgb(255, 255, 255);
    padding-bottom: 32px;
    border-bottom: 1px solid #2B2B2B;
    margin-bottom: 0;
}

/* ------------------------------------------  FAQS End ------------------------------------------ */


@media only screen and (max-width: 992px) {
    /* ------------------------------------------  Hero Section Start ------------------------------------------ */
    /*----- Background Video With Layer-----*/
    .hero-section {
        padding-top: 65px;
    }

    /*----- Typography-----*/
    .title-before-heading {
        font-size: 12px;
    }

    .hero-heading {
        font-size: 41px;
        line-height: 51px;
        letter-spacing: normal;
        padding-bottom: 45px;
    }

    /*----- Products-----*/
    .product-row {
        padding-bottom: 26px;
    }

    .product-row .col-6 {
        padding: 0 8px;
    }

    .product-card {
        padding: 0 14px 22px;
    }

    .product-card .img-box {
        padding: 18px 0 34px;
    }

    .title-small {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: -0.5px;
    }


    /*----- Pricing-----*/
    .pricing-text {
        font-size: 18px;
        line-height: 100%;
        margin-bottom: 14px;
    }

    .rates .type {
        margin-bottom: 6px;
    }

    .rates .pricing-text.price {
        font-size: 15px;
        line-height: 21px;
    }

    .pricing-box {
        padding: 14px 0;
    }

    .pricing-box::after {
        left: 0%;
        top: 0;
        width: 100%;
        opacity: 0.5;
        height: 250px;
        transform: rotate(180deg);
    }

    /* ------------------------------------------  Hero Section End ------------------------------------------ */
    /* ------------------------------------------  Text Only Start ------------------------------------------ */
    .text-only {
        font-size: 16px;
        letter-spacing: -0.39px;
    }

    /* ------------------------------------------  Text Only End ------------------------------------------ */

    /* ------------------------------------------  Features Products Start ------------------------------------------ */
    .features-header {
        padding-bottom: 24px;
    }

    .product-card-carousel {
        padding: 0 10px 20px;
    }

    .product-card-carousel .carousel-img {
        padding: 10px 30px 34px;
    }

    .product-title {
        font-size: 12px;
        line-height: 100%;
        font-weight: 600;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .product-price {
        font-size: 12px;
        font-weight: 400;
        line-height: 100%;
        margin-bottom: 12px;
    }

    .prev-btn, .next-btn {
        width: 17px; /* Adjust based on your icon size */
        height: 17px;

    }

    /* ------------------------------------------  Features Products End ------------------------------------------ */
    /* ------------------------------------------  FAQS Start ------------------------------------------ */
    .faq-header {
        padding-bottom: 32px;
    }

    .features-heading {
        font-size: 32px;
        line-height: 100%;
        letter-spacing: -1.59px;
    }


    .accordion-button {
        align-items: flex-start;
        justify-content: space-between;
    }

    .accordion-button:not(.collapsed)::after {
        height: 2px;
        right: 0;
        top: 14px;
    }

    .accordion-button::after {
        right: 0;
        top: 5px;
        margin-left: 10px;
    }

    .faq-para {
        line-height: 147%;
        padding-bottom: 32px;
    }

    /* ------------------------------------------  FAQS End ------------------------------------------ */

}
